@font-face {
    font-family: "YouthMedium";
    src: url("../fonts/Youth-Medium.woff2") format("woff2"),
      url("../fonts/Youth-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "YouthRegular";
    src: url("../fonts/Youth-Regular.woff2") format("woff2"),
      url("../fonts/Youth-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "YouthBold";
    src: url("../fonts/Youth-Bold.woff2") format("woff2"),
      url("../fonts/Youth-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }

  :root {
     --primary: #0d50a0;
    --secondary: #5dae42;
    --tertiary: #1d0205;
    --gradient: linear-gradient(90deg, #98c83c 0%, #d2232a 100%);
  }

  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "YouthMedium", sans-serif;
    font-size: 100%;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "YouthBold", sans-serif;
    font-weight: bold;
  }

  strong {
    font-family: "YouthBold", sans-serif;
    font-weight: bold;
  }

  a,
  a:active,
  a:hover {
    text-decoration: none;
    outline: 0;
  }
  a {
    color: #0d6efd;
  }
  img {
    max-width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
  }

  p {
    font-family: "YouthRegular";
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #323232;
    margin-bottom: 15px;
  }

  .column-1 {
    grid-column: span 1;
  }
  .row-1 {
    grid-row: span 1;
  }
  .column-2 {
    grid-column: span 2;
  }
  .row-2 {
    grid-row: span 2;
  }
  .column-3 {
    grid-column: span 3;
  }
  .row-3 {
    grid-row: span 3;
  }
  .column-4 {
    grid-column: span 4;
  }
  .row-4 {
    grid-row: span 4;
  }
  .column-5 {
    grid-column: span 5;
  }
  .row-5 {
    grid-row: span 5;
  }
  .column-6 {
    grid-column: span 6;
  }
  .row-6 {
    grid-row: span 6;
  }
  .column-7 {
    grid-column: span 7;
  }
  .row-7 {
    grid-row: span 7;
  }
  .column-8 {
    grid-column: span 8;
  }
  .row-8 {
    grid-row: span 8;
  }
  .column-9 {
    grid-column: span 9;
  }
  .row-9 {
    grid-row: span 9;
  }
  .column-10 {
    grid-column: span 10;
  }
  .row-10 {
    grid-row: span 10;
  }
  .column-11 {
    grid-column: span 11;
  }
  .row-11 {
    grid-row: span 11;
  }
  .column-12 {
    grid-column: span 12;
  }
  .row-12 {
    grid-row: span 12;
  }

  .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
  }

  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .h-100 {
    height: 100%;
  }

  .mt-48 {
    margin-top: 40%;
  }
  .flex-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .flex-inline::after,
  .flex-inline::before,
  .flex::after,
  .flex::before {
    display: none;
  }
  .flex-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 30px;
    column-gap: 20px;
  }
  .mt-40 {
    margin-top: 40px;
  }

  .mt-5 {
    margin-top: 20px;
  }
  .left-column {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    padding-right: 30px;
  }
  .right-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 300px;
    min-width: 300px;
  }

  .section-sm {
    padding: 40px 0;
  }
  .section-md {
    padding: 50px 0;
  }
  .section-lg {
    padding: 100px 0;
  }
  .ahn-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .ahn-container-xlarge {
    max-width: 1840px;
  }

  .ahn-container-large {
    max-width: 1600px;
  }
  .ahn-container-small {
    max-width: 960px;
  }

  .ahn-container-xsmall {
    max-width: 800px;
    margin: auto;
  }

  .main-navigation {
    background: #136eb8;
  }

  .stickyLogo {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: none;
  }

  .site-header.fixed .main-navigation .stickyLogo {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: block;
  }

  .single-blog .site-header.header-default.fixed .site-branding {
    display: none;
  }

  .stickyLogo img {
    width: 130px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding: 8px 0;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .site-header.fixed .navLeft > div > ul > li > a {
    font-size: 14px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .site-header.fixed .navRight > a {
    font-size: 12px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .navLeft > div > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .navLeft > div > ul > li > a {
    padding: 17px 15px;
    display: block;
    font-size: 15px;
    color: #fff;
  }

  .navRight > a {
    font-size: 14px;
    color: #fff;
    margin-left: 15px;
    display: inline-block;
  }

  .navRight > a:hover,
  .navLeft > div > ul > li > a:hover {
    color: #ffff00;
  }

  /* NavMenu */
  .navLeft > div > ul > li.menu-item-has-children {
    position: relative;
  }
  .navLeft > div > ul > li.menu-item-has-children > a {
    padding-right: 20px;
  }
  .navLeft > div > ul > li i {
    color: #fff;
    font-size: 10px;
    margin-left: 5px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    position: absolute;
    top: 15px;
    right: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .navLeft > div > ul > li:hover i {
    color: #ffff00;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
  }

  .navLeft > div > ul > li > ul {
    position: absolute;
    left: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    width: 250px;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    top: 170%;
    background: #fff;
    -webkit-box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  }
  .navLeft > div > ul > li > ul::after {
    content: " ";
    position: absolute;
    left: 10px;
    top: -7px;
    border-top: none;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #fff;
  }
  .navLeft > div > ul > li:hover > ul {
    top: 100%;
    opacity: 1;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: visible;
    z-index: 1000;
  }

  .navLeft > div > ul > li > ul > li > a {
    border-bottom: 1px solid #eee;
    color: #303030;
    display: block;
    font-size: 15px;
    padding: 14px 20px;
  }

  .navLeft > div > ul > li > ul > li > a:hover {
    color: var(--primary);
  }
  /* NavMenu */

  .site-branding {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .site-branding .custom-logo {
    max-width: 290px;
    padding: 15px 0;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .site-branding .custom-logo-link {
    display: inline-block;
  }

  .site-branding .custom-logo-link:hover .custom-logo {
    filter: none;
  }

  .site-header.fixed .main-navigation {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
  }

  .single .site-header.header-default.fixed .main-navigation {
    position: static;
  }

  .single .site-header.header-default.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
  }
  .header-default .site-branding {
    position: static;
    background: #f3f3f3;
  }
  .header-default .site-branding .custom-logo {
    -webkit-filter: none;
    filter: none;
    max-width: 240px;
  }

  .site-branding .trip__cta__btns {
    display: none;
  }

  .site-header.fixed .default__logo > div:first-child {
    display: none;
  }

  .site-header.fixed .default__logo .header-title {
    padding: 15px 0;
    display: block;
    font-size: 30px;
    line-height: 1.1;
    transition: all 0.3s linear;
  }
  .default__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header-default .navRight > a img {
    width: 18px;
  }

  .header-default .navRight > a {
    font-size: 13px;
    padding: 11px 0;
  }

  .site-header-new .site-branding {
    position: static;
    width: auto;
  }

  .site-header-new .site-branding .custom-logo {
    -webkit-filter: none;
    filter: none;
    width: 200px;
  }
  .site-header-new .navRight > a {
    color: #111;
  }

  .site-header-new .navRight > a img {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }

  .text-center {
    text-align: center;
  }

  .w-20 {
    width: 20%;
  }

  .w-25 {
    width: 25%;
  }

  .w-30 {
    width: 30%;
  }

  .w-33 {
    width: 33.33333%;
  }
  .w-40 {
    width: 40%;
  }
  .w-expand {
    flex: 1;
  }
  .custom__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .custom__grid > div {
    padding-left: 30px;
  }

  .mt-auto {
    margin-top: auto;
  }

  .mt-1 {
    margin-top: 5px;
  }
  .mt-2 {
    margin-top: 16px;
  }

  .d-none {
    display: none;
  }

  .d-block {
    display: block;
  }

  .burger__menu {
    display: none;
  }

  .default__heading,
  .header-title {
    display: inline-block;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -0.03em;
    color: var(--primary);
    font-family: "YouthBold", sans-serif;
    font-weight: bold;
    transition: all 0.3s linear;
  }

  input:not([type="submit"]),
  select,
  textarea {
    width: 100%;
    outline: none;
    font-size: 14px;
    padding: 10px;
    border: none;
    color: var(--text);
    font-weight: 500;
    background: #eeeeee78;
    font-family: "YouthRegular", sans-serif;
    border: 1px solid #11111112;
    border-radius: 5px;
  }
  input[type="checkbox"],
  input[type="radio"] {
    width: auto;
    min-height: auto;
  }

  textarea {
    height: 40px;
    width: 100% !important;
  }
  :focus-visible {
    outline: 2px dotted transparent;
  }
  input:not([type="submit"]):focus,
  select:focus,
  textarea:focus {
    border: 1px solid var(--primary);
    outline: none;
  }
  input[type="submit"],
  button {
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 10px 20px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 20;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    font-family: "YouthRegular", sans-serif;
  }
  input[type="submit"]:hover,
  button:hover {
    background: var(--secondary);
  }
  label {
    font-family: "YouthMedium", sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
  }
  label small {
    opacity: 0.5;
    font-size: 79%;
  }
  sup {
    color: red;
  }
  em {
    color: #f0506e;
  }

  .multi__form__content .booking-form {
    display: none;
  }
  .multi__form__content .booking-form.active {
    display: block;
  }

  .multi__form__tabs {
    position: relative;
    margin: 70px auto 90px;
    text-align: center;
    max-width: 1200px;
  }

  .multi__form__tabs ul {
    position: relative;
    margin-bottom: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 60%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15px;
    z-index: 1;
  }
  .multi__form__tabs ul > li.active,
  .multi__form__tabs ul > li.active:hover,
  .multi__form__tabs ul > li.active:focus {
    color: #555555;
    cursor: default;
  }

  .multi__form__tabs span.round-tab {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 16px;
    color: #555555;
    border: 1px solid #ddd;
    font-family: "YouthMedium", sans-serif;
  }

  .multi__form__tabs li.active span.round-tab {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }

  .multi__form__tabs ul > li.active > i {
    color: var(--primary);
  }

  .multi__form__tabs ul > li {
    width: 20%;
  }

  .multi__form__tabs ul > li {
    position: relative;
  }
  .multi__form__tabs ul > li i {
    position: absolute;
    top: -20px;
    font-style: normal;
    font-weight: 400;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 600;
    color: #000;
    font-family: "YouthRegular", sans-serif;
    width: 100%;
  }

  .multi__form__tabs ul > li:hover {
    background: transparent;
  }

  .multi__form__wrapper {
    margin-top: 30px;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
  }

  .confirmation-checkbox {
    margin: 20px 0;
    padding: 15px;
    display: flex;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .confirmation-checkbox input[type="checkbox"] {
      margin-right: 10px;
      transform: scale(1.2);
  }

  .confirmation-checkbox label {
      font-weight: normal;
      cursor: pointer;
      user-select: none;
  }

  .confirmation-checkbox:hover {
      background: #e9ecef;
  }
  .book-btn {
    margin-top: 16px;
  }

  .form-sidebar {
    padding: 20px;
    background: #f3f8fc;
    border: 1px solid rgba(19, 110, 184, 0.25);
    position: sticky;
    top: 30px;
    z-index: 999;
  }

  .phone__input{
    position: relative;
  }
  .phone__input input{
    padding-left: 90px;
  }

  .country__code {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #eee;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 14px;
    height: 100%;
}
.ml-3{
    margin-left: 0.75rem;
}
  .the-title {
    font-size: 20px;
    font-family: "YouthMedium";
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 32px;
    color: var(--primary);
  }

  .booking-info span {
    font-family: "YouthRegular";
    color: #333;
    font-size: 14px;
    font-weight: 400;
  }
  .booking-info span strong {
    font-family: "YouthMedium";
    font-weight: 500;
  }
  .booking-info > div:not(:last-child) {
    margin-bottom: 14px;
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .accordion-content.active {
    margin-bottom: 30px;
  }

  .accordion-title,
  .review-title {
    font-size: 18px;
    font-family: "YouthMedium";
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 32px;
    color: var(--primary);
    padding: 10px 20px;
    background: #f3f8fc;
    cursor: pointer;
    position: relative;
  }
  .accordion-title::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: all 0.3s linear;
  }
  .accordion-title.active::after {
    transform: scale(-1) translateY(50%);
  }

  .form-note {
    padding: 8px 19px;
    background: #f3f8fc;
    color: var(--primary);
    border: 1px solid rgba(19, 110, 184, 0.25);
    font-size: 16px;
    line-height: 26px;
    font-family: "YouthMedium";
    font-weight: 400;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-align: left;
  }

  .state-grid {
    display: grid;
    grid-template-columns: 1fr 25px 1fr;
    gap: 10px;
    align-items: flex-end;
    height: 100%;
  }
  .mb-0 {
    margin-bottom: 0;
  }
  .form-title {
    color: #323232;
    font-size: 20px;
    font-family: "YouthMedium";
    font-weight: 500;
    margin: 0;
    line-height: 32px;
  }
  .form-title-wrapper {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
  }
  .same-as {
    font-family: "YouthMedium";
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.01em;
  }
  .other__information textarea {
    height: 60px;
  }

  .review-title {
    cursor: initial;
    padding: 0 !important;
  }
  .review-val {
    margin: 0;
  }
  .review-item {
    padding: 20px;
    background: #f3f8fc;
  }
  .review-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .review-label {
    font-family: "YouthMedium", sans-serif;
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: 500;
  }
  .offcanvas {
    display: none;
  }

  .btn {
    padding: 13px 20px;
    font-family: "YouthBold";
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.01em;
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    background: var(--primary);
    display: inline-block;
  }

  .btn:hover {
    transition: all 0.3s linear;
    background: var(--secondary);
  }
  .pay-btn {
    margin: 20px auto 0;
    text-align: center;
  }

  .btn-sm {
    padding: 10px 15px;
    font-size: 12px;
  }

  .addon--price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
  }

  .addon-container {
    border-top: 1px solid rgba(19, 110, 184, 0.25);
    padding-top: 10px;
  }

  .extension-container {
    display: none;
    border-top: 1px solid rgba(19, 110, 184, 0.25);
    padding-top: 10px;
  }
  .extension-datum{
    gap: 10px;
  }
.extension-datum:not(:last-child){
    margin-bottom: 15px;
}
.extension-datum span:first-child{
    flex: 1;
}
  .button-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
    background: #fff;
    border-radius: 999px;
    padding: 5px;
    height: 40px
  }
  .button-container button {
    background: transparent;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    position: relative;
    font-size: 16px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 2px solid rgba(19, 110, 184, 0.75);
  }
  .button-container button:hover {
    background: var(--primary);
    color: #fff;
  }
  .button-container .counter-number {
    width: 40px;
    height: 100%;
    text-align: center;
    padding: 6px;
  }
  .addon-wrapper {
    margin-bottom: 20px;
  }

  /*  */

  .trip__extension {
    border-top: 1px solid rgba(19, 110, 184, 0.25);
    padding-top: 20px;
    margin-top: 30px;
  }

  .trip__extension--card{
    position: relative;
  }
  .trip__extension--img{
    position: relative;
    margin-bottom: 10px;
  }
  .trip__extension--img::before{
    content: "";
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
  }
  .trip__extension--img img {
    width: 100%;
    height: 130px;
    object-fit: cover;

  }
  .trip__extension--checkbox{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
  }

  .trip__extension--title {
    font-family: "YouthMedium";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #333;
    margin-bottom: 10px;
  }

  .trip__extension--price {
    color: var(--primary);
    font-size: 15px;
  }
  .trip__extension--price del {
    color: #555;
    opacity: 0.5;
    font-size: 13px;
    margin-right: 5px;
  }
  /*  */
  .ahn-switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
  }

  /* Hide default HTML checkbox */
  .ahn-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
  .ahn-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 1px solid #adb5bd;
    transition: 0.4s;
    border-radius: 30px;
  }

  .ahn-slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    border-radius: 20px;
    left: 0.15em;
    bottom: 0.08em;
    background-color: #adb5bd;
    transition: 0.4s;
  }

  .ahn-switch input:checked + .ahn-slider {
    background-color: var(--primary);
    border: 1px solid var(--primary);
  }

  .ahn-switch input:focus + .ahn-slider {
    box-shadow: 0 0 1px var(--primary);
  }

  .ahn-switch input:checked + .ahn-slider:before {
    transform: translateX(1em);
    background-color: #fff;
  }

  #remaining {
    display: none;
  }
  @media (max-width: 1280px) {
    .ahn-container {
      padding: 0 20px;
    }

    .navLeft > div > ul > li > a {
      padding: 17px 13px;
      font-size: 14px;
    }

    .navRight > a {
      margin-left: 10px;
      font-size: 14px;
    }

    .navRight > a span {
      display: none;
    }
  }

  @media (max-width: 1140px) {
    .navRight {
      display: flex;
      align-items: center;
    }
    .navRight .burger__menu {
      margin-right: 10px;
      display: none;
    }
    .site-header.fixed .navLeft .burger__menu {
      display: none;
    }
    .site-header.fixed .navRight .burger__menu {
      display: block;
    }

    /* offcanvas */
    .offcanvas {
      min-height: 100vh;
      width: 100%;
      position: fixed;
      top: 0;
      z-index: 100000;
      left: -100%;
      -webkit-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
      -webkit-transition-delay: 0.3s;
      -o-transition-delay: 0.3s;
      transition-delay: 0.3s;
      display: block;
    }
    .offcanvas.show {
      left: 0;
      -webkit-transition-delay: 0s;
      -o-transition-delay: 0s;
      transition-delay: 0s;
    }
    .offcanvas::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: #000c;
      -webkit-backdrop-filter: saturate(180%) blur(5px);
      backdrop-filter: saturate(180%) blur(5px);
      -webkit-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
      opacity: 0.6;
    }
    .offcanvas .offcanvas__bar {
      width: 100%;
      position: relative;
      z-index: 10;
      height: 100%;
      -webkit-transition-delay: 0.3s;
      -o-transition-delay: 0.3s;
      transition-delay: 0.3s;
      position: absolute;
      top: 0;
      left: -100%;
      -webkit-transition: all 0.6s linear;
      -o-transition: all 0.6s linear;
      transition: all 0.6s linear;
    }
    .offcanvas .offcanvas__bar .offcanvas__sidebar {
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content;
      min-width: 300px;
      background: #fff;
      position: relative;
      z-index: 10;
      height: 100%;
      overflow-y: auto;
    }
    .offcanvas .offcanvas__bar.showbar {
      left: 0;
    }

    .offcanvas__logo {
      padding: 20px;
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 10;
      width: 100%;
      -webkit-box-shadow: inset 0 -1px 0 0 #eaeaea;
      box-shadow: inset 0 -1px 0 0 #eaeaea;
      -webkit-backdrop-filter: saturate(180%) blur(5px);
      backdrop-filter: saturate(180%) blur(5px);
      background: #fffc;
    }
    .offcanvas__logo .custom-logo-link {
      display: block;
      text-align: center;
    }
    .offcanvas__logo a img {
      width: 180px;

      margin: 0 auto;
      -webkit-transition: all 0.7s ease-in-out;
      -o-transition: all 0.7s ease-in-out;
      transition: all 0.7s ease-in-out;
    }
    .offcanvas__close {
      position: absolute;
      top: 10px;
      background: #fff;
      width: 50px;
      height: 50px;
      z-index: 100;
      left: 310px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      border-radius: 4px;
      cursor: pointer;
      -webkit-transition: all 1s linear;
      -o-transition: all 1s linear;
      transition: all 1s linear;
      -webkit-transition-delay: 0.3s;
      -o-transition-delay: 0.3s;
      transition-delay: 0.3s;
    }

    .offcanvas__close .offcanvas__icon {
      width: 20px;
      line-height: 0;
    }
    .offcanvas__close .offcanvas__icon span {
      display: inline-block;
      position: relative;
      width: 20px;
      height: 2px;
      vertical-align: top;
      background: #bf1d2e;
    }
    .offcanvas__close .offcanvas__icon span + span {
      margin-top: 5px;
    }

    .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(1) {
      -webkit-animation: ease 0.7s 0.6s icon1 forwards;
      animation: ease 0.7s 0.6s icon1 forwards;
    }

    .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(2) {
      -webkit-animation: ease 0.7s 0.6s icon2 forwards;
      animation: ease 0.7s 0.6s icon2 forwards;
    }

    .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(3) {
      -webkit-animation: ease 0.7s 0.6s icon3 forwards;
      animation: ease 0.7s 0.6s icon3 forwards;
    }
    @-webkit-keyframes icon1 {
      0% {
        top: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
      }
      50% {
        top: 7px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
      }
      100% {
        top: 7px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }
    }
    @keyframes icon1 {
      0% {
        top: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
      }
      50% {
        top: 7px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
      }
      100% {
        top: 7px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }
    }
    @-webkit-keyframes icon2 {
      50% {
        -webkit-transform: scale(0);
        transform: scale(0);
      }
      100% {
        -webkit-transform: scale(0);
        transform: scale(0);
      }
    }
    @keyframes icon2 {
      50% {
        -webkit-transform: scale(0);
        transform: scale(0);
      }
      100% {
        -webkit-transform: scale(0);
        transform: scale(0);
      }
    }
    @-webkit-keyframes icon3 {
      0% {
        bottom: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
      }
      50% {
        bottom: 7px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
      }
      100% {
        bottom: 7px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
      }
    }
    @keyframes icon3 {
      0% {
        bottom: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
      }
      50% {
        bottom: 7px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
      }
      100% {
        bottom: 7px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
      }
    }
    .offcanvas ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
    }

    #primary-menu1 {
      padding: 0;
    }
    #primary-menu1 > li > a {
      color: #666;
      text-transform: capitalize;
      font-size: 15px;
      padding: 12px 20px;
      display: block;
      font-weight: 500;
    }

    #primary-menu1 > li > ul,
    #primary-menu1 > li > ul > li > ul {
      display: none;
    }

    #primary-menu1 li {
      position: relative;
      cursor: pointer;
    }
    #primary-menu1 > li {
      border-bottom: 1px solid #eee;
    }

    #primary-menu1 > li > a:hover,
    #primary-menu1 > li a.show-active,
    #primary-menu1 > li.menu-item-has-children ul li a.show-active,
    #primary-menu1 > li:hover > a {
      background: #00000012;
    }

    #primary-menu1 > li > ul > li:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    #primary-menu1 li.menu-item-has-children span {
      color: var(--primary);
      position: absolute;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      top: 20px;
      width: 40px;
      height: 40px;
      background: #fff;
      right: 3px;
    }
    #primary-menu1 li.menu-item-has-children span i {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }

    #primary-menu1 li.menu-item-has-children > ul {
      background: var(--primary);
    }

    #primary-menu1
      li.menu-item-has-children
      > ul
      > li.menu-item-has-children
      > ul {
      background: #fff;
      margin: 0;
      margin-top: 5px;
      border-radius: 0;
      padding: 0;
      border-bottom: 1px solid transparent;
    }
    #primary-menu1 > li.menu-item-has-children > span {
      top: 21px;
    }

    #primary-menu1 > li.menu-item-has-children ul li a {
      font-size: 14px;
      color: #fff;
      font-weight: 400;
      padding: 12px 30px;
      display: block;
      text-transform: capitalize;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    #primary-menu1 > li.menu-item-has-children ul li:last-child a {
      border-bottom: none;
    }

    #primary-menu1 > li ul li:hover > a {
      color: var(--primary);
      background: #0000000d;
    }
    #primary-menu1 > li.menu-item-has-children ul li:hover a {
      color: #fff;
    }

    #primary-menu1
      > li.menu-item-has-children
      ul
      li.menu-item-has-children
      ul
      li
      a {
      padding-left: 40px;
    }

    #primary-menu1
      > li.menu-item-has-children
      ul
      li.menu-item-has-children
      ul
      li.menu-item-has-children
      ul
      li
      a {
      padding-left: 60px;
    }
    /*  */
    .burger__menu {
      padding: 17px 0;
      color: #fff;
      display: inline-block;
      font-size: 25px;
    }
    .navLeft > div > ul {
      display: none;
    }

    .mt-48 {
      margin-top: 34%;
    }

    .section-md {
      padding: 50px 0;
    }
  }
  .gap-5 {
    gap: 5px;
  }

  .gap-20 {
    gap: 20px;
  }
  .payment-form{
    margin-bottom: 10px;
  }
  .payment__label{
    margin-left: 5px;
  }
  @media (max-width: 959px) {
    .default__heading {
      font-size: 40px;
      line-height: 50px;
    }

    .custom__grid > div {
      width: 100% !important;
    }
    .custom__grid > div:last-child {
      margin-top: 30px;
    }
  }

  @media (max-width: 768px) {
    .form-note {
        font-size: 14px;
    }
    .default__logo .trip__cta__btns {
      display: none;
    }
    .default__logo {
      row-gap: 5px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .default__heading {
      font-size: 35px;
      line-height: 45px;
      padding-bottom: 10px;
    }

    .column-4,
    .column-6,
    .column-3,
    .column-9,
    .column-8 {
      grid-column: span 12;
    }

    .navRight > .header__mail,
    .navRight .header__contact {
      display: none;
    }

    .navRight > a span {
      display: inline-block;
    }

    .custom-logo-link {
      display: block;
      text-align: center;
    }

    .site-branding .custom-logo {
      max-width: 240px;
    }

    .mt-40 {
      margin-top: 5px;
    }

    .grid {
      -webkit-column-gap: 0;
      -moz-column-gap: 0;
      column-gap: 0;
    }

    /*  */

    .offcanvas__logo a img {
      width: 150px;
    }
    .offcanvas {
      -webkit-transition-delay: 0.3s;
      -o-transition-delay: 0.3s;
      transition-delay: 0.3s;
    }
    .offcanvas .offcanvas__bar {
      -webkit-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
      -webkit-transition-delay: 0s;
      -o-transition-delay: 0s;
      transition-delay: 0s;
    }
    .offcanvas .offcanvas__bar.showbar {
      -webkit-transition-delay: 0.3s;
      -o-transition-delay: 0.3s;
      transition-delay: 0.3s;
    }
    .offcanvas .offcanvas__bar .offcanvas__sidebar {
      min-width: 100%;
      width: 100%;
    }

    .offcanvas__close {
      top: 25px;
      width: 40px;
      height: 40px;
      right: 12px;
      left: auto;
      background: var(--primary);
    }
    .offcanvas__close .offcanvas__icon span {
      background: #fff;
      width: 16px;
    }
    .offcanvas__close .offcanvas__icon {
      width: 16px;
    }
    .offcanvas__logo .custom-logo-link {
      text-align: left;
    }
    .multi__form__wrapper {
      margin-top: 20px;
      padding: 20px;
    }
    .multi__form__tabs {
      margin: 50px auto 70px;
    }
    .multi__form__tabs ul > li {
      width: 25%;
    }
    .multi__form__tabs ul > li i {
      font-size: 14px;
    }
    .multi__form__tabs span.round-tab {
      width: 35px;
      height: 35px;
      line-height: 35px;
    }
    .accordion-title,
    .review-title {
      font-size: 16px;
      padding: 10px 15px;
    }
    .form-title,
    .the-title {
      font-size: 18px;
      line-height: 30px;
    }
    .form-sidebar {
      padding: 15px;
    }
  }

  main {
    padding-bottom: 40px;
  }
  .site-footer {
    background: var(--primary);
    padding: 10px;
    text-align: center;
    font-family: "YouthMedium", sans-serif;
    font-size: 14px;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
  }
  .site-footer a {
    color: #fff;
  }
  .total_price_border {
    border-top: 1px solid rgba(19, 110, 184, 0.25);
    padding-top: 15px;
  }

  button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }


.fact__content {
    position: relative;
}


.booking-info span.bank__charge {
    color:var(--primary)
}


.fact__content[data-tooltip]::after {
    border-radius: 2px;
    min-width: 250px;
    max-width: 250px;
    content: attr(data-tooltip);
    position: absolute;
    bottom: 29px;
    right: 0;
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: rgba(0, 0, 0, 0.24) 0 0 24px;
    color: rgba(0, 0, 0, 0.68);
    white-space: normal;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9;
    backdrop-filter: blur(8px);
    z-index: 99999999999;
  }

 .fact__content[data-tooltip]:hover::before {
    content: "";
    position: absolute;
    border-width: 10px;
    border-style: solid;
    border-color: #dbdbdb transparent transparent transparent;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
  }

  .fact__content:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px); /* Slide-up effect */
  }


  .forgot__password {
    font-size: 14px;
    color: var(--primary);
    cursor: pointer;
    font-weight: 500;
    margin-top: 5px;
  }


  .form__wrapper a {
    color: var(--primary);
    font-family: "YouthMedium", sans-serif;
    font-weight: 500;
  }


.custom-swal-popup .swal2-icon {
    color: var(--primary);
    border-color: var(--primary);
}

.custom-confirm-button,
.custom-cancel-button {
  min-width: 140px; /* ⬅️ fixed width */
  padding: 12px 20px; /* bigger */
  font-size: 15px; /* slightly larger */
  border: none !important;
  border-radius: 4px;
  cursor: pointer;
  text-transform: none !important;
}

.custom-confirm-button {
  background-color: var(--primary);
  color: #fff !important;
}

.custom-confirm-button:hover {
  background-color: var(--secondary);
}

.custom-cancel-button {
  background-color: #424040 !important;
  color: #fff !important;
}

.custom-cancel-button:hover {
  background-color: #6e6e6e !important;
}


.loader {
  border: 4px solid rgba(255, 255, 255, 1);
  border-left-color: transparent;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: spin89345 1s linear infinite;
  display: none; /* Make sure it's hidden by default */
}

.submit-btn {
  gap: 10px;
  display: flex !important;
  align-items: center;
}

@keyframes spin89345 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#booking-form5 {
  display: none; /* Initially hidden */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 40px 30px;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  font-family: 'Inter', sans-serif; /* match your font */
}

#booking-form5 h2 {
  color: var(--primary); /* dark green similar to your header */
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

#booking-form5 p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

#booking-form5 svg {
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
  stroke: var(--primary);
  /* fill: #0b4f2b; green accent */
}


