@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/

:root {
  --dark-green: #264653;
  --mid-green: #3a5a40;
  --green: #2b9c8e;
  --light-green: #a3b18a;
  --dark-grey: #444444;
  --grey: #dad7cd;
  --light-grey: #f6f5f2;
  --white: #ffffff;
  --orange: #f4845f;
  --yellow: #ffffa3;
  --error: #c42a28;
  --hover: #ffffa325;

  /*"Halant", serif;*/
  --heading-font: "Poppins", sans-serif;
  /* "Playfair Display", serif */
  /* 'Lora', serif;*/
  /*"Nunito Sans", sans-serif;*/
  --body-font: "Poppins", sans-serif;
  /* "Source Sans 3", sans-serif; */
}

* {
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
body {
  line-height: 1;
}
.package-details-wrapper ul {
  padding-left: 1.25rem;
}
.package-details-wrapper li{
  margin-bottom:8px;
}
.package-details-wrapper li::marker {
  color: var(--green);
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
p{
  margin-bottom:14px;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.43;
  color: var(--dark-grey);
  background-color: var(--light-grey);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
  color: var(--dark-green);
  margin: 1rem 0 1.75rem;
}

.lightHeader {
  color: var(--green);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 0.95rem;
  font-weight: 700;
}

h6 {
  font-size: 1rem;
}

.lead_text {
  font-size: 1.5rem;
}

img,
video {
  max-width: 100%;
}

section {
  position: relative;
}

.section_break {
  width: 200px;
  height: 5px;
  background-color: var(--grey);
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  margin-left: 50%;
  left: -100px;
}

.site-content{
  padding-top:5rem;
}

#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

article{
  margin: auto;
  width: 90%;
  max-width: 1400px;
  margin-top:6rem;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--green);
  border: 0;
  color: var(--white);
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 900;
  transition: color 0.7s ease, opacity 0.5s ease;
  cursor: pointer;
  border-radius: 3px;
}

.btn:hover {
  /*color: var(--yellow);*/
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header.site-header {
  background-color: var(--dark-green);
  border-top: 0.5rem solid var(--white);
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
}

header .white_border_top {
  width: 100%;
  height: 0.5rem;
  background-color: var(--white);
  position: absolute;
  top: -0.5rem;
  z-index: 999999;
}

.header_container {
  width: 90%;
  max-width: 90%;
  position: relative;
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.header_container .logo_container {
  width: 220px;
  background-color: var(--white);
  padding: 1rem 2rem;
  position: absolute;
  top: -1px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: 0.2s;
}

.header_container .logo_container.shrink {
  width: 200px;
  padding: 0.2rem 2rem;
}

.header_container .logo_container:before {
  content: "";
  transform: scaleY(-1);
  width: 30px;
  height: 30px;
  background-image: url(../img/round-corner-left.svg);
  position: absolute;
  left: -29px;
  top: 0;
}

.header_container .logo_container:after {
  content: "";
  transform: scaleY(-1);
  width: 30px;
  height: 30px;
  background-image: url(../img/round-corner-right.svg);
  position: absolute;
  right: -29px;
  top: 0;
}

.header_container .nav_number {
  color: var(--yellow);
  color: #1e2536;
  margin-left: auto;
  font-weight: 700;
  margin-bottom: 0.2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding-right: 0.6rem;
}

.header_container .nav_number span {
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.2rem;
  font-family: "Lora", serif;
}

.header_container nav ul#main_nav {
  display: flex;
  flex-direction: column;
  color: #777777;
  margin: auto;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  width: 50%;
}


/*--------------------------------------------------------------
# Top Menu
--------------------------------------------------------------*/
.nav-group{
  width:100%;
}
.nav-items{
  display:flex;
  align-items: center;
}
.navbar {
    position: relative;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    width:100%;
    font-weight: 500;
}
.nav-menu > ul > li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 0 8px;
    cursor: pointer;
}
.nav-menu > ul > li > a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}
.nav-menu > ul > li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: var(--green);
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-menu > ul > li:hover::after {
    transform: scaleX(1);
}
.nav-logo a,
.nav-button a {
    color: white;
    list-style: none;
    text-decoration: none;
    display: flex;
}
.nav-logo {
    font-size: 32px;
}
.nav-button {
    background-color: var(--green);;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    margin-left:12px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.user-profile{
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  margin-left: 4px;
  margin-right: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity:.6;
}
.user-profile i{
  font-size: 24px;
  color:#ffffff;
}
.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.2s ease, left 0.2s ease;
}
.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}
.nav-button a,
.nav-button .user-profile i {
  transition: color 0.2s ease;
}
.nav-button:hover a,
.nav-button:hover .user-profile i {
    color: var(--dark-green);
}
.nav-button a {
    display: block;
    padding: 4px 18px 4px 4px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
#hamburger-menu,
#mobile-menu {
    display: none;
}

/* ===== DESKTOP SUB-MENU ===== */

.nav-items ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;                /* sit directly below its parent <li> */
  left: 0;
  background-color: #141214;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
}

.nav-items ul li:hover > .sub-menu {
  display: block;
}

.nav-items ul li .sub-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-items ul li .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: white;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-items ul li .sub-menu li a:hover {
  background-color: rgba(255,255,255,0.1);
}

/* optional “underline on hover” effect */
.nav-items ul li .sub-menu li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  bottom: 0;
  left: 0;
  transform-origin: 0 100%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-items ul li .sub-menu li:hover::after {
  transform: scaleX(1);
}

/* ===== MOBILE SUB-MENU ===== */

.mobile-nav-items ul li {
  position: relative;
  margin-bottom: 8px;
}

/* hide nested ULs by default */
.mobile-nav-items ul li .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* inject a toggle icon */
.mobile-nav-items ul li.has-children > a::after {
  content: "▸";
  float: right;
  transition: transform 0.3s ease;
}

/* when the parent LI is “open” */
.mobile-nav-items ul li.open > a::after {
  transform: rotate(90deg);
}

/* and show the submenu */
.mobile-nav-items ul li.open > .sub-menu {
  max-height: 500px; /* something big enough to contain your links */
}

/* style the mobile submenu links */
.mobile-nav-items ul li .sub-menu li a {
  padding-left: 30px;
  color: white;
  display: block;
  margin: 4px 0;
}

@media only screen and (max-width: 770px) {
    #mobile-menu {
        background-color: var(--dark-green);;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
    }
    .mobile-nav-items > ul {
        padding: 0px;
        margin-top:-6rem;
    }
    .mobile-nav-items > ul > li {
        text-align: center;
        position: relative;
        list-style: none;
        padding: 4px 0;
        cursor: pointer;
    }
    .mobile-nav-items > ul > li > a {
        color: white;
        text-decoration: none;
        text-transform: capitalize;
        font-size: 18px;
        font-weight: 600;
    }
    .mobile-nav-items > ul > li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: white;
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .mobile-nav-button {
        background-color: #141214;
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
        margin-top: 1rem;
    }
    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.3s ease, left 0.3s ease;
    }
    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }

    .mobile-nav-button:hover a {
        color: #141214;
    }

    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .nav-menu > ul,
    .nav-button {
        display: none;
    }

    #hamburger-cross {
        display: block;
        cursor: pointer;
        font-size: 30px;
        position: absolute;
        top: 20px;
        right: 26px;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        font-family: Arial, Helvetica, sans-serif !important;
    }

    #hamburger-menu {
        display: block;
        color: white;
        cursor: pointer;
        font-size: 28px;
    }

    .mobile-nav-items ul li .sub-menu li a {
      padding-left: 0;
      text-decoration: none;
    }

    /* Make the parent A look like a toggle, not a link */
    .mobile-nav-items .menu-item-has-children > a {
      position: relative;
      cursor: pointer;
      /* remove default link styles if you like */
      text-decoration: none;
      color: white;
    }

    /* add a little chevron */
    .mobile-nav-items .menu-item-has-children > a::after {
      content: '▸';
      position: absolute;
      left: 105%;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      transform-origin: center;
      transition: transform 0.3s ease;
    }

    /* rotate chevron when “open” */
    .mobile-nav-items .menu-item-has-children.open > a::after {
      transform: translateY(-50%) rotate(90deg);
    }

    /* submenu hidden by default */
    .mobile-nav-items .menu-item-has-children .sub-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    /* show it when the parent has .open */
    .mobile-nav-items .menu-item-has-children.open .sub-menu {
      max-height: 500px; /* large enough to fit your items */
    }
}



/*--------------------------------------------------------------
# Cart Page Layout
--------------------------------------------------------------*/

.entry-content.the-page-content {
  width: 90%;
  max-width: 1200px;
  text-align: left;
  margin: auto;
  padding: 0 0 3.5rem;
  margin-top: 5rem;
}

table.wc-block-cart-items .wc-block-cart-items__header {
  font-size: 1.05rem !important;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  color: #8a9194;
  background-color: #d9d9d9;
  width: 100%;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__header th {
  margin: 0;
}
.wc-block-cart-items__row {
  display: flex;
}
.wc-block-components-product-metadata {
  font-size: 0.875rem !important;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.43;
  color: var(--dark-grey);
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
  font-size: 1.75em !important;
  font-weight: 700;
}
.wc-block-components-product-name {
  font-size: 1.75em !important;
  font-weight: 700;
  text-decoration: none !important;
  color: var(--dark-green) !important;
}
.is-large.wc-block-cart .wc-block-cart-items th {
  padding: 0 !important;
}
.wc-block-cart table.wc-block-cart-items td {
  margin: 0 !important;
}
.is-large.wc-block-cart .wc-block-cart-items td.wc-block-cart-item__image {
  width: 26%;
  padding: 24px 24px 24px 0 !important;
}

.is-large.wc-block-cart .wc-block-cart-items td.wc-block-cart-item__product {
  width: 50%;
}

.is-large.wc-block-cart .wc-block-cart-items td.wc-block-cart-item__total {
  width: 24%;
  padding: 24px 0 24px 0 !important;
}
.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
  font-size: 1.05rem !important;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem !important;
  color: #8a9194 !important;
  background-color: #d9d9d9 !important;
  width: 100%;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item
  .wc-block-components-totals-item__value {
  font-size: 1.45rem !important;
  font-weight: 700;
  color: var(--green);
}
.wc-block-components-button:not(.is-link) {
  background-color: var(--green);
  color: #ffffff;
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: 600;
}
.wc-block-components-button:not(.is-link):hover {
  background-color: var(--green);
  opacity: 0.8;
}
@media (min-width: 66.4989em) {
  .storefront-align-wide.page-template-template-fullwidth-php
    .hentry
    .entry-content
    .alignwide,
  .storefront-align-wide.storefront-full-width-content
    .hentry
    .entry-content
    .alignwide {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.is-large .wp-block-woocommerce-checkout-order-summary-block {
  background-color: var(--white);
}

/* ----- If Cart Is Empty ------- */

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
  display:none !important;
}
.editor-styles-wrapper .wc-block-cart__empty-cart__title, 
.wc-block-cart__empty-cart__title {
  font-size: 2rem !important;
}

/*--------------------------------------------------------------
# Who We Are
--------------------------------------------------------------*/

#sec_who_we_are {
  margin: 5rem 0;
}

#sec_who_we_are .who_we_are_container {
  width: 90%;
  max-width: 1200px;
  background-color: #1e2536;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin: auto;
  padding: 3.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  margin-top: -30px;
}

#sec_who_we_are .who_we_are_text {
  width: 100%;
}

#sec_who_we_are .who_we_are_img {
  width: 0%;
}

/*--------------------------------------------------------------
# Who We Are Cards
--------------------------------------------------------------*/

.who_we_are_card-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 2rem auto;
}

.who_we_are_card {
  position: relative;
  background: var(--dark-green);;
  padding: 60px 40px 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}

.who_we_are_card-icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.who_we_are_card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.who_we_are_card-title {
  margin-top: 12px;
  margin-bottom: 18px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green);
}

.who_we_are_card p{
  font-size: 1rem;
  color: var(--white);
  margin-top: 10px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Home Sports Tours
--------------------------------------------------------------*/

#sec_home_sports_tours_list {
  padding: 1rem 0;
}
#sec_home_sports_tours_list .home_sports_tours_list_container {
  width: 90%;
  max-width: 1200px;
  padding: 1.5rem 0 0;
  text-align: center;
  margin: auto;
}
#sec_home_sports_tours_list .who_we_are_text {
  width: 70%;
}
#sec_home_sports_tours_list .who_we_are_img {
  width: 30%;
}
.grid-container {
  display: flex;
  flex-direction: row;
}
.grid-item {
  padding: 3.5em 1em;
  display: flex;
  flex-direction: row;
  grid-gap: var(--gutter) 0;
}
.main {
  width: 100%;
  padding: 0;
}
.items {
  width: 100%;
  transition: all 0.5s;
  transform: scale(0.98);
  cursor: grab;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  padding-bottom: calc(0.75 * var(--gutter));
  margin-bottom: calc(-0.25 * var(--gutter));
}
.items::-webkit-scrollbar {
  display: none;
}
.items {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.items:before,
.items:after {
  content: "";
}
.items.active {
  background: rgba(255, 255, 255, 0.3);
  cursor: grab;
  transform: scale(1);
  scroll-snap-type: none;
}
.item {
  background: #ffffff;
  min-height: 250px;
  min-width: 400px;
  width: 30%;
  margin: 1em;
  scroll-snap-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.item .item_content {
  padding: 0.6rem 2rem 2rem;
}

.item .img {
  width: 100%;
  height: 200px;
  background-color: #777777;
  display: block;
  background-size: cover;
  background-position: center;
}

.item .item_content h4 {
  color: #777777;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
}

.item .item_content h2 {
  text-transform: capitalize;
  font-size: 1.75rem;
  margin: 1rem 0;
}

.item .item_content .home-package-exerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item .item_content .btn {
  padding: 1rem 0;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin-top: 1rem;
  font-size: 1.15rem;
  transition: color 0.5s ease;
}

.item .item_content .btn:hover {
  color: var(--yellow);
}

.drag_animation_wrapper {
  display: none;
  flex-direction: row;
  margin: auto;
  width: 220px;
  padding: 0.2rem 0.7rem;
  border-radius: 500px;
  -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
}

.drag_animation_wrapper .left_arrow,
.drag_animation_wrapper .right_arrow {
  width: 30px;
  font-size: 1.5rem;
  color: #ced4da;
}

.drag_animation_wrapper .left_arrow {
  text-align: left;
}

.drag_animation_wrapper .right_arrow {
  text-align: right;
}

.drag_animation_wrapper .drag_animation_container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drag_hand {
  position: absolute;
  display: block;
  position: absolute;
  animation: ease-in-out infinite alternate;
  animation-name: run;
  animation-duration: 1.2s;
  width: 30px;
  height: 30px;
  opacity: 0.4;
}

@keyframes run {
  0% {
    left: 0;
    transform: translateX(0);
  }
  100% {
    left: 100%;
    transform: translateX(-100%);
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

#sec_home_gallery {
  padding: 2rem 0;
}

#sec_home_gallery .home_sports_tours_gallery_container {
  width: 90%;
  max-width: 1200px;
  text-align: center;
  margin: auto;
  padding-bottom: 3.5rem;
}

#sec_home_gallery .portfolio-item {
  width: 25%;
}

#sec_home_gallery #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
}

#sec_home_gallery #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #555555;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 10px 4px;
  background: whitesmoke;
  border-radius: 4px;
}

#sec_home_gallery #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #7cc576;
  color: #fff;
}

#sec_home_gallery #portfolio-flters li:last-child {
  margin-right: 0;
}

#sec_home_gallery .portfolio-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#sec_home_gallery .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

#sec_home_gallery .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

#sec_home_gallery .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sec_home_gallery .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

#sec_home_gallery .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

#sec_home_gallery .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

#sec_home_gallery .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

#sec_home_gallery .portfolio-wrap .portfolio-links a:hover {
  color: #7cc576;
}

#sec_home_gallery .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

#sec_home_gallery .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

#home_gallery .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

#sec_home_gallery .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #7cc576;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #7cc576;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.product_container {
  width: 90%;
  max-width: 1200px;
  text-align: left;
  margin: auto;
  padding: 1rem 0;
}

.package_wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.product_item {
  background: var(--dark-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 0 4px rgb(0 0 0 / 10%);
  overflow: hidden;
  width: 49%;
  margin-bottom:2rem;
}

.package_item {
  background: var(--dark-green);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  box-shadow: 0 0 4px rgb(0 0 0 / 30%);
  overflow: hidden;
  width: 32.5%;
  position: relative;
}

.packageComingSoon{
  position: absolute;
  display:none;
}

.packageComingSoon.packageDisabled{
  display:flex;
  flex-direction: column;
  width: 100%;
  height: 60%;
  background-color:#264653d5;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9;
  bottom: 0;
}

.packageComingSoon h4{
  color: var(--yellow);
  text-align: center;
  font-weight: 400;
}
.packageComingSoon h4 span{
  display:block;
  font-weight: 700;
}

.package_wrapper .product_item > a:first-child,
.package_wrapper .package_item > a:first-child{
  aspect-ratio: 5/4;
  overflow: hidden;
}
.product_thumbnail {
  aspect-ratio: 1 / .8;
  overflow: hidden;
  width: 100%;
  background-size: cover;
}
.product_item .product_thumbnail img{
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}
.package_wrapper .product_item a,
.package_wrapper .package_item a {
  text-decoration: none;
  transition: color 0.5s ease;
}

.package_wrapper .product_item a:hover,
.package_wrapper .package_item a:hover {
  color: var(--yellow);
}

.product_item img,
.package_item img {
  width: 100%;
  height: auto;
}

.packageImage{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.packageImage img{
  object-fit: cover;
  object-position: center;
  display: block;
  width: 100%;
  height: 100%;
}

.package_item .icon-box {
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.product_item .icon-box {
  padding: 0;
  display: flex;
  flex-direction: column;
  width:100%;
}

.package_item h3 {
  font-size: 1.2rem;
  text-align: left;
  color: var(--white);
  margin: 0;
  border-bottom: 1px solid var(--green);
  padding-bottom: 0.75rem;
  margin-bottom: 0.74rem;
}

.product_item h3 {
  line-height: 1.2;
  font-size: 1.05rem;
  text-align: left;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}
.product_item h4 {
  text-align: left;
  margin: 0;
}

.product_item h6,
.package_item h6 {
  font-size: 0.85rem;
}

.product_item .description,
.package_item .description {
  margin-bottom: 1rem;
}

.product_item .excerpt-limited,
.package_item .excerpt-limited {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.package_item .package-price-wrapper {
  background-color: var(--dark-green);
  padding: 1.255rem 1.25rem;
  width: 100%;
  color: var(--white);
}

.product_item .package-price-wrapper {
  background-color: var(--dark-green);
  width: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
}

.package_item .package-price-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.product_item .package-price-inner{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.75rem;
  background-color: var(--dark-green);
}

.package-price-left {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.package-price-left-top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.package-price-left h5,
.package-price-left h6 {
  color: #ffffff;
  text-align: left;
  margin: 0.24rem 0;
}

.package-price-left h6 {
  font-size: 1.15rem;
  /* min-height: 40px; */
}

.package-price-left h5 {
  font-size: 0.95rem;
}

.package-price-left span {
  text-align: left;
  font-size: 24px;
}

.package-price-wrapper p {
  text-align: left;
  border-top: 1px solid var(--green);
  margin-top: 1.5rem;
  padding-top: 1rem;
  margin-bottom:0;
}

.package-price-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.package-nights {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 8px;
  border: 1px solid var(--green);
}

.package-nights i {
  font-size: 1.75rem;
  opacity: 0.4;
  margin-bottom: 0.25rem;
}

.package-nights span {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: capitalize;
}

.product_item .woocommerce-Price-amount.amount,
.package_item .woocommerce-Price-amount.amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  width: 100%;
  text-align: left;
  line-height: 1;
}

.product_item .btn,
.package_item .btn,
.single_add_to_cart_button {
  padding: 1.25rem 0;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background-color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  width: 100%;
  display: block;
  font-size: 0.95rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.product_item .btn:hover,
.package_item .btn:hover {
  opacity: 0.9;
}

.package_item .bottom_items {
  margin-top: auto;
}

/* .product_item bdi:after,
.package_item bdi:after {
  content: "/pp";
  font-size: 1.2rem;
} */

#sec_product_package_single {
  padding-top: 3rem;
}

.related.products,
.storefront-product-pagination,
.product_meta,
.edit-link,
#tab-title-description {
  display: none;
}

.product_item .icon-box form{
    position:relative;
 }

/*--------------------------------------------------------------
# Guest Selector
--------------------------------------------------------------*/

.guest-selector-wrapper{
  display:flex;
  align-items:center;
}

.guest-selector-wrapper h5{
  margin-right:8px;
  font-weight: 400;
}

.variation-guest-selector{
  border: 1px solid var(--green);
  border-radius:4px;
  overflow: hidden;
}

.variation-guest-selector .guest-count{
  width:32px;
  text-align: center;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
}

.variation-guest-selector button{
  text-align: center;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  width: 40px;
  height: 30px;
}

.variation-guest-selector button:hover{
  background-color: var(--hover);
}

/*----------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
# Single Product Page
------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------*/

#single_product_package {
  margin-top: 4rem;
}
.package-details-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
}
.package-details-left {
  /* width: 60%; */
  width: 100%;
  text-align: left;
}
.package-details-right {
  /* width: 35%; */
  width: 100%;
  text-align: left;
}
.package-info-wrapper{
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey);
  border-top: 1px solid var(--grey);
  padding-top: 1.75rem;
}

.single_product_content{
  text-align:left;
  margin-bottom: 2rem;
}

.variation-select.select{
  padding: .5rem .25rem;
    border: none;
}

.mfp-bg {
  background: var(--dark-green);
  opacity: .9;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*--------------------------------------------------------------
# Package Highlights
--------------------------------------------------------------*/

.package-highlights-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 10px;
  border-top: 1px solid var(--grey);
  padding: 1.75rem 0;
}
.package-details-left h3 {
  text-align: left;
}
.package-highlight {
  display: flex;
}
.package-highlight > i {
  font-size: 2rem;
  margin-right: 1rem;
  /* color: var(--green); */
  color: #d2d2d2;
}
.package-highlight > div {
  text-align: right;
  margin-right:8px;
}
.package-highlight h5 {
  margin: 0 0 0.25rem;
  line-height: 0.75;
}

/*--------------------------------------------------------------
# Package Description
--------------------------------------------------------------*/

.package-description {
  text-align: left;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.package-included,
.package-not-included {
  width: 45%;
}

.package-description h4 {
  margin: 0 0 0.25rem;
}

.package-description ul {
  margin-bottom: 1.75rem;
}

/*--------------------------------------------------------------
# Package Description
--------------------------------------------------------------*/

.price-card {
  border: 1px solid rgb(221, 221, 221);
  border-radius: 4px;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 9px;
  width: 100%;
  margin-bottom: 1rem;
  background-color: #fafafa;
}

/*--------------------------------------------------------------
# Package Itinerary
--------------------------------------------------------------*/

.package-itinerary {
  width: 100%;
}

.package_itinerary_days_wrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
}

.package-itinerary h4 {
  margin: 0 0 1.25rem;
}

.day-wrapper{
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgb(221, 221, 221);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 9px;
}

.day-title {
  background-color: var(--dark-green);
  color: var(--yellow);
  width: 100%;
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.day-activity {
  padding: 1.5rem 1.5rem 2rem;
  background-color: #fafafa;
  height: 100%;
}

/*--------------------------------------------------------------
# Package Price
--------------------------------------------------------------*/

.price-room-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.price-card {
  width: 49%;
}

.price-card h5,
.price-card h2 {
  margin: 0;
}

.price-card h2 {
  font-size: 1.45rem;
}

.price-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--grey);
  padding-bottom: 0.5rem;
}

.price-option p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.price-image div {
  background-size: cover;
  background-position: center;
  width: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 9;
}

.price-details {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-details .package-highigh-variable {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0.75rem;
  border-bottom: 1px solid var(--grey);
}

.price-details .package-highigh-variable .package-highlight {
  width: 50%;
}

.price-details .package-highigh-variable .package-highlight > i {
  font-size: 1rem;
  margin-right: 0.5rem;
}

.price-details .package-highigh-variable .package-highlight h5 {
  color: #aaaaaa;
  font-size: 0.75rem;
}

.price-details .package-highigh-variable .package-highlight p {
  margin: 0.2rem 0;
  font-weight: 700;
  color: var(--dark-green);
}

.price-details form {
  margin-top: auto;
}

.price-option {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-option:last-child {
  border-bottom: 0 solid var(--grey);
}

.price-countdown-wrapper {
  width: 100%;
  text-align: center;
  padding: 2rem 0.75rem;
  border: 2px solid var(--grey);
  border-radius: 4px;
  color: var(--dark-green);
  background-color: #fafafa;
}

.price-countdown-wrapper h6 {
  margin: 0;
  color: var(--dark-green);
}

.price-countdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 250px;
  margin: auto;
  font-weight: 600;
  font-size: 1.25rem;
}

.price-countdown span {
  color: var(--dark-green);
}

.price-countdown span:nth-of-type(even) {
  font-weight: 200;
  color: var(--green);
}

/*--------------------------------------------------------------
# Package Set Dates 
--------------------------------------------------------------*/

.variation-set-dates {
  position: relative;
  width:100%;
  padding: 20px 0;
}
.variation-set-dates h5 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  color: var(--light-grey);
}
.set_date_error {
  display: none;
  color: var(--yellow);
  font-size: 0.75rem;
  position: absolute;
  bottom: -20px;
  width: 100%;
  text-align: center;
}
.set_date_list_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.set_date_item{
  border: 2px solid #2a7372;
  border-radius: 8px;
}
.set_date_label {
  font-size: 1.05rem;
  font-weight: 600;
  width: 100%;
  border: 1px solid var(--green);
  background-color: var(--dark-green);
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  padding: 1rem .2rem;
  color: var(--light-grey);
  background-color: rgba(42, 147, 136, 0.114);
  border: 1px solid rgba(43, 156, 142, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out,
    border 0.1s ease-in-out;
    position: relative;
    overflow: hidden;
}
.set_date_label:hover {
  background-color: rgba(43, 156, 142, 0.3);
  color: var(--yellow);
}
.set_date_input:checked + .set_date_label {
  background-color: var(--white);
  color: var(--green);
  border: 1px solid var(--green);
}
.set_date_label i {
  margin-right: 0.5rem;
}
.set_date_input {
  display: none;
}

.disabled-btn {
  opacity: 0.5;
}

.set_date_label.sold-out {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(67, 160, 71, 0.1);
  color: #43a047;
  border: 1px solid rgba(67, 160, 71, 0.2);
}
.set_date_input[disabled] + .set_date_label {
  opacity: 1;
  cursor: not-allowed;
  pointer-events: none;
}

.set_date_label.sold-out small{
  position: absolute;
  color: var(--green);
  z-index: 9;
  background-color: #264653d9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tour Countdown Styles */
.tour-countdown {
  margin-top: 0;
  text-align: center;
}

.tour-countdown .countdown-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
}

.tour-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  width: 100%;
  padding: 4px 8px;
  border-radius: 0 0 4px 4px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-status i {
  font-size: 0.75rem;
}

.tour-status.countdown {
  background-color: rgba(43, 156, 142, 0.1);
  color: var(--green);
  border: 1px solid rgba(43, 156, 142, 0.2);
}

.tour-status.countdown .days-count {
  font-weight: 600;
  color: var(--green);
}

.tour-status.starting-today {
  background-color: rgba(244, 132, 95, 0.1);
  color: var(--orange);
  border: 1px solid rgba(244, 132, 95, 0.2);
  animation: pulse 2s infinite;
}

.tour-status.in-progress {
  background-color: rgba(67, 160, 71, 0.1);
  color: #43a047;
  border: 1px solid rgba(67, 160, 71, 0.2);
  background-color: rgba(43, 156, 142, 0.1);
  color: var(--green);
  border: 1px solid rgba(43, 156, 142, 0.2);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive adjustments for countdown */
@media (max-width: 768px) {
  
  .tour-status {
    font-size: 0.75rem;
    padding: 8px 6px;
  }
  
  .tour-status i {
    font-size: 0.7rem;
  }
}

/*--------------------------------------------------------------
# Package Google Map
--------------------------------------------------------------*/

#map-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loadingCog {
  position: absolute;
  font-size: 2rem;
  color: var(--dark-green);
}

#map {
  width: 100%;
  height: 400px;
}

.acf-map {
  width: 100%;
  height: 600px;
  border: #ccc solid 1px;
  margin: 20px 0 0;
}

.acf-map img {
  max-width: inherit !important;
}

/*--------------------------------------------------------------
# Package Related Products
--------------------------------------------------------------*/

.related-products-wrapper {
  /* border-top: 1px solid var(--grey);
  padding-top: 2rem; */
  margin-top: 2rem;
}
.related-products-wrapper h3 {
  margin: 0 0 0.5rem 0;
}
.related-products-wrapper ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.related-products li {
  margin-bottom: 0.5rem;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 3px;
  padding: 14px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 9px;
  width: 100%;
  background-color: #fafafa;
  transition: box-shadow 0.5s ease;
  width: 48%;
}
.related-products li:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0 0;
}
.related-products li a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  transition: opacity 0.5s ease;
}
.related-products li a:hover {
  opacity: 0.7;
}
.related-products li a .related-product-img {
  width: 100%;
  max-width: 30%;
}
.related-products li a .related-product-img img {
  height: auto;
}
.related-products-details {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding: 0.5rem 0 0.5rem 1rem;
}
.related-products-details h4 {
  margin: 0;
}
.related-products-details .price {
  color: var(--dark-green);
}
.related-products-details p {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--dark-green);
  margin-top: 0.5rem;
}

/*--------------------------------------------------------------
# Product Gallery
--------------------------------------------------------------*/

.product-gallery-wrapper {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}

.single_product_heading-wrapper {
  display: flex;
  flex-direction:column;
  justify-content: space-between;
}

.single_product_heading {
  text-align: left;
  display:flex;
  justify-content: space-between;
}

.product-title {
  margin: 0;
  font-size: 1.5rem;
  color:var(--green)
}

.product-venue {
  margin: 0;
  font-size: 1.95rem;
  line-height: 1;
}

.package-share {
  text-transform: uppercase;
  color: #bbbbbb;
  font-weight: 700;
  font-size: 14px;
}

ul.share-socials {
  display: flex;
}

ul.share-socials li {
  width: 25px;
  margin: 0 3px;
  opacity: 0.5;
}

.first-product-image,
.product-gallery {
  width: 50%;
}

.first-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.first-product-image {
  margin-right: 10px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns: first is 1fr, second is 1fr (equal size) */
  grid-template-rows: repeat(2, 1fr);
  gap: 8px; /* Adjust the gap between images as needed */
}

.product-gallery > div,
.first-product-image > div {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure images maintain aspect ratio */
}

/*--------------------------------------------------------------
# Check Out
--------------------------------------------------------------*/

.is-large .wc-block-checkout__sidebar {
  top: 116px !important;
}

.wc-block-checkout__terms span.wc-block-components-checkbox__label{
  display:none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

#sec_contact_form {
  background-color: var(--green);
  color: var(--white);
}

#sec_contact_form .contact_form_container {
  width: 90%;
  max-width: 1200px;
  padding: 3.5rem;
  text-align: left;
  margin: auto;
}

#sec_contact_form .form_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#sec_contact_form .form_wrapper .form-left,
#sec_contact_form .form_wrapper .form-right {
  width: 48%;
}

#sec_contact_form .contact_form_container h1 {
  color: #ffffff;
}

#sec_contact_form .contact_form_container .form_left,
#sec_contact_form .contact_form_container .form_right {
  width: 48%;
  display: flex;
  flex-direction: column;
}

#sec_contact_form .contact_form_container .form_group {
  width: 100%;
  margin-bottom: 1rem;
}

#sec_contact_form .contact_form_container .form_group label {
  text-transform: uppercase;
  font-weight: 400;
}

#sec_contact_form .contact_form_container .form_input,
#sec_contact_form .contact_form_container .submit {
  position: relative;
  margin-bottom: 0;
  display: block;
  width: 100%;
  padding: 0.775rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#sec_contact_form .contact_form_container .submit {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border: 3px solid #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
}

#sec_contact_form .contact_form_container .textarea_group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#sec_contact_form .contact_form_container textarea {
  height: 100%;
}

#sec_contact_form .contact_form_container .submit_group {
  margin-top: auto;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/

#sec_contact_form .wpforms-field-label,
#sec_contact_form div.wpforms-container-full .wpforms-field-sublabel,
#sec_contact_form div.wpforms-container-full .wpforms-field-description {
  color: #ffffff;
}

#sec_contact_form .wpforms-field-label {
  margin-bottom: 5px;
}

#sec_contact_form div.wpforms-container-full .wpforms-form em.wpforms-error,
#sec_contact_form .wpforms-container .wpforms-required-label {
  color: var(--yellow);
}

#sec_contact_form
  div.wpforms-container-full
  .wpforms-form
  em.wpforms-error:before {
  background-color: var(--yellow);
}

#sec_contact_form .wpforms-field input,
#sec_contact_form .wpforms-field select,
div.wpforms-container-full
  .wpforms-form
  .wpforms-field.wpforms-field-select-style-modern
  .choices
  .choices__inner {
  height: 60px;
}

#sec_contact_form
  div.wpforms-container-full
  .wpforms-form
  .wpforms-field
  input.wpforms-error,
#sec_contact_form .wpforms-container .wpforms-field textarea.wpforms-error {
  border: 3px solid var(--yellow);
}

#sec_contact_form div.wpforms-container-full .wpforms-form em.wpforms-error {
  margin-top: 5px;
}

#sec_contact_form .wpforms-container .wpforms-field {
  padding: 6px 0;
}

#sec_contact_form div.wpforms-container-full button[type="submit"] {
  width: 100%;
  height: 50px;
  background-color: var(--dark-green);
  text-transform: uppercase;
  font-weight: 700;
}

div.wpforms-container-full .wpforms-confirmation-container-full {
  background: none !important;
  border: 0 solid #b4d39b !important;
  color: #ffffff !important;
}
div.wpforms-container-full .wpforms-confirmation-container-full p {
  color: #ffffff !important;
}
div.wpforms-container-full .wpforms-confirmation-container-full h2 {
  color: var(--white) !important;
  font-size: 1.95rem;
  margin: 4px 0;
}
div.wpforms-container-full .wpforms-confirmation-container-full h2 span {
  color: var(--yellow) !important;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Coming Soon
--------------------------------------------------------------*/

.coming-soon-container {
  text-align: center;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
.coming-soon-container .coming-soon-content {
  margin-top: -4rem;
}
.coming-soon-container .coming-soon-content h1 {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 0;
}
.coming-soon-container .coming-soon-content p {
  font-size: 1.2rem;
  color: #ffffff;
}
.coming-soon-container .btn-back {
  padding: 1rem 0;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  width: 100%;
  max-width: 400px;
  display: block;
  margin: auto;
  margin-top: 1rem;
  font-size: 1.15rem;
  transition: color 0.25s ease-in-out;
}
.coming-soon-container .btn-back:hover {
  color: var(--yellow);
}

/*--------------------------------------------------------------
# My Account Page
--------------------------------------------------------------*/

.myAccountPage h2{
  border-bottom: 1px solid var(--grey);
}

.dashboardWrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.dashboardWrapper nav{
  width: 20%;
}

.dashboardWrapper table{
  width:100%;
}

.woocommerce-MyAccount-navigation ul{
  list-style:none;
  width: 100%;
  background-color:var(--white);
  padding:8px;
}

.woocommerce-MyAccount-navigation ul li{
  padding:14px;
  border-bottom:1px solid var(--light-grey); 
}

.woocommerce-MyAccount-navigation ul li a{
  text-decoration:none;
  color:var(--dark-green);
  font-weight:500;
}

.woocommerce-MyAccount-content{
  width:75%;
}

.dashboardWrapper input,
.woocommerce-ResetPassword input{
  width: 100%;
  border: 1px solid var(--green);
  background-color: var(--white);
  border-radius: 4px;
  font-size: 20px;
  padding: 0.5rem 1rem;
  color: var(--dark-grey);
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out, border 0.1s ease-in-out;
}

.dashboardWrapper button.button,
.woocommerce-ResetPassword button.button{
  padding: 1.25rem 0;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background-color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  width: 100%;
  display: block;
  font-size: 0.95rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
}

.show-password-input{
  margin-left: 5px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 10%;
  right: 0 !important;
  color: var(--dark-green) !important;
  border: 1px solid var(--green) !important;
  border-radius: 4px !important;
  background-color: var(--white) !important;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out, border 0.1s ease-in-out;
}

.woocommerce-form-login__rememberme{
  display: flex;
  flex-direction: row;
  width: 100%;
}

form.login button.woocommerce-form-login__submit,
form.register .woocommerce-form-register__submit{
    padding: 1rem 0;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
    display: block;
    margin-top: 1rem;
    font-size: 1.15rem;
    transition: color 0.5s ease;
}
form.login button.woocommerce-form-login__submit:hover,
form.register .woocommerce-form-register__submit:hover{
  color: var(--yellow);
  background-color: var(--green);
  opacity:.9;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
    width: 100%; 
}

#rememberme{
  width: auto !important;
  height: auto !important;
}

/* =================================================================================== */
/* ===================================== Have Questions ============================== */
/* =================================================================================== */

.faq {
  padding: 0 0 24px;
  text-align: center;
}

.faqIntro{
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ffffff;
}

.faqAccordion {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.faqAccordionItem {
  border-bottom: 1px solid #fff;
}

.faqAccordionHeader {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: unset;
}

.faqAccordionHeader h3 {
  font-size: 20px;
  margin: 0;
}

.faqAccordionHeader h4 {
  font-size: 20px;
  margin: 0;
  color: var(--dark-green);
  line-height: 1.5;
}

.faqAccordionHeader:hover h4,
.faqAccordionHeader:hover .faqAccordionIcon{
  color: var(--green);
}

.faqAccordionIcon {
  font-size: 30px;
  color: var(--main-purple-colour);
  transition: transform 0.3s ease;
}

.faqAccordionItem.open .faqAccordionIcon {
  transform: rotate(45deg);
}

.faqAccordionItem.open h4,
.faqAccordionHeader.open .faqAccordionIcon{
  color: var(--green);
}

.faqAccordionContent {
  max-height: 0;
  padding: 0 24px 0 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faqAccordionContent p {
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Thank You Page
--------------------------------------------------------------*/

.woocommerce-thankyou-order-received{
  font-size: 2rem;
}

.woocommerce-order .order_details{
  list-style: none;
  font-size: 1rem;
}

.woocommerce-thankyou-order-received{
  font-size:2rem
}

.customer-name{
  font-weight:600;
  color:var(--dark-green)
}

.woocommerce-order {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.woocommerce-order > :nth-child(1),
.woocommerce-order > :nth-child(2) {
  flex: 1 1 100%;
}

.woocommerce-order > :nth-child(3),
.woocommerce-order > :nth-child(4) {
  flex: 1 1 48%;
}

.order_item .product-name .wc-item-meta{
  list-style:none;
}

.woocommerce-order-details,
.woocommerce-customer-details{
  display: none;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
  background-color: #1e2536;
  border-bottom: 3rem solid var(--green);
  margin-top: auto;
}
footer .footer_container {
  width: 90%;
  max-width: 1200px;
  padding: 3.5rem;
  text-align: left;
  margin: auto;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

footer .footer_container .footer_left {
  width: 40%;
}

footer .footer_container .footer_middle {
  width: 20%;
}

footer .footer_container .footer_right {
  width: 30%;
}

footer .footer_container .footer_right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footerLogo {
  max-width: 220px;
}

footer .footer_container h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

footer .footer_container .footer_contact_details {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1rem;
}

footer .footer_container .footer_contact_details h5 {
  margin: 0;
}

footer .footer_container .footer_contact_icon {
  width: 10%;
  margin-right: 10px;
}
footer .footer_container .footer_contact_text {
  width: 80%;
}

footer .footer_container .footer_middle .quick_links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0.75rem;
  padding-bottom: 0.55rem;
}

footer .footer_container .footer_middle .quick_links li a {
  text-transform: capitalize;
  text-decoration: none;
  color: var(--white);
}

footer .footer_container .footer_right .copyright {
  margin-top: 1rem;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Socials
--------------------------------------------------------------*/

#sec_socials {
  position: fixed;
  display: flex;
  border-bottom: 1.5rem solid #ffffff;
  margin-top: auto;
  z-index: 99;
  bottom: 0;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#sec_socials .socials_container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

#sec_socials .socials_container .socials_icon_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row;
  background-color: #ffffff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 1rem 1rem 0;
  position: absolute;
  bottom: -1px;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#sec_socials .socials_container .socials_icon_wrapper:before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/round-corner-left.svg);
  position: absolute;
  left: -29px;
  bottom: 0;
}

#sec_socials .socials_container .socials_icon_wrapper:after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/round-corner-right.svg);
  position: absolute;
  right: -29px;
  bottom: 0;
}

#sec_socials .socials_container .socials_icon_wrapper ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
}
#sec_socials .socials_container .socials_icon_wrapper ul li {
  width: 34px;
  margin: 0 4px;
}

#sec_socials .white_border_bottom {
  width: 100%;
  height: 3rem;
  background-color: #ffffff;
  position: absolute;
}

/*--------------------------------------------------------------
# Privacy and Terms
--------------------------------------------------------------*/

.privacy-content h2 {
  margin: 1rem 0 0;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */

/*--------------------------------------------------------------
----------------------------------------------------------------
----------------------------------------------------------------
Media Queries
--------------------------------------------------------------
--------------------------------------------------------------
--------------------------------------------------------------*/
@media screen and (max-width: 1900px) {
  .header_container {
    width: 100%;
    max-width: 92%;
  }
  #single_product_package,
  article {
    margin-top: 9rem;
  }
}

@media screen and (max-width: 1220px) {

  .set_date_label {
    font-size: .95rem;
  }
  .package-price-wrapper p {
    margin-top: .75rem;
  }
  .product_item .package-price-inner {
    padding: 0 0 0;
  }
}

@media screen and (max-width: 1169px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0.75rem 0 1.25rem;
  }
  .header_container nav.shrink {
    margin-top: 0px;
  }
  .cd-hero__nav {
    height: 0px;
  }
  .header_container nav ul#site-header-cart {
    margin: 0 0 0 auto;
  }

  /* ------------------------------------------------------------
-------------------------- Home Page --------------------------
-------------------------------------------------------------- */

  #sec_who_we_are .who_we_are_container {
    padding: 2rem;
    width: 80%;
  }
  .header_container .logo_container.shrink {
    width: 180px;
    padding: 1rem 2rem;
  }
  .header_container nav ul#main_nav {
    font-size: 0.85rem;
  }
  .item .item_content {
    padding: 0.6rem 1.25rem 1.65rem;
  }
  .item .item_content h4 {
    margin-bottom: 0.75rem;
  }
  #sec_home_gallery .portfolio-wrap {
    aspect-ratio: 1 / 1;
    margin: 0;
  }

    /* ------------------------------------------------------------
-------------------------- Who We Are Cards --------------------------
-------------------------------------------------------------- */

  .who_we_are_card {
    padding: 60px 20px 30px 20px;
    max-width: 300px;
  }

  /* -------------------------------------------------------------
-------------------------- Tours Page --------------------------
-------------------------------------------------------------- */
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 1024px) {
  body {
    font-size: 0.75rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 0.75rem;
  }
  h6 {
    font-size: 0.75rem;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0.75rem 0 1rem;
  }
  #single_product_package {
    margin-top: 7rem;
  }
  .price-card h2 {
    font-size: 1.125rem;
  }
  .highlight h5 {
    font-size: 0.55rem;
  }
  .price-details .package-highigh-variable .package-highlight > i {
    font-size: 0.75rem;
    margin-right: 0.2rem;
  }
  .price-countdown {
    width: 200px;
    font-size: 1.25rem;
  }
  .header_container .logo_container {
    width: 170px;
    padding: 0.5rem 1rem;
  }
  .header_container .logo_container.shrink {
    width: 130px;
    padding: 0.5rem 1rem;
  }
  .header_container nav ul#site-header-cart {
    margin: 0px 0 0px auto;
    font-size: 0.85rem;
  }
  .cd-hero__nav {
    height: 0px;
  }
  .cd-hero__nav {
    bottom: 70px;
  }
  article{
    margin-top:8rem;
  }


  /* ------------------------------------------------------------
-------------------------- Home Page --------------------------
-------------------------------------------------------------- */

  #sec_who_we_are .who_we_are_container {
    padding: 2rem;
  }
  #sec_home_gallery .portfolio-wrap {
    aspect-ratio: 1 / 1;
    margin: 0;
  }

  /* -------------------------------------------------------------
-------------------------- Tours Page --------------------------
-------------------------------------------------------------- */

 

}

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
  .header_container {
    max-width: 98%;
  }
  article{
    width: 95%;
  }
  .product_container {
    width: 95%;
  }
  .package-nights span {
    font-size: 0.75rem;
  }
  .product_item .woocommerce-Price-amount.amount,
  .package_item .woocommerce-Price-amount.amount {
    font-size: 1.75rem;
  }
  .package-price-left h5 {
    font-size: 0.85rem;
  }
  .set_date_list_wrapper {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
  body {
    font-size: 0.85rem;
  }
  h1 {
    font-size: 1.95rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1rem;
  }
  h5 {
    font-size: 0.95rem;
  }
  h6 {
    font-size: 0.55rem;
  }
  .price-card h2 {
    font-size: 1.45rem;
  }
  .header_container {
    max-width: 94%;
  }
  article{
    width: 90%;
  }
  .price-details .package-highigh-variable .package-highlight p {
    font-size: 1rem;
  }
  .price-details .package-highigh-variable .package-highlight h5 {
    font-size: 0.85rem;
  }
  #sec_contact_form .contact_form_container,
  footer .footer_container {
    width: 100%;
    padding: 2.5rem 3rem;
  }
  .product_container {
    width: 90%;
  }

  /* ------------------------------------------------------------
-------------------------- Home Page --------------------------
-------------------------------------------------------------- */

  #sec_who_we_are .who_we_are_container {
    padding: 1rem 2rem 2rem;
    width: 90%;
  }
  #sec_home_gallery #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 8px 12px 8px;
  }
  .item .item_content h2 {
    font-size: 1.55rem;
    margin: 0.25rem 0;
  }
  .item .item_content .btn {
    font-size: 1rem;
  }

  /* ------------------------------------------------------------
------------------------------- Tours --------------------------
-------------------------------------------------------------- */

  .package_wrapper {
    flex-direction: column;
  }

  .product_item,
  .package_item {
    width: 100%;
    margin-bottom: 2rem;
  }

  .package_wrapper .product_item > a:first-child,
  .package_wrapper .package_item > a:first-child {
    aspect-ratio: 7 / 3;
  }

  .package-price-left h6 {
    min-height: unset;
  }

  .product_item h6,
  .pacakge_item h6 {
    font-size: 1.25rem;
  }
  .product_item .woocommerce-Price-amount.amount,
  .package_item .woocommerce-Price-amount.amount {
    font-size: 2.25rem;
  }

  .package-price-left h5 {
    font-size: 1.15rem;
  }

  .package-price-right {
    width: 15%;
  }

  .product_item .package-price-inner,
  .product_item .icon-box {
    width: 100%;
  }

  .variation-set-dates h5{
    margin-top: 0.75rem;
    border-top: 1px solid var(--green);
    padding-top: 0.75rem;
  }

  .product_thumbnail {
    aspect-ratio: 1 / .6;
  }

  /* ------------------------------------------------------------
---------------------- Package Itinerary ----------------------
-------------------------------------------------------------- */

  .package-highlights-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 2px;
  }
  .package-highlights-wrapper {
    padding-top: 1.45rem;
    padding-bottom: 0.75rem;
  }
  .price-card {
    width: 100%;
    padding: 16px;
  }
  .price-countdown-wrapper {
    padding: 1.5rem 1rem;
  }
  .price-countdown {
    justify-content: space-around;
    width: 100%;
    font-size: 1.05rem;
  }

  .package_itinerary_days_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /*--------------------------------------------------------------
  # Coming Soon
  --------------------------------------------------------------*/

  .coming-soon-container .coming-soon-content h1 {
    font-size: 2rem;
  }
  .coming-soon-container .coming-soon-content p {
    font-size: 1rem;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 661px) {
  /* ------------------------------------------------------------
---------------------- Package Itinerary ----------------------
-------------------------------------------------------------- */

  .price-countdown {
    font-size: 0.95rem;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 600px) {
  .header_container {
    max-width: 100%;
  }
  h1 {
    font-size: 1.75rem;
  }
  .header_container .logo_container {
    width: 140px;
  }
  #sec_contact_form .contact_form_container,
  footer .footer_container {
    padding: 2.5rem 1.75rem;
  }
  .header_container nav ul#main_nav,
  .header_container nav ul#site-header-cart {
    font-size: 0.75rem;
  }
  article{
    margin-top: 7rem;
    width: 95%;
  }
  #hero{
    margin-top: 4rem;
  }

  /* ------------------------------------------------------------
-------------------------- Home Page --------------------------
-------------------------------------------------------------- */

  #sec_who_we_are .who_we_are_container {
    flex-direction: column;
    padding: 1rem 1.75rem 1.75rem;
  }
  #sec_who_we_are .who_we_are_text,
  #sec_who_we_are .who_we_are_img {
    width: 100%;
  }
  #sec_home_gallery #portfolio-flters li {
    padding: 10px 2px 0 2px;
    margin: 0 4px 5px 4px;
  }
  #sec_home_gallery #portfolio-flters li {
    padding: 10px 2px 12px 2px;
    font-size: 12px;
  }
  #sec_contact_form .form_wrapper {
    flex-direction: column;
  }
  #sec_contact_form .contact_form_container .form_left,
  #sec_contact_form .contact_form_container .form_right {
    width: 100%;
  }

/*--------------------------------------------------------------
# Who We Are Cards
--------------------------------------------------------------*/

#sec_who_we_are {
    margin: 1rem 0 3rem;
}

  .who_we_are_card-container {
    gap: 20px;
    margin: 1rem auto;
  }

  .who_we_are_card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .who_we_are_card-icon {
    top: -35px;
    width: 70px;
    height: 70px;
  }

  .who_we_are_card-icon img {
    width: 32px;
    height: 32px;
  }

  .who_we_are_card-title {
    font-size: 1.75rem;
  }

  .who_we_are_card p {
    font-size: 0.95rem;
  }

  /* ------------------------------------------------------------
-------------------------- Package Page --------------------------
-------------------------------------------------------------- */

  #single_product_package {
    margin-top: 6rem;
  }

  .single_product_heading-wrapper {
    margin-bottom: 0;
  }
  .single_product_heading{
    flex-direction:column;
  }
  .single_product_heading h1 {
    margin: 0;
    flex-direction: column;
  }
  .package-share {
    font-size: 10px;
  }
  ul.share-socials li {
    width: 20px;
  }
  .package-details-left,
  .package-details-right {
    width: 100%;
  }
  .package-highlights-wrapper {
    padding-top: 2rem;
  }
  .package-details-right {
    margin-top: 2rem;
  }
  .package-highlight {
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: 100%;
    margin-top: .5rem;
  }
  .package-highlight > div {
    text-align: left;
  }
  .package-highlight > div p{
    margin-bottom:0;
  }
  .package-highlight h5,
  .price-option h5 {
    font-size: 0.85rem;
  }
  .package-description {
    margin-top: 0;
    flex-direction: column;
  }
  .package-highlight.package-dates div p span {
    display: block;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 800;
  }
  .package-included, .package-not-included {
    width: 100%;
  }
  .product_item .package-price-wrapper {
    padding: 1.25rem;
  }

/* ------------------------------------------------------------
------------------------ Package Gallery ------------------------
-------------------------------------------------------------- */

  .product-gallery-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .first-product-image, .product-gallery {
    width: 100%;
  }

  /* ------------------------------------------------------------
----------------------------- Tours -------------------------------
-------------------------------------------------------------- */

  .package_wrapper .product_item > a:first-child,
  .package_wrapper .package_item > a:first-child {
    aspect-ratio: 4 / 3;
  }

  /* ------------------------------------------------------------
---------------------- Package Itinerary ----------------------
-------------------------------------------------------------- */

  .price-countdown {
    max-width: 220px;
  }

  .package_itinerary_days_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .day-activity {
    padding: 1rem 1rem 1rem;
  }

/* ------------------------------------------------------------
---------------------- Product Items ----------------------
-------------------------------------------------------------- */

  .product_item {
    flex-direction: column;
  }
  .product_thumbnail {
    aspect-ratio: 1 / .8;
  }
  .product_item .package-price-wrapper {
    flex-direction: column;
    width:100%;
  }
  .product_item .package-price-inner {
    width: 100%;
  }
  .product_item .icon-box {
    width: 100%;
  }

  /* ------------------------------------------------------------
---------------------- My Account ----------------------
-------------------------------------------------------------- */

  .dashboardWrapper {
    flex-direction: column-reverse;
}

  /* ------------------------------------------------------------
---------------------- FAQ ----------------------
-------------------------------------------------------------- */

.faqAccordionHeader h4 {
  font-size: 16px;
}

  /*--------------------------------------------------------------
  # Coming Soon
  --------------------------------------------------------------*/

  .coming-soon-container .coming-soon-content h1 {
    font-size: 1.75rem;
  }
  .coming-soon-container .coming-soon-content p {
    font-size: 0.75rem;
  }
  .coming-soon-container .btn-back {
    max-width: 320px;
  }

  /* ------------------------------------------------------------
-------------------------- Footer --------------------------
-------------------------------------------------------------- */

  footer .footer_container {
    flex-direction: column;
  }
  footer .footer_container .footer_left,
  footer .footer_container .footer_middle,
  footer .footer_container .footer_right {
    width: 100%;
  }
  .footer_right img {
    max-width: 200px;
    margin-top: 1rem;
  }
  footer .footer_container .footer_right .copyright {
    margin-top: 0;
    font-size: 0.8rem;
    border-top: 0px solid rgba(255, 255, 255, 0.3);
    padding-top: 0.5rem;
  }
  #sec_socials .socials_container .socials_icon_wrapper {
    justify-content: center;
    width: 100px;
    left: 50%;
    margin-left: -50px;
    padding: 0.5rem 1rem 0;
  }
  #sec_socials .socials_container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* ------------------------------------------------------------
-------------------------- Home Page --------------------------
-------------------------------------------------------------- */

  .who_we_are_text h1 {
    margin-bottom: 0.2rem;
  }
  .item {
    min-width: 300px;
  }
  #sec_home_gallery #portfolio-flters li {
    padding: 10px 2px 5px 2px;
  }
  .product_container {
    width: 95%;
  }
  .package_itinerary_days_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .guest-selector-wrapper {
    flex-direction: column;
  }
  .package-price-left h5 {
    font-size: .85rem;
    margin-top: 0;
    margin-right: 0;
  }
  .product_item h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0 0 .25rem;
  }
  .product_item .woocommerce-Price-amount.amount {
    font-size: 1.75rem;
  }
  .package-price-left-top {
    align-items: flex-start;
  }
  .package-price-left-top > div{
    width:50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .package-price-left-top > div:nth-of-type(1){
    height:100%;
    justify-content: space-between;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 450px) {
  .show-password-input {
    width: 15%;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------
-------------------------- WP Auto Terms --------------------------
-------------------------------------------------------------- */

#wpautoterms-bottom-fixed-container {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
}