/* ---------------------
   [Table of Contents]

   1. Global Elements
      1.1 Responsive Breakpoint (rs)
      1.2 Color Variables (color)
      1.3 Reboot (reboot)
   2. UI Components
      2.1 Miscellaneous (miscellaneous)
      2.2 Preloader (preloader)
      2.3 Jarallax (jarallax)
   3. Sections
      3.1 Header (header)
      3.2 Hero (hero)
      3.3 About (about)
      3.4 Destination (destination)
      3.5 Trip (trip)
      3.6 Deals (deals)
      3.7 Follow (follow)
      3.8 Flight (flight)
      3.9 Gallery (gallery)
      3.10 Guider (guider)
      3.11 Testimonial (testimonial)
      3.12 Video (video)
      3.13 Blog (blog)
      3.14 Contact (contact)
      3.15 Footer (footer)
      3.16 CTA (cta)
      3.17 Cookie (cookie)
   4. Auxiliary Pages
      4.1 FAQ (faq)
      4.2 Breadcrumb (breadcrumb)
--------------------- */
/* Self-hosted Open Sans variable font — wght 300-800, Latin subset, ~47KB */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 300 800;
  src: url("/assets/css/fonts/open-sans-latin-variable.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Reboot CSS */
* {
  margin: 0;
  padding: 0;
}

body,
html {
  color: #767676;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 0 !important;
  font-family: "Open Sans", sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: #161920;
  font-weight: 700;
  line-height: 1.3;
}

p {
  font-size: 16px;
  line-height: 1.67;
  color: #767676;
}

a,
a:hover,
a:focus {
  -webkit-transition-duration: 350ms;
          transition-duration: 350ms;
  text-decoration: none;
  outline: 0 solid transparent;
  color: #161920;
}

ul,
ol {
  margin-bottom: 0;
}
ul li,
ol li {
  line-height: 1.75;
}

.border,
.border-top,
.border-bottom {
  border-color: rgba(38, 38, 41, 0.3) !important;
}

img {
  max-width: 100%;
  height: auto;
}

input:required,
textarea:required,
input:invalid,
textarea:invalid {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.bg-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.container {
  max-width: 320px;
}

@media (min-width: 400px) {
  .container {
    max-width: 360px;
  }
}
@media (min-width: 480px) {
  .container {
    max-width: 420px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
/* Shortcode CSS */
@font-face {
  font-family: "Glyphter";
  src: url("assets/fonts/Glyphter.eot");
  src: url("assets/fonts/Glyphter.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Glyphter.woff") format("woff"), url("assets/fonts/Glyphter.ttf") format("truetype"), url("assets/fonts/Glyphter.svg#Glyphter") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class*=icon-] {
  line-height: 0.6 !important;
}

[class*=icon-]:before {
  display: inline-block;
  font-family: "Glyphter";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-up:before {
  content: "A";
}

.icon-arrow-down:before {
  content: "B";
}

.icon-arrow-left:before {
  content: "C";
}

.icon-arrow-right:before {
  content: "D";
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(47, 91, 234, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(47, 91, 234, 0.075) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(47, 91, 234, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(47, 91, 234, 0.175) !important;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  padding: 12px 24px;
  gap: 6px;
  border-radius: 5rem;
  border: 0;
  font-weight: 700;
  position: relative;
  height: 48px;
  min-width: auto;
  text-transform: capitalize;
  overflow: hidden;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
@media only screen and (min-width:1200px) {
  .btn {
    height: 60px;
    padding: 16px 32px;
    font-size: 16px;
  }
}
.btn i {
  font-size: 140%;
  -webkit-transition-duration: 350ms;
          transition-duration: 350ms;
}
.btn:active, .btn:hover, .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  gap: 12px;
}

.btn-success {
  background-color: #C99B0E;
  color: #FFFFFF;
}
.btn-success:active, .btn-success:hover, .btn-success:focus {
  background-color: #161922;
  color: #FFFFFF;
}

.btn-info {
  background-color: #C99B0E;
  color: #FFFFFF;
}
.btn-info:active, .btn-info:hover, .btn-info:focus {
  background-color: #113d48;
  color: #FFFFFF;
}


.btn-sm {
  padding: 0.375rem 1.25rem;
  font-size: 12px;
  height: 37px;
  min-width: 100px;
}

.btn-outline-info {
  border: 1px solid #C99B0E;
  color: #C99B0E;
}
.btn-outline-info:hover, .btn-outline-info:focus {
  background-color: #C99B0E;
  color: #FFFFFF;
}

.btn-outline-dark {
  border: 1px solid #161920;
  color: #161920;
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
  background-color: #161920;
  color: #FFFFFF;
}

.bg-secondary {
  background-color: #F7F7F7 !important;
}

.bg-info {
  background-color: #C99B0E !important;
}

.text-success {
  color: #C99B0E !important;
}

.text-info {
  color: #C99B0E !important;
}

.divider {
  width: 100%;
  display: block;
  height: 60px;
}
@media only screen and (min-width:576px) {
  .divider {
    height: 70px;
  }
}
@media only screen and (min-width:768px) {
  .divider {
    height: 85px;
  }
}
@media only screen and (min-width:992px) {
  .divider {
    height: 100px;
  }
}
@media only screen and (min-width:1200px) {
  .divider {
    height: 110px;
  }
}
@media only screen and (min-width:1400px) {
  .divider {
    height: 124px;
  }
}

.divider-sm {
  width: 100%;
  display: block;
  height: 50px;
}
@media only screen and (min-width:768px) {
  .divider-sm {
    height: 60px;
  }
}

.section-heading .sub-title {
  font-size: 24px;
  margin-bottom: 0.25rem;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif !important;
  display: inline-block;
}
@media only screen and (min-width:1200px) {
  .section-heading .sub-title {
    font-size: 28px;
  }
}
@media only screen and (min-width:1400px) {
  .section-heading .sub-title {
    font-size: 32px;
  }
}
.section-heading h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.2;
  text-transform: capitalize;
  color: #161920;
}
@media only screen and (min-width:1200px) {
  .section-heading p {
    font-size: 18px;
  }
}

.rotatingImage {
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}

.search-bg-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #161920;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 100000;
  visibility: hidden;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
.search-bg-overlay.open {
  opacity: 0.95;
  visibility: visible;
}

.search-form-popup {
  position: fixed;
  z-index: 100000;
  padding: 40px 32px;
  background-color: transparent;
  left: 50%;
  top: 50%;
  min-width: 280px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
          transform: scale(0.9) translate(-50%, -50%);
  text-align: center;
}
@media only screen and (min-width:480px) {
  .search-form-popup {
    min-width: 360px;
  }
}
@media only screen and (min-width:768px) {
  .search-form-popup {
    min-width: 500px;
  }
}
@media only screen and (min-width:992px) {
  .search-form-popup {
    min-width: 600px;
  }
}
.search-form-popup .close-btn {
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
.search-form-popup .close-btn:hover, .search-form-popup .close-btn:focus {
  background-color: #FFFFFF;
  color: #161920;
}
@media only screen and (min-width:768px) {
  .search-form-popup .close-btn {
    width: 50px;
    height: 50px;
    top: -2rem;
    right: -2rem;
  }
}
.search-form-popup form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.search-form-popup form .form-control {
  width: 100%;
  height: 48px;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 16px;
  padding: 17px 24px;
  font-weight: 700;
}
@media only screen and (min-width:1200px) {
  .search-form-popup form .form-control {
    font-size: 18px;
    height: 64px;
  }
}
.search-form-popup form .form-control::-webkit-input-placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}
.search-form-popup form .form-control::-moz-placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}
.search-form-popup form .form-control:-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}
.search-form-popup form .form-control::-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}
.search-form-popup form .form-control::placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}
.search-form-popup form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.search-form-popup form .btn {
  border-radius: 8px;
  height: 48px;
}
@media only screen and (min-width:1200px) {
  .search-form-popup form .btn {
    height: 64px;
  }
}
.search-form-popup.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
}

/* Preloader CSS */
/* Preloader CSS */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

/* Jarallax CSS */
.jarallax {
  position: relative;
  z-index: 0;
}

.jarallax > .jarallax-img,
picture.jarallax-img img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Header CSS */

.header-area {
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
@media only screen and (min-width:1200px) {
  .header-area {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.header-area.mobile-menu-open {
  background-color: #FFFFFF;
}
.header-area .navbar-toggler {
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  color: #161920;
  border: 1px solid #767676;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
.header-area .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header-area .navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
@media only screen and (min-width:1200px) {
  .header-area .navbar {
    height: 100px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header-area .navbar .navbar-brand {
  margin-right: 2rem;
  line-height: 1 !important;
}
.header-area .navbar-nav {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width:992px) {
  .header-area .navbar-nav {
    gap: 16px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width:1400px) {
  .header-area .navbar-nav {
    gap: 42px;
  }
}
.header-area .navbar-nav li > a {
  display: inline-block;
  color: #0E0E0E;
  font-weight: 700;
  font-size: 1rem;
  text-transform: capitalize;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.header-area .navbar-nav li > a i {
  margin-top: 3px;
}
@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li > a {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.header-area .navbar-nav li > a:hover, .header-area .navbar-nav li > a:focus {
  color: #C99B0E;
}
.header-area .navbar-nav li .flydba-dd-menu {
  list-style: none;
  background-color: transparent;
  position: relative;
  z-index: 100;
  top: 100%;
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  display: none;
  padding-left: 0;
}
@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li .flydba-dd-menu {
    padding: 1rem 0;
    -webkit-transition: all 350ms;
    transition: all 350ms;
    position: absolute;
    top: calc(100% + 8px);
    width: 15rem;
    background-color: #F7F5F2;
    visibility: hidden;
    opacity: 0;
    display: block;
    left: -1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.header-area .navbar-nav li .flydba-dd-menu li > a {
  -webkit-transition: all 350ms;
  transition: all 350ms;
  position: relative;
  font-size: 1rem;
  padding: 0.375rem 1rem;
  color: #0E0E0E;
  text-transform: capitalize;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li .flydba-dd-menu li > a {
    padding: 0.375rem 1.5rem;
  }
}
.header-area .navbar-nav li .flydba-dd-menu li > a:hover, .header-area .navbar-nav li .flydba-dd-menu li > a:focus {
  background-color: transparent;
  color: #C99B0E;
}
@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li .flydba-dd-menu li > a:hover, .header-area .navbar-nav li .flydba-dd-menu li > a:focus {
    color: #C99B0E;
  }
}
.header-area .navbar-nav li.flydba-dd {
  position: relative;
  z-index: 1;
}
.header-area .navbar-nav li.flydba-dd .dropdown-toggler {
  position: absolute;
  width: 100%;
  height: 36px;
  z-index: 100;
  background-color: transparent;
  color: #C99B0E;
  top: 2px;
  cursor: pointer;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 14px;
}
@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li.flydba-dd .dropdown-toggler {
    display: none;
  }
}
.header-area .navbar-nav li.flydba-dd > a {
  position: relative;
}
.header-area .navbar-nav li.flydba-dd:hover > a, .header-area .navbar-nav li.flydba-dd:focus > a {
  color: #C99B0E;
}
@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li.flydba-dd:hover .flydba-dd-menu, .header-area .navbar-nav li.flydba-dd:focus .flydba-dd-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
}
.header-area .navbar-nav li.flydba-dd .flydba-dd .dropdown-toggler {
  right: 1rem;
}
.header-area .navbar-nav li.flydba-dd .flydba-dd > a {
  position: relative;
  width: 100%;
}
.header-area .navbar-nav li.flydba-dd .flydba-dd .flydba-dd-menu {
  display: none;
  padding-left: 1rem;
}
@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li.flydba-dd .flydba-dd .flydba-dd-menu {
    margin-left: 0.25rem;
    top: -8px;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    display: block;
    padding-left: 0;
  }
}
@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li.flydba-dd .flydba-dd:hover .flydba-dd-menu, .header-area .navbar-nav li.flydba-dd .flydba-dd:focus .flydba-dd-menu {
    visibility: visible;
    opacity: 1;
  }
}
.header-area.sticky-on {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 30px 42px 0px rgba(33, 39, 37, 0.1);
          box-shadow: 0px 30px 42px 0px rgba(33, 39, 37, 0.1);
}
@media only screen and (min-width:1200px) {
  .header-area.sticky-on .navbar {
    height: 85px;
  }
}
.header-area.style-two {
  background-color: #FFFFFF;
}
.header-area.style-two .navbar {
  background-color: #FFFFFF;
  -webkit-transition-duration: 350ms;
          transition-duration: 350ms;
}
@media only screen and (min-width:1200px) {
  .header-area.style-two .navbar {
    height: 100px;
  }
}
@media only screen and (min-width:1200px) {
  .header-area.style-two .navbar .navbar-brand {
    margin-right: 50px;
  }
}
@media only screen and (min-width:1400px) {
  .header-area.style-two .navbar .navbar-brand {
    margin-right: 120px;
  }
}
.header-area.style-two .navbar-toggler {
  color: #161920;
}
.header-area.style-two .social-nav a {
  color: #1C3637;
  font-size: 16px;
  -webkit-transform: all 350ms;
          transform: all 350ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.header-area.style-two .social-nav a i {
  font-size: 18px;
}
.header-area.style-two .social-nav a:hover, .header-area.style-two .social-nav a:focus {
  color: #C99B0E;
}
.header-area.style-two .social-nav.style-two a {
  border: 1.258px solid #535B5F;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  color: #535B5F;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
.header-area.style-two .social-nav.style-two a:hover, .header-area.style-two .social-nav.style-two a:focus {
  color: #FFFFFF;
  background-color: #F7921F;
  border-color: #F7921F;
}
.header-area.style-two.sticky-on {
  background-color: #FFFFFF;
}
@media only screen and (min-width:1200px) {
  .header-area.style-two.sticky-on .navbar {
    height: 80px;
  }
}
.header-area.style-three {
  top: 28px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 2%;
  padding-right: 2%;
}
.header-area.style-three::after {
  display: none;
}
.header-area.style-three.mobile-menu-open {
  background-color: transparent;
}
.header-area.style-three .navbar {
  background-color: #F7F7F7;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(247, 247, 247, 0.1);
}
@media only screen and (min-width:1200px) {
  .header-area.style-three .navbar {
    height: 100px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 5rem;
  }
}
.header-area.style-three .navbar-nav li > a {
  color: #0E0E0E;
}
.header-area.style-three .navbar-nav li > a:hover, .header-area.style-three .navbar-nav li > a:focus {
  color: #C99B0E;
}
.header-area.style-three .navbar-nav li .flydba-dd-menu {
  background-color: transparent;
}
@media only screen and (min-width:1200px) {
  .header-area.style-three .navbar-nav li .flydba-dd-menu {
    background-color: #F7F5F2;
    border: 0;
  }
}
.header-area.style-three .navbar-nav li .flydba-dd-menu li > a {
  color: #0E0E0E;
}
.header-area.style-three .navbar-nav li .flydba-dd-menu li > a:hover, .header-area.style-three .navbar-nav li .flydba-dd-menu li > a:focus {
  background-color: transparent;
  color: #C99B0E;
}
.header-area.style-three .navbar-nav li.flydba-dd:hover > a, .header-area.style-three .navbar-nav li.flydba-dd:focus > a {
  color: #C99B0E;
}
.header-area.style-three .navbar-nav li.flydba-dd .dropdown-toggler {
  background-color: transparent;
  color: #C99B0E;
}
.header-area.style-three.sticky-on {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}
.header-area.style-three.sticky-on .navbar {
  -webkit-box-shadow: 0px 30px 42px 0px rgba(33, 39, 37, 0.1);
          box-shadow: 0px 30px 42px 0px rgba(33, 39, 37, 0.1);
  border: 1px solid rgba(96, 31, 235, 0.1);
}
@media only screen and (min-width:1200px) {
  .header-area.style-three.sticky-on .navbar {
    height: 80px;
  }
}

@media only screen and (min-width:1200px) {
  .header-navigation {
    margin-left: 1rem;
  }
}
@media only screen and (min-width:1400px) {
  .header-navigation {
    margin-left: 4rem;
  }
}

.right-side-flydba-offcanvas {
  width: 320px !important;
  background-color: #FFFFFF;
}
@media only screen and (min-width:576px) {
  .right-side-flydba-offcanvas {
    width: 450px !important;
  }
}
@media only screen and (min-width:1200px) {
  .right-side-flydba-offcanvas {
    width: 500px !important;
  }
}
.right-side-flydba-offcanvas .offcanvas-header {
  height: 110px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #F7F5F2;
}
@media only screen and (min-width:576px) {
  .right-side-flydba-offcanvas .offcanvas-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.right-side-flydba-offcanvas .offcanvas-header .btn-close {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  border: 1px solid rgba(96, 31, 235, 0.1);
}
.right-side-flydba-offcanvas .offcanvas-body {
  padding: 40px 20px;
  scrollbar-width: thin;
}
@media only screen and (min-width:576px) {
  .right-side-flydba-offcanvas .offcanvas-body {
    padding: 60px 40px;
  }
}

@media only screen and (min-width:992px) {
  .flydba-dd-menu {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease, -webkit-transform 350ms ease;
  }
  .flydba-dd-menu li {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease, -webkit-transform 350ms ease;
  }
  .flydba-dd:hover .flydba-dd-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .flydba-dd:hover .flydba-dd-menu li {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(1) {
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(2) {
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(3) {
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(4) {
    -webkit-transition-delay: 400ms;
            transition-delay: 400ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(5) {
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(6) {
    -webkit-transition-delay: 600ms;
            transition-delay: 600ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(7) {
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(8) {
    -webkit-transition-delay: 800ms;
            transition-delay: 800ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(9) {
    -webkit-transition-delay: 900ms;
            transition-delay: 900ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(10) {
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(11) {
    -webkit-transition-delay: 1100ms;
            transition-delay: 1100ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(12) {
    -webkit-transition-delay: 1200ms;
            transition-delay: 1200ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(13) {
    -webkit-transition-delay: 1300ms;
            transition-delay: 1300ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(14) {
    -webkit-transition-delay: 1400ms;
            transition-delay: 1400ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(15) {
    -webkit-transition-delay: 1500ms;
            transition-delay: 1500ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(16) {
    -webkit-transition-delay: 1600ms;
            transition-delay: 1600ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(17) {
    -webkit-transition-delay: 1700ms;
            transition-delay: 1700ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(18) {
    -webkit-transition-delay: 1800ms;
            transition-delay: 1800ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(19) {
    -webkit-transition-delay: 1900ms;
            transition-delay: 1900ms;
  }
  .flydba-dd:hover .flydba-dd-menu li:nth-child(20) {
    -webkit-transition-delay: 2000ms;
            transition-delay: 2000ms;
  }
}
.navbar-nav-scroll {
  max-height: 50vh;
}

/* Hero CSS */

.hero-section {
  position: relative;
  z-index: 1;
  padding-top: 170px;
  padding-bottom: 150px;
}
@media only screen and (min-width:1200px) {
  .hero-section {
    padding-top: 220px;
    padding-bottom: 180px;
  }
}
@media only screen and (min-width:1400px) {
  .hero-section {
    padding-top: 280px;
    padding-bottom: 180px;
  }
}
.hero-section .hero-navigation {
  position: absolute;
  width: 75px;
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 14px;
  border-radius: 100rem;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media only screen and (min-width:768px) {
  .hero-section .hero-navigation {
    right: 60px;
  }
}
@media only screen and (min-width:1200px) {
  .hero-section .hero-navigation {
    padding: 50px 24px;
    width: 100px;
    right: 90px;
  }
}
@media only screen and (min-width:1400px) {
  .hero-section .hero-navigation {
    right: 148px;
  }
}
.hero-section .hero-navigation .hero-button-prev,
.hero-section .hero-navigation .hero-button-next {
  width: auto;
  height: auto;
  text-align: center;
  border: 0;
  background-color: transparent;
  font-size: 24px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #FFFFFF;
}
.hero-section .hero-navigation .hero-button-prev:hover, .hero-section .hero-navigation .hero-button-prev:focus,
.hero-section .hero-navigation .hero-button-next:hover,
.hero-section .hero-navigation .hero-button-next:focus {
  color: #C99B0E;
}
.hero-section .hero-navigation .swiper-pagination-bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-section .hero-navigation .swiper-pagination-bullet {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  opacity: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
@media only screen and (min-width:1200px) {
  .hero-section .hero-navigation .swiper-pagination-bullet {
    width: 64px;
    height: 64px;
  }
}
.hero-section .hero-navigation .swiper-pagination-bullet.swiper-pagination-bullet-active, .hero-section .hero-navigation .swiper-pagination-bullet:hover, .hero-section .hero-navigation .swiper-pagination-bullet:focus {
  border-color: #C99B0E;
}
.hero-section.style-two {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 122px;
}
@media only screen and (min-width:1200px) {
  .hero-section.style-two {
    margin-top: 148px;
  }
}
.hero-section.style-two .hero-swiper {
  border-radius: 18px;
}
.hero-section.style-two .hero-swiper-slide {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 18px;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
@media only screen and (min-width:576px) {
  .hero-section.style-two .hero-swiper-slide {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width:1200px) {
  .hero-section.style-two .hero-swiper-slide {
    padding-top: 124px;
    padding-bottom: 202px;
  }
}
.hero-section.style-two .hero-swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  border-radius: 18px;
  background: rgba(28, 54, 55, 0.6);
}
.hero-section.style-three {
  margin-top: 122px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width:1400px) {
  .hero-section.style-three {
    margin-top: 148px;
    padding-top: 140px;
    padding-bottom: 280px;
  }
}
.hero-section.style-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: rgba(20, 20, 20, 0.7);
}

.flydba-select,
.flydba-select2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #FFFFFF;
  border-radius: 0;
  border: 0;
  float: none !important;
  font-size: 16px;
  height: auto;
  line-height: 1;
  padding-left: 0;
  padding-right: 30px;
  width: auto;
  font-weight: 700;
  color: #161920;
}
.flydba-select::after,
.flydba-select2::after {
  border-bottom: 2px solid #161920;
  border-right: 2px solid #161920;
  height: 8px;
  right: 0px;
  width: 8px;
}
.flydba-select .option,
.flydba-select2 .option {
  padding-left: 8px;
  padding-right: 24px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  color: #161920;
}

.time-range-picker {
  border: 0;
  font-size: 16px;
  font-weight: 700;
  color: #161920;
  outline: none;
  width: 140px;
}
.time-range-picker:active, .time-range-picker:focus, .time-range-picker:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.background-swiper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -10;
}
.background-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.background-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(8.81%, #161920), color-stop(99.92%, rgba(22, 25, 32, 0.06)));
  background: linear-gradient(90deg, #161920 8.81%, rgba(22, 25, 32, 0.06) 99.92%);
  z-index: 10;
}

/* About CSS */

.why-choose-section {
  border-radius: 18px;
  position: relative;
  z-index: 1;
  background-image: url("assets/img/core-img/shape8.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.why-choose-section img {
  border-radius: 18px;
  width: 100%;
}
.why-choose-section.style-two {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247, 0)), to(#F7F7F7));
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #F7F7F7 100%);
  background-image: none;
}

@-webkit-keyframes experience-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes experience-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
.why-choose-card {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.why-choose-card .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFFFFF;
  color: #161920;
}

.top-catagory-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.top-catagory-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #F7921F;
  opacity: 1;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-catagory-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #F7921F;
  border-color: #F7921F;
  width: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  border-radius: 26px;
}

.accommodation-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid rgba(83, 91, 95, 0.3);
  padding-top: 40px;
  padding-bottom: 40px;
  cursor: pointer;
}
.accommodation-card:first-child {
  padding-top: 0;
}
.accommodation-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.accommodation-card .accommodation-hidden-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 5%;
  padding-right: 5%;
}
.accommodation-card.open .accommodation-hidden-content {
  opacity: 1;
}

.premier-destination-card {
  padding: 30px;
  border-radius: 18px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 450px;
  width: 195px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
.premier-destination-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 54, 55, 0)), to(#1C3637));
  background: linear-gradient(180deg, rgba(28, 54, 55, 0) 0%, #1C3637 100%);
  z-index: -10;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
.premier-destination-card .btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid #C99B0E;
  color: #C99B0E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.premier-destination-card .btn i {
  font-size: 30px;
}
.premier-destination-card .btn:hover, .premier-destination-card .btn:focus {
  border-color: #C99B0E;
  color: #FFFFFF;
  background-color: #C99B0E;
}
.premier-destination-card.slide-expand {
  width: 450px !important;
}
@media only screen and (min-width:1200px) {
  .premier-destination-card.slide-expand {
    width: 500px !important;
  }
}
@media only screen and (min-width:1400px) {
  .premier-destination-card.slide-expand {
    width: 620px !important;
  }
}
.premier-destination-card.slide-expand::after,
.premier-destination-card.slide-expand .btn {
  visibility: visible;
  opacity: 1;
}

.destination-details-wrapper {
  position: relative;
}
.destination-details-wrapper .destination-details-button-prev,
.destination-details-wrapper .destination-details-button-next {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: #FFFFFF;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-size: 17px;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  left: 30px;
  background-color: #C99B0E;
}
@media only screen and (min-width:1200px) {
  .destination-details-wrapper .destination-details-button-prev,
  .destination-details-wrapper .destination-details-button-next {
    width: 64px;
    height: 64px;
    font-size: 24px;
    left: 60px;
  }
}
.destination-details-wrapper .destination-details-button-prev:hover, .destination-details-wrapper .destination-details-button-prev:focus,
.destination-details-wrapper .destination-details-button-next:hover,
.destination-details-wrapper .destination-details-button-next:focus {
  color: #FFFFFF;
  background-color: #161922;
}
.destination-details-wrapper .destination-details-button-next {
  right: 30px;
  left: auto;
}
@media only screen and (min-width:1200px) {
  .destination-details-wrapper .destination-details-button-next {
    right: 60px;
  }
}

/* Trip CSS */

.deals-swiper {
  width: 113%;
}

/* Flight CSS */

/* CSS */
.single-gallery-img {
  border-radius: 18px;
  -webkit-transition-duration: 350ms;
          transition-duration: 350ms;
  position: relative;
  z-index: 1;
}
.single-gallery-img .gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  background: rgba(22, 25, 32, 0.5);
  opacity: 0;
  visibility: hidden;
}
.single-gallery-img .gallery-hover a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #F7921F;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}
.single-gallery-img .gallery-hover a:hover, .single-gallery-img .gallery-hover a:focus {
  background-color: #141414;
}
.single-gallery-img img {
  border-radius: 18px;
  width: 100%;
}
.single-gallery-img:hover, .single-gallery-img:focus {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.single-gallery-img:hover .gallery-hover, .single-gallery-img:focus .gallery-hover {
  opacity: 1;
  visibility: visible;
}
.single-gallery-img.theme-success .gallery-hover a {
  background-color: #C99B0E;
  color: #FFFFFF;
}
.single-gallery-img.theme-success .gallery-hover a:hover, .single-gallery-img.theme-success .gallery-hover a:focus {
  background-color: #161922;
}

.video-gallery-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.video-gallery-pagination .swiper-pagination-bullet {
  width: 100%;
  height: 60px;
  border-radius: 12px;
  opacity: 1;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width:576px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 80px;
  }
}
@media only screen and (min-width:768px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 100px;
  }
}
@media only screen and (min-width:1200px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 120px;
  }
}
@media only screen and (min-width:1400px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 160px;
    border-radius: 18px;
  }
}
.video-gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid #FFFFFF;
}

/* Team CSS */

/* Testimonial CSS */
.testimonial-card {
  border-radius: 18px;
  position: relative;
  z-index: 1;
  height: 420px;
  width: 195px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  margin-top: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.testimonial-card .testimonial-content {
  -webkit-transition: all 350ms;
  transition: all 350ms;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  width: 65%;
  max-width: 65%;
  padding: 30px 40px;
  border-radius: 18px 0 0 18px;
  opacity: 0;
  visibility: hidden;
}
.testimonial-card .testimonial-content .testimonial-text {
  margin-top: 16px;
  font-size: 16px;
  color: #161920;
}
@media only screen and (min-width:1400px) {
  .testimonial-card .testimonial-content .testimonial-text {
    font-size: 18px;
  }
}
.testimonial-card .testimonial-content .border-top {
  margin: 30px 0;
}
.testimonial-card .testimonial-content span {
  color: #767676;
  opacity: 0.9;
}
.testimonial-card .testimonial-thumbnail {
  -webkit-transition: all 350ms;
  transition: all 350ms;
  position: absolute;
  right: 0;
  top: -1px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  width: 35%;
  max-width: 35%;
  height: calc(100% + 2px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
  border-radius: 0 18px 18px 0;
  opacity: 0;
  visibility: hidden;
}
.testimonial-card.slide-expand {
  width: 620px !important;
  background-image: none !important;
  background-color: #FFFFFF;
  border: 1px solid rgba(118, 118, 118, 0.2);
  pointer-events: none;
}
@media only screen and (min-width:1400px) {
  .testimonial-card.slide-expand {
    width: 845px !important;
  }
}
.testimonial-card.slide-expand .testimonial-content,
.testimonial-card.slide-expand .testimonial-thumbnail {
  visibility: visible;
  opacity: 1;
}

.testimonial-navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-navigation-container .testimonial-button-prev,
.testimonial-navigation-container .testimonial-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(118, 118, 118, 0.2);
  color: #161920;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-size: 17px;
}
@media only screen and (min-width:1200px) {
  .testimonial-navigation-container .testimonial-button-prev,
  .testimonial-navigation-container .testimonial-button-next {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
.testimonial-navigation-container .testimonial-button-prev:hover, .testimonial-navigation-container .testimonial-button-prev:focus,
.testimonial-navigation-container .testimonial-button-next:hover,
.testimonial-navigation-container .testimonial-button-next:focus {
  background-color: #C99B0E;
  color: #FFFFFF;
  border-color: #C99B0E;
}

.testimonial-button-prev-two,
.testimonial-button-next-two {
  margin-top: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(118, 118, 118, 0.2);
  color: #161920;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  cursor: pointer;
  font-size: 17px;
}
@media only screen and (min-width:1200px) {
  .testimonial-button-prev-two,
  .testimonial-button-next-two {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
.testimonial-button-prev-two:hover, .testimonial-button-prev-two:focus,
.testimonial-button-next-two:hover,
.testimonial-button-next-two:focus {
  background-color: #F7921F;
  color: #FFFFFF;
}

.testimonial-section .jarallax-container {
  border-radius: 18px;
}
.testimonial-section.theme-two {
  border-radius: 18px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.testimonial-section.theme-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 54, 55, 0.95);
  z-index: -1;
  border-radius: 18px;
}
.testimonial-section.theme-two .testimonial-navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  padding-top: 60px;
  padding-right: 20px;
  padding-bottom: 40px;
}
@media only screen and (min-width:576px) {
  .testimonial-section.theme-two .testimonial-navigation-container {
    padding-right: 40px;
  }
}
@media only screen and (min-width:1400px) {
  .testimonial-section.theme-two .testimonial-navigation-container {
    padding-top: 124px;
    padding-right: 70px;
    padding-bottom: 60px;
  }
}
.testimonial-section.theme-two .testimonial-navigation-container > div {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  background-color: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #FFFFFF;
}
@media only screen and (min-width:1400px) {
  .testimonial-section.theme-two .testimonial-navigation-container > div {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
.testimonial-section.theme-two .testimonial-navigation-container > div:hover, .testimonial-section.theme-two .testimonial-navigation-container > div:focus {
  background-color: #C99B0E;
  color: #FFFFFF;
}

/* Video CSS */

@-webkit-keyframes video-sonar {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@keyframes video-sonar {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

/* Blog CSS */

.blog-card-two {
  -webkit-transition-duration: 350ms;
          transition-duration: 350ms;
}
.blog-card-two .post-img {
  position: relative;
  z-index: 1;
  border-radius: 18px;
}
.blog-card-two .post-img img {
  width: 100%;
  border-radius: 18px;
}
.blog-card-two .post-img .post-date {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
.blog-card-two .post-img .post-date span {
  color: #FFFFFF;
  line-height: 1.1;
}
.blog-card-two .post-img .post-date span:first-child {
  font-size: 24px;
  font-weight: 700;
}
.blog-card-two .post-img .post-date span:last-child {
  font-size: 18px;
  font-weight: 400;
}
.blog-card-two .post-title {
  position: relative;
  z-index: 1;
  color: #141414;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition-duration: 350ms;
          transition-duration: 350ms;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  font-size: 20px;
}
@media only screen and (min-width:992px) {
  .blog-card-two .post-title {
    font-size: 22px;
  }
}
@media only screen and (min-width:1200px) {
  .blog-card-two .post-title {
    font-size: 24px;
  }
}
.blog-card-two .post-title:hover, .blog-card-two .post-title:focus {
  background-size: 100% 2px;
}
.blog-card-two .blog-meta a {
  color: #535B5F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.blog-card-two .blog-meta a:hover, .blog-card-two .blog-meta a:focus {
  color: #C99B0E;
}
.blog-card-two .btn {
  padding: 10px 20px;
  font-size: 14px;
  height: 40px;
}
.blog-card-two:hover, .blog-card-two:focus {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.blog-card-two.theme-two .blog-meta a {
  color: #535B5F;
}
.blog-card-two.theme-two .blog-meta a:hover, .blog-card-two.theme-two .blog-meta a:focus {
  color: #F7921F;
}

.blog-section.theme-two {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-section.theme-two {
  border-radius: 18px;
  background-image: url("assets/img/core-img/shape7.webp");
}

/* Single Blog */

/* Footer CSS */
.footer-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-card p {
  font-size: 18px;
}
.footer-card .footer-logo {
  margin-bottom: 32px;
}
.footer-card .card-title {
  position: relative;
  z-index: 1;
}
.footer-card .card-title::before {
  width: 60px;
  height: 2px;
  bottom: -15px;
  left: 0;
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 2px;
  background: #C99B0E;
}
.footer-card .card-title::after {
  width: 10px;
  height: 2px;
  bottom: -15px;
  left: 65px;
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 2px;
  background: #C99B0E;
}
.footer-card .social-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.footer-card .social-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
.footer-card .social-nav a:hover, .footer-card .social-nav a:focus {
  background-color: #C99B0E;
  border-color: #C99B0E;
  color: #FFFFFF;
}
.footer-card .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
.footer-card .footer-nav li a {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}
.footer-card .footer-nav li a:hover, .footer-card .footer-nav li a:focus {
  color: #C99B0E;
  padding-left: 0.5rem;
}
.footer-card .subscribe-form {
  position: relative;
  z-index: 1;
}
.footer-card .subscribe-form .form-control {
  border-radius: 5rem;
  background-color: #FFFFFF;
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 1;
  color: #161920;
  font-size: 16px;
  font-weight: 400;
  border: 0;
  padding-left: 20px;
  padding-right: 80px;
}
.footer-card .subscribe-form .form-control::-webkit-input-placeholder {
  color: #767676;
  opacity: 1;
}
.footer-card .subscribe-form .form-control::-moz-placeholder {
  color: #767676;
  opacity: 1;
}
.footer-card .subscribe-form .form-control:-ms-input-placeholder {
  color: #767676;
  opacity: 1;
}
.footer-card .subscribe-form .form-control::-ms-input-placeholder {
  color: #767676;
  opacity: 1;
}
.footer-card .subscribe-form .form-control::placeholder {
  color: #767676;
  opacity: 1;
}
.footer-card .subscribe-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 0;
}
.footer-card .subscribe-form .btn {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 100;
  padding: 0;
  height: 38px;
  width: 70px;
  border-radius: 5rem;
  background-color: #C99B0E;
}
.footer-card .subscribe-form .btn:hover, .footer-card .subscribe-form .btn:focus {
  background-color: #113d48;
  color: #FFFFFF;
}
.footer-card .footer-contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.footer-card .footer-contact-card .icon {
  border-radius: 5px;
  background: #C99B0E;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
}
.footer-card .footer-contact-card p {
  font-size: 16px;
}

.copyright-wrapper {
  padding-top: 32px;
  padding-bottom: 40px;
}
.copyright-wrapper .copyright {
  font-size: 16px;
  color: #F9F7F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width:1200px) {
  .copyright-wrapper .copyright {
    font-size: 18px;
  }
}
.copyright-wrapper .copyright a {
  font-size: 16px;
  color: #F9F7F3;
}
@media only screen and (min-width:1200px) {
  .copyright-wrapper .copyright a {
    font-size: 18px;
  }
}
.copyright-wrapper .copyright a:hover, .copyright-wrapper .copyright a:focus {
  color: #C99B0E;
}

.footer-bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (min-width:768px) {
  .footer-bottom-nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width:1200px) {
  .footer-bottom-nav {
    gap: 2rem;
  }
}
.footer-bottom-nav a {
  color: #F9F7F3;
  font-size: 16px;
  line-height: 1.4;
  text-transform: capitalize;
}
@media only screen and (min-width:1200px) {
  .footer-bottom-nav a {
    font-size: 18px;
  }
}
.footer-bottom-nav a:hover, .footer-bottom-nav a:focus {
  color: #C99B0E;
}

.footer-wrapper {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(22, 25, 32, 0.98);
}
.footer-wrapper .border-top {
  border-top-color: rgba(249, 247, 243, 0.2) !important;
}
.footer-wrapper.theme-two .footer-card .card-title::before {
  background: #F7921F;
}
.footer-wrapper.theme-two .footer-card .card-title::after {
  background: #F7921F;
}
.footer-wrapper.theme-two .footer-card .social-nav a {
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-wrapper.theme-two .footer-card .social-nav a:hover, .footer-wrapper.theme-two .footer-card .social-nav a:focus {
  background-color: #F7921F;
  border-color: #F7921F;
  color: #FFFFFF;
}
.footer-wrapper.theme-two .footer-card .footer-nav li a {
  color: #FFFFFF;
}
.footer-wrapper.theme-two .footer-card .footer-nav li a:hover, .footer-wrapper.theme-two .footer-card .footer-nav li a:focus {
  color: #F7921F;
}
.footer-wrapper.theme-two .copyright-wrapper .copyright {
  color: #F9F7F3;
}
.footer-wrapper.theme-two .copyright-wrapper .copyright a {
  color: #F9F7F3;
}
.footer-wrapper.theme-two .copyright-wrapper .copyright a:hover, .footer-wrapper.theme-two .copyright-wrapper .copyright a:focus {
  color: #F7921F;
}
.footer-wrapper.theme-two .footer-bottom-nav a {
  color: #F9F7F3;
}
.footer-wrapper.theme-two .footer-bottom-nav a:hover, .footer-wrapper.theme-two .footer-bottom-nav a:focus {
  color: #F7921F;
}
.footer-wrapper .jarallax-container {
  border-radius: 18px;
}
.footer-wrapper.style-two {
  border-radius: 18px;
}
.footer-wrapper.style-two::after {
  border-radius: 18px;
  background: rgba(28, 54, 55, 0.95);
}

/* CTA CSS */

/* Cookie CSS */

/* Contact CSS */

.form-control {
  border-radius: 8px;
  background: #FFFFFF;
  height: 50px;
  font-size: 16px;
  border: 0;
  padding: 20px;
  color: #767676;
}
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-moz-placeholder {
  color: #999;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-ms-input-placeholder {
  color: #999;
}
.form-control::placeholder {
  color: #999;
}

.form-select {
  border-radius: 8px;
  background: #FFFFFF;
  height: 50px;
  font-size: 16px;
  border: 0;
  padding: 0 20px;
  color: #767676;
  cursor: pointer;
}
.form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea.form-control {
  min-height: 130px;
}

.maps-section {
  background-color: #F7F7F7;
}
.maps-section iframe {
  border: 0 !important;
  width: 100%;
  height: 400px;
}
@media only screen and (min-width:768px) {
  .maps-section iframe {
    height: 600px;
  }
}
@media only screen and (min-width:992px) {
  .maps-section iframe {
    height: 700px;
  }
}
@media only screen and (min-width:1200px) {
  .maps-section iframe {
    height: 800px;
  }
}

.contact-form-wrapper {
  padding: 30px;
  border-radius: 18px;
  margin-top: 50px;
}
@media only screen and (min-width:768px) {
  .contact-form-wrapper {
    position: absolute;
    padding: 50px;
    bottom: -300px;
    z-index: 100;
  }
}

/* FAQ CSS */

.faq-accordion .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faq-accordion .accordion-item {
  position: relative;
  border-radius: 12px;
  background: #F3F6FD;
  border: 0;
  margin-right: 85px;
}
.faq-accordion .accordion-item .accordion-button {
  border-radius: 10px;
  background: transparent;
  color: #1C3637;
  font-size: 18px;
  font-weight: 700;
  padding: 30px 24px 24px;
}
@media only screen and (min-width:576px) {
  .faq-accordion .accordion-item .accordion-button {
    font-size: 22px;
  }
}
@media only screen and (min-width:1200px) {
  .faq-accordion .accordion-item .accordion-button {
    font-size: 24px;
  }
}
.faq-accordion .accordion-item .accordion-button:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.faq-accordion .accordion-item .accordion-button::after {
  width: 70px;
  height: 70px;
  position: absolute;
  right: -85px;
  top: 0;
  z-index: 10;
  border-radius: 50%;
  background-color: #1C3637;
  background-position: center;
  color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%2236%22%20height=%2236%22%20viewBox=%220%200%2024%2024%22%20fill=%22none%22%20stroke=%22white%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M12%205l0%2014%22/%3E%3Cpath%20d=%22M5%2012l14%200%22/%3E%3C/svg%3E");
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #C99B0E;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-color: #C99B0E;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq-accordion .accordion-item .accordion-body {
  padding: 0 24px 30px;
  color: #767676;
  font-size: 16px;
  border-radius: 0 0 10px 10px;
}
@media only screen and (min-width:1200px) {
  .faq-accordion .accordion-item .accordion-body {
    font-size: 18px;
  }
}
.faq-accordion.style-two .accordion-item {
  background-color: #F7F7F7;
  margin-right: 0;
}
.faq-accordion.style-two .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 700;
  padding: 16px 24px;
}
@media only screen and (min-width:1200px) {
  .faq-accordion.style-two .accordion-item .accordion-button {
    font-size: 20px;
  }
}
.faq-accordion.style-two .accordion-item .accordion-button::after {
  position: relative;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #C99B0E;
  background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-down%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M6%209l6%206l6%20-6%22%20/%3E%3C/svg%3E");
}
.faq-accordion.style-two .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10px 10px 0 0;
  color: #FFFFFF;
  background-color: #C99B0E;
}
.faq-accordion.style-two .accordion-item .accordion-button:not(.collapsed)::after {
  background-color: #FFFFFF;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-up%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M6%2015l6%20-6l6%206%22%20/%3E%3C/svg%3E");
}
.faq-accordion.style-two .accordion-item .accordion-body {
  background-color: #C99B0E;
  font-size: 16px;
  color: #FFFFFF;
  padding: 0 24px 16px 24px;
}
.faq-accordion.style-three .accordion-item {
  background-color: #F7F7F7;
  margin-right: 0;
}
.faq-accordion.style-three .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 700;
  padding: 16px 24px;
}
@media only screen and (min-width:1200px) {
  .faq-accordion.style-three .accordion-item .accordion-button {
    font-size: 20px;
  }
}
.faq-accordion.style-three .accordion-item .accordion-button::after {
  position: relative;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevrons-right%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M7%207l5%205l-5%205%22%20/%3E%3Cpath%20d=%22M13%207l5%205l-5%205%22%20/%3E%3C/svg%3E");
}
.faq-accordion.style-three .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10px 10px 0 0;
  color: #FFFFFF;
  background-color: #C99B0E;
}
.faq-accordion.style-three .accordion-item .accordion-button:not(.collapsed)::after {
  background-color: #FFFFFF;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevrons-down%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M7%207l5%205l5%20-5%22%20/%3E%3Cpath%20d=%22M7%2013l5%205l5%20-5%22%20/%3E%3C/svg%3E");
}
.faq-accordion.style-three .accordion-item .accordion-body {
  background-color: #F7F7F7;
  font-size: 16px;
  color: #161920;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (min-width:576px) {
  .faq-accordion.style-three .accordion-item .accordion-body {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

/* Happy Counts */

/* Breadcrumb CSS */
.breadcrumb-section {
  position: relative;
  z-index: 1;
}
.breadcrumb-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 25, 32, 0.76);
  z-index: -10;
}
.breadcrumb-section .breadcrumb-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 112px;
}
.breadcrumb-section .breadcrumb-content h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width:576px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 42px;
  }
}
@media only screen and (min-width:768px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 48px;
  }
}
@media only screen and (min-width:992px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 56px;
    margin-bottom: 1.25rem;
  }
}
@media only screen and (min-width:1200px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 64px;
  }
}
@media only screen and (min-width:1400px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 80px;
  }
}
.breadcrumb-section .breadcrumb-content ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width:768px) {
  .breadcrumb-section .breadcrumb-content ul {
    padding: 6px 20px;
  }
}
.breadcrumb-section .breadcrumb-content ul li {
  color: #FFFFFF;
  font-size: 13px;
}
@media only screen and (min-width:576px) {
  .breadcrumb-section .breadcrumb-content ul li {
    font-size: 14px;
  }
}
@media only screen and (min-width:768px) {
  .breadcrumb-section .breadcrumb-content ul li {
    font-size: 16px;
  }
}
.breadcrumb-section .breadcrumb-content ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  position: relative;
  z-index: 1;
  padding-right: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width:576px) {
  .breadcrumb-section .breadcrumb-content ul li a {
    font-size: 14px;
  }
}
@media only screen and (min-width:768px) {
  .breadcrumb-section .breadcrumb-content ul li a {
    font-size: 16px;
  }
}
.breadcrumb-section .breadcrumb-content ul li a:hover, .breadcrumb-section .breadcrumb-content ul li a:focus {
  color: #FFFFFF;
}
.breadcrumb-section .breadcrumb-content ul li a::after {
  content: "\ea61";
  position: absolute;
  right: -5px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "tabler-icons";
  font-size: 16px;
}

/* VenoBox close button */

/* Breadcrumb h1 — semua halaman inner pakai h1 bukan h2 */
.breadcrumb-section .breadcrumb-content h1 {
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 576px) {
  .breadcrumb-section .breadcrumb-content h1 { font-size: 42px; }
}
@media only screen and (min-width: 768px) {
  .breadcrumb-section .breadcrumb-content h1 { font-size: 48px; }
}
@media only screen and (min-width: 992px) {
  .breadcrumb-section .breadcrumb-content h1 { font-size: 56px; margin-bottom: 1.25rem; }
}
@media only screen and (min-width: 1200px) {
  .breadcrumb-section .breadcrumb-content h1 { font-size: 64px; }
}
