@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --bg-primary: #f2003c;
  --bg-blue: #f2003c;
  --bg-white: #ffffff;
  --bg-black: #000000;
  --bg-text: #303030;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #f9f9f9;
  --bs-gray-300: #dfdfdf;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #777777;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --text-color-900: #2f2f2f;
  --font-Averta: Brother;
  --fontSilver: "Silver South Script";
  --fontBrother: Brother,sans-serif;
  --fontBrandon: "Brandon Grotesque",sans-serif;
  --fontAlternateGotNo1DRegular: "AlternateGotNo1DRegular",sans-serif;
  --font-normal: normal;
  --font-normal: 400;
  --font-500: 500;
  --font-600: bold;
  --border-color: #dbdbdb;
  --font-siz-11: 11px;
  --font-siz-12: 12px;
  --font-siz-13: 13px;
  --font-siz-14: 14px;
  --font-siz-15: 15px;
  --font-siz-16: 16px;
  --font-siz-17: 17px;
  --font-siz-18: 18px;
  --font-siz-20: 20px;
  --font-siz-21: 21px;
  --font-siz-22: 22px;
  --font-siz-24: 24px;
  --font-siz-25: 25px;
  --font-siz-26: 26px;
  --font-siz-27: 27px;
  --font-siz-28: 28px;
  --font-siz-29: 29px;
  --font-siz-30: 30px;
  --font-siz-31: 31px;
  --font-siz-32: 32px;
  --font-siz-33: 33px;
  --font-siz-34: 34px;
  --font-siz-35: 35px;
  --font-siz-36: 36px;
  --font-siz-37: 37px;
  --font-siz-38: 38px;
  --font-siz-39: 39px;
  --font-siz-40: 40px;
  --font-siz-41: 41px;
  --font-siz-42: 42px;
  --font-siz-43: 43px;
  --font-siz-44: 44px;
  --font-siz-45: 45px;
  --font-siz-46: 46px;
  --font-siz-47: 47px;
  --font-siz-48: 48px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  color: var(--bs-secondary-color);
}

body, html {
  min-height: 100%;
  font-family: var(--fontBrandon);
  font-weight: var(--font-normal);
  letter-spacing: 0.85px;
  color: #52575c;
  font-size: var(--font-siz-18);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}
@media (max-width: 991px) {
  body, html {
    font-size: var(--font-siz-15);
    line-height: var(--font-siz-22);
  }
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  background-color: var(--bs-gray-400);
}

.text-body {
  color: #52575c;
}

.bg-white {
  background: var(--bg-white);
}

.bg-gray {
  background: var(--bs-gray-200);
}

.bg-black {
  background: var(--bg-black);
}

.bg-primary {
  background: var(--bg-primary);
}

.color-white {
  color: var(--bg-white);
}

.color-black {
  color: var(--bg-black);
}

.color-primary {
  color: var(--bg-primary);
}

.border-0 {
  border: 0;
}

.border-bottom-1 {
  border: 0;
  border-bottom: 2px solid;
}

.border-color-300 {
  border-color: #ededed;
}

.shadow {
  box-shadow: 0 0 8px rgba(153, 153, 153, 0.6);
}

img, svg {
  vertical-align: middle;
}

.hide {
  display: none;
}

.font-brandon {
  font-family: var(--fontBrandon);
}

.font-alternate {
  font-family: var(--fontAlternateGotNo1DRegular);
}

.font-700 {
  font-weight: 700;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.text-uppercase {
  text-transform: uppercase;
}

.head-h3 {
  font-family: var(--fontBrandon);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.28;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.head-h2 {
  font-family: var(--fontAlternateGotNo1DRegular);
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 2.25px;
  line-height: 1;
  margin-bottom: 12.75px;
  text-transform: uppercase;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

img.fluid {
  width: 100%;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.container {
  max-width: 1300px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

a[href] {
  text-decoration: none;
}

.container-full {
  max-width: 100%;
  width: 100%;
  padding: 0 25px;
}
@media (max-width: 991px) {
  .container-full {
    padding: 0 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: var(--bg-white);
  font-weight: var(--font-600);
  line-height: 1.2;
  font-family: var(--fontAlternateGotNo1DRegular);
}

h1 {
  text-transform: capitalize;
}

h2 {
  font-size: var(--font-siz-30);
}
@media (max-width: 767px) {
  h2 {
    font-size: var(--font-siz-28);
  }
}
@media (max-width: 675px) {
  h2 {
    font-size: var(--font-siz-24);
    line-height: var(--font-siz-26);
  }
}

.heading span {
  vertical-align: inherit;
}
.heading h2, .heading p {
  color: var(--bg-black);
}
.heading.heading-2 h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.heading.heading-2 p {
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
  color: var(--bg-text);
}
.heading h3 {
  font-weight: var(--font-600);
  font-size: 36px;
  line-height: 1;
  color: #000;
}
@media (max-width: 991px) {
  .heading h3 {
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .heading h3 {
    font-size: var(--font-siz-24);
    line-height: var(--font-siz-24);
  }
}
@media (max-width: 675px) {
  .heading h3 {
    font-size: var(--font-siz-20);
    line-height: var(--font-siz-20);
  }
}

img, span {
  display: inline-block;
  vertical-align: middle;
}

.relative {
  position: relative;
}

.full-w {
  width: 100%;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-colum {
  flex-direction: column;
}

.align-item-center {
  align-items: center;
}

.justify-item-sb {
  justify-content: space-between;
}

.justify-item-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.align-box-center {
  align-items: center;
  justify-content: center;
}

.stiky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.py-6 {
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding: 0 0.5rem;
}

.px-2 {
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.px-6 {
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}

.min-height-100 {
  min-height: 100%;
}

.z-index1 {
  z-index: 1;
}

.z-index2 {
  z-index: 2;
}

.z-index3 {
  z-index: 3;
}

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

.swiper-pagination.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 7%);
}
.swiper-pagination.swiper-pagination-horizontal span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid var(--bg-white);
  border-radius: 12px;
  opacity: 1;
  background: transparent;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}
.swiper-pagination.swiper-pagination-horizontal span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--bg-white);
}

.btnSugSearch {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.btnSugSearch .btn {
  width: 108px;
  background: var(--bg-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-white);
  outline: none;
  gap: 4px;
  cursor: pointer;
  transition: 0.5s ease;
  font-size: 12px;
  padding: 3px 0;
  color: var(--bs-gray-600);
}
.btnSugSearch .btn img {
  transition: 0.5s ease;
  max-width: 15px;
  pointer-events: none;
}
.btnSugSearch .btn:hover {
  background: var(--bg-primary);
  border-color: var(--bg-primary);
  color: var(--bg-white);
}
.btnSugSearch .btn:hover img {
  filter: invert(1);
}

input, select, button, textarea {
  font-family: var(--fontBrother);
}

button, input[type=button], input[type=submit] {
  cursor: pointer;
  font-weight: var(--font-600);
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--bg-black);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.overlay.actve {
  opacity: 0.5;
  pointer-events: all;
}
@media (max-width: 991px) {
  .overlay.filact {
    opacity: 0.5;
    pointer-events: all;
    z-index: 1;
  }
}

.tab-nav ul {
  text-align: center;
}
.tab-nav ul li {
  display: inline-block;
  cursor: pointer;
}

.tab-nav-content {
  position: relative;
  overflow: hidden;
}
.tab-nav-content .tabs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  transition: 0s ease;
}
.tab-nav-content .tabs.active {
  transition: 0.5s ease;
  position: unset;
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: all;
}

.form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.form .form-group .icon {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.form .form-group label {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: var(--font-siz-15);
  color: var(--bs-gray-800);
  pointer-events: none;
  transition: 0.5s ease;
}
.form .form-group .form-control {
  width: 100%;
  padding: 8px;
  color: var(--bs-gray-800);
  border: 1px solid var(--border-color);
  outline: none;
  font-size: var(--font-siz-15);
  transition: 0.5s ease;
}
.form .form-group .form-control::-moz-placeholder {
  color: var(--bs-gray-800);
  font-size: var(--font-siz-15);
}
.form .form-group .form-control::placeholder {
  color: var(--bs-gray-800);
  font-size: var(--font-siz-15);
}
.form .form-group .form-control:focus {
  border-color: var(--bg-blue);
}
.form .form-group .form-control.valid .form-control {
  border-color: var(--bg-primary);
}
.form .form-group select, .form .form-group input {
  height: 45px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.form .form-group.round-input .form-group label {
  color: var(--bs-gray-800);
  left: 20px;
  top: 13px;
  line-height: normal;
}
.form .form-group.round-input .form-group input, .form .form-group.round-input .form-group select {
  height: 45px;
  border-radius: 45px;
}
.form .form-group.round-input .form-group .form-control {
  padding: 10px 20px 0;
  color: var(--bs-gray-800);
}
.form .form-group.round-input .form-group:focus ~ label {
  opacity: 0.6;
  top: 3px;
  font-size: 12px;
}
.form .form-group.round-input .form-group.valid label {
  opacity: 0.6;
  top: 3px;
  font-size: 12px;
}

.PriceRangeSlider .priceBox .pritag {
  font-size: var(--font-siz-16);
  color: var(--bg-black);
  font-weight: var(--font-600);
}
.PriceRangeSlider .priceBox span {
  margin: 0 8px;
}
.PriceRangeSlider .slider {
  height: 5px;
  position: relative;
  background: #ddd;
}
.PriceRangeSlider .slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--bg-primary);
}
.PriceRangeSlider .range-input {
  position: relative;
}
.PriceRangeSlider .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.PriceRangeSlider input[type=range]::-webkit-slider-thumb {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: var(--bg-white);
  pointer-events: auto;
  -webkit-appearance: none;
  border: 1px solid var(--bs-gray-400);
}
.PriceRangeSlider input[type=range]::-moz-range-thumb {
  height: 25px;
  width: 25px;
  border: none;
  border-radius: 50%;
  background: var(--bg-white);
  pointer-events: auto;
  -moz-appearance: none;
  border: 1px solid var(--bs-gray-400);
}

.btn-form .btn {
  display: inline-block;
  padding: 9px 25px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: var(--font-siz-14);
  line-height: 1.5;
  transition: 0.5s ease;
}
@media (max-width: 767px) {
  .btn-form .btn {
    padding: 10px 18px;
  }
}
.btn-form .btn.bg-primary:hover {
  background: var(--bg-black);
}
.btn-form .btn.bg-black:hover {
  background: var(--bg-primary);
}

.FilCheBox {
  position: relative;
  padding: 4px 0;
  padding-left: 25px;
}
.FilCheBox input[type=checkbox], .FilCheBox input[type=radio] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.FilCheBox input[type=checkbox]:checked ~ .fakeBox, .FilCheBox input[type=radio]:checked ~ .fakeBox {
  border-color: var(--bg-primary);
}
.FilCheBox input[type=checkbox]:checked ~ .fakeBox::before, .FilCheBox input[type=radio]:checked ~ .fakeBox::before {
  opacity: 1;
}
.FilCheBox input[type=checkbox]:checked ~ span, .FilCheBox input[type=radio]:checked ~ span {
  color: var(--bg-primary);
}
.FilCheBox .fakeBox {
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 13px;
  border: 1px solid var(--bs-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.FilCheBox .fakeBox::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--bg-primary);
  opacity: 0;
}
.FilCheBox span {
  line-height: 1.5;
  color: var(--bs-gray-600);
}

.read-more {
  margin-top: 45px;
}
.read-more .btnReadMore {
  font-family: var(--fontBrother);
  font-size: var(--font-siz-16);
  font-weight: var(--font-600);
}

.link-btn .btn {
  display: inline-block;
  padding: 9px 25px;
  background: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid var(--bg-white);
  text-transform: uppercase;
  font-weight: var(--font-500);
  font-size: var(--font-siz-14);
  transition: 0.5s ease;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .link-btn .btn {
    padding: 10px 18px;
  }
}
.link-btn .hover-invert:hover {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}
.link-btn .black {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}
.link-btn .black:hover {
  background: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid var(--bg-black);
}
.link-btn .white {
  background: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid var(--bg-black);
}
.link-btn .white:hover {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes trany {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}

.social_links {
  display: flex;
  padding: 0 15px;
  gap: 0 5px;
}
.social_links a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border: 1px solid var(--bg-primary);
  border-radius: 3px;
}
.social_links a svg {
  color: var(--bg-white);
  font-size: var(--font-siz-18);
  width: 18px;
  height: 18px;
}

.owl-carousel .owl-stage {
  margin: 0 auto;
}

.CustomSelectDropdown {
  position: relative;
  margin-bottom: 15px;
}
.CustomSelectDropdown .DropDonSelect {
  position: relative;
  padding: 8px 10px;
  color: var(--bs-gray-600);
  font-size: var(--font-siz-16);
  border: 1px solid var(--bs-gray-300);
  background: var(--bg-white);
  outline: none;
  min-height: 45px;
  transition: 0.5s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.CustomSelectDropdown .DropDonSelect .srOnly {
  display: block;
  padding-right: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.CustomSelectDropdown .DropDonSelect .icon {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.CustomSelectDropdown .CusListDrop {
  max-height: 300px;
  max-height: 200px;
  overflow-y: scroll;
  border: 1px solid var(--bs-gray-300);
  border-top: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  transform: translateY(5%);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.CustomSelectDropdown .CusListDrop::-webkit-scrollbar {
  width: 3px;
}
.CustomSelectDropdown .CusListDrop::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.CustomSelectDropdown .CusListDrop::-webkit-scrollbar-thumb {
  background-color: var(--bg-primary);
}
.CustomSelectDropdown .CusListDrop.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
}
.CustomSelectDropdown .CusListDrop ul {
  background: var(--bg-white);
  padding: 10px 12px;
}
.CustomSelectDropdown .CusListDrop ul li {
  display: block;
  cursor: pointer;
  padding: 6px 15px;
  background: var(--bg-white);
  transition: 0.5s ease;
  font-size: var(--font-siz-14);
  margin-left: -12px;
  margin-right: -12px;
  border-bottom: 1px solid transparent;
}
.CustomSelectDropdown .CusListDrop ul li:hover {
  color: var(--bg-black);
  background: var(--bs-gray-300);
  border-color: var(--bg-white);
}
.CustomSelectDropdown .CusListDrop ul li.selected {
  color: var(--bg-white);
  background: var(--bg-blue);
  border-color: var(--bg-white);
}

div#back-to-top {
  position: fixed;
  left: auto;
  right: -100px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 55px;
  z-index: 11;
  bottom: 60px;
  background: var(--bg-primary);
  padding: 10px;
  cursor: pointer;
  transition: 700ms ease;
}
@media (max-width: 675px) {
  div#back-to-top {
    width: 45px;
    height: 45px;
    bottom: 50px;
  }
}
div#back-to-top.show {
  right: 10px;
}
div#back-to-top svg {
  color: var(--bg-white);
  max-width: 15px;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.img-hover {
  overflow: hidden;
  display: block;
}
.img-hover img {
  transform: scale(1);
  transition: 0.4s ease;
}
.img-hover:hover img {
  transform: scale(1.1);
}

.productCard figure {
  overflow: hidden;
  display: block;
}
.productCard figure img {
  transform: scale(1);
  transition: 0.4s ease;
}
.productCard .item:hover figure img {
  transform: scale(1.1);
}

p.imgPro {
  text-align: center;
  font-size: var(--font-siz-14);
  margin-bottom: 15px;
  color: var(--bs-gray-600);
}

.videoBTN_Icon {
  border: 0;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  height: 15px;
  border-color: transparent transparent transparent #202020;
  transition: 100ms all ease;
  cursor: pointer;
  border-style: double;
  border-width: 0px 0 0px 12px;
  transition: 300ms linear;
}
.videoBTN_Icon.paused {
  border-style: solid;
  border-width: 9px 0 11px 12px;
}

.btnVividAbBan:hover .videoBTN_Icon {
  border-color: transparent transparent transparent #404040;
}

@media (max-width: 675px) {
  .hidden {
    opacity: 0;
  }
}

.brand-box {
  max-width: 250px;
  width: 100%;
}
@media (max-width: 1140px) {
  .brand-box {
    max-width: 180px;
  }
}
@media (max-width: 991px) {
  .brand-box {
    max-width: 170px;
  }
}
@media (max-width: 520px) {
  .brand-box {
    max-width: 180px;
  }
}
.brand-box a {
  display: block;
}
.brand-box a img {
  max-width: 110px;
  filter: grayscale(11) brightness(0);
}

header {
  box-shadow: 0 0 2px #d9d9d9;
}
@media (min-width: 992px) {
  header {
    min-height: 67px;
  }
}
@media (max-width: 991px) {
  header {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  header {
    padding: 6px 0;
  }
}

.header-boxnav {
  flex: 1;
}
.header-boxnav .col-1 {
  flex: 1;
  width: 100%;
}
@media (max-width: 1140px) {
  .header-boxnav .col-1 {
    max-width: unset;
    flex: 1;
  }
}
@media (max-width: 991px) {
  .header-boxnav .col-1 {
    display: none;
  }
}
.header-boxnav .col-2 {
  max-width: 320px;
  width: 100%;
}
@media (max-width: 1140px) {
  .header-boxnav .col-2 {
    width: 275px;
    flex: unset;
    max-width: none;
  }
}
@media (max-width: 991px) {
  .header-boxnav .col-2 {
    max-width: 100%;
    flex: 1;
  }
}
@media (max-width: 767px) {
  .header-boxnav .col-2 {
    width: auto;
  }
}

nav.nav-list ul li {
  display: inline-block;
  vertical-align: middle;
}
nav.nav-list ul li a {
  display: inline-block;
  color: var(--bg-black);
  text-decoration: none;
  padding: 0 15px;
}
@media (max-width: 1300px) {
  nav.nav-list ul li a {
    padding: 0 8px;
  }
}
@media (max-width: 1230px) {
  nav.nav-list ul li a {
    padding: 0 5px;
  }
}

.box-header-right {
  max-width: 315px;
}
@media (max-width: 1140px) {
  .box-header-right {
    max-width: 315px;
    justify-content: end;
  }
}
@media (max-width: 1140px) {
  .box-header-right {
    padding-right: 10px;
    gap: 8px;
  }
}
@media (max-width: 991px) {
  .box-header-right {
    max-width: unset;
  }
}
@media (max-width: 675px) {
  .box-header-right {
    padding-right: 10px;
  }
}

.calActionHeader {
  margin-left: 8px;
  padding-right: 15px;
}
@media (max-width: 1140px) {
  .calActionHeader {
    margin-left: 8px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .calActionHeader {
    margin: 0 12px;
  }
}
@media (max-width: 767px) {
  .calActionHeader {
    display: none;
  }
}

.box-lang {
  margin-right: 5px;
}
@media (max-width: 1024px) {
  .box-lang {
    margin: 0;
  }
}
.box-lang .wrapBox {
  width: 66px;
  padding: 20px 0;
  cursor: pointer;
}
@media (max-width: 675px) {
  .box-lang .wrapBox {
    width: 60px;
  }
}
.box-lang .wrapBox img {
  margin-right: 6px;
}
.box-lang .wrapBox span {
  font-weight: var(--font-600);
  font-size: var(--font-siz-14);
}
.box-lang .wrapBox span::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 7px;
  width: 12px;
  height: 12px;
  background-image: url("../icons/servlet.png");
  background-repeat: no-repeat;
  background-position: center;
}
.box-lang .lagDropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: var(--bg-white);
  border: 1px solid var(--bg-black);
  width: 100px;
  gap: 2px;
  transform: translateY(-20px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
  border-radius: 6px;
  padding: 0.2rem 0;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.1019607843);
  z-index: 7;
}
.box-lang .lagDropdown:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 35px;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-bottom-color: var(--bg-black);
}
@media (max-width: 1024px) {
  .box-lang .lagDropdown:before {
    right: 18px;
  }
}
.box-lang .lagDropdown.is-open {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.box-lang .lagDropdown .btn {
  background: var(--bg-white);
  border: 0;
  cursor: pointer;
  padding: 8px;
  transition: 0.5s ease;
  font-weight: var(--font-Normal);
}
.box-lang .lagDropdown .btn * {
  pointer-events: none;
}
.box-lang .lagDropdown .btn img {
  margin-right: 5px;
  filter: invert(0) brightness(0);
  transition: 0.5s ease;
}
.box-lang .lagDropdown .btn span {
  font-weight: var(--font-Normal);
  font-size: var(--font-siz-14);
}
.box-lang .lagDropdown .btn:hover {
  background: var(--bg-primary);
  color: var(--bg-white);
}
.box-lang .lagDropdown .btn:hover img {
  filter: invert(1) brightness(5);
}

.btn-planHead {
  border: 1px solid var(--bg-primary);
  outline: 0;
  display: block;
  width: 100%;
  min-height: 41px;
  padding: 4px;
  cursor: pointer;
  background: var(--bg-primary);
  color: var(--bg-white);
  font-weight: var(--font-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--font-siz-13);
  transition: 0.5s ease;
}
@media (max-width: 1300px) {
  .btn-planHead {
    font-size: var(--font-siz-14);
  }
}
@media (max-width: 1140px) {
  .btn-planHead {
    padding: 10px 7px;
    min-height: auto;
  }
}
@media (max-width: 991px) {
  .btn-planHead {
    padding: 10px 16px;
  }
}
.btn-planHead:hover {
  background: var(--bg-white);
  color: var(--bg-primary);
}

@media (max-width: 675px) {
  .calinfoHeader {
    display: none;
  }
}
.calinfoHeader .contact-us-btn {
  background: transparent;
  border: 0;
  outline: none;
  height: 57px;
  width: 57px;
  color: var(--bg-white);
  font-weight: var(--font-600);
  cursor: pointer;
}
@media (max-width: 1140px) {
  .calinfoHeader .contact-us-btn {
    height: 45px;
    width: 45px;
  }
}
.calinfoHeader .contact-us-btn img {
  pointer-events: none;
}
@media (max-width: 1024px) {
  .calinfoHeader .contact-us-btn {
    height: 45px;
    width: 45px;
  }
}
.calinfoHeader .contact-us-dropdown {
  top: 100%;
  position: absolute;
  right: -20%;
  display: flex;
  flex-flow: column;
  border: 1px solid var(--bg-black);
  border-radius: 6px;
  padding: 1rem 0;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.1019607843);
  z-index: 7;
  background-color: var(--bg-white);
  height: -moz-fit-content;
  height: fit-content;
  width: 220px;
  transform: translateY(-20px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
@media (max-width: 1024px) {
  .calinfoHeader .contact-us-dropdown {
    right: 0;
  }
}
.calinfoHeader .contact-us-dropdown:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 35px;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-bottom-color: var(--bg-black);
}
@media (max-width: 1024px) {
  .calinfoHeader .contact-us-dropdown:before {
    right: 18px;
  }
}
.calinfoHeader .contact-us-dropdown.is-open {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.calinfoHeader .contact-us-dropdown .dropdown-link {
  display: flex;
  grid-gap: 0.5rem;
  align-items: center;
  gap: 1rem;
  padding: 7px 1rem;
  color: var(--bg-black);
  text-decoration: none;
}
.calinfoHeader .contact-us-dropdown .dropdown-link .icon {
  border-radius: 3rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-gray-300);
  transition: 0.5s ease;
}
.calinfoHeader .contact-us-dropdown .dropdown-link .icon .svg svg {
  width: 1.1rem;
  height: 1.1rem;
}
.calinfoHeader .contact-us-dropdown .dropdown-link .icon .svg svg path {
  fill: var(--bg-black);
  transition: 0.5s ease;
}
.calinfoHeader .contact-us-dropdown .dropdown-link .dropdown-link-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.calinfoHeader .contact-us-dropdown .dropdown-link .dropdown-link-text p {
  color: var(--bg-black);
}
.calinfoHeader .contact-us-dropdown .dropdown-link .dropdown-link-text .label-1 {
  font-size: var(--font-siz-16);
  font-weight: var(--font-500);
}
.calinfoHeader .contact-us-dropdown .dropdown-link .dropdown-link-text .label-2 {
  font-size: var(--font-siz-12);
  color: var(--bs-gray-600);
  font-weight: var(--font-500);
}
.calinfoHeader .contact-us-dropdown .dropdown-link:hover {
  background: var(--bs-gray-200);
}
.calinfoHeader .contact-us-dropdown .dropdown-link:hover .icon {
  background: var(--bg-primary);
}
.calinfoHeader .contact-us-dropdown .dropdown-link:hover .icon svg path {
  fill: var(--bg-white);
}

.searchbtn {
  position: relative;
}
@media (max-width: 767px) {
  .searchbtn {
    position: static;
  }
}
.searchbtn .btn-search {
  background: transparent;
  border: 0;
  outline: none;
  height: 57px;
  width: 57px;
  color: var(--bg-white);
  font-weight: var(--font-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 1140px) {
  .searchbtn .btn-search {
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 675px) {
  .searchbtn .btn-search {
    height: 40px;
    width: 40px;
  }
}
.searchbtn .btn-search svg, .searchbtn .btn-search img {
  pointer-events: none;
}
.searchbtn .btn-search .close {
  display: none;
  max-width: 26px;
}
.searchbtn .headerSearch {
  position: absolute;
  right: 0;
  top: 6px;
  height: 500px;
}
@media (max-width: 991px) {
  .searchbtn .headerSearch {
    height: -moz-fit-content;
    height: fit-content;
    top: 0;
  }
}
@media (max-width: 767px) {
  .searchbtn .headerSearch {
    left: 0;
    top: 11px;
  }
}
.searchbtn .headerSearch .form .form-group {
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .searchbtn .headerSearch .form .form-group {
    margin: 0 0 6px;
    padding: 0 10px;
    padding-right: 55px;
  }
}
.searchbtn .headerSearch .form .form-group .form-control {
  width: 290px;
  margin-left: auto;
  display: inherit;
  margin-right: 0;
}
@media (max-width: 991px) {
  .searchbtn .headerSearch .form .form-group .form-control {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .searchbtn .headerSearch .form .form-group .form-control {
    width: 100%;
  }
}
.searchbtn .headerSearch .searchWrapper {
  text-indent: initial;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .SearchResulList {
  border: 1px solid var(--bs-gray-400);
  padding: 15px;
  width: 550px;
  max-width: 550px;
  padding-right: 0;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 991px) {
  .searchbtn .headerSearch .searchWrapper .modelSearchody .SearchResulList {
    max-width: 100%;
    width: 100%;
  }
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .SearchResulList .searhWrap {
  padding-right: 15px;
  max-height: 435px;
  overflow-y: scroll;
  background: #fff;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .SearchResulList .searhWrap::-webkit-scrollbar {
  width: 5px;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .SearchResulList .searhWrap::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .SearchResulList .searhWrap::-webkit-scrollbar-thumb {
  background-color: var(--bs-gray-400);
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .item {
  display: block;
  margin-bottom: 10px;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .item .row-title {
  font-size: var(--font-siz-20);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 10px;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .item .search-img {
  display: none;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .item .search-text {
  width: 100%;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .item .search-text a {
  display: block;
  padding: 5px 0;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .item .search-text a p {
  color: var(--bs-gray-600);
  font-size: 14px;
}
.searchbtn .headerSearch .searchWrapper .modelSearchody .item .search-text a p:hover {
  color: var(--bg-primary);
}
.searchbtn.active .btn-search .open {
  display: none;
}
.searchbtn.active .btn-search .close {
  display: block;
}

.SearchHedPop {
  position: absolute;
  right: 0;
  left: auto;
  width: 550px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 991px) {
  .SearchHedPop {
    left: 0;
    width: 100%;
  }
}
.SearchHedPop h4 {
  color: var(--black);
  margin-bottom: 8px;
}
.SearchHedPop .popItem {
  margin-bottom: 18px;
}
.SearchHedPop .popItem h4 a {
  style: inherit;
  color: var(--bg-black);
  transition: 500ms ease;
}
.SearchHedPop .popItem h4 a span, .SearchHedPop .popItem h4 a img {
  display: inline-block;
}
.SearchHedPop .popItem h4 a img {
  padding-left: 8px;
}
.SearchHedPop .popItem h4 a:hover {
  color: var(--bg-primary);
}
.SearchHedPop .flex {
  display: flex;
  flex-wrap: wrap;
}
.SearchHedPop .flex .li {
  flex: 0 1 25%;
  max-width: 25%;
  padding: 4px;
}
@media (max-width: 991px) {
  .SearchHedPop .flex .li {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
.SearchHedPop .flex .li a {
  display: flex;
  flex-grow: 1;
  border: 1px solid var(--border-color);
  padding: 5px;
  align-items: center;
  background: var(--bg-white);
  transition: 500ms ease;
  border-radius: 4px;
  height: 100%;
}
.SearchHedPop .flex .li a img {
  mix-blend-mode: darken;
  width: 45px;
}
.SearchHedPop .flex .li a .text {
  padding-left: 6px;
  line-height: 1;
  font-size: 13px;
  font-weight: var(--font-500);
}
.SearchHedPop .flex .li a:hover {
  background: var(--bs-gray-200);
}
.SearchHedPop .popSearch {
  display: flex;
  flex-grow: 1;
  gap: 0 4px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.SearchHedPop .popSearch a {
  padding: 10px 9px;
  font-weight: var(--font-500);
  background: var(--bg-white);
  transition: 500ms ease;
  color: var(--text-color-900);
  border: 1px solid var(--border-color);
  margin-bottom: 4px;
  border-radius: 4px;
  font-size: 12px;
}
.SearchHedPop .popSearch a:hover {
  background: var(--bs-gray-200);
}

.SearcHedResul {
  position: absolute;
  right: 0;
  left: auto;
  width: 550px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 25px 15px;
  display: none;
}
.SearcHedResul h4 {
  color: var(--black);
  margin-bottom: 12px;
  padding-left: 10px;
}
.SearcHedResul h4 a {
  display: inline-block;
  margin-left: 10px;
  color: var(--bs-gray-600);
  text-decoration: underline;
  transition: 500ms ease;
}
.SearcHedResul h4 a:hover {
  color: var(--bg-primary);
}
.SearcHedResul .regino {
  margin-bottom: 20px;
}
.SearcHedResul .regino .flex {
  display: flex;
  align-items: center;
  gap: 8px;
}
.SearcHedResul .regino .flex .circule {
  width: 35px;
  height: 35px;
  background: var(--bg-primary);
  border-radius: 50%;
}
.SearcHedResul .regino .flex .text {
  font-weight: var(--font-600);
}
.SearcHedResul .result ul {
  display: block;
  max-height: 350px;
  overflow-y: scroll;
}
.SearcHedResul .result ul::-webkit-scrollbar {
  width: 5px;
}
.SearcHedResul .result ul::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.SearcHedResul .result ul::-webkit-scrollbar-thumb {
  background-color: var(--bs-gray-400);
}
.SearcHedResul .result ul li, .SearcHedResul .result ul a {
  display: block;
}
.SearcHedResul .result ul a {
  color: var(--text-color-900);
  font-size: var(--font-siz-16);
  padding: 6px 10px;
  font-weight: var(--font-500);
  background: var(--bg-white);
  transition: 500ms ease;
}
.SearcHedResul .result ul a:hover {
  background: var(--bs-gray-100);
}

.megaMenuBox {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 2;
  display: none;
  box-shadow: 0 0 2px #d9d9d9;
}
.megaMenuBox .MenuBoxWrap {
  border-top: 2px solid var(--bg-primary);
}
.megaMenuBox .MenuBoxWrap .NavExpamlA {
  background: var(--bs-gray-200);
}

nav.nav-list ul > li > a {
  padding-top: 22px;
  padding-bottom: 22px;
  font-weight: var(--font-500);
}
nav.nav-list ul > li:hover > a {
  color: var(--bg-primary);
}
nav.nav-list ul li.has-dropdown:hover > .megaMenuBox {
  display: block;
}

.mob-trigger {
  width: 45px;
  display: none;
  padding: 0 6px;
}
@media (max-width: 991px) {
  .mob-trigger {
    height: 45px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
}
@media (max-width: 767px) {
  .mob-trigger {
    width: 36px;
    padding: 0;
    margin-left: 10px;
  }
}
.mob-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bg-black);
  position: relative;
}
.mob-trigger span::before, .mob-trigger span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bg-black);
  height: 2px;
}
.mob-trigger span::before {
  top: -8px;
}
.mob-trigger span::after {
  bottom: -8px;
}

.NavExpamlA .DropDonwLink {
  position: relative;
}
.NavExpamlA .DropDonwLink ul {
  min-height: 478px;
  padding: 25px 0;
  padding-left: 35px;
  width: 260px;
  background: var(--bg-white);
}
.NavExpamlA .DropDonwLink ul li {
  display: block;
}
.NavExpamlA .DropDonwLink ul li span {
  display: block;
  position: relative;
}
.NavExpamlA .DropDonwLink ul li span a {
  display: block;
  padding: 8px 0;
  cursor: pointer;
  font-weight: var(--font-500);
  line-height: 25px;
}
.NavExpamlA .DropDonwLink ul li span .ser {
  position: absolute;
  right: 15px;
  top: 15px;
}
.NavExpamlA .DropDonwLink ul li a {
  display: block;
  padding: 6px 0;
  font-weight: var(--font-500);
}
.NavExpamlA .DropDonwLink > ul > li:not(:hover) > span a, .NavExpamlA .DropDonwLink > ul > li:not(:hover) > span svg {
  color: var(--bg-black);
}
.NavExpamlA .DropDonwLink > ul > li.active .subMegaMenuDrop {
  display: block;
  z-index: 1;
}
.NavExpamlA .DropDonwLink > ul > li.active > span a, .NavExpamlA .DropDonwLink > ul > li.active > span svg {
  color: var(--bg-primary);
}
.NavExpamlA .DropDonwLink > ul > li:hover:not(:hover) > span a, .NavExpamlA .DropDonwLink > ul > li:hover:not(:hover) > span svg {
  color: var(--bg-black);
}
.NavExpamlA .DropDonwLink > ul > li:hover .subMegaMenuDrop {
  display: block;
  z-index: 1;
}
.NavExpamlA .DropDonwLink > ul > li:hover > span a, .NavExpamlA .DropDonwLink > ul > li:hover > span svg {
  color: var(--bg-primary);
}
.NavExpamlA .subMegaMenuDrop {
  position: absolute;
  top: 0;
  left: 260px;
  right: 0;
  padding: 35px 0;
  display: none;
  background: #f9f9f9;
}
.NavExpamlA .subMegaMenuDrop .subColA {
  flex: 0 1 45%;
  max-width: 45%;
  width: 100%;
  padding: 0 40px;
}
.NavExpamlA .subMegaMenuDrop .subColB {
  flex: 0 1 55%;
  max-width: 55%;
  width: 100%;
}
.NavExpamlA .subMegaMenuDrop figure {
  padding-right: 25px;
}
.NavExpamlA .subMegaMenuDrop figure img {
  width: auto;
  max-height: 408px;
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.NavExpamlA .subMegaMenuDrop .subNACContent .title {
  font-size: var(--font-siz-30);
  margin-bottom: 10px;
  font-weight: var(--font-600);
}
.NavExpamlA .subMegaMenuDrop .subNACContent .subTitlw {
  font-size: var(--font-siz-20);
  font-weight: var(--font-500);
}
.NavExpamlA .subMegaMenuDrop .subNACContent p {
  font-size: var(--font-siz-15);
  font-weight: var(--font-normal);
}
.NavExpamlA .subMegaMenuDrop .subNACContent .subTitlw.xs {
  font-size: var(--font-siz-16);
  margin-top: 35px;
}
.NavExpamlA .subMegaMenuDrop .subNACContent .link-btn {
  margin-top: 25px;
}
.NavExpamlA .subMegaMenuDrop .subNACContent .link-btn .btn {
  display: inline-block;
  padding: 10px 25px 8px;
  border: 1px solid var(--bg-black);
}

.ExpMegaNavSlider .title {
  font-size: var(--font-siz-22);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 8px;
}
.ExpMegaNavSlider .ExpMegaNavWrap {
  padding: 40px 0;
  position: relative;
}
.ExpMegaNavSlider .ExpMegaNavWrap .link-btn {
  position: absolute;
  right: 10px;
  top: 25px;
}
.ExpMegaNavSlider .ExpMegaNavWrap .link-btn .btn {
  padding: 10px 25px 7px;
  border-color: var(--bg-black);
}
.ExpMegaNavSlider .ExpMegaNavWrap .col {
  flex: 0 1 16.66%;
  max-width: 16.66%;
  width: 100%;
  padding: 8px;
}
.ExpMegaNavSlider .ExpMegaNavWrap .col a {
  padding: 0;
  display: block;
}
.ExpMegaNavSlider .ExpMegaNavWrap .col a img {
  width: 100%;
}
.ExpMegaNavSlider .ExpMegaNavWrap .col a p {
  font-size: var(--font-siz-14);
  padding: 5px;
  text-align: center;
  font-weight: var(--font-500);
}

.MegaMenuTravelBox {
  padding-left: 15px;
}
.MegaMenuTravelBox .colA {
  flex: 1;
  width: 100%;
  padding: 35px 0;
}
.MegaMenuTravelBox .colB {
  max-width: 400px;
  width: 100%;
}
.MegaMenuTravelBox .colStr {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 8px 12px;
}
.MegaMenuTravelBox .card {
  display: block;
  padding: 0;
}
.MegaMenuTravelBox .card figure {
  display: block;
}
.MegaMenuTravelBox .card figure img {
  width: 100%;
}
.MegaMenuTravelBox .card .content {
  padding: 15px 0;
}
.MegaMenuTravelBox .card .content .title {
  font-size: var(--font-siz-18);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 8px;
}
.MegaMenuTravelBox .card .content p {
  font-size: 15px;
}
.MegaMenuTravelBox .asideRignTravNav {
  max-width: 310px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  padding: 35px;
  background: #f9f9f9;
  height: 100%;
}
.MegaMenuTravelBox .asideRignTravNav .title {
  font-size: var(--font-siz-18);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 15px;
}
.MegaMenuTravelBox .asideRignTravNav ul {
  display: block;
}
.MegaMenuTravelBox .asideRignTravNav ul li {
  display: block;
}
.MegaMenuTravelBox .asideRignTravNav ul li a {
  display: block;
  padding: 4px 0;
}
.MegaMenuTravelBox .link-btn {
  text-align: center;
  margin-top: 25px;
}
.MegaMenuTravelBox .link-btn .btn {
  border-color: var(--bg-black);
  background: var(--bg-black);
  color: var(--bg-white);
  padding: 11px 25px 9px;
  font-size: var(--font-siz-14);
  min-width: 250px;
}
.MegaMenuTravelBox .link-btn .btn:hover {
  background: var(--bg-white);
  color: var(--bg-black);
}

.model.modelHumnurger {
  position: fixed;
  max-width: 400px;
  width: 100%;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  background: var(--bg-white);
  padding: 70px 0 0;
  transform: translateX(-100%);
  z-index: 33;
  transition: 0.7s ease;
}
.model.modelHumnurger.is-open {
  transform: translate(0);
}
.model.modelHumnurger .close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  right: 16px;
  top: 8px;
  z-index: 3;
  cursor: pointer;
}
.model.modelHumnurger .close svg {
  display: block;
  width: 29px;
  height: 29px;
  pointer-events: none;
}
.model.modelHumnurger .close svg path {
  fill: var(--bs-gray-700);
}
.model.modelHumnurger .modelwrapper {
  height: 100%;
  padding: 30px 0 0;
  overflow-y: scroll;
}
.model.modelHumnurger .modelwrapper::-webkit-scrollbar {
  width: 5px;
}
.model.modelHumnurger .modelwrapper::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.model.modelHumnurger .modelwrapper::-webkit-scrollbar-thumb {
  background-color: var(--bs-gray-400);
}
.model.modelHumnurger .modelwrapper .HumNavigation {
  padding-bottom: 45px;
}
.model.modelHumnurger .modelwrapper .HumNavigation .logo {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  padding: 13px 13px;
  border-bottom: 1px solid var(--bs-gray-300);
}
.model.modelHumnurger .modelwrapper .HumNavigation .logo img {
  max-width: 150px;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li {
  display: block;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li a {
  display: block;
  padding: 10px 15px;
  font-size: var(--font-siz-24);
  font-weight: var(--font-600);
  color: var(--bg-black);
  transition: 0.5s ease;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li.has-nav {
  transition: 0.5s ease;
  position: relative;
  background: var(--bg-white);
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li.has-nav a {
  padding: 10px 15px;
  position: relative;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li.has-nav > a {
  border-bottom: 1px solid var(--bg-white);
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li.has-nav.active > a {
  color: var(--bg-primary);
  border-color: var(--bg-primary);
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li.has-nav.active .subnavtrigger img {
  filter: grayscale(0) brightness(1);
  transform: rotate(-90deg);
  transition: 0.5s ease;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li .dropdownList {
  padding: 0;
  padding: 8px 0;
  background: var(--bs-gray-200);
  display: none;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li .dropdownList ul li a {
  display: block;
  padding: 4px 15px;
  font-size: var(--font-siz-16);
  font-weight: var(--font-Normal);
  color: var(--bs-gray-700);
  transition: 0.5s ease;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li .dropdownList ul li a:hover {
  color: var(--bg-primary);
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li .subnavtrigger {
  position: absolute;
  top: 0px;
  right: 0;
  width: 55px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav ul li .subnavtrigger img {
  filter: grayscale(1) brightness(0);
  transform: rotate(0deg);
  transition: 0.5s ease;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav .othernav {
  border-top: 1px solid var(--bs-gray-300);
  margin-top: 20px;
  padding-top: 20px;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav .othernav ul li a {
  display: block;
  padding: 4px 15px;
  font-size: var(--font-siz-18);
  font-weight: var(--font-Normal);
  color: var(--bs-gray-700);
  transition: 0.5s ease;
}
.model.modelHumnurger .modelwrapper .HumNavigation .nav .othernav ul li a:hover {
  color: var(--bg-primary);
}
.model.modelHumnurger .navbottomStrip {
  background: var(--bg-white);
  padding: 7px 0;
  margin-top: 22px;
  border-top: 1px solid var(--bs-gray-300);
  padding-top: 30px;
}

.model.model-Search {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  z-index: 4;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.14, 1.17, 0.33, 1.01);
}
.model.model-Search.is-open {
  transform: translateY(0%);
}
.model.model-Search.is-open .model-body {
  display: block;
}
.model.model-Search .model-wrappr .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 767px) {
  .model.model-Search .model-wrappr .close {
    top: 10px;
    right: 8px;
    background: var(--bg-white);
  }
}
@media (max-width: 767px) {
  .model.model-Search .model-wrappr .close::before {
    content: "Close";
    position: absolute;
    right: 100%;
  }
}
.model.model-Search .model-wrappr .close svg {
  display: block;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.model.model-Search .model-wrappr .close svg path {
  fill: var(--bg-black);
}
.model.model-Search .model-body {
  display: none;
}
.model.model-Search .model-body .model-wrapper {
  display: block;
}
@media (max-width: 991px) {
  .model.model-Search .model-body .model-wrapper {
    padding-top: 80px;
  }
}
.model.model-Search .modelSearchHeader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}
.model.model-Search .modelSearchHeader .form {
  max-width: 992px;
  width: 100%;
  margin: 0 auto;
  padding: 25px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .model.model-Search .modelSearchHeader .form {
    padding: 0px;
  }
}
.model.model-Search .modelSearchHeader .form .form-group {
  position: relative;
  margin: 0;
}
.model.model-Search .modelSearchHeader .form .form-group .form-control {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: var(--font-siz-18);
  font-weight: var(--font-normal);
  width: 100%;
  line-height: 1.5;
  min-height: 60px;
  color: var(--bg-black);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bg-white);
  background-clip: padding-box;
  border: 1px solid var(--bs-gray-400);
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
}
@media (max-width: 767px) {
  .model.model-Search .modelSearchHeader .form .form-group .form-control {
    border: 0;
    min-height: 70px;
    border-bottom: 1px solid var(--bs-gray-300);
  }
}
.model.model-Search .modelSearchHeader .form .form-group .form-control::-moz-placeholder {
  color: var(--bs-gray-600);
  font-size: var(--font-siz-18);
  font-weight: var(--font-normal);
}
.model.model-Search .modelSearchHeader .form .form-group .form-control::placeholder {
  color: var(--bs-gray-600);
  font-size: var(--font-siz-18);
  font-weight: var(--font-normal);
}
.model.model-Search .modelSearchHeader .form .form-group .form-control:focus {
  outline: none;
  border-color: var(--bg-blue);
}
.model.model-Search .modelSearchHeader .form .form-group label {
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 0;
  padding: 0.375rem 0.75rem;
  color: var(--bs-gray-600);
  font-size: var(--font-siz-18);
  font-weight: var(--font-600);
}
.model.model-Search .modelSearchHeader .form .form-group .btn-search {
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 65px;
  display: flex;
  align-items: center;
  border: 0;
  cursor: pointer;
  justify-content: center;
}
.model.model-Search .modelSearchHeader .form .form-group .btn-search svg {
  width: 22px;
  height: 22px;
  color: var(--bs-gray-600);
}
.model.model-Search .model-wrappr, .model.model-Search .model-body, .model.model-Search .model-wrapper {
  height: 100%;
}
.model.model-Search .modelSearchody {
  position: relative;
  height: 100%;
}
.model.model-Search .modelSearchody .searchPlaceholder {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
}
@media (max-width: 767px) {
  .model.model-Search .modelSearchody .searchPlaceholder {
    padding: 15px;
  }
}
.model.model-Search .modelSearchody .searchPlaceholder .title {
  font-size: var(--font-siz-36);
  font-weight: var(--font-600);
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .model.model-Search .modelSearchody .searchPlaceholder .title {
    font-size: var(--font-siz-24);
  }
}
.model.model-Search .modelSearchody .searchResult {
  display: none;
  height: 100%;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList {
  max-width: 992px;
  width: 100%;
  margin: 0 auto;
  padding: 25px;
  height: 100%;
  padding-top: 85px;
}
@media (max-width: 767px) {
  .model.model-Search .modelSearchody .searchResult .SearchResulList {
    padding: 0;
  }
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .searhWrap {
  border: 1px solid var(--bs-gray-400);
  border-top: 0;
  padding: 15px;
  height: 100%;
  overflow-y: scroll;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .searhWrap::-webkit-scrollbar {
  width: 5px;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .searhWrap::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .searhWrap::-webkit-scrollbar-thumb {
  background-color: var(--bs-gray-400);
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .item {
  display: block;
  margin-bottom: 10px;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .item .row-title {
  font-size: var(--font-siz-20);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 10px;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .item .search-img {
  display: none;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .item .search-text {
  width: 100%;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .item .search-text a {
  display: block;
  padding: 5px 0;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .item .search-text a p {
  color: var(--bs-gray-600);
  font-size: 14px;
}
.model.model-Search .modelSearchody .searchResult .SearchResulList .item .search-text a p:hover {
  color: var(--bg-primary);
}

.SlideCardSLider .swiper-slide {
  position: relative;
}
.SlideCardSLider .swiper-slide .bg {
  position: relative;
}
.SlideCardSLider .swiper-slide .bg::after {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.6;
  transition: 500ms ease;
}
.SlideCardSLider .swiper-slide .bg img {
  width: 100%;
}
.SlideCardSLider .swiper-slide p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  color: var(--bg-white);
  text-align: center;
}
@media (max-width: 767px) {
  .SlideCardSLider .swiper-slide p {
    padding: 10px;
    bottom: 20px;
  }
}
.SlideCardSLider .swiper-slide a {
  display: block;
}
.SlideCardSLider .swiper-slide a .lin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #fff;
  padding: 5px 30px;
  font-weight: var(--font-500);
  font-size: var(--font-siz-14);
  opacity: 0;
  transition: 500ms ease;
  pointer-events: none;
  line-height: 1.7;
}
.SlideCardSLider .swiper-slide a:hover .lin {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.SlideCardSLider .swiper-slide a:hover .bg::after {
  height: 100%;
}
.SlideCardSLider .swiper-pagination {
  position: static;
  margin-top: 25px;
}
.SlideCardSLider .swiper-pagination span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid var(--bg-black);
  border-radius: 12px;
  opacity: 1;
  background: transparent;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}
.SlideCardSLider .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--bg-black);
}

.banner {
  position: relative;
}

.banner-home-slide .bg {
  display: block;
  position: relative;
}
.banner-home-slide .bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.7;
}
@media (max-width: 520px) {
  .banner-home-slide .bg::after {
    background: var(--bg-black);
    opacity: 0.4;
  }
}
.banner-home-slide .bg img {
  width: 100%;
}
@media (max-width: 767px) {
  .banner-home-slide .bg img {
    height: 320px;
  }
}
.banner-home-slide .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-home-slide .banner-content .content {
  text-align: center;
}
@media (max-width: 520px) {
  .banner-home-slide .banner-content .content {
    max-width: 280px;
  }
}
.banner-home-slide .banner-content .content .title {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 0.9em;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--bg-white);
  font-family: var(--fontAlternateGotNo1DRegular);
}
@media (max-width: 767px) {
  .banner-home-slide .banner-content .content .title {
    font-size: var(--font-siz-35);
  }
}
@media (max-width: 520px) {
  .banner-home-slide .banner-content .content .title {
    font-size: var(--font-siz-28);
    margin-bottom: 8px;
    line-height: var(--font-siz-28);
  }
}
.banner-home-slide .banner-content .content p {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.28;
  margin-bottom: 12px;
  color: var(--bg-white);
  text-transform: uppercase;
}
.banner-home-slide .banner-content .content p span {
  font-size: 14px;
}
@media (max-width: 767px) {
  .banner-home-slide .banner-content .content p {
    font-size: var(--font-siz-18);
    font-weight: var(--font-Normal);
    line-height: 1.1;
  }
}

.banner .owl-carousel.banner-home-slide .owl-nav button {
  background: inherit;
}
.banner .owl-carousel.banner-home-slide .owl-nav button svg {
  font-size: 43px;
}
.banner .owl-carousel.banner-home-slide .owl-nav button svg path {
  fill: white;
}
@media (min-width: 992px) {
  .banner .owl-carousel.banner-home-slide .owl-nav button.owl-prev {
    left: 50px;
  }
}
@media (min-width: 992px) {
  .banner .owl-carousel.banner-home-slide .owl-nav button.owl-next {
    right: 50px;
  }
}
.banner .owl-carousel.banner-home-slide .owl-dots {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  text-align: center;
}
@media (max-width: 520px) {
  .banner .owl-carousel.banner-home-slide .owl-dots {
    bottom: 15px;
  }
}
.banner .owl-carousel.banner-home-slide .owl-dots button.owl-dot {
  display: inline-block;
  margin: 0 px;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: var(--bg-white);
  margin: 0 5px;
}
.banner .owl-carousel.banner-home-slide .owl-dots button.owl-dot.active {
  background: var(--bg-primary);
}

.homeSecA {
  padding-bottom: 45px;
}
@media (max-width: 767px) {
  .homeSecA {
    padding-bottom: 40px;
  }
}
.homeSecA .container {
  padding-bottom: 40px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .homeSecA .container {
    padding: 25px 15px;
  }
}
.homeSecA .heading {
  max-width: 780px;
  width: 100%;
  margin: 0 auto 12px;
}
@media (max-width: 520px) {
  .homeSecA .heading h2 {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 15px;
  }
}
@media (max-width: 767px) {
  .homeSecA .slideB {
    padding: 0 15px;
  }
}
.homeSecA .slideB .swiper-slide {
  position: relative;
}
.homeSecA .slideB .swiper-slide a {
  display: block;
}
.homeSecA .slideB .swiper-slide .bg {
  position: relative;
}
.homeSecA .slideB .swiper-slide .bg::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.8;
}
.homeSecA .slideB .swiper-slide .bg img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 420px) {
  .homeSecA .slideB .swiper-slide .bg img {
    height: 225px;
  }
}
.homeSecA .slideB .swiper-slide .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  text-align: center;
}
.homeSecA .slideB .swiper-slide .content p {
  font-size: var(--font-siz-18);
  color: var(--bg-white);
  font-weight: var(--font-600);
  line-height: 1.4;
}
.homeSecA .link-btn {
  margin-top: 45px;
  text-align: center;
}
@media (max-width: 767px) {
  .homeSecA .link-btn {
    margin-top: 30px;
  }
}
.homeSecA .link-btn .hover-invert {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}
.homeSecA .link-btn .hover-invert:hover {
  background: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid var(--bg-black);
}

.homeSecB {
  background: var(--bs-gray-200);
  padding: 40px 0 45px;
}
@media (max-width: 520px) {
  .homeSecB {
    padding: 35px 0;
  }
}
.homeSecB .heading {
  width: 100%;
  margin: 0 auto 20px;
  padding: 0;
}
@media (max-width: 991px) {
  .homeSecB .heading {
    max-width: 680px;
  }
}
.homeSecB .heading p {
  display: block;
}
.homeSecB .sugNav {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 420px) {
  .homeSecB .sugNav {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .homeSecB .sugNav .wrap {
    display: flex;
    justify-content: space-between;
  }
}
.homeSecB .sugNav .button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
  padding: 6px 0;
  position: relative;
  color: var(--bs-gray-600);
  font-size: var(--font-siz-18);
  cursor: pointer;
  font-weight: var(--font-500);
}
@media (max-width: 767px) {
  .homeSecB .sugNav .button {
    margin: 0 10px;
    font-size: var(--font-siz-16);
  }
}
@media only screen and (max-width: 420px) {
  .homeSecB .sugNav .button {
    margin: 0 0;
  }
}
.homeSecB .sugNav .button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--bg-primary);
  transition: 0.5s ease;
}
.homeSecB .sugNav .button.current {
  color: var(--bg-black);
}
.homeSecB .sugNav .button.current::after {
  width: 100%;
}
@media (max-width: 520px) {
  .homeSecB .sugNav .button:last-child {
    display: none;
  }
}
.homeSecB .slideC {
  position: relative;
}
.homeSecB .slideC .slideTabSug {
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .homeSecB .slideC .slideTabSug {
    margin-bottom: 10px;
  }
}
.homeSecB .slideC .loaderSlide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bs-gray-200);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.6s ease;
}
.homeSecB .slideC .loaderSlide.loading {
  opacity: 1;
  visibility: visible;
}
.homeSecB .slideC .loaderSlide .load {
  height: 100%;
}
.homeSecB .slideC .loaderSlide .load img {
  display: flex;
  width: 100px;
}
.homeSecB .swiper-slide {
  padding: 8px;
}
.homeSecB .link-btn {
  text-align: center;
}
.homeSecB .link-btn .hover-invert {
  background: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid var(--bg-black);
}
.homeSecB .link-btn .hover-invert:hover {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}
.homeSecB .owl-carousel.HSlideD .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 110px140px;
}
.homeSecB .owl-carousel.HSlideD .owl-nav button {
  position: static;
  transform: none;
  border: 1px solid var(--bg-black);
}
.homeSecB .owl-carousel.HSlideD .owl-nav button.owl-prev {
  margin-right: 6px;
}
.homeSecB .owl-carousel.HSlideD .owl-nav button.disabled {
  opacity: 0.3;
}
.homeSecB .owl-carousel.HSlideD .owl-nav.disabled {
  display: none;
}

.homeSecB.bg-white {
  background: var(--bg-white);
  padding-bottom: 0;
}
.homeSecB.bg-white .heading {
  margin-bottom: 35px;
}
@media (max-width: 675px) {
  .homeSecB.bg-white .heading {
    margin-bottom: 20px;
  }
}
.homeSecB.bg-white .slideC .slideTabSug {
  margin-bottom: 0;
}

.productCard .packageDetailDn {
  display: none !important;
}
.productCard .item {
  background: var(--bg-white);
  box-shadow: 0 0 9px #d3d3d3;
}
.productCard .item figure img {
  height: auto;
}
.productCard .item figure .btnSugSearch img {
  height: auto;
}
.productCard .item .content {
  display: block;
  padding: 12px 7px;
  padding-bottom: 16px;
}
@media (max-width: 1300px) {
  .productCard .item .content {
    padding: 15px 8px;
  }
}
@media (max-width: 675px) {
  .productCard .item .content {
    padding: 15px 12px 20px;
  }
}
.productCard .item .content .cul {
  color: var(--bg-primary);
  font-size: var(--font-siz-13);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
.productCard .item .content .cul span {
  display: inline-block;
}
.productCard .item .content .packName {
  font-family: var(--fontAlternateGotNo1DRegular);
  font-size: 26px;
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.productCard .item .content p {
  margin-bottom: 15px;
  color: var(--bg-black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 520px) {
  .productCard .item .content p {
    min-height: auto;
    margin-bottom: 10px;
  }
}
.productCard .item .content .durPack {
  margin-top: 18px;
  color: #000;
  margin-bottom: 25px;
}
@media (max-width: 520px) {
  .productCard .item .content .durPack {
    margin: 10px 0;
  }
}
.productCard .item .content .dureq {
  font-size: 14px;
  color: var(--bs-gray-600);
  margin-top: 10px;
  margin-bottom: 15px;
}
@media (max-width: 520px) {
  .productCard .item .content .dureq {
    margin-bottom: 10px;
  }
}
.productCard .item .content .d-flex {
  gap: 0 5px;
}
.productCard .item .content .link-btn {
  flex-grow: 1;
}
@media (max-width: 675px) {
  .productCard .item .content .link-btn {
    flex: auto;
  }
}
.productCard .item .content .link-btn .btn {
  display: block;
  text-align: center;
  min-width: 107px;
  font-size: 13px;
  padding: 9px 2px 9px;
  border: 1px solid var(--bg-black);
}
@media (max-width: 1300px) {
  .productCard .item .content .link-btn .btn {
    padding: 8px;
    padding: 11px 8px 7px;
    text-align: center;
  }
}
@media (max-width: 675px) {
  .productCard .item .content .link-btn .btn {
    min-width: 100%;
  }
}
.productCard .item .content .link-btn.black .btn {
  background: var(--bg-black);
  color: var(--bg-white);
}
.productCard .item .content .link-btn.black .btn:hover {
  background: var(--bg-white);
  color: var(--bg-black);
  border-color: var(--bg-black);
}

.homeSecC, .trustpilot-sec {
  background: var(--bg-white);
  padding: 60px 0 20px;
}
@media (max-width: 767px) {
  .homeSecC, .trustpilot-sec {
    padding: 35px 0;
  }
}
.homeSecC .heading, .trustpilot-sec .heading {
  max-width: 780px;
  width: 100%;
  margin: 0 auto 28px;
}
.homeSecC .heading .relative, .trustpilot-sec .heading .relative {
  display: inline-block;
}
.homeSecC .heading .relative span, .trustpilot-sec .heading .relative span {
  font-size: var(--font-siz-24);
  color: var(--bg-black);
  position: absolute;
  top: 0;
  right: 95px;
}
.homeSecC .heading .relative span::after, .trustpilot-sec .heading .relative span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 33px;
  width: 18px;
  height: 10px;
  background: url("../icons/down-arrow-sl.png");
  animation: trany 2.8s ease infinite;
}
.homeSecC .link-btn, .trustpilot-sec .link-btn {
  margin-top: 45px;
  text-align: center;
}
.homeSecC .link-btn .hover-invert, .trustpilot-sec .link-btn .hover-invert {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}
.homeSecC .link-btn .hover-invert:hover, .trustpilot-sec .link-btn .hover-invert:hover {
  background: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid var(--bg-black);
}
.homeSecC .owl-carousel.curiousSlider .owl-nav, .trustpilot-sec .owl-carousel.curiousSlider .owl-nav {
  position: absolute;
  top: -110px;
  right: 0;
  display: flex;
  width: 115px;
  align-items: center;
  justify-content: space-between;
}
.homeSecC .owl-carousel.curiousSlider .owl-nav button, .trustpilot-sec .owl-carousel.curiousSlider .owl-nav button {
  position: static;
  transform: none;
  border: 1px solid var(--bg-black);
}
.homeSecC .owl-carousel.curiousSlider .owl-nav button.owl-prev, .trustpilot-sec .owl-carousel.curiousSlider .owl-nav button.owl-prev {
  position: static;
  margin-right: 6px;
}
.homeSecC .owl-carousel.curiousSlider .owl-nav button.disabled, .trustpilot-sec .owl-carousel.curiousSlider .owl-nav button.disabled {
  position: static;
  opacity: 0.3;
}
.homeSecC .owl-carousel.curiousSlider .owl-nav.disabled, .trustpilot-sec .owl-carousel.curiousSlider .owl-nav.disabled {
  display: none;
}

.homeSecD {
  background: var(--bg-white);
  padding: 60px 0 60px;
}
@media (max-width: 767px) {
  .homeSecD {
    padding: 35px 0;
  }
}
@media (max-width: 520px) {
  .homeSecD {
    padding: 15px 0 35px 0;
  }
}
.homeSecD .heading {
  max-width: 992px;
  width: 100%;
  margin: 0 auto 55px;
}
@media (max-width: 767px) {
  .homeSecD .heading {
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  .homeSecD .popularSearcPing .d-flex {
    justify-content: unset;
  }
}
.homeSecD .popularSearcPing .col {
  padding: 0 20px;
}
@media (max-width: 1140px) {
  .homeSecD .popularSearcPing .col {
    padding: 0 8px;
  }
}
@media (max-width: 767px) {
  .homeSecD .popularSearcPing .col {
    padding: 0 3px;
  }
}
@media (max-width: 520px) {
  .homeSecD .popularSearcPing .col {
    padding: 0;
    flex: 0 1 50%;
    max-width: 50%;
    margin-bottom: 8px;
  }
}
.homeSecD .popularSearcPing .searcping {
  padding: 8px;
}
@media (max-width: 767px) {
  .homeSecD .popularSearcPing .searcping {
    padding: 4px;
  }
}
.homeSecD .popularSearcPing .searcping .icon {
  display: block;
  background: var(--bs-gray-300);
  width: 36px;
  height: 36px;
  padding: 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: 0.5s ease;
}
@media (max-width: 767px) {
  .homeSecD .popularSearcPing .searcping .icon {
    margin-right: 4px;
  }
}
@media (max-width: 520px) {
  .homeSecD .popularSearcPing .searcping .icon {
    margin-right: 8px;
  }
}
.homeSecD .popularSearcPing .searcping .icon img {
  filter: none;
  transition: 0.5s ease;
}
.homeSecD .popularSearcPing .searcping span {
  font-size: var(--font-siz-17);
  color: var(--bg-black);
  font-weight: var(--font-600);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .homeSecD .popularSearcPing .searcping span {
    line-height: 18px;
    font-size: var(--font-siz-14);
  }
}
.homeSecD .popularSearcPing .searcping:hover .icon {
  background: var(--bg-black);
}
.homeSecD .popularSearcPing .searcping:hover .icon img {
  filter: invert(1);
}

.homeSecE {
  background: var(--bs-gray-200);
  padding: 45px 0;
}
@media (max-width: 520px) {
  .homeSecE {
    padding: 35px 0;
  }
}
.homeSecE .container {
  max-width: 1070px;
}
.homeSecE .heading {
  max-width: 992px;
  width: 100%;
  margin: 0 auto 35px;
}
@media (max-width: 767px) {
  .homeSecE .heading {
    max-width: 300px;
    margin: 0 auto 30px;
  }
}
.homeSecE .boxHand .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 12px;
}
@media (max-width: 767px) {
  .homeSecE .boxHand .col {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 675px) {
  .homeSecE .boxHand .col {
    padding: 6px;
  }
}
@media (max-width: 520px) {
  .homeSecE .boxHand .col {
    flex: 0 1 100%;
    max-width: 100%;
    text-align: center;
  }
}
.homeSecE .boxHand .col .d-flex {
  border-radius: 20px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.homeSecE .boxHand .icon {
  flex: 0 1 65px;
  max-width: 65px;
}
@media (max-width: 675px) {
  .homeSecE .boxHand .icon {
    flex: 0 1 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 675px) {
  .homeSecE .boxHand .icon img {
    padding: 9px;
    max-height: 100px;
    margin-bottom: 14px;
    min-height: 60px;
  }
}
.homeSecE .boxHand .boxCont {
  flex: 1;
  padding-left: 10px;
}
@media (max-width: 675px) {
  .homeSecE .boxHand .boxCont {
    padding: 0;
  }
}
.homeSecE .boxHand .title {
  font-size: var(--font-siz-18);
  color: var(--bg-black);
  font-weight: var(--font-600);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.homeSecF {
  position: relative;
  background-color: var(--bg-white);
  padding: 60px 0;
}
@media (max-width: 520px) {
  .homeSecF {
    padding: 25px 0 30px;
  }
}
.homeSecF .shape {
  position: absolute;
}
@media (max-width: 675px) {
  .homeSecF .shape {
    display: none;
  }
}
.homeSecF .shape.SecFA {
  left: 3%;
}
.homeSecF .shape.SecFB {
  right: 0;
  bottom: 4%;
}
.homeSecF .container {
  position: relative;
  z-index: 1;
}
.homeSecF .heading {
  max-width: 685px;
  width: 100%;
  margin: 0 auto;
}
.homeSecF .heading h2 {
  margin: 0 auto 10px;
}
@media (min-width: 992px) {
  .homeSecF .heading p {
    color: var(--bg-black);
  }
}
.homeSecF .link-btn {
  margin-top: 45px;
  text-align: center;
}
@media (max-width: 767px) {
  .homeSecF .link-btn {
    margin-top: 20px;
  }
}
.homeSecF .link-btn .hover-invert {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}
.homeSecF .link-btn .hover-invert:hover {
  background: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid var(--bg-black);
}

.homeSecG {
  background: url("../images/home/travMetter.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 50px 0;
}
@media (max-width: 1140px) {
  .homeSecG {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .homeSecG {
    padding: 35px 0;
  }
}
.homeSecG::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--bg-black), transparent), linear-gradient(to top, var(--bg-black) 70%, transparent 100%);
  opacity: 0.6;
}
.homeSecG .w {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1140px) {
  .homeSecG .w {
    padding: 0;
  }
}
.homeSecG .w p {
  font-size: var(--font-siz-18);
  color: var(--bg-white);
  font-weight: var(--font-normal);
  margin: 5px 0 40px 0;
}
@media (max-width: 767px) {
  .homeSecG .w p {
    margin-top: 10px;
    font-size: var(--font-siz-15);
  }
}

.Hoexcenl {
  padding: 40px 0;
  background: var(--bg-white);
}
.Hoexcenl img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  opacity: 1;
  transition: 0.5s ease;
}
.owl-carousel .owl-nav button.swiper-button-disabled {
  opacity: 0.5;
}
.owl-carousel .owl-nav button.owl-prev {
  left: 20px;
  background: var(--bg-white);
}
.owl-carousel .owl-nav button.owl-next {
  background: var(--bg-white);
  right: 20px;
}

.trustpilot-sec .testimonial-slider {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .trustpilot-sec .testimonial-slider {
    max-width: 540px;
  }
}
.trustpilot-sec .testimonial-slider .owl-stage {
  display: flex;
}
.trustpilot-sec .testimonial-slider .owl-stage .owl-item {
  height: auto;
}
.trustpilot-sec .testimonial-slider .owl-nav button {
  top: 35%;
}
@media (max-width: 767px) {
  .trustpilot-sec .testimonial-slider .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
  }
}
.trustpilot-sec .testimonial-slider .owl-nav .owl-prev, .trustpilot-sec .testimonial-slider .owl-nav .owl-next {
  border: 1px solid #000;
}
@media (max-width: 767px) {
  .trustpilot-sec .testimonial-slider .owl-nav .owl-prev, .trustpilot-sec .testimonial-slider .owl-nav .owl-next {
    position: unset !important;
    transform: none !important;
  }
}
.trustpilot-sec .testimonial-slider .owl-nav .owl-prev {
  left: -85px;
}
@media (max-width: 1152px) {
  .trustpilot-sec .testimonial-slider .owl-nav .owl-prev {
    left: -65px;
  }
}
.trustpilot-sec .testimonial-slider .owl-nav .owl-next {
  right: -85px;
}
@media (max-width: 1152px) {
  .trustpilot-sec .testimonial-slider .owl-nav .owl-next {
    right: -65px;
  }
}

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

.hom-sim-exp-sec {
  padding: 60px 0;
}
.hom-sim-exp-sec .heading {
  margin: 0 auto 55px;
}
.hom-sim-exp-sec .heading p {
  max-width: 1052px;
  margin: 0 auto;
}
@media (max-width: 1152px) {
  .hom-sim-exp-sec .sim-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .hom-sim-exp-sec .sim-card-grid {
    grid-template-columns: 100%;
  }
}
@media (max-width: 1152px) {
  .hom-sim-exp-sec .sim-card-grid .tse-card:nth-child(n+4) {
    display: none;
  }
}
.hom-sim-exp-sec .sim-exp-card .card {
  height: 360px;
}
.hom-sim-exp-sec .link-btn {
  margin-top: 3rem;
}
.hom-sim-exp-sec .link-btn .btn {
  border: 1px solid #000;
}

.owl-carousel.sim-card-slider {
  padding: 0 5rem;
}
@media (max-width: 1140px) {
  .owl-carousel.sim-card-slider {
    padding: 0 3.5rem;
    text-indent: initial;
  }
}
@media (max-width: 767px) {
  .owl-carousel.sim-card-slider {
    padding: 0;
  }
}
.owl-carousel.sim-card-slider .owl-stage {
  display: flex;
}
.owl-carousel.sim-card-slider .owl-stage .owl-item {
  height: auto;
  padding: 1px;
}
.owl-carousel.sim-card-slider .owl-nav button {
  background: none;
  border: 1px solid #000;
}
.owl-carousel.sim-card-slider .owl-nav button.owl-prev {
  left: 0;
}
.owl-carousel.sim-card-slider .owl-nav button.owl-next {
  right: 0;
}

.tse-card {
  padding: 10px;
  border-style: solid;
  background-clip: border-box;
  border-color: #000;
  border-width: 1px;
  height: 100%;
}
.tse-card .tour-image-inner,
.tse-card .tour-link {
  position: relative;
  overflow: hidden;
}
.tse-card .tour-image-inner a {
  overflow: hidden;
}
.tse-card .tour-image img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.tse-card .tour-image .waitlist-badge {
  display: none;
}
.tse-card .waitlist .gradient-overlay:after,
.tse-card .sold-out .gradient-overlay:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(242, 0, 60, 0.3) 0%, rgba(242, 0, 60, 0.3) 100%);
}
.tse-card .tour-link:hover img,
.tse-card .tour-image-inner:hover img {
  transform: scale(1.05);
}
.tse-card .waitlist-badge,
.tse-card .waitlist .waitlist-badge,
.tse-card .category-badge,
.tse-card .sold-out .waitlist-badge {
  display: block;
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--bg-white);
  border-radius: 30px;
  padding: 6px 20px;
  color: var(--Red, #A62B2D);
  font-style: normal;
  line-height: 1.5;
}
.tse-card .waitlist-badge,
.tse-card .waitlist .waitlist-badge,
.tse-card .sold-out .waitlist-badge {
  font-weight: 500;
  color: #000;
}
.tse-card .sold-out .waitlist-badge {
  color: #A62B2D;
}
.tse-card .tour-title h3 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 14px;
  font-family: var(--fontBrandon);
}
.tse-card .tour-title h3 span {
  color: #52575c;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
}
.tse-card .tour-title p {
  font-size: 14px;
  margin-bottom: 10px;
}
.tse-card .tour-title div {
  display: inline;
}
.tse-card .tour-date {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-top: 4px;
  text-indent: initial;
}

.no-click {
  pointer-events: none;
  cursor: default;
}

.trustpilot-2022 {
  text-align: center;
}
.trustpilot-2022 .trustpilot-inner {
  display: flex;
  flex-direction: column;
}
.trustpilot-2022 .trustpilot-inner .h2 {
  order: 1;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}
@media (max-width: 991px) {
  .trustpilot-2022 .trustpilot-inner .h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .trustpilot-2022 .trustpilot-inner .h2 {
    font-size: 24px;
  }
}
.trustpilot-2022 .trustpilot-inner > p {
  order: 2;
}
.trustpilot-2022 .trustpilot-inner .stars {
  order: 4;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.trustpilot-2022 .trustpilot-inner .stars rect {
  fill: rgb(4, 218, 141);
}
.trustpilot-2022 .trustpilot-inner .stars .tp-rating {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trustpilot-2022 .trustpilot-inner .stars .tp-rating img {
  width: auto;
  height: 22px;
  display: block;
}
.trustpilot-2022 .trustpilot-inner .stars .tp-rating svg {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}
.trustpilot-2022 .trustpilot-inner .t-tag {
  text-transform: none;
  order: 3;
  font-weight: 600;
  margin-top: 2.5rem;
}
.trustpilot-2022 .trustpilot-inner .trustpilot-review-published {
  order: 5;
  color: #000;
  margin: 0 0 1rem;
}

.sim-card-gridlst {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px 20px;
}
@media (max-width: 767px) {
  .sim-card-gridlst {
    grid-template-columns: 100%;
    padding: 30px 0 50px;
  }
}
.sim-card-gridlst .tse-cardlst {
  padding: 10px;
  border-style: solid;
  background-clip: border-box;
  border-color: #000;
  border-width: 1px;
}
.sim-card-gridlst .tse-cardlst .tour-image-innerlst,
.sim-card-gridlst .tse-cardlst .tour-linklst {
  position: relative;
  overflow: hidden;
}
.sim-card-gridlst .tse-cardlst .tour-image-innerlst a {
  overflow: hidden;
}
.sim-card-gridlst .tse-cardlst .tour-imagelst img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.sim-card-gridlst .tse-cardlst .tour-imagelst .waitlist-badgelst {
  display: none;
}
.sim-card-gridlst .tse-cardlst .sold-outlst img,
.sim-card-gridlst .tse-cardlst .waitlistlst img {
  filter: none;
}
.sim-card-gridlst .tse-cardlst .waitlistlst .gradient-overlaylst:after,
.sim-card-gridlst .tse-cardlst .sold-outlst .gradient-overlaylst:after {
  display: none;
}
.sim-card-gridlst .tse-cardlst .tour-linklst:hover img,
.sim-card-gridlst .tse-cardlst .tour-image-innerlst:hover img {
  transform: scale(1.05);
}
.sim-card-gridlst .tse-cardlst .waitlist-badgelst,
.sim-card-gridlst .tse-cardlst .waitlistlst .waitlist-badgelst,
.sim-card-gridlst .tse-cardlst .category-badgelst,
.sim-card-gridlst .tse-cardlst .sold-outlst .waitlist-badgelst {
  display: block;
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--bg-white);
  border-radius: 30px;
  padding: 6px 20px;
  color: var(--Red, #A62B2D);
  font-style: normal;
  line-height: 1.5;
}
.sim-card-gridlst .tse-cardlst .waitlist-badgelst,
.sim-card-gridlst .tse-cardlst .waitlistlst .waitlist-badgelst,
.sim-card-gridlst .tse-cardlst .sold-outlst .waitlist-badgelst {
  font-weight: 500;
  color: #000;
}
.sim-card-gridlst .tse-cardlst .sold-outlst .waitlist-badgelst {
  color: #A62B2D;
}
.sim-card-gridlst .tse-cardlst .tour-titlelst h3 {
  color: #000;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 14px;
}
.sim-card-gridlst .tse-cardlst .tour-titlelst p {
  font-size: 14px;
  margin-bottom: 10px;
}
.sim-card-gridlst .tse-cardlst .tour-titlelst div {
  display: inline;
}
.sim-card-gridlst .tse-cardlst .tour-datelst {
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}

.banner.jurnetDetails .bg .video {
  height: calc(100vh - 59px);
}
@media (max-width: 991px) {
  .banner.jurnetDetails .bg .video {
    height: auto;
    line-height: 0;
  }
}
.banner.jurnetDetails .bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  opacity: 0.8;
}
.banner.jurnetDetails .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .banner.jurnetDetails .bg video {
    height: auto;
  }
}
.banner.jurnetDetails .btnVideo {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 2;
  background: var(--bg-white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50px;
}
@media (max-width: 991px) {
  .banner.jurnetDetails .btnVideo {
    bottom: 15px;
    right: 15px;
  }
}
.banner.jurnetDetails .btnVideo .unmute {
  display: block;
}
.banner.jurnetDetails .btnVideo .mute {
  display: none;
}
.banner.jurnetDetails .btnVideo .unmute {
  position: relative;
  left: 4px;
}
.banner.jurnetDetails .btnVideo.active .unmute {
  display: none;
}
.banner.jurnetDetails .btnVideo.active .mute {
  display: block;
}

.jurnetDetails .bg:not(:has(video))::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.7;
}
.jurnetDetails .bg img, .jurnetDetails .bg video {
  width: 100%;
  height: auto;
}
@media (max-width: 1140px) {
  .jurnetDetails .bg img, .jurnetDetails .bg video {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .jurnetDetails .bg img, .jurnetDetails .bg video {
    height: auto;
  }
}
@media (max-width: 767px) {
  .jurnetDetails .bg img, .jurnetDetails .bg video {
    height: 320px;
  }
}
@media (max-width: 520px) {
  .jurnetDetails .bg img, .jurnetDetails .bg video {
    height: 200px;
  }
}
.jurnetDetails .banner-wraper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jurnetDetails .banner-wraper .content h1 {
  font-size: 70px;
  font-weight: var(--font-600);
}
@media (max-width: 767px) {
  .jurnetDetails .banner-wraper .content h1 {
    font-size: var(--font-siz-35);
  }
}
@media (max-width: 520px) {
  .jurnetDetails .banner-wraper .content h1 {
    font-size: var(--font-siz-33);
    margin-bottom: 3px;
  }
}
.jurnetDetails .banner-wraper .content h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: var(--font-600);
  text-align: center;
  margin: 15px;
}

.Jurney-Inner-page {
  background: var(--bs-gray-200);
  padding: 70px 0;
}
@media (max-width: 1024px) {
  .Jurney-Inner-page {
    padding: 30px 0;
  }
}
@media (max-width: 675px) {
  .Jurney-Inner-page {
    padding: 10px 0 0;
  }
}
.Jurney-Inner-page .container-fluid {
  padding: 0 68px;
}
@media (max-width: 1440px) {
  .Jurney-Inner-page .container-fluid {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .Jurney-Inner-page .jurneyList {
    position: relative;
    padding-left: 8px;
    padding-right: 130px;
    margin-bottom: 5px;
    min-height: 40px;
  }
}
@media (max-width: 991px) {
  .Jurney-Inner-page .jurneyList {
    min-height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    z-index: 3;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 8px rgba(153, 153, 153, 0.6);
  }
}
@media (max-width: 675px) {
  .Jurney-Inner-page .sordByCom:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--bs-gray-300);
  }
}
.Jurney-Inner-page .JurneyListSec .colA {
  flex: 0 1 325px;
  max-width: 325px;
  width: 100%;
  padding: 0 10px;
}
@media (max-width: 1300px) {
  .Jurney-Inner-page .JurneyListSec .colA {
    flex: 0 1 300px;
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  .Jurney-Inner-page .JurneyListSec .colA {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.Jurney-Inner-page .JurneyListSec .colB {
  flex: 1;
  padding-left: 10px;
}
@media (max-width: 1300px) {
  .Jurney-Inner-page .JurneyListSec .colB {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .Jurney-Inner-page .JurneyListSec .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar {
  padding: 20px;
  background: var(--bg-white);
  height: 100%;
}
@media (min-width: 992px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar {
    position: sticky;
    top: 65px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 4;
    padding: 0;
    transform: translateX(-100%);
    transition: 0.5s ease;
  }
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar.open {
  transform: translateX(0%);
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .title {
  font-size: var(--font-siz-18);
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .title {
    display: none;
  }
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .title::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 5px;
  bottom: 6px;
  width: 5px;
  background: var(--bg-primary);
}
@media (min-width: 992px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .mobModelHead {
    display: none;
  }
}
@media (max-width: 991px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .mobModelHead {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8px;
    background: var(--bg-white);
    z-index: 2;
  }
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .mobModelHead button.btnClearSelection {
  background: var(--bg-white);
  font-size: var(--font-siz-16);
  color: var(--bs-gray-600);
  padding: 6px 4px;
}
@media (max-width: 991px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .mobModelHead button.btnClearSelection {
    display: inline-block !important;
  }
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .mobModelHead .closeFilter {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .mobModelHead .closeFilter svg {
  font-size: var(--font-siz-24);
  color: var(--bs-gray-600);
}
@media (max-width: 991px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper {
    padding: 55px 15px 36px;
    height: 100%;
    overflow: scroll;
  }
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper::-webkit-scrollbar {
    width: 3px;
  }
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper::-webkit-scrollbar-track {
    box-shadow: unset;
    background: transparent;
  }
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper::-webkit-scrollbar-thumb {
    background-color: var(--bg-primary);
  }
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .filt-Title {
  font-size: var(--font-siz-14);
  font-weight: var(--font-600);
  color: var(--bg-black);
  position: relative;
  cursor: pointer;
  padding: 8px 0;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bs-gray-300);
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .filt-Title::after {
  content: "";
  position: absolute;
  right: 0;
  width: 14px;
  height: 14px;
  background: url("../icons/downArR.png");
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(1) brightness(0) opacity(0.5);
  transform: rotate(0deg);
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .Filt-list {
  padding: 13px 0;
}
@media (min-width: 992px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .Filt-list ul {
    max-height: 180px;
    overflow-y: scroll;
  }
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .Filt-list ul::-webkit-scrollbar {
    width: 4px;
  }
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .Filt-list ul::-webkit-scrollbar-track {
    box-shadow: unset;
    background: transparent;
  }
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .Filt-list ul::-webkit-scrollbar-thumb {
    background-color: var(--bg-primary);
  }
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .Filt-list ul li {
  display: block;
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .Filt-list .FilCheBox {
  position: relative;
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox.is-open .filt-Title {
  border-bottom-color: var(--bg-primary);
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox.is-open .filt-Title::after {
  transform: rotate(270deg);
  filter: grayscale(0) brightness(1) opacity(1);
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .cntry-lst ul li {
  display: inline-block;
  width: 49%;
}
.Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .cty-lst ul {
  max-height: 126px;
}
@media (max-width: 675px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .cty-lst ul {
    max-height: none;
  }
}
@media (max-width: 675px) {
  .Jurney-Inner-page .JurneyListSec .FilterAsideBar .wrapper .FilterBox .cty-lst ul li {
    display: inline-block;
    width: 49%;
  }
}
.Jurney-Inner-page .JurneyListSec .link-btn.more {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 40px;
}
@media (max-width: 675px) {
  .Jurney-Inner-page .JurneyListSec .link-btn.more {
    margin-top: 25px;
  }
}
.Jurney-Inner-page .JurneyListSec .link-btn.more .btn {
  background: var(--bg-white);
  color: var(--bg-primary);
  border: 1px solid var(--bg-primary);
}
.Jurney-Inner-page .JurneyListSec .link-btn.more .btn:hover {
  color: var(--bg-white);
  background: var(--bg-primary);
}
@media (min-width: 992px) {
  .Jurney-Inner-page .JurneyListSec .filtermobbtn {
    display: none;
  }
}
@media (max-width: 991px) {
  .Jurney-Inner-page .JurneyListSec .filtermobbtn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 6px 6px;
    z-index: 1;
  }
}
.Jurney-Inner-page .JurneyListSec .filtermobbtn .btn-form {
  flex: 1;
}
.Jurney-Inner-page .JurneyListSec .filtermobbtn .btn-form .btn {
  display: block;
  padding: 8px 25px;
  width: 100%;
}

.filterSelected .btnClearSelection {
  background: transparent;
  border: 0;
  font-size: var(--font-siz-14);
  color: var(--bg-black);
  padding: 0 8px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .filterSelected .btnClearSelection {
    display: none !important;
  }
}
.filterSelected .label {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  border: 1px solid #666;
  margin-right: 6px;
  min-width: 85px;
  position: relative;
  padding-right: 22px;
  margin-bottom: 4px;
}
.filterSelected span.cleIn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sordByCom {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 125px;
}
@media (max-width: 991px) {
  .sordByCom {
    position: static;
  }
}
.sordByCom .form .form-group {
  margin-bottom: 0;
}
.sordByCom .form .form-group .form-control {
  background: var(--bg-white);
  color: var(--bg-black);
  height: 40px;
  cursor: pointer;
}
@media (max-width: 675px) {
  .sordByCom .form .form-group .form-control {
    font-weight: var(--font-600);
    border: 0;
  }
}
.sordByCom .form .form-group .icon {
  bottom: 0;
  height: 40px;
  right: 0;
}
.sordByCom .form .form-group .dropDownLisSor {
  position: absolute;
  top: 100%;
  background: var(--bg-white);
  left: 0;
  right: 0;
  z-index: 1;
  padding: 6px 5px;
  border: 1px solid var(--bs-gray-300);
  border-top: 0;
  display: none;
}
@media (max-width: 991px) {
  .sordByCom .form .form-group .dropDownLisSor {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 52px;
    top: auto;
    padding: 20px 20px;
  }
}
.sordByCom .form .form-group .dropDownLisSor .sortList {
  position: relative;
  padding: 0;
}
.sordByCom .form .form-group .dropDownLisSor .sortList label {
  position: static;
  display: block;
  padding: 5px 28px;
  padding-right: 8px;
  font-size: var(--font-siz-13);
  color: var(--bs-gray-700);
}
.sordByCom .form .form-group .dropDownLisSor .sortList input[type=radio] {
  height: auto;
}
.sordByCom .form .form-group .dropDownLisSor .sortList .fakeBox {
  left: 5px;
  height: 14px;
}

.listProductsInner .col3 {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 10px;
}
@media (max-width: 1300px) {
  .listProductsInner .col3 {
    padding: 8px;
    flex: 0 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .listProductsInner .col3 {
    padding: 8px;
    flex: 0 1 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 420px) {
  .listProductsInner .col3 {
    padding: 8px 0;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.listProductsInner .item figure img {
  width: 100%;
}

@media (min-width: 992px) {
  .openFilterMob {
    display: none;
  }
}
.openFilterMob img, .openFilterMob span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}
.openFilterMob span.selectedFilter {
  display: none;
}
.openFilterMob span.filtext, .openFilterMob span.selectedFilter {
  font-weight: var(--font-600);
}

@media (max-width: 991px) {
  .jsappenselfil, .btnClearSelection {
    display: none;
  }
}

.TottProdInview {
  font-size: var(--font-siz-18);
  display: flex;
  align-items: center;
  justify-content: center;
  word-spacing: 42px;
  padding: 7px 0;
  font-weight: var(--font-600);
}
@media (max-width: 991px) {
  .TottProdInview {
    display: none !important;
  }
}
.TottProdInview span {
  margin-right: 6px;
}

.banner.journey-detail {
  position: relative;
}
.banner.journey-detail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 18%, rgba(255, 255, 255, 0) 47%);
}
@media (max-width: 767px) {
  .banner.journey-detail::before {
    background: linear-gradient(to top, var(--bg-black), transparent), linear-gradient(to top, var(--bg-black), transparent);
    opacity: 0.7;
  }
}
.banner.journey-detail .bg img {
  width: 100%;
}
@media (max-width: 1140px) {
  .banner.journey-detail .bg img {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .banner.journey-detail .bg img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .banner.journey-detail .bg img {
    height: 320px;
  }
}
.banner.journey-detail .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  z-index: 1;
}
@media (max-width: 767px) {
  .banner.journey-detail .banner-wrapper {
    max-width: 360px;
    margin: auto;
    text-align: center;
  }
}
.banner.journey-detail .banner-wrapper .colA {
  flex: 0 1 40%;
  max-width: 40%;
  width: 100%;
}
@media (max-width: 767px) {
  .banner.journey-detail .banner-wrapper .colA {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.banner.journey-detail .banner-wrapper .colA h1 {
  line-height: 1;
}
@media (max-width: 767px) {
  .banner.journey-detail .banner-wrapper .colA h1 {
    font-size: var(--font-siz-26);
    line-height: 1.3;
  }
}
.banner.journey-detail .banner-wrapper .colB {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .banner.journey-detail .banner-wrapper .colB {
    flex: 0 1 100%;
    max-width: 100%;
    gap: 0;
    display: block;
  }
}
.banner.journey-detail .banner-wrapper .colB p {
  color: var(--bg-white);
  display: inline-block;
  font-weight: var(--font-600);
}
@media (max-width: 767px) {
  .banner.journey-detail .banner-wrapper .colB p {
    margin: 8px 0 15px;
    font-weight: var(--font-normal);
  }
}

.journey-tab-1 {
  position: sticky;
  top: 67px;
  background: var(--bg-white);
  z-index: 2;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 767px) {
  .journey-tab-1 {
    display: none;
  }
}
.journey-tab-1 ul {
  text-align: center;
}
@media (max-width: 520px) {
  .journey-tab-1 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.journey-tab-1 ul li {
  position: relative;
  display: inline-block;
  padding: 12px 0;
  transition: 0.5s ease;
  cursor: pointer;
}
.journey-tab-1 ul li:not(:first-child) {
  margin-left: 35px;
}
@media (max-width: 1230px) {
  .journey-tab-1 ul li:not(:first-child) {
    margin-left: 15px;
  }
}
@media (max-width: 520px) {
  .journey-tab-1 ul li:not(:first-child) {
    margin-left: 0px;
  }
}
.journey-tab-1 ul li::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background: var(--bg-primary);
  bottom: 0;
  transition: 0.5s ease;
}
.journey-tab-1 ul li.active {
  font-weight: var(--font-600);
}
.journey-tab-1 ul li.active::before {
  width: 100%;
}

.journey-detail-secA {
  background: var(--bg-white);
}
.journey-detail-secA .tabs {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 70px 0 85px;
  transition: 0s;
}
@media (max-width: 991px) {
  .journey-detail-secA .tabs {
    padding: 65px 0;
  }
}
@media (max-width: 767px) {
  .journey-detail-secA .tabs {
    padding: 30px 0;
  }
}
.journey-detail-secA .tabs.active {
  transform: scale(1) translateY(0);
  transition: all 0.5s ease-in-out;
}
.journey-detail-secA .tabs h3 {
  font-size: 36px;
  text-align: center;
  color: var(--bg-black);
  padding-bottom: 38px;
  font-weight: var(--font-600);
  line-height: 1;
}
.journey-detail-secA .tabs p {
  margin-bottom: 20px;
}

.journey-detail-secB {
  padding: 50px 0;
}
@media (max-width: 520px) {
  .journey-detail-secB {
    padding-bottom: 25px;
    padding-top: 30px;
  }
}
.journey-detail-secB .heading {
  padding-bottom: 40px;
}
.journey-detail-secB .heading h2 span {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--bg-primary);
  font-weight: var(--bs-gray-600);
  margin-bottom: 12px;
}
.journey-detail-secB .itnear-sec {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-top: 2px solid var(--bg-primary);
}
.journey-detail-secB .itnear-sec .d-flex .colA {
  flex: 0 1 45%;
  max-width: 45%;
  width: 100%;
}
@media (min-width: 992px) {
  .journey-detail-secB .itnear-sec .d-flex .colA {
    padding-top: 15px;
  }
}
@media (max-width: 991px) {
  .journey-detail-secB .itnear-sec .d-flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
    display: none;
  }
}
.journey-detail-secB .itnear-sec .d-flex .colA figure {
  position: sticky;
  top: 120px;
}
.journey-detail-secB .itnear-sec .d-flex .colA .imhActiPop {
  cursor: pointer;
}
.journey-detail-secB .itnear-sec .d-flex .colB {
  flex: 0 1 55%;
  max-width: 55%;
  width: 100%;
  border-left: 1px solid #e7e7e7;
  padding: 45px 40px;
}
@media (max-width: 991px) {
  .journey-detail-secB .itnear-sec .d-flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .journey-detail-secB .itnear-sec .d-flex .colB {
    padding: 12px;
  }
}
.journey-detail-secB .itnear-sec .d-flex .colB .upper-dtl {
  display: flex;
  align-items: center;
  gap: 0 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #b7b7b7;
}
.journey-detail-secB .itnear-sec .d-flex .colB .upper-dtl p {
  font-weight: var(--font-600);
  font-size: 18px;
  color: var(--text);
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox {
  border-bottom: 1px solid #d0d0d0;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox.active {
  padding-bottom: 30px;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox.active .title .no, .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox.active .title p {
  color: var(--bg-primary);
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox.active .title img {
  transform: rotate(0deg);
  filter: none;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 37px;
  padding: 18px 0;
  cursor: pointer;
}
@media (max-width: 675px) {
  .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title {
    gap: 0 5px;
    align-items: flex-start;
  }
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title .no {
  flex: 0 1 auto;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title .ttl {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title .no, .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title p {
  font-weight: var(--font-600);
  font-size: var(--font-siz-17);
  color: var(--text);
}
@media (max-width: 675px) {
  .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title .no, .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title p {
    font-size: var(--font-siz-16);
  }
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title img {
  transform: rotate(180deg);
  filter: grayscale(1) brightness(0);
  transition: 0.5s ease;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item p, .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item li {
  color: var(--text);
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item p {
  margin-bottom: 12px;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item ul {
  padding-left: 22px;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item ul li {
  list-style: disc;
}
@media (max-width: 675px) {
  .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item ul li {
    font-size: var(--font-siz-14);
  }
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item ul li::marker {
  font-size: 20px;
  line-height: 1;
  color: var(--text);
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item h5 {
  font-size: var(--font-siz-18);
  padding: 30px 0 16px;
  color: #000;
  font-weight: var(--font-600);
  position: relative;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item h5 a {
  position: absolute;
  right: 0;
  font-size: 14px;
  color: #f2003c;
}
@media (max-width: 1024px) {
  .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item h5 {
    font-size: var(--font-siz-16);
  }
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .owl-nav button.owl-prev, .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .owl-nav .owl-prev {
  left: -16px;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .owl-nav .owl-next {
  right: -16px;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item {
  position: relative;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.28) 41%, rgba(255, 255, 255, 0) 67%);
  z-index: 1;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item .item-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  z-index: 1;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item .item-title h5 {
  color: #fff;
  line-height: 22px;
  padding: 0;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item .strip {
  position: absolute;
  left: 0;
  top: 20px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: var(--font-600);
  color: #fff;
  z-index: 1;
}
@media (max-width: 675px) {
  .journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item .strip {
    top: 0px;
    font-size: 12px;
    gap: 0 5px;
    padding: 5px 6px;
  }
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item .strip img {
  width: auto;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item figure {
  overflow: hidden;
  display: block;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item figure img {
  transform: scale(1);
  transition: 0.4s ease;
}
.journey-detail-secB .itnear-sec .d-flex .colB .col .title-selectbox .title-selectbox-item .activity-slider .item:hover figure img {
  transform: scale(1.1);
}

.journey-detail-secC .heading {
  padding: 30px 0 45px;
}
@media (max-width: 675px) {
  .journey-detail-secC .heading {
    padding-bottom: 25px;
  }
}
.journey-detail-secC .secC-wrap {
  background: var(--bs-gray-200);
  padding: 85px 0;
}
@media (max-width: 675px) {
  .journey-detail-secC .secC-wrap {
    padding: 30px 0;
  }
}
.journey-detail-secC .secC-wrap .d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
}
.journey-detail-secC .secC-wrap .d-flex .colA {
  flex: 0 1 20%;
  max-width: 20%;
  width: 100%;
}
@media (max-width: 675px) {
  .journey-detail-secC .secC-wrap .d-flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 35px;
  }
}
.journey-detail-secC .secC-wrap .d-flex .colA ul {
  text-align: left;
}
.journey-detail-secC .secC-wrap .d-flex .colA ul li {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: var(--font-600);
  padding: 11px 20px;
}
.journey-detail-secC .secC-wrap .d-flex .colA ul li:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 675px) {
  .journey-detail-secC .secC-wrap .d-flex .colA ul li:not(:last-child) {
    margin-bottom: 3px;
  }
}
.journey-detail-secC .secC-wrap .d-flex .colA ul li.active {
  background: var(--bg-primary);
  color: #fff;
}
.journey-detail-secC .secC-wrap .d-flex .colB {
  flex: 0 1 67%;
  max-width: 67%;
  width: 100%;
}
@media (max-width: 675px) {
  .journey-detail-secC .secC-wrap .d-flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.journey-detail-secC .secC-wrap .d-flex .colB .tabs {
  transform: translateY(20px);
  transition: 0s;
}
.journey-detail-secC .secC-wrap .d-flex .colB .tabs.active {
  transform: translateY(0px);
  transition: 0.5s ease;
}
.journey-detail-secC .secC-wrap .d-flex .colB h4 {
  font-size: 24px;
  font-weight: var(--font-600);
  border-bottom: 2px solid var(--bg-primary);
  padding-bottom: 20px;
  margin-bottom: 25px;
  color: var(--bg-black);
}
.journey-detail-secC .secC-wrap .d-flex .colB p {
  margin-bottom: 10px;
}
.journey-detail-secC .secC-wrap .d-flex .colB h5 {
  color: var(--bg-black);
  font-size: var(--font-siz-20);
  margin-bottom: 11px;
  font-weight: var(--font-500);
}
.journey-detail-secC .secC-wrap .d-flex .colB p, .journey-detail-secC .secC-wrap .d-flex .colB li {
  color: var(--bg-black);
}
.journey-detail-secC .secC-wrap .d-flex .colB ul {
  padding-left: 30px;
  margin-bottom: 30px;
}
.journey-detail-secC .secC-wrap .d-flex .colB ul li {
  list-style: disc;
}
.journey-detail-secC .secC-wrap .d-flex .colB ul li::marker {
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.journey-detail-secD {
  padding: 68px 0 60px;
}
.journey-detail-secD .uper-sec {
  position: relative;
  margin-bottom: 40px;
}
.journey-detail-secD .uper-sec .heading {
  max-width: 425px;
  margin: 0 auto;
}
.journey-detail-secD .uper-sec .heading p {
  margin-top: 8px;
}
.journey-detail-secD .uper-sec .custom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.journey-detail-secD .uper-sec .custom-nav button.owl-prev, .journey-detail-secD .uper-sec .custom-nav .owl-next {
  height: 45px;
  width: 45px;
  border: 1px solid var(--text);
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.journey-detail-secD .uper-sec .custom-nav button.owl-prev.disabled, .journey-detail-secD .uper-sec .custom-nav .owl-next.disabled {
  opacity: 0.6;
}
.journey-detail-secD .trip-slider .item {
  margin: 10px;
  box-shadow: rgba(50, 50, 93, 0.14) 0px 6px 12px -4px, rgba(0, 0, 0, 0.18) 0px 3px 7px -3px;
}
.journey-detail-secD .trip-slider .item figcaption {
  padding: 18px 25px;
}
.journey-detail-secD .trip-slider .item figcaption .place {
  color: var(--bg-primary);
  font-size: 14px;
  line-height: 1;
  padding-bottom: 12px;
  display: block;
}
.journey-detail-secD .trip-slider .item figcaption .title {
  font-size: 22px;
  line-height: 1;
  font-weight: var(--font-600);
}
.journey-detail-secD .trip-slider .item figcaption .desc {
  padding: 10px 0 22px;
}
.journey-detail-secD .trip-slider .item figcaption ul li {
  display: inline-block;
  padding: 0 6px;
  line-height: 1.2;
  color: var(--text);
}
.journey-detail-secD .trip-slider .item figcaption ul li:not(:last-child) {
  border-right: 1px solid var(--text);
}
.journey-detail-secD .trip-slider .item figcaption ul li:first-child {
  padding-left: 0;
}
.journey-detail-secD .trip-slider .item figcaption ul li:last-child {
  padding-right: 0;
}
.journey-detail-secD figure {
  overflow: hidden;
  display: block;
}
.journey-detail-secD figure img {
  transform: scale(1);
  transition: 0.4s ease;
}
.journey-detail-secD .swiper-slide:hover figure img {
  transform: scale(1.1);
}
.journey-detail-secD .link-btn {
  margin-top: 50px;
  text-align: center;
}
.journey-detail-secD .link-btn a {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}
.journey-detail-secD .link-btn a:hover {
  color: var(--bg-black);
  background: none;
}

.homeSecB.journey-detail-secE {
  background: none;
}
.homeSecB.journey-detail-secE .heading {
  margin-bottom: 40px;
}
@media (max-width: 675px) {
  .homeSecB.journey-detail-secE .heading {
    margin-bottom: 20px;
  }
}
@media (max-width: 675px) {
  .homeSecB.journey-detail-secE .slideC .slideTabSug {
    margin-bottom: 20px;
  }
}

.modelImgpop {
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 4;
  visibility: hidden;
  transition: 1s ease;
}
.modelImgpop.is-open {
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modelImgpop .wrap {
  position: relative;
  width: 991px;
  background: var(--bg-white);
  padding: 15px;
}
.modelImgpop .wrap .close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.modelImgpop .wrap .imgWrap img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
}

.experianceDetailMain {
  border-top: 2px solid var(--bg-primary);
}
.experianceDetailMain .secA .col1 {
  flex: 0 1 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .experianceDetailMain .secA .col1 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.experianceDetailMain .secA .col1 figure {
  position: sticky;
  top: 56px;
}
.experianceDetailMain .secA .col2 {
  flex: 0 1 50%;
  max-width: 50%;
  padding: 30px;
  padding-right: 70px;
}
@media (max-width: 1024px) {
  .experianceDetailMain .secA .col2 {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .experianceDetailMain .secA .col2 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .experianceDetailMain .secA .ImgSimSlider {
    position: sticky;
    top: 70px;
  }
}
.experianceDetailMain .secA {
  background: #f1f1f1;
}
.experianceDetailMain .secA .SecAContent .content h1 {
  color: var(--bg-black);
  font-weight: var(--font-600);
}
@media (max-width: 1024px) {
  .experianceDetailMain .secA .SecAContent .content h1 {
    font-size: var(--font-siz-26);
  }
}
@media (max-width: 991px) {
  .experianceDetailMain .secA .SecAContent .content h1 {
    font-size: var(--font-siz-22);
  }
}
.experianceDetailMain .secA .SecAContent .content .exovetab {
  margin-bottom: 25px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .experianceDetailMain .secA .SecAContent .content .exovetab {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .experianceDetailMain .secA .SecAContent .content .exovetab {
    display: block;
  }
}
@media (max-width: 675px) {
  .experianceDetailMain .secA .SecAContent .content .exovetab {
    display: flex;
    overflow-x: scroll;
  }
}
.experianceDetailMain .secA .SecAContent .content .exovetab .btn {
  display: inline-block;
  background: #f1f1f1;
  padding: 10px 0;
  font-size: var(--font-siz-16);
  margin-right: 25px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .experianceDetailMain .secA .SecAContent .content .exovetab .btn {
    margin-right: 15px;
  }
}
@media (max-width: 991px) {
  .experianceDetailMain .secA .SecAContent .content .exovetab .btn {
    font-size: var(--font-siz-14);
    margin: 0;
    padding: 10px 10px;
  }
}
@media (max-width: 675px) {
  .experianceDetailMain .secA .SecAContent .content .exovetab .btn {
    padding: 10px 14px 6px;
    line-height: 1.5;
    flex: 1;
    text-wrap: nowrap;
    margin-bottom: 12px;
  }
}
.experianceDetailMain .secA .SecAContent .content .exovetab .btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-primary);
  width: 0;
  transition: 0.5s ease;
}
.experianceDetailMain .secA .SecAContent .content .exovetab .btn.current {
  color: var(--bg-primary);
}
.experianceDetailMain .secA .SecAContent .content .exovetab .btn.current::before {
  width: 100%;
}
.experianceDetailMain .extabingContent .tab:not(:first-child) {
  display: none;
}
.experianceDetailMain .extabingContent .wrap p {
  text-align: justify;
  margin-bottom: 20px;
}
.experianceDetailMain .extabingContent .wrap h3 {
  margin-bottom: 8px;
  color: var(--bg-black);
  font-weight: var(--font-600);
}
@media (max-width: 1024px) {
  .experianceDetailMain .extabingContent .wrap h3 {
    font-size: var(--font-siz-20);
  }
}
@media (max-width: 991px) {
  .experianceDetailMain .extabingContent .wrap h3 {
    font-size: var(--font-siz-18);
  }
}
.experianceDetailMain .extabingContent .wrap ul, .experianceDetailMain .extabingContent .wrap ui {
  padding-left: 10px;
  margin-top: 13px;
  margin-bottom: 20px;
}
.experianceDetailMain .extabingContent .wrap ul li, .experianceDetailMain .extabingContent .wrap ui li {
  display: block;
  position: relative;
  margin-bottom: 6px;
  padding-left: 20px;
}
.experianceDetailMain .extabingContent .wrap ul li::before, .experianceDetailMain .extabingContent .wrap ui li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--bg-primary);
  border-radius: 20px;
  left: 0;
  top: 12px;
}

.pagination {
  padding-left: 36px;
}
@media (max-width: 991px) {
  .pagination {
    padding: 0 15px;
  }
}
@media (max-width: 520px) {
  .pagination {
    display: none;
  }
}
@media (max-width: 991px) {
  .pagination ul {
    display: flex;
  }
}
.pagination ul li {
  display: inline-block;
  vertical-align: middle;
  color: var(--bs-gray-500);
  font-size: var(--font-siz-14);
  padding: 15px 0;
  padding-right: 10px;
  position: relative;
  margin-right: 10px;
}
@media (max-width: 991px) {
  .pagination ul li {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 0;
    padding-right: 20px;
  }
}
.pagination ul li a {
  color: var(--bs-gray-700);
  font: inherit;
  display: block;
}
.pagination ul li a:hover {
  color: var(--bg-primary);
}
.pagination ul li a::after {
  content: "›";
  position: absolute;
  right: -4px;
  top: 14px;
}
@media (max-width: 991px) {
  .pagination ul li a::after {
    right: 4px;
  }
}

.ImgSimSlider figure {
  position: relative;
  display: block;
}
.ImgSimSlider figure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  bottom: 0;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.6;
}
.ImgSimSlider .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}
.ImgSimSlider .owl-dots button.owl-dot {
  width: 13px;
  height: 13px;
  border: 0;
  outline: none;
  background: var(--bg-white);
  border-radius: 25px;
  margin: 0 5px;
  opacity: 0.7;
}
.ImgSimSlider .owl-dots button.owl-dot.active {
  opacity: 1;
  background: var(--bg-primary);
}

.moreCatListing {
  padding: 60px 0;
}
@media (max-width: 520px) {
  .moreCatListing {
    padding: 35px 0 25px;
  }
}
.moreCatListing .heading {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 520px) {
  .moreCatListing .heading {
    max-width: 260px;
    margin-bottom: 20px;
  }
}
@media (max-width: 520px) {
  .moreCatListing .heading h2 {
    margin-bottom: 10px;
  }
}
.moreCatListing .swiper-slide {
  padding: 11px;
}
@media (max-width: 675px) {
  .moreCatListing .swiper-slide {
    padding: 8px;
  }
}
.moreCatListing .swiper-slide .card {
  box-shadow: 0 0 10px 2px #dfdfdf;
}
.moreCatListing .container {
  position: relative;
}
.moreCatListing .content {
  padding: 15px 25px;
  padding-bottom: 20px;
  background: #fff;
}
@media (max-width: 675px) {
  .moreCatListing .content {
    padding: 15px 10px;
  }
}
.moreCatListing .content .cul {
  font-size: var(--font-siz-14);
  color: var(--bg-primary);
  margin-bottom: 3px;
}
.moreCatListing .content .packName {
  font-size: var(--font-siz-20);
  color: var(--bg-black);
  font-weight: var(--font-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.moreCatListing .content p {
  margin: 10px 0 15px;
  color: var(--bg-black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.moreCatListing .content .fed {
  color: var(--bs-gray-600);
  font-size: var(--font-siz-13);
}
@media (max-width: 767px) {
  .moreCatListing .content .fed {
    font-size: var(--font-siz-12);
  }
}
.moreCatListing .owl-carousel.moreProSlider .owl-stage {
  display: flex;
}
.moreCatListing .owl-carousel.moreProSlider .owl-stage .swiper-slide {
  height: 100%;
}
.moreCatListing .owl-carousel.moreProSlider .owl-stage .swiper-slide > a {
  height: 100%;
  display: block;
}
.moreCatListing .owl-carousel.moreProSlider .owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 110px;
}
.moreCatListing .owl-carousel.moreProSlider .owl-nav.disabled {
  display: none;
}
.moreCatListing .owl-carousel.moreProSlider .owl-nav button {
  position: static;
  transform: none;
  border: 1px solid var(--bg-black);
}
.moreCatListing .owl-carousel.moreProSlider .owl-nav button.owl-prev {
  margin-right: 6px;
}
.moreCatListing .owl-carousel.moreProSlider .owl-nav button.disabled {
  opacity: 0.3;
}
.moreCatListing .link-btn {
  margin-top: 30px;
}

body:has(.itinerary-secA), html:has(.itinerary-secA) {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

.itnery-sec-slide {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 71px;
}
@media (max-width: 767px) {
  .itnery-sec-slide .bg::after {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .itnery-sec-slide .bg img {
    opacity: 1 !important;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .itnery-sec-slide .banner-content {
    display: none !important;
  }
}

.destinations-page .banner .bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.7;
}
.destinations-page .banner .bg img {
  width: 100%;
}
@media (max-width: 1140px) {
  .destinations-page .banner .bg img {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .destinations-page .banner .bg img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .destinations-page .banner .bg img {
    height: 320px;
  }
}
.destinations-page .banner .banner-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .destinations-page .banner .banner-content {
    padding: 25px 0;
  }
}
.destinations-page .banner .banner-content .content {
  max-width: 1300px;
  width: 100%;
  text-align: center;
}
.destinations-page .banner .banner-content .content h1 {
  line-height: 1;
  margin-bottom: 6px;
  font-size: var(--font-siz-48);
}
@media (max-width: 767px) {
  .destinations-page .banner .banner-content .content h1 {
    font-size: var(--font-siz-35);
  }
}
@media (max-width: 520px) {
  .destinations-page .banner .banner-content .content h1 {
    font-size: var(--font-siz-28);
    margin-bottom: 8px;
    line-height: var(--font-siz-28);
  }
}
.destinations-page .banner .banner-content .content p {
  color: var(--bg-white);
  display: inline-block;
  display: none;
}
@media (max-width: 520px) {
  .destinations-page .banner .banner-content .content p {
    padding: 0 20px;
    line-height: 1.2;
  }
}
.destinations-page .homeSecB {
  padding: 45px 0;
  background: var(--bg-white);
}
@media (max-width: 991px) {
  .destinations-page .homeSecB {
    padding: 40px 0;
  }
}
@media (max-width: 675px) {
  .destinations-page .homeSecB {
    padding: 25px 0;
  }
}
.destinations-page .homeSecB .heading {
  width: 100%;
  margin: 0 auto 15px;
}
@media (max-width: 675px) {
  .destinations-page .homeSecB .heading {
    padding: 0 8px;
    margin-bottom: 20px;
  }
}
.destinations-page .homeSecB .slidernav {
  top: -80px;
}
.destinations-page .homeSecB .slideC .slideTabSug {
  margin-bottom: 0;
}
.destinations-page .secB {
  background: var(--bg-white);
}
.destinations-page .secB .link-btn {
  margin-top: 45px;
  text-align: center;
}
@media (max-width: 767px) {
  .destinations-page .secB .link-btn {
    margin-top: 20px;
  }
}
.destinations-page .secB.bg-gray {
  background: var(--bs-gray-200);
}
.destinations-page .homeSecG {
  background: url(../images/destinations/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .destinations-page .homeSecG {
    padding: 50px 0;
  }
}
.destinations-page .homeSecG .w {
  max-width: 920px;
}

.prmy_div .btn {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  transition: all 0.3s ease;
  padding: 9px 15px 10px;
  border: 1px solid var(--bg-primary);
  background: var(--bg-primary);
  color: var(--bg-white);
  font-weight: var(--font-500);
}
.prmy_div .btn:hover {
  background: none;
  color: var(--bg-primary);
}

.itinerary-secB {
  background: #f9f9f9;
}

.destinations-secA {
  padding: 60px 0;
}
@media (max-width: 520px) {
  .destinations-secA {
    padding: 35px 0 20px;
  }
}
.destinations-secA.itinerary-secA .content h3 {
  display: block;
  font-size: 30px;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-family: var(--fontBrandon);
  letter-spacing: 2.6px;
}
.destinations-secA.itinerary-secA .content h4 {
  color: var(--bg-primary);
  font-size: var(--font-siz-20);
  margin-bottom: 10px;
}
.destinations-secA.itinerary-secA .content .wphl-sec {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-top: 30px;
  margin-top: 45px;
}
@media (max-width: 520px) {
  .destinations-secA.itinerary-secA .content .wphl-sec {
    gap: 1rem;
  }
}
.destinations-secA.itinerary-secA .content .wphl-sec:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
  width: 80px;
  height: 1px;
  background: #ccc;
}
.destinations-secA.itinerary-secA .content .wphl-sec .col {
  flex: 1;
}
@media (max-width: 520px) {
  .destinations-secA.itinerary-secA .content .wphl-sec .col {
    flex: 0 1 100%;
  }
}
.destinations-secA.itinerary-secA .content .wphl-sec .col h6 {
  font-size: 1.875rem;
  color: var(--bg-primary);
  font-weight: var(--font-600);
  letter-spacing: 2.6px;
  line-height: 1;
  margin-bottom: 12px;
}
@media (max-width: 520px) {
  .destinations-secA.itinerary-secA .content .wphl-sec .col h6 {
    font-size: 20px;
  }
}
.destinations-secA.itinerary-secA .content .wphl-sec .col p span {
  display: block;
  font-weight: normal;
}
.destinations-secA .content {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}
.destinations-secA .content h3 {
  text-align: center;
  padding-bottom: 38px;
  font-size: var(--font-siz-36);
  color: var(--bg-black);
  font-weight: var(--font-600);
  line-height: 1;
  display: none;
}
@media (max-width: 520px) {
  .destinations-secA .content h3 {
    padding-bottom: 25px;
  }
}
.destinations-secA .content p {
  color: var(--bg-black);
  margin-bottom: 15px;
}
.destinations-secA .content .text *:not(:first-child) {
  display: none;
}
.destinations-secA .read-more {
  margin-top: 25px;
}
.destinations-secA .read-more button.btnReadMore {
  background: inherit;
}

.itinerary-journey-tab li a span {
  display: none;
}

.travelSecExperian {
  background: var(--bs-gray-200);
  padding: 65px 0;
}
@media (max-width: 991px) {
  .travelSecExperian {
    padding: 40px 0;
  }
}
@media (max-width: 675px) {
  .travelSecExperian {
    padding: 30px 0 40px;
  }
}
.travelSecExperian .container-full {
  padding: 0 55px;
}
@media (max-width: 991px) {
  .travelSecExperian .container-full {
    padding: 0 15px;
  }
}
.travelSecExperian .heading {
  margin: 0 auto 45px;
}
@media (max-width: 675px) {
  .travelSecExperian .heading {
    margin-bottom: 30px;
  }
}
.travelSecExperian .heading h2 {
  color: var(--bg-black);
  font-weight: var(--font-600);
  line-height: 1.5;
  margin-bottom: 6px;
}
.travelSecExperian .heading p {
  color: var(--bg-black);
}
.travelSecExperian .travelGrid .colA {
  flex: 0 1 68%;
  max-width: 68%;
  width: 100%;
  padding-right: 15px;
}
@media (max-width: 675px) {
  .travelSecExperian .travelGrid .colA {
    flex: 0 1 100%;
    max-width: 100%;
    padding-right: 0px;
    padding: 8px 0;
  }
}
.travelSecExperian .travelGrid .colB {
  flex: 0 1 32%;
  max-width: 32%;
  width: 100%;
}
@media (max-width: 675px) {
  .travelSecExperian .travelGrid .colB {
    flex: 0 1 50%;
    max-width: 50%;
    padding: 8px 0;
  }
}
@media (max-width: 520px) {
  .travelSecExperian .travelGrid .colB {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.travelSecExperian .travelGrid .colC {
  flex: 0 1 32%;
  max-width: 32%;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 675px) {
  .travelSecExperian .travelGrid .colC {
    flex: 0 1 50%;
    max-width: 50%;
    position: static;
    padding: 8px 0;
  }
}
@media (max-width: 520px) {
  .travelSecExperian .travelGrid .colC {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.travelSecExperian .travelGrid .item a {
  display: block;
}
.travelSecExperian .travelGrid .item figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.7;
}
@media (max-width: 991px) {
  .travelSecExperian .travelGrid .item figure::after {
    height: 100%;
  }
}
.travelSecExperian .travelGrid .item figure img {
  width: 100%;
}
.travelSecExperian .travelGrid .item .content {
  position: absolute;
  bottom: 10px;
  padding: 20px;
}
@media (max-width: 991px) {
  .travelSecExperian .travelGrid .item .content {
    bottom: 15px;
    padding: 0 8px;
  }
}
@media (max-width: 675px) {
  .travelSecExperian .travelGrid .item .content {
    padding: 0 15px;
  }
}
.travelSecExperian .travelGrid .item .content p {
  color: var(--bg-white);
  font-size: var(--font-siz-22);
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .travelSecExperian .travelGrid .item .content p {
    font-size: var(--font-siz-15);
    line-height: var(--font-siz-22);
  }
}
@media (max-width: 675px) {
  .travelSecExperian .travelGrid .item .content p {
    text-align: center;
    font-size: var(--font-siz-18);
  }
}
.travelSecExperian .link-btn {
  margin-top: 45px;
}
@media (max-width: 675px) {
  .travelSecExperian .link-btn {
    margin-top: 20px;
  }
}

.moderDestnSlider {
  background: var(--bg-white);
  padding: 45px 0 45px;
}
@media (max-width: 520px) {
  .moderDestnSlider {
    padding: 35px 0;
  }
}
.moderDestnSlider .heading {
  max-width: 615px;
  width: 100%;
  margin: 0 auto 35px;
}
@media (max-width: 675px) {
  .moderDestnSlider .heading {
    margin: 0 auto 30px;
  }
}
.moderDestnSlider .heading h2 {
  margin-bottom: 3px;
}
.moderDestnSlider .heading p {
  color: var(--bg-black);
}
.moderDestnSlider .swiper-slide .card a {
  display: block;
  position: relative;
}
.moderDestnSlider .swiper-slide .card figure {
  position: relative;
}
.moderDestnSlider .swiper-slide .card figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.7;
}
.moderDestnSlider .swiper-slide .card .content {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  padding: 25px;
  text-align: center;
}
@media (max-width: 1140px) {
  .moderDestnSlider .swiper-slide .card .content {
    padding: 0 15px;
  }
}
.moderDestnSlider .swiper-slide .card .content p {
  color: var(--bg-white);
  font-size: var(--font-siz-25);
  font-weight: var(--font-600);
}
@media (max-width: 1140px) {
  .moderDestnSlider .swiper-slide .card .content p {
    font-size: var(--font-siz-20);
  }
}
.moderDestnSlider .owl-carousel.moreDestiSlider .owl-nav button {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border-radius: 100px;
}
.moderDestnSlider .owl-carousel.moreDestiSlider .owl-nav button.owl-prev {
  left: 8%;
}
.moderDestnSlider .owl-carousel.moreDestiSlider .owl-nav button.owl-next {
  right: 8%;
}

.sectionOtheTeams {
  padding: 65px 0;
}
@media (max-width: 991px) {
  .sectionOtheTeams {
    padding: 45px 0;
  }
}
@media (max-width: 767px) {
  .sectionOtheTeams {
    padding: 25px 0 35px;
  }
}
.sectionOtheTeams .heading {
  width: 100%;
  margin: 0 auto 55px;
}
@media (max-width: 767px) {
  .sectionOtheTeams .heading {
    margin: 0 auto 30px;
    padding: 0 10px;
  }
}
.sectionOtheTeams .heading h2 {
  margin-bottom: 3px;
  margin-bottom: 15px;
}
.sectionOtheTeams .heading p {
  padding: 0 45px;
}
.sectionOtheTeams .owl-carousel.slideOtheTheslid .item .card {
  display: block;
}
.sectionOtheTeams .owl-carousel.slideOtheTheslid .item a {
  display: block;
  position: relative;
}
.sectionOtheTeams .owl-carousel.slideOtheTheslid .item figure {
  position: relative;
}
.sectionOtheTeams .owl-carousel.slideOtheTheslid .item figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.7;
}
.sectionOtheTeams .owl-carousel.slideOtheTheslid .item p {
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  padding: 25px;
  text-align: center;
  color: var(--bg-white);
  font-size: var(--font-siz-18);
  font-weight: var(--font-600);
}
.sectionOtheTeams .owl-carousel.slideOtheTheslid .owl-nav button {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border-radius: 100px;
  transform: translateY(-50%);
}
.sectionOtheTeams .owl-carousel.slideOtheTheslid .owl-nav button.owl-prev {
  left: 2%;
}
.sectionOtheTeams .owl-carousel.slideOtheTheslid .owl-nav button.owl-next {
  right: 2%;
}
.sectionOtheTeams .link-btn {
  margin-top: 30px;
}

.itinerary-secB {
  --pad-l: 45px;
  --dot: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .itinerary-secB {
    --pad-l: 18px;
  }
}
.itinerary-secB .cont-flex {
  display: flex;
  padding-left: var(--pad-l);
  border-left: 1px dashed #303030;
  margin-left: 8%;
}
@media (max-width: 1440px) {
  .itinerary-secB .cont-flex {
    margin-left: 4%;
  }
}
@media (max-width: 1152px) {
  .itinerary-secB .cont-flex {
    padding-right: var(--pad-l);
  }
}
.itinerary-secB .map-svg-wrapper {
  position: sticky;
  top: 112px;
  flex: 1;
  height: calc(100vh - 112px);
  max-width: 50%;
  min-width: 50%;
  margin-left: -20%;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1420px) {
  .itinerary-secB .map-svg-wrapper {
    margin-left: -20.1%;
    height: 620px;
  }
}
@media (max-width: 1152px) {
  .itinerary-secB .map-svg-wrapper {
    display: none;
  }
}
.itinerary-secB .map-svg-wrapper > * {
  height: 100%;
  display: block;
  margin-left: auto;
}
.itinerary-secB svg {
  height: 100%;
  width: auto;
  position: relative;
  margin-left: auto;
  display: block;
}
@media (max-width: 1420px) {
  .itinerary-secB svg {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1420px) {
  .itinerary-secB img {
    width: 100% !important;
    height: auto !important;
  }
}
.itinerary-secB .cont-wrap {
  flex: 0 1 70%;
  max-width: 70%;
  min-width: 70%;
  width: 100%;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1152px) {
  .itinerary-secB .cont-wrap {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.itinerary-secB .cont-wrap .cont-sec h3 {
  margin-bottom: 8px;
  color: var(--bg-black);
}
.itinerary-secB .cont-wrap .cont-sec h4 {
  font-size: 1.125rem;
  font-weight: var(--font-600);
  color: #5a5a5a;
  margin: 30px 0;
  text-transform: uppercase;
  font-family: var(--fontBrandon);
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card {
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card:nth-child(odd) .colA {
  order: 2;
  border-radius: 0 16px 16px 0;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card:nth-child(odd) .colB {
  order: 1;
  border-radius: 16px 0 0 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.13);
  border-right: none;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card::before {
  content: "";
  height: var(--dot);
  width: var(--dot);
  background: var(--bg-primary);
  border-radius: 50%;
  position: absolute;
  left: calc(-1 * var(--pad-l) - var(--dot) / 2);
  top: 10px;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card:not(:last-child) {
  margin-bottom: 50px;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB {
  width: 100%;
  min-height: 480px;
  max-height: 480px;
}
@media (max-width: 767px) {
  .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB {
    min-height: auto;
    max-height: initial;
  }
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA {
  flex: 0 1 44%;
  max-width: 44%;
}
@media (max-width: 767px) {
  .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA {
    flex: 0 1 100%;
    max-width: 100%;
    order: 1 !important;
  }
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB {
  flex: 1;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA {
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA {
    border-radius: 0 0 16px 16px !important;
    order: 2 !important;
  }
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider {
  height: 100%;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .owl-stage-outer, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .owl-stage, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .owl-item, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .item, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .item img {
  height: 100%;
}
@media (max-width: 767px) {
  .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .owl-stage-outer, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .owl-stage, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .owl-item, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .item, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .preview-slider .item img {
    height: auto;
  }
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .owl-carousel .owl-nav button {
  height: 100%;
  width: 50%;
  background: none;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  cursor: url(../images/itinerary/left.svg), auto;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colA .owl-carousel .owl-nav button.owl-next {
  right: 0;
  cursor: url(../images/itinerary/right.svg), auto;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: none;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  padding: 30px 35px;
  padding-right: 0;
  background: var(--bg-white);
}
@media (max-width: 767px) {
  .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB {
    padding: 25px 20px;
    border-radius: 16px 16px 0 0 !important;
  }
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .upr-info {
  flex: 0 1 auto;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .upr-info h5 {
  font-size: 0.8125rem;
  font-family: var(--fontBrandon);
  font-weight: var(--font-600);
  color: var(--bg-primary);
  margin-bottom: 6.375px;
  text-transform: uppercase;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .upr-info h6 {
  font-size: 1.125rem;
  font-family: var(--fontBrandon);
  font-weight: var(--font-600);
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-primary) transparent;
  padding-right: 15px;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc::-webkit-scrollbar {
  width: 8px;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc::-webkit-scrollbar-thumb {
  background-color: var(--bg-primary);
  border-radius: 10px;
  border: 2px solid transparent;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc p, .itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc ul {
  margin-bottom: 12px;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc ul {
  padding-left: 17px;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc ul li {
  list-style: disc;
}
.itinerary-secB .cont-wrap .cont-card-wrap .cont-card .colB .blw-desc ul li::marker {
  color: var(--bg-primary);
}

.homeSecA.itinerary-secC {
  padding-top: 45px;
}

.hst-sec {
  padding: 50px 0;
}
.hst-sec .heading {
  margin-bottom: 3rem;
}
.hst-sec .hst-dtls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .hst-sec .hst-dtls {
    flex-direction: column;
    gap: 2rem;
  }
}
.hst-sec .hst-dtls figure {
  flex: 0 1 25%;
  text-align: center;
}
@media (max-width: 767px) {
  .hst-sec .hst-dtls figure {
    flex: 0 1 auto;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.hst-sec .hst-dtls figure h6 {
  color: var(--bg-primary);
  font-size: 18px;
  margin-top: -17px;
}
.hst-sec .hst-dtls figure p {
  font-size: 14px;
}
.hst-sec .hst-dtls figure img {
  width: 100%;
  -webkit-mask-image: url("../images/destinations/vector.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/destinations/vector.png");
  mask-repeat: no-repeat;
  mask-position: bottom;
  mask-size: 100% 100%;
}
.hst-sec .hst-dtls figcaption {
  flex: 1;
}
.hst-sec .hst-dtls figcaption h6 {
  color: #000;
  font-size: 18px;
  font-family: var(--fontBrandon);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hst-sec .hst-dtls figcaption h3 {
  color: var(--bg-black);
  font-size: 24px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  position: relative;
  text-align: left;
}

.inclu-exlu-sec {
  padding: 50px 0;
}
.inclu-exlu-sec .exlu-sec-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.inclu-exlu-sec .exlu-sec-flex .colA, .inclu-exlu-sec .exlu-sec-flex .colB {
  flex: 1;
  border: 1px solid #ccc;
}
.inclu-exlu-sec .exlu-sec-flex .colA .uppe-col, .inclu-exlu-sec .exlu-sec-flex .colB .uppe-col {
  border-bottom: 1px solid #ccc;
  padding: 15px 20px;
}
.inclu-exlu-sec .exlu-sec-flex .colA .uppe-col h6, .inclu-exlu-sec .exlu-sec-flex .colB .uppe-col h6 {
  font-family: var(--fontBrandon);
  text-transform: uppercase;
  color: var(--bg-black);
  font-size: 18px;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box {
  padding: 15px 20px;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box .inclu-exclu-bx, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box .inclu-exclu-bx {
  margin-bottom: 20px;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box .inclu-exclu-bx li, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box .inclu-exclu-bx li {
  display: inline-block;
  vertical-align: middle;
  color: var(--bg-text);
  position: relative;
  padding-bottom: 5px;
  cursor: pointer;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box .inclu-exclu-bx li:not(:last-child), .inclu-exlu-sec .exlu-sec-flex .colB .desc-box .inclu-exclu-bx li:not(:last-child) {
  margin-right: 15px;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box .inclu-exclu-bx li::before, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box .inclu-exclu-bx li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 1px;
  background: var(--bg-primary);
  transition: all 0.3s ease;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box .inclu-exclu-bx li.active, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box .inclu-exclu-bx li.active {
  color: var(--bg-primary);
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box .inclu-exclu-bx li.active::before, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box .inclu-exclu-bx li.active::before {
  width: 100%;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box p a, .inclu-exlu-sec .exlu-sec-flex .colA .desc-box li a, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box p a, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box li a {
  color: var(--bg-primary);
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box p, .inclu-exlu-sec .exlu-sec-flex .colA .desc-box ul, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box p, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box ul {
  margin-bottom: 10px;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box ul:not(.inclu-exclu-bx), .inclu-exlu-sec .exlu-sec-flex .colB .desc-box ul:not(.inclu-exclu-bx) {
  padding-left: 17px;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box ul:not(.inclu-exclu-bx) li, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box ul:not(.inclu-exclu-bx) li {
  list-style: disc;
  margin-bottom: 8px;
}
.inclu-exlu-sec .exlu-sec-flex .colA .desc-box ul:not(.inclu-exclu-bx) li::marker, .inclu-exlu-sec .exlu-sec-flex .colB .desc-box ul:not(.inclu-exclu-bx) li::marker {
  color: var(--bg-primary);
}

.homeSecA.itinerary-secC {
  padding: 76.5px 0;
  background: #2f2f2f;
}
@media (max-width: 767px) {
  .homeSecA.itinerary-secC {
    padding: 40px 0;
  }
}
.homeSecA.itinerary-secC .owl-nav button {
  height: 100%;
  top: 0;
  transform: none;
  width: 50%;
  background: none;
  z-index: 5;
}
.homeSecA.itinerary-secC .owl-nav button.owl-prev {
  left: 0;
  cursor: url(../images/itinerary/left.svg), auto;
}
.homeSecA.itinerary-secC .owl-nav button.owl-next {
  right: 0;
  cursor: url(../images/itinerary/right.svg), auto;
}
.homeSecA.itinerary-secC .slideB {
  padding: 0 !important;
}
.homeSecA.itinerary-secC .slideB .swiper-slide .bg img {
  height: 550px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1152px) {
  .homeSecA.itinerary-secC .slideB .swiper-slide .bg img {
    height: 465px;
  }
}
@media (max-width: 991px) {
  .homeSecA.itinerary-secC .slideB .swiper-slide .bg img {
    height: 350px;
  }
}

.ite-pr-slid .owl-stage {
  display: flex;
}
.ite-pr-slid .owl-stage .owl-item {
  height: auto;
}

.simililat-iter-sec {
  --container: 1300px;
  padding: 60px 0;
  overflow: hidden;
  background: url(../images/itinerary/bg-swirl-dark.jpg) no-repeat center;
  background-size: cover;
}
.simililat-iter-sec .container-2 {
  overflow: visible;
  max-width: calc(100vw - (100vw - var(--container)) / 2);
  margin-left: auto;
}
@media (max-width: 1366px) {
  .simililat-iter-sec .container-2 {
    padding-left: 15px;
  }
}
.simililat-iter-sec .container-2 .container-wrapper {
  overflow: visible;
}
.simililat-iter-sec .simililat-iter-flex {
  display: flex;
  flex-wrap: wrap;
}
.simililat-iter-sec .simililat-iter-flex .heading {
  flex: 0 1 270px;
  max-width: 270px;
  width: 100%;
  text-align: left;
}
@media (max-width: 767px) {
  .simililat-iter-sec .simililat-iter-flex .heading {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding-right: 15px;
    margin-bottom: 2rem;
  }
}
.simililat-iter-sec .simililat-iter-flex .heading h2, .simililat-iter-sec .simililat-iter-flex .heading p {
  color: var(--bg-white);
}
.simililat-iter-sec .simililat-iter-flex .heading p {
  line-height: 1.3;
  margin-top: 12px;
}
.simililat-iter-sec .simililat-iter-flex .card-flex {
  padding-left: 50px;
  flex: 0 1 calc(100% - 270px);
  max-width: calc(100% - 270px);
  width: 100%;
}
@media (max-width: 767px) {
  .simililat-iter-sec .simililat-iter-flex .card-flex {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
  }
}
.simililat-iter-sec .simililat-iter-flex .card-flex .owl-stage-outer {
  height: auto !important;
}
.simililat-iter-sec .simililat-iter-flex .card-flex .owl-nav button {
  height: 100%;
  width: 8%;
  background: none;
}
.simililat-iter-sec .simililat-iter-flex .card-flex .owl-nav button.owl-prev {
  left: 0;
  cursor: url(../images/itinerary/left.svg), auto;
}
.simililat-iter-sec .simililat-iter-flex .card-flex .owl-nav button.owl-next {
  right: 0;
  cursor: url(../images/itinerary/right.svg), auto;
}

.sim-exp-card .card {
  background-position: 50%;
  background-size: cover;
  line-height: 1.15em;
  overflow: hidden;
  position: relative;
}
.sim-exp-card .card:hover {
  cursor: pointer;
}
.sim-exp-card .card:hover .card__excerpt {
  max-height: 200px;
  opacity: 1;
}
.sim-exp-card .card:hover .card__content:before {
  opacity: 1;
}
.sim-exp-card .card:hover .card__overlay {
  max-height: 100%;
}
.sim-exp-card .card:hover a:hover {
  text-decoration: none;
}
.sim-exp-card .card__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.sim-exp-card .card__image--not-clickable {
  pointer-events: none;
}
.sim-exp-card .card__title {
  margin-bottom: 5px;
  font-size: 25px;
  text-transform: uppercase;
}
.sim-exp-card .card__content {
  align-items: flex-start;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.sim-exp-card .card__content .button {
  pointer-events: all;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 20px;
}
.sim-exp-card .card__content:before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.53;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}
.sim-exp-card.tile--button {
  align-items: center;
  justify-content: center;
}
.sim-exp-card .card__nights {
  color: #fff;
  margin-left: auto;
  padding: 24px;
  position: relative;
  z-index: 2;
}
.sim-exp-card .card__nights:hover {
  color: #fff;
  text-decoration: none;
}
.sim-exp-card .card__region {
  color: #fff;
}
.sim-exp-card .card__overlay {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  max-height: 70%;
  padding: 24px;
  transition: height 0.3s ease-in-out;
  width: 100%;
}
.sim-exp-card .card__overlay .card__excerpt,
.sim-exp-card .card__overlay .card__nights,
.sim-exp-card .card__overlay .card__region,
.sim-exp-card .card__overlay .card__title,
.sim-exp-card .card__overlay a,
.sim-exp-card .card__overlay button {
  position: relative;
  z-index: 2;
}
.sim-exp-card .card__overlay:hover {
  text-decoration: none;
}
.sim-exp-card .card__overlay .btn:not(.btn--headings-colour) {
  border-color: #fff;
  margin-left: 0;
}
.sim-exp-card .card__overlay:hover {
  color: #fff;
}
.sim-exp-card .card__excerpt {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
}
.sim-exp-card .card__excerpt .mt-xs {
  margin-top: 6px;
}
.sim-exp-card.card--filler {
  align-content: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 25.5px;
  text-align: center;
  width: 100%;
}
.sim-exp-card.card--filler .button {
  margin: auto;
}
.sim-exp-card.card--custom .card__summary {
  left: 0;
  padding: 25.5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sim-exp-card.card--custom .card__title {
  font-family: AlternateGotNo1D, sans-serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 400;
  letter-spacing: 1.8px;
  line-height: 1em;
}
.sim-exp-card.card--custom .card__excerpt {
  max-width: 500px;
}

.srts-sec {
  padding: 80px 0;
  background-color: var(--bg-primary);
  background-image: url(../images/itinerary/texture.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-blend-mode: lighten;
  text-align: center;
}
@media (max-width: 767px) {
  .srts-sec {
    padding: 50px 0;
  }
}
.srts-sec .heading h2 {
  font-size: 38px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--bg-white);
}
@media (max-width: 767px) {
  .srts-sec .heading h2 {
    font-size: 26px;
  }
}
.srts-sec .heading .link-btn .btn {
  font-size: 13px;
  padding: 7px 12px;
}

.banner.bannerVideo .bg .video {
  height: calc(100vh - 59px);
}
@media (max-width: 991px) {
  .banner.bannerVideo .bg .video {
    height: auto;
    line-height: 0;
  }
}
.banner.bannerVideo .bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.8;
}
.banner.bannerVideo .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .banner.bannerVideo .bg video {
    height: auto;
  }
}
.banner.bannerVideo .btnVideo {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 2;
  background: var(--bg-white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50px;
}
@media (max-width: 991px) {
  .banner.bannerVideo .btnVideo {
    bottom: 15px;
    right: 15px;
  }
}
.banner.bannerVideo .btnVideo .unmute {
  display: block;
}
.banner.bannerVideo .btnVideo .mute {
  display: none;
}
.banner.bannerVideo .btnVideo .unmute {
  position: relative;
  left: 4px;
}
.banner.bannerVideo .btnVideo.active .unmute {
  display: none;
}
.banner.bannerVideo .btnVideo.active .mute {
  display: block;
}
.banner.bannerVideo .banner-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.banner.bannerVideo .banner-content .content {
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.banner.bannerVideo .banner-content .content h1 {
  font-size: var(--font-siz-48);
  color: var(--bg-white);
  line-height: 1.3;
  font-weight: var(--font-600);
}
@media (max-width: 767px) {
  .banner.bannerVideo .banner-content .content h1 {
    font-size: var(--font-siz-30);
  }
}
@media (max-width: 520px) {
  .banner.bannerVideo .banner-content .content h1 {
    font-size: var(--font-siz-25);
    margin-bottom: 3px;
  }
}
.banner.bannerVideo .banner-content .content p {
  color: var(--bg-white);
  display: inline-block;
}
@media (max-width: 520px) {
  .banner.bannerVideo .banner-content .content p {
    padding: 0 20px;
  }
}

.aboutInnerSec {
  padding: 15px 0;
}
@media (max-width: 520px) {
  .aboutInnerSec {
    padding: 0;
  }
}
.aboutInnerSec .section {
  padding: 25px 0;
}
.aboutInnerSec .section .container {
  max-width: 1130px;
}
.aboutInnerSec .section:nth-last-child(odd) figure {
  padding-right: 20px;
}
@media (max-width: 520px) {
  .aboutInnerSec .section:nth-last-child(odd) figure {
    padding-right: 0;
  }
}
.aboutInnerSec .section:nth-last-child(odd) .content {
  padding-left: 20px;
}
@media (max-width: 1140px) {
  .aboutInnerSec .section:nth-last-child(odd) .content {
    padding-left: 0;
  }
}
.aboutInnerSec .section:nth-last-child(even) {
  background: #f9f9f9;
}
.aboutInnerSec .section:nth-last-child(even) .d-flex {
  flex-direction: row-reverse;
}
.aboutInnerSec .section:nth-last-child(even) figure {
  padding-left: 20px;
}
@media (max-width: 520px) {
  .aboutInnerSec .section:nth-last-child(even) figure {
    padding-left: 0;
  }
}
.aboutInnerSec .section:nth-last-child(even) .content {
  padding-right: 20px;
}
@media (max-width: 1140px) {
  .aboutInnerSec .section:nth-last-child(even) .content {
    padding-right: 0;
  }
}
.aboutInnerSec .section .d-flex {
  align-items: center;
}
@media (max-width: 767px) {
  .aboutInnerSec .section .d-flex {
    align-items: unset;
    flex-wrap: wrap;
  }
}
.aboutInnerSec .section .d-flex .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 520px) {
  .aboutInnerSec .section .d-flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.aboutInnerSec .section .d-flex .col figure {
  display: block;
}
@media (max-width: 767px) {
  .aboutInnerSec .section .d-flex .col figure {
    position: sticky;
    top: 65px;
  }
}
.aboutInnerSec .section .d-flex .col figure img {
  max-width: 100%;
  display: block;
  width: 100%;
}
@media (max-width: 520px) {
  .aboutInnerSec .section .content {
    padding-top: 30px;
    text-align: center;
  }
}
.aboutInnerSec .section .content h2 {
  font-size: var(--font-siz-25);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .aboutInnerSec .section .content h2 {
    margin-bottom: 8px;
  }
}
@media (max-width: 520px) {
  .aboutInnerSec .section .content h2 {
    font-size: var(--font-siz-24);
  }
}
.aboutInnerSec .section .content p {
  color: var(--bg-black);
  margin-bottom: 15px;
}

.sectionVide .container {
  max-width: 1130px;
}
.sectionVide .heading {
  margin-bottom: 10px;
}
.sectionVide .d-flex:nth-last-child(odd) figure {
  padding-right: 20px;
}
@media (max-width: 520px) {
  .sectionVide .d-flex:nth-last-child(odd) figure {
    padding-right: 0;
  }
}
.sectionVide .d-flex:nth-last-child(odd) .content {
  padding-left: 20px;
}
@media (max-width: 1140px) {
  .sectionVide .d-flex:nth-last-child(odd) .content {
    padding-left: 0;
  }
}
.sectionVide .d-flex:nth-last-child(even) {
  flex-direction: row-reverse;
}
.sectionVide .d-flex:nth-last-child(even) figure {
  padding-left: 20px;
}
@media (max-width: 520px) {
  .sectionVide .d-flex:nth-last-child(even) figure {
    padding-left: 0;
  }
}
.sectionVide .d-flex:nth-last-child(even) .content {
  padding-right: 20px;
}
@media (max-width: 1140px) {
  .sectionVide .d-flex:nth-last-child(even) .content {
    padding-right: 0;
  }
}
.sectionVide .d-flex {
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .sectionVide .d-flex {
    align-items: unset;
    flex-wrap: wrap;
  }
}
.sectionVide .d-flex .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 520px) {
  .sectionVide .d-flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.sectionVide .d-flex .col figure {
  display: block;
}
@media (max-width: 767px) {
  .sectionVide .d-flex .col figure {
    position: sticky;
    top: 65px;
  }
}
.sectionVide .d-flex .col figure img {
  max-width: 100%;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .sectionVide .d-flex .col figure img {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .sectionVide .d-flex .content {
    padding-top: 22px;
    max-width: 100%;
    text-align: center;
  }
}
.sectionVide .d-flex .content p {
  color: var(--bg-black);
  margin-bottom: 15px;
}

.sectionCrafting {
  padding: 25px 0;
  background: #f9f9f9;
}
.sectionCrafting .container {
  max-width: 1130px;
}
.sectionCrafting .heading {
  margin-bottom: 20px;
}
.sectionCrafting .heading h2 {
  font-size: var(--font-siz-25);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .sectionCrafting .heading h2 {
    margin-bottom: 8px;
  }
}
@media (max-width: 520px) {
  .sectionCrafting .heading h2 {
    font-size: var(--font-siz-24);
  }
}
.sectionCrafting .d-flex {
  align-items: center;
}
@media (min-width: 992px) {
  .sectionCrafting .d-flex {
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .sectionCrafting .d-flex {
    align-items: unset;
    flex-wrap: wrap;
  }
}
.sectionCrafting .colA {
  flex: 0 1 50%;
  max-width: 50%;
}
@media (max-width: 520px) {
  .sectionCrafting .colA {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.sectionCrafting .colB {
  flex: 0 1 50%;
  max-width: 50%;
}
@media (min-width: 992px) {
  .sectionCrafting .colB {
    padding-right: 20px;
  }
}
@media (max-width: 520px) {
  .sectionCrafting .colB {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .sectionCrafting figure {
    position: sticky;
    top: 65px;
  }
}
@media (max-width: 1140px) {
  .sectionCrafting .content {
    max-width: 100%;
    padding-left: 25px;
  }
}
@media (max-width: 520px) {
  .sectionCrafting .content {
    padding-top: 22px;
    max-width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.sectionCrafting .content p {
  color: var(--bg-black);
  margin-bottom: 15px;
}

.aboutCulureteriop {
  padding: 65px 0;
}
@media (max-width: 1140px) {
  .aboutCulureteriop {
    padding-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .aboutCulureteriop {
    padding: 45px 0 25px;
  }
}
.aboutCulureteriop .heading {
  margin-bottom: 66px;
}
@media (max-width: 767px) {
  .aboutCulureteriop .heading {
    max-width: 380px;
    margin: 0 auto;
    margin-bottom: 45px;
  }
}
.aboutCulureteriop .owl-carousel.AboutSliderA .item .img img {
  display: block;
}
.aboutCulureteriop .owl-carousel.AboutSliderA .item .content {
  max-width: 560px;
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 30px 15px;
  opacity: 0;
  transition: 1s ease;
}
.aboutCulureteriop .owl-carousel.AboutSliderA .item .content .title {
  font-size: var(--font-siz-20);
  color: var(--bg-black);
  font-weight: var(--font-600);
  margin-bottom: 6px;
}
.aboutCulureteriop .owl-carousel.AboutSliderA .item .content p {
  font-size: var(--font-siz-16);
  color: var(--bg-black);
  line-height: 24px;
}
.aboutCulureteriop .owl-carousel.AboutSliderA .owl-item {
  filter: opacity(0.5);
  transition: 1s ease;
}
.aboutCulureteriop .owl-carousel.AboutSliderA .owl-item.center {
  filter: opacity(1);
}
.aboutCulureteriop .owl-carousel.AboutSliderA .owl-item.center .content {
  opacity: 1;
}
.aboutCulureteriop .owl-carousel .owl-nav button {
  top: 40%;
}

.BlogsecA {
  background: var(--bg-white);
  border-top: 2px solid var(--bg-primary);
}
.BlogsecA .container .breadcrumb {
  padding: 10px 0;
}
.BlogsecA .container .breadcrumb ul {
  display: flex;
}
.BlogsecA .container .breadcrumb ul li {
  margin: 0 5px;
  font-size: 13px;
  color: var(--bs-gray-900);
}
.BlogsecA .container .blog-tabs {
  text-align: center;
  max-width: 705px;
  margin: 0 auto;
  padding: 70px 0 0px;
  transition: 0s;
}
@media (max-width: 991px) {
  .BlogsecA .container .blog-tabs {
    padding: 45px 0;
    max-width: 540px;
  }
}
@media (max-width: 675px) {
  .BlogsecA .container .blog-tabs {
    padding: 30px 0;
  }
}
.BlogsecA .container .blog-tabs h3 {
  font-size: 60px;
  text-align: center;
  color: var(--bg-black);
  padding-bottom: 15px;
  font-weight: var(--font-normal);
  line-height: 1;
}
@media (max-width: 991px) {
  .BlogsecA .container .blog-tabs h3 {
    font-size: 55px;
  }
}
@media (max-width: 675px) {
  .BlogsecA .container .blog-tabs h3 {
    font-size: 45px;
  }
}
.BlogsecA .container .blog-tabs h3 > span {
  font-family: var(--fontSilver);
  color: var(--bg-primary);
  font-size: 75px;
}
@media (max-width: 991px) {
  .BlogsecA .container .blog-tabs h3 > span {
    font-size: 60px;
  }
}
@media (max-width: 675px) {
  .BlogsecA .container .blog-tabs h3 > span {
    font-size: 55px;
  }
}
.BlogsecA .container .blog-tabs .country-select {
  margin-top: 30px;
}
.BlogsecA .container .blog-tabs .country-select select {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6196078431);
  width: 300px;
  padding: 10px 0;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("/assets/icons/downArR.png") no-repeat;
  background-position: right;
}
.BlogsecA .container .blog-tabs .country-select select:focus {
  border: none;
}
.BlogsecA .container .blog-tabs .country-select select:focus-visible {
  outline: none;
}
.BlogsecA .container .blog-tabs .CustomSelectDropdown {
  display: block;
  max-width: 280px;
  margin: 21px auto 0;
  text-align: left;
}
.BlogsecA .container .blog-tabs .CustomSelectDropdown .DropDonSelect {
  border-color: var(--bg-white);
  border-bottom: 1px solid var(--bs-gray-300);
}
.BlogsecA .container .blog-tabs .CustomSelectDropdown .DropDonSelect.infocus {
  border: 1px solid var(--bs-gray-300);
}

.blogsecB {
  padding: 40px 0 25px;
}
@media (max-width: 675px) {
  .blogsecB {
    padding: 20px 0 25px;
  }
}
.blogsecB .flex {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .blogsecB .flex {
    border: 1px solid var(--bs-gray-400);
  }
}
.blogsecB .flex .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 675px) {
  .blogsecB .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.blogsecB .flex .col.rightcon {
  border-top: 1px solid rgba(0, 0, 0, 0.2117647059);
  border-right: 1px solid rgba(0, 0, 0, 0.2117647059);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2117647059);
  display: flex;
}
@media (max-width: 991px) {
  .blogsecB .flex .col.rightcon {
    border: 0;
  }
}
.blogsecB .flex .col .content {
  padding: 40px;
  margin: auto;
}
@media (max-width: 991px) {
  .blogsecB .flex .col .content {
    padding: 15px;
  }
}
.blogsecB .flex .col .content p {
  color: rgba(0, 0, 0, 0.7215686275);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogsecB .flex .col .content .heading h3 {
  font-size: var(--font-siz-30);
  margin: 20px 0;
}
@media (max-width: 991px) {
  .blogsecB .flex .col .content .heading h3 {
    margin: 12px 0;
    font-size: var(--font-siz-25);
  }
}
@media (max-width: 520px) {
  .blogsecB .flex .col .content .heading h3 {
    margin: 5px 0 10px;
    font-size: var(--font-siz-18);
  }
}
.blogsecB .flex .col .content .readmore {
  margin-top: 20px;
}
.blogsecB .flex .col .content .readmore a {
  color: var(--bg-primary);
}
@media (max-width: 991px) {
  .blogsecB .flex .col figure {
    height: 100%;
  }
}
.blogsecB .flex .col figure img {
  width: 100%;
}
@media (max-width: 991px) {
  .blogsecB .flex .col figure img {
    height: 100%;
  }
}

.blogsecC {
  padding-bottom: 40px;
}
.blogsecC .container .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  .blogsecC .container .grid {
    gap: 8px;
  }
}
@media (max-width: 675px) {
  .blogsecC .container .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .blogsecC .container .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px 0px;
  }
}
.blogsecC .container .grid .item {
  border: 1px solid rgba(0, 0, 0, 0.2117647059);
}
.blogsecC .container .grid .item:hover figure img {
  transform: scale(1.2);
  transition: 0.8s ease;
}
.blogsecC .container .grid .item figure {
  overflow: hidden;
}
.blogsecC .container .grid .item figure img {
  transition: 0.8s ease;
  width: 100%;
}
.blogsecC .container .grid figcaption {
  padding: 18px 25px;
}
@media (max-width: 991px) {
  .blogsecC .container .grid figcaption {
    padding: 15px 10px;
  }
}
.blogsecC .container .grid figcaption .date {
  color: rgba(0, 0, 0, 0.7215686275);
  font-size: var(--font-siz-14);
  line-height: 1;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .blogsecC .container .grid figcaption .date {
    padding-bottom: 10px;
  }
}
.blogsecC .container .grid figcaption .title {
  font-size: var(--font-siz-20);
  line-height: 1.2;
  font-weight: var(--font-600);
}
@media (max-width: 991px) {
  .blogsecC .container .grid figcaption .title {
    font-size: var(--font-siz-18);
    line-height: 20px;
  }
}
.blogsecC .container .grid figcaption .desc {
  padding: 15px 0 20px;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .blogsecC .container .grid figcaption .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
    padding: 7px 0 5px 0;
    margin-bottom: 10px;
  }
}
.blogsecC .container .grid figcaption .desc:empty {
  display: none;
}
.blogsecC .container .grid figcaption a {
  color: var(--bg-primary);
  margin-top: 12px;
  display: inline-block;
}
@media (max-width: 991px) {
  .blogsecC .container .grid figcaption a {
    margin: 0;
  }
}
.blogsecC .container .load-more {
  margin-top: 40px;
  text-align: center;
}
.blogsecC .container .load-more .btn-load {
  display: inline-block;
  padding: 13px 25px 9px;
  background: var(--bg-white);
  color: var(--bg-primary);
  border: 1px solid var(--bg-primary);
  text-transform: uppercase;
  font-weight: var(--font-600);
  font-size: var(--font-siz-14);
  transition: 0.5s ease;
}
.blogsecC .container .load-more .btn-load:hover {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}

.blog-detail-secA .container-fluid .breadcrumb {
  padding: 10px 0;
  position: absolute;
  left: 7%;
  z-index: 1;
}
@media (max-width: 991px) {
  .blog-detail-secA .container-fluid .breadcrumb {
    display: none;
  }
}
.blog-detail-secA .container-fluid .breadcrumb ul {
  display: flex;
}
.blog-detail-secA .container-fluid .breadcrumb ul li {
  margin: 0 5px;
  font-size: 13px;
  color: var(--bg-white);
}
.blog-detail-secA .container-fluid .banner-bg {
  position: relative;
}
.blog-detail-secA .container-fluid .banner-bg figure {
  position: relative;
}
.blog-detail-secA .container-fluid .banner-bg figure::before, .blog-detail-secA .container-fluid .banner-bg figure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}
.blog-detail-secA .container-fluid .banner-bg figure::before {
  bottom: 0;
  opacity: 0.8;
  height: 100%;
  background: linear-gradient(to top, var(--bg-black), transparent);
}
.blog-detail-secA .container-fluid .banner-bg figure::after {
  top: 0;
  opacity: 0.7;
  height: 40%;
  background: linear-gradient(to bottom, var(--bg-black), transparent);
}
.blog-detail-secA .container-fluid .banner-bg figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 75vh;
}
@media (max-width: 1140px) {
  .blog-detail-secA .container-fluid .banner-bg figure img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .blog-detail-secA .container-fluid .banner-bg figure img {
    height: 320px;
  }
}
.blog-detail-secA .container-fluid .banner-bg .content {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .blog-detail-secA .container-fluid .banner-bg .content {
    padding: 0 20px;
  }
}
.blog-detail-secA .container-fluid .banner-bg .content .heading {
  max-width: 800px;
  text-align: center;
  margin: auto;
  color: var(--bg-white);
  font-weight: var(--font-600);
  line-height: 1.2;
  font-size: var(--font-siz-42);
}
@media (max-width: 1024px) {
  .blog-detail-secA .container-fluid .banner-bg .content .heading {
    font-size: var(--font-siz-26);
  }
}
@media (max-width: 991px) {
  .blog-detail-secA .container-fluid .banner-bg .content .heading {
    font-size: var(--font-siz-22);
  }
}

.blog-detail-secB .container-blog {
  max-width: 1128px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}
.blog-detail-secB .container-blog .blog-detail-content {
  margin: 50px 0;
}
@media (max-width: 991px) {
  .blog-detail-secB .container-blog .blog-detail-content {
    margin: 30px 0 0;
  }
}
.blog-detail-secB .container-blog .blog-detail-content div.has-img {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .blog-detail-secB .container-blog .blog-detail-content div.has-img:last-child {
    margin-bottom: 0;
  }
}
.blog-detail-secB .container-blog .blog-detail-content div.has-img.img-1 img {
  max-width: 100%;
  padding: 0 7px;
}
.blog-detail-secB .container-blog .blog-detail-content div.has-img.img-2 img {
  max-width: 50%;
  padding: 0 7px;
}
.blog-detail-secB .container-blog .blog-detail-content div.has-img.img-3 img {
  max-width: 33.33%;
  padding: 0 7px;
}
.blog-detail-secB .container-blog .blog-detail-content div.has-img.img-4 img {
  max-width: 25%;
  padding: 0 7px;
}
.blog-detail-secB .container-blog .blog-detail-content div.has-img.img-5 img {
  max-width: 20%;
  padding: 0 7px;
}
.blog-detail-secB .container-blog .blog-detail-content img {
  display: block;
  margin-top: 22px;
}
@media (max-width: 991px) {
  .blog-detail-secB .container-blog .blog-detail-content img {
    margin: 0 0 15px;
  }
}
@media (max-width: 675px) {
  .blog-detail-secB .container-blog .blog-detail-content img {
    width: 100%;
  }
}
.blog-detail-secB .container-blog .blog-detail-content p img {
  display: none;
}
.blog-detail-secB .container-blog p, .blog-detail-secB .container-blog h1, .blog-detail-secB .container-blog h2, .blog-detail-secB .container-blog h3, .blog-detail-secB .container-blog h4, .blog-detail-secB .container-blog h5, .blog-detail-secB .container-blog h6, .blog-detail-secB .container-blog ul {
  max-width: 900px;
  margin: 0 auto;
}
.blog-detail-secB .container-blog p {
  text-align: justify;
  font-size: var(--font-siz-16);
  line-height: 1.875rem;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .blog-detail-secB .container-blog p {
    font-size: var(--font-siz-15);
    line-height: var(--font-siz-22);
  }
}
.blog-detail-secB .container-blog h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--bg-black);
}
@media (max-width: 991px) {
  .blog-detail-secB .container-blog h3 {
    font-size: 20px;
  }
}
.blog-detail-secB .container-blog ul {
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.blog-detail-secB .container-blog ul li {
  display: block;
  position: relative;
  margin-bottom: 6px;
  padding-left: 15px;
}
.blog-detail-secB .container-blog ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--bg-primary);
  border-radius: 20px;
  left: 0;
  top: 8px;
}
.blog-detail-secB .container-blog figure img {
  width: 100%;
}

.homeSecB.blog {
  padding-top: 25px;
}
.homeSecB.blog .slideC .slideTabSug {
  margin: 0;
}
.homeSecB.blog .owl-carousel.HSlideD .owl-nav {
  top: -60px;
}

.two_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .two_img {
    grid-template-columns: repeat(1, 1fr) !important;
    margin-bottom: 10px;
  }
}

.one_img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .one_img {
    margin-bottom: 5px;
  }
}

.journey-detail-secA .link-btn {
  margin-top: 50px;
  text-align: center;
}
.journey-detail-secA .link-btn a {
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-black);
}
.journey-detail-secA .link-btn a:hover {
  color: var(--bg-black);
  background: none;
}

.travel-secB {
  padding-bottom: 35px;
}
.travel-secB .container-fluid {
  padding: 35px 45px;
}
.travel-secB .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .travel-secB .grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .travel-secB .grid {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.travel-secB .grid .col a {
  position: relative;
  pointer-events: all;
  display: block;
  height: 100%;
}
.travel-secB .grid .col a figure {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
}
.travel-secB .grid .col a figure::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.6;
}
.travel-secB .grid .col a figure:hover img {
  transform: scale(1.2);
  transition: 0.8s ease;
}
.travel-secB .grid .col a figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}
.travel-secB .grid .col a .content {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 20px;
  text-align: center;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.travel-secB .grid .col a .content p {
  color: var(--bg-white);
  cursor: pointer;
  font-size: var(--font-siz-22);
  font-weight: var(--font-600);
}

.homeSecB.tab-b .container > .link-btn {
  margin-top: 30px;
}

.onlinePaySecA {
  background: var(--bg-white);
  border-top: 2px solid var(--bg-primary);
  position: relative;
}
.onlinePaySecA::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background: var(--bs-gray-200);
}
.onlinePaySecA .container {
  position: relative;
  z-index: 1;
}
.onlinePaySecA .col2 {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 767px) {
  .onlinePaySecA .col2 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.onlinePaySecA .col2 h2 {
  color: var(--bg-black);
  margin-bottom: 35px;
}
@media (max-width: 520px) {
  .onlinePaySecA .col2 h2 {
    margin-bottom: 25px;
  }
}
.onlinePaySecA .paymenBankDet {
  max-width: 480px;
  padding: 80px 0;
}
@media (max-width: 520px) {
  .onlinePaySecA .paymenBankDet {
    padding: 40px 0 20px;
  }
}
.onlinePaySecA .paymenBankDet .d-flex {
  justify-content: space-between;
  margin-bottom: 8px;
}
@media (max-width: 520px) {
  .onlinePaySecA .paymenBankDet .d-flex {
    margin-bottom: 13px;
    border-bottom: 1px solid var(--bs-gray-300);
    padding-bottom: 10px;
  }
}
.onlinePaySecA .paymenBankDet .d-flex .title, .onlinePaySecA .paymenBankDet .d-flex .text {
  flex: 1;
}
@media (max-width: 520px) {
  .onlinePaySecA .paymenBankDet .d-flex .title, .onlinePaySecA .paymenBankDet .d-flex .text {
    max-width: 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}
.onlinePaySecA .paymenBankDet .d-flex .title {
  font-weight: var(--font-600);
  max-width: 180px;
}
@media (max-width: 520px) {
  .onlinePaySecA .paymenBankDet .d-flex .title {
    max-width: 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}
.onlinePaySecA .paymenBankDet .d-flex .text {
  display: flex;
  align-items: center;
}
.onlinePaySecA .paymenBankDet .d-flex .text span, .onlinePaySecA .paymenBankDet .d-flex .text b {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 520px) {
  .onlinePaySecA .paymenBankDet .d-flex .text span, .onlinePaySecA .paymenBankDet .d-flex .text b {
    font-size: var(--font-siz-14);
    color: var(--bs-gray-600);
  }
}
.onlinePaySecA .paymenBankDet .d-flex .text b {
  margin-right: 18px;
}
@media (max-width: 520px) {
  .onlinePaySecA .paymenBankDet .d-flex .text b {
    display: none;
  }
}
.onlinePaySecA .form {
  padding: 80px 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 520px) {
  .onlinePaySecA .form {
    padding: 0 0 60px 0;
  }
}
.onlinePaySecA .form .col_1 {
  flex: 0 1 100%;
  max-width: 100%;
  padding: 0 6px;
}
@media (max-width: 767px) {
  .onlinePaySecA .form .col_1 {
    padding: 0;
  }
}
.onlinePaySecA .form .col_2 {
  flex: 0 1 50%;
  max-width: 50%;
  padding: 0 6px;
}
@media (max-width: 767px) {
  .onlinePaySecA .form .col_2 {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
  }
}
.onlinePaySecA .form h2 {
  margin-bottom: 25px;
}
.onlinePaySecA .form .form-group label {
  color: var(--bs-gray-700);
}
.onlinePaySecA .form .form-group .form-control.valid ~ label {
  top: -7px;
  background: var(--bs-gray-200);
  font-size: 12px;
}
.onlinePaySecA .form .form-group.wraopTeDrop input.tel {
  padding-left: 55px;
}
.onlinePaySecA .form .form-group.wraopTeDrop input.tel:focus ~ .ddDialCode2 {
  border-color: var(--bg-primary);
}
.onlinePaySecA .form .form-group.wraopTeDrop input.tel ~ label {
  left: 55px;
}
.onlinePaySecA .form .form-group.wraopTeDrop .ddDialCode2 {
  position: absolute;
  width: 50px;
  height: 45px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--bs-gray-300);
  z-index: 1;
  transition: 0.5s ease;
  cursor: pointer;
}
.onlinePaySecA .form .form-group.wraopTeDrop .ddDialCode2 .selectCode2 {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  -webkit-text-emphasis: revert;
          text-emphasis: revert;
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 {
  min-width: 249px;
  position: absolute;
  top: 100%;
  background: var(--bg-white);
  border: 1px solid #dfdfdf;
  left: 0;
  padding: 0 0 5px 0;
  transform: translateY(5%);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
  z-index: 1;
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 .telSearchPan {
  padding: 5px;
  position: sticky;
  top: 0;
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 .telSearchPan .form-group {
  margin-bottom: 0;
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 ul {
  max-height: 200px;
  overflow-y: scroll;
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 ul::-webkit-scrollbar {
  width: 3px;
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 ul::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 ul::-webkit-scrollbar-thumb {
  background-color: var(--bg-primary);
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 li {
  display: block;
  cursor: pointer;
  padding: 8px 15px;
  background: var(--bg-white);
  transition: 0.5s ease;
  font-size: var(--font-siz-14);
  border-bottom: 1px solid transparent;
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2 li:hover {
  color: var(--bg-black);
  background: var(--bs-gray-300);
  border-color: var(--bg-white);
}
.onlinePaySecA .form .form-group.wraopTeDrop .lsiofcodes2.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
}
.onlinePaySecA .form .formCurrenDrop {
  position: relative;
  margin-bottom: 20px;
}
.onlinePaySecA .form .formCurrenDrop .selected {
  position: relative;
  border: 1px solid var(--bs-gray-300);
  padding: 8px;
  min-height: 45px;
  background: var(--bg-white) url("../icons/servlet.png");
  background-repeat: no-repeat;
  background-position: 96% 46%;
  cursor: pointer;
}
.onlinePaySecA .form .formCurrenDrop .selected span {
  display: inline-block;
  line-height: 1;
}
.onlinePaySecA .form .formCurrenDrop .selected span.selctInr {
  position: absolute;
  right: 35px;
  top: 14px;
  font-weight: var(--font-600);
}
.onlinePaySecA .form .formCurrenDrop .dropdownCurrency {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  background: var(--bg-white);
  padding: 6px 0;
  display: none;
}
.onlinePaySecA .form .formCurrenDrop .dropdownCurrency li {
  cursor: pointer;
  padding: 8px;
}
.onlinePaySecA .termCondition {
  position: relative;
  padding-left: 35px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.onlinePaySecA .termCondition .fakeCheckbox {
  position: absolute;
  left: 0;
  width: 22px;
  height: 21px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.onlinePaySecA .termCondition .fakeCheckbox img {
  opacity: 0;
}
.onlinePaySecA .termCondition input.inputtcWrap {
  width: 22px;
  height: 22px;
  border: 0;
  outline: none;
  box-shadow: none;
  position: absolute;
  left: 0;
  z-index: 1;
  top: 0;
  opacity: 0;
  cursor: pointer;
}
.onlinePaySecA .termCondition input.inputtcWrap:checked ~ .fakeCheckbox img {
  opacity: 1;
}
.onlinePaySecA .termCondition .tex p a {
  color: var(--bg-primary);
  font-weight: var(--font-600);
}
.onlinePaySecA .btn-form .btn {
  background: var(--bg-primary);
  color: var(--bg-white);
  display: block;
  width: 100%;
  text-align: center;
}

.faqPage {
  background: var(--bs-gray-200);
}

.faqinnSecA {
  padding: 60px 0;
  background: var(--bs-gray-200);
  border-top: 2px solid var(--bg-primary);
}
@media (max-width: 991px) {
  .faqinnSecA {
    padding: 45px 0 30px;
  }
}
.faqinnSecA .content {
  text-align: center;
}
@media (max-width: 991px) {
  .faqinnSecA .content {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 520px) {
  .faqinnSecA .content {
    max-width: 320px;
  }
}
.faqinnSecA .content h1 {
  color: var(--bg-black);
  font-size: var(--font-siz-36);
}
@media (max-width: 991px) {
  .faqinnSecA .content h1 {
    font-size: var(--font-siz-30);
    margin-bottom: 8px;
  }
}
@media (max-width: 520px) {
  .faqinnSecA .content h1 {
    line-height: 1.2;
  }
}

.faqinnSecB {
  padding: 55px 0;
}
@media (max-width: 991px) {
  .faqinnSecB {
    padding: 20px 0 45px 0;
  }
}

.faqListCOntainer .list-faq {
  margin-bottom: 12px;
  position: relative;
}
.faqListCOntainer .list-faq .quest {
  background: var(--bg-white);
  padding: 18px 20px;
  font-size: var(--font-siz-18);
  color: var(--bg-black);
  font-weight: var(--font-600);
  cursor: pointer;
  padding-right: 55px;
}
@media (max-width: 767px) {
  .faqListCOntainer .list-faq .quest {
    padding: 18px 10px;
    font-size: var(--font-siz-17);
  }
}
.faqListCOntainer .list-faq .faqTrig {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 7px;
  right: 3px;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.faqListCOntainer .list-faq .faqTrig span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--bg-primary);
  position: relative;
}
@media (max-width: 991px) {
  .faqListCOntainer .list-faq .faqTrig span {
    width: 20px;
  }
}
.faqListCOntainer .list-faq .faqTrig span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 3px;
  background: var(--bg-primary);
  transform: rotate(90deg);
}
@media (max-width: 991px) {
  .faqListCOntainer .list-faq .faqTrig span::before {
    width: 20px;
  }
}
.faqListCOntainer .list-faq .ans {
  display: none;
}
.faqListCOntainer .list-faq .ans {
  padding: 0 20px 25px;
  background: var(--bg-white);
  border-bottom: 2px solid var(--bg-primary);
}
@media (max-width: 767px) {
  .faqListCOntainer .list-faq .ans {
    padding: 0 10px 20px;
  }
}
.faqListCOntainer .list-faq .ans p {
  margin-bottom: 20px;
  color: var(--bs-gray-600);
}
.faqListCOntainer .list-faq.active .quest {
  color: var(--bg-primary);
}
.faqListCOntainer .list-faq.active .faqTrig span::before {
  opacity: 0;
}

.contact-PageSecA {
  padding: 85px 0;
  border-top: 2px solid var(--bg-primary);
}
@media (max-width: 767px) {
  .contact-PageSecA {
    padding: 45px 0;
  }
}
.contact-PageSecA .heading {
  max-width: 500px;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .contact-PageSecA .heading {
    max-width: 350px;
    margin: 0 auto 35px;
  }
}
@media (max-width: 675px) {
  .contact-PageSecA .heading {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 420px) {
  .contact-PageSecA .heading {
    padding: 0 15px;
  }
}
.contact-PageSecA .heading h2 {
  line-height: 1.2;
  margin: 0;
}
.contact-PageSecA .d-flex {
  list-style: none;
  align-items: center;
  justify-content: center;
}
.contact-PageSecA .d-flex .col3 {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 10px;
}
@media (max-width: 991px) {
  .contact-PageSecA .d-flex .col3 {
    padding: 4px;
  }
}
@media (max-width: 767px) {
  .contact-PageSecA .d-flex .col3 {
    flex: 0 1 50%;
    max-width: 50%;
    padding: 8px;
  }
}
@media (max-width: 520px) {
  .contact-PageSecA .d-flex .col3 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.contact-PageSecA .card {
  background: var(--bg-white);
  padding: 20px 20px 35px;
  text-align: center;
  border: 1px solid var(--bs-gray-300);
  border-bottom: 3px solid var(--bg-primary);
  height: 100%;
}
@media (max-width: 991px) {
  .contact-PageSecA .card {
    padding: 20px 10px 35px;
  }
}
.contact-PageSecA .card .icon {
  margin-bottom: 10px;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-PageSecA .card .icon img {
  display: block;
  margin: 0 auto;
}
.contact-PageSecA .card h4 {
  font-size: var(--font-siz-24);
  font-weight: var(--font-600);
  color: var(--bg-black);
  max-width: 290px;
  margin: 0 auto 10px;
  min-height: 69px;
}
@media (max-width: 991px) {
  .contact-PageSecA .card h4 {
    margin: 0 auto 0px;
    font-size: var(--font-siz-20);
  }
}
@media (max-width: 520px) {
  .contact-PageSecA .card h4 {
    min-height: auto;
    margin-bottom: 12px;
  }
}
.contact-PageSecA .card p {
  color: var(--bs-gray-600);
}
.contact-PageSecA .card p a:hover {
  color: var(--bg-primary);
}
.contact-PageSecA .card .or {
  font-size: var(--font-siz-24);
  font-weight: var(--font-600);
  color: var(--bg-black);
}
@media (max-width: 991px) {
  .contact-PageSecA .card .or {
    font-size: var(--font-siz-20);
  }
}
.contact-PageSecA .card .minh {
  min-height: 110px;
}
@media (max-width: 991px) {
  .contact-PageSecA .card .minh {
    min-height: auto;
    margin-bottom: 15px;
  }
}
.contact-PageSecA .card .link-btnWhats {
  text-align: center;
}
.contact-PageSecA .card .link-btnWhats a {
  display: flex;
  flex-wrap: wrap;
  color: var(--bg-white);
  background: var(--bg-black);
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 185px;
  width: 100%;
  margin: 0 auto;
  padding: 6px 25px;
  border: 1px solid var(--bg-black);
}
.contact-PageSecA .card .link-btnWhats a img {
  display: block;
  width: auto;
  margin-right: 7px;
  max-width: unset;
  height: 18px;
}

.contact-PageSecB {
  background: var(--bs-gray-200);
  padding: 80px 0;
}
@media (max-width: 767px) {
  .contact-PageSecB {
    padding: 45px 0;
  }
}
.contact-PageSecB .heading {
  margin-bottom: 45px;
}
@media (max-width: 675px) {
  .contact-PageSecB .heading {
    margin-bottom: 30px;
  }
}
.contact-PageSecB .heading p {
  color: var(--bg-primary);
}
.contact-PageSecB .heading h2 {
  line-height: 1.2;
  margin: 0;
}
.contact-PageSecB .contactForm {
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}
.contact-PageSecB .contactForm .col2 {
  flex: 0 1 50%;
  max-width: 50%;
  padding: 0 8px;
}
@media (max-width: 520px) {
  .contact-PageSecB .contactForm .col2 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.contact-PageSecB .contactForm .col1 {
  flex: 0 1 100%;
  max-width: 100%;
  padding: 0 8px;
}
@media (max-width: 675px) {
  .contact-PageSecB .contactForm .form .form-group {
    margin-bottom: 10px;
  }
}
.contact-PageSecB .contactForm .form .form-group .form-control.valid ~ label {
  top: -7px;
  background: var(--bs-gray-200);
  font-size: 12px;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop input.tel {
  padding-left: 55px;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop input.tel:focus ~ .ddDialCode2 {
  border-color: var(--bg-primary);
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop input.tel ~ label {
  left: 55px;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .ddDialCode2 {
  position: absolute;
  width: 50px;
  height: 45px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--bs-gray-300);
  z-index: 1;
  transition: 0.5s ease;
  cursor: pointer;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .ddDialCode2 .selectCode2 {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  -webkit-text-emphasis: revert;
          text-emphasis: revert;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 {
  min-width: 249px;
  position: absolute;
  top: 100%;
  background: var(--bg-white);
  border: 1px solid #dfdfdf;
  left: 0;
  padding: 0 0 5px 0;
  transform: translateY(5%);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
  z-index: 1;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 .telSearchPan {
  padding: 5px;
  position: sticky;
  top: 0;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 .telSearchPan .form-group {
  margin-bottom: 0;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 ul {
  max-height: 200px;
  overflow-y: scroll;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 ul::-webkit-scrollbar {
  width: 3px;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 ul::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 ul::-webkit-scrollbar-thumb {
  background-color: var(--bg-primary);
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 li {
  display: block;
  cursor: pointer;
  padding: 8px 15px;
  background: var(--bg-white);
  transition: 0.5s ease;
  font-size: var(--font-siz-14);
  border-bottom: 1px solid transparent;
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2 li:hover {
  color: var(--bg-black);
  background: var(--bs-gray-300);
  border-color: var(--bg-white);
}
.contact-PageSecB .contactForm .form .form-group.wraopTeDrop .lsiofcodes2.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
}
.contact-PageSecB .contactForm .form .btn-form {
  margin-top: 25px;
}
@media (max-width: 675px) {
  .contact-PageSecB .contactForm .form .btn-form {
    margin-top: 5px;
  }
}
.contact-PageSecB .contactForm .form .btn-form .btn {
  padding: 10px 55px;
}

.banner.aboutBanner {
  display: block;
}
.banner.aboutBanner .bg .video {
  height: calc(100vh - 59px);
}
@media (max-width: 991px) {
  .banner.aboutBanner .bg .video {
    height: 100%;
    line-height: 0;
  }
}
.banner.aboutBanner .bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.8;
}
.banner.aboutBanner .bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1140px) {
  .banner.aboutBanner .bg img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .banner.aboutBanner .bg img {
    height: 320px;
  }
}
.banner.aboutBanner .banner-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.banner.aboutBanner .banner-content .content {
  max-width: 780px;
  width: 100%;
  text-align: center;
}
.banner.aboutBanner .banner-content .content h1 {
  font-size: var(--font-siz-48);
  color: var(--bg-white);
  line-height: 1.3;
  font-weight: var(--font-600);
}
@media (max-width: 767px) {
  .banner.aboutBanner .banner-content .content h1 {
    font-size: var(--font-siz-30);
  }
}
@media (max-width: 520px) {
  .banner.aboutBanner .banner-content .content h1 {
    font-size: var(--font-siz-25);
    margin-bottom: 3px;
  }
}
.banner.aboutBanner .banner-content .content p {
  color: var(--bg-white);
  display: inline-block;
}
@media (max-width: 520px) {
  .banner.aboutBanner .banner-content .content p {
    padding: 0 20px;
  }
}

.ResponsibleTravel .container {
  max-width: 1133px;
}
.ResponsibleTravel .bg-lgray {
  background: #f9f9f9;
}
@media (max-width: 991px) {
  .ResponsibleTravel .bg-lgray {
    padding: 45px 0 25px;
  }
}
@media (max-width: 520px) {
  .ResponsibleTravel .bg-lgray {
    padding: 25px 0;
  }
}
.ResponsibleTravel .productCard .item .content .link-btn .btn {
  font-size: var(--font-siz-11);
  padding: 11px 10px 9px;
}
.ResponsibleTravel .homeSecBB {
  background: var(--bs-gray-200) !important;
}
.ResponsibleTravel .homeSecB {
  background: var(--bg-white);
}
@media (max-width: 991px) {
  .ResponsibleTravel .homeSecB {
    padding: 45px 0 25px;
  }
}
@media (max-width: 767px) {
  .ResponsibleTravel .homeSecB {
    padding: 35px 0 14px;
  }
}
.ResponsibleTravel .homeSecB .heading {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .ResponsibleTravel .homeSecB .heading {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .ResponsibleTravel .homeSecB .slideC .slideTabSug {
    margin-bottom: 0;
  }
}
.ResponsibleTravel .homeSecB {
  padding-bottom: 25px;
}
.ResponsibleTravel .homeSecB .owl-carousel.HSlideD .owl-nav {
  top: -80px;
}
.ResponsibleTravel .homeSecB .owl-carousel.HSlideD .owl-nav button {
  transform: none;
}
.ResponsibleTravel .homeSecB .heading {
  max-width: 100%;
}
.ResponsibleTravel .homeSecA .heading {
  margin-bottom: 40px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .ResponsibleTravel .homeSecA .heading {
    margin-bottom: 20px;
  }
}
.ResponsibleTravel .homeSecA .slideB .swiper-slide .content {
  padding: 25px 10px;
  max-width: 315px;
  margin: 0 auto;
}

.ResponsibleTravel-SecA .container .content {
  max-width: 890px;
}

.ResponsibleTravel-SecB {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .ResponsibleTravel-SecB {
    padding: 45px 0;
  }
}
@media (max-width: 675px) {
  .ResponsibleTravel-SecB {
    padding: 30px 0 5px;
  }
}
.ResponsibleTravel-SecB .heading {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .ResponsibleTravel-SecB .heading {
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  .ResponsibleTravel-SecB .heading {
    max-width: 300px;
    margin: 0 auto 9px;
  }
}

.ResponsibleTravelList .d-flex {
  padding: 20px 0;
  align-items: center;
}
@media (max-width: 675px) {
  .ResponsibleTravelList .d-flex {
    align-items: unset;
    flex-wrap: wrap;
  }
}
.ResponsibleTravelList .d-flex:nth-last-child(odd) figure {
  padding-right: 20px;
}
@media (max-width: 520px) {
  .ResponsibleTravelList .d-flex:nth-last-child(odd) figure {
    padding-right: 0;
  }
}
.ResponsibleTravelList .d-flex:nth-last-child(odd) .card {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .ResponsibleTravelList .d-flex:nth-last-child(odd) .card {
    padding-left: 0;
  }
}
.ResponsibleTravelList .d-flex:nth-last-child(even) {
  flex-direction: row-reverse;
}
.ResponsibleTravelList .d-flex:nth-last-child(even) figure {
  padding-left: 20px;
}
@media (max-width: 520px) {
  .ResponsibleTravelList .d-flex:nth-last-child(even) figure {
    padding-left: 0px;
  }
}
.ResponsibleTravelList .d-flex:nth-last-child(even) .card {
  padding-right: 40px;
}
@media (max-width: 991px) {
  .ResponsibleTravelList .d-flex:nth-last-child(even) .card {
    padding-right: 0;
  }
}
.ResponsibleTravelList .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 520px) {
  .ResponsibleTravelList .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.ResponsibleTravelList .col figure {
  display: block;
}
@media (max-width: 675px) {
  .ResponsibleTravelList .col figure {
    position: sticky;
    top: 55px;
  }
}
.ResponsibleTravelList .col figure img {
  width: 100%;
}
@media (max-width: 520px) {
  .ResponsibleTravelList .card {
    padding-top: 22px;
  }
}
.ResponsibleTravelList .card .title {
  font-size: var(--font-siz-25);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .ResponsibleTravelList .card .title {
    margin-bottom: 8px;
  }
}
@media (max-width: 520px) {
  .ResponsibleTravelList .card .title {
    font-size: var(--font-siz-22);
  }
}
.ResponsibleTravelList .card p {
  color: var(--bg-black);
}
@media (max-width: 520px) {
  .ResponsibleTravelList .card p {
    color: var(--bs-gray-600);
  }
}

.banner.banner-privacy-policy .bg {
  display: block;
  position: relative;
}
.banner.banner-privacy-policy .bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--bg-black), transparent);
  opacity: 0.7;
}
@media (max-width: 520px) {
  .banner.banner-privacy-policy .bg::after {
    background: var(--bg-black);
    opacity: 0.4;
  }
}
.banner.banner-privacy-policy .bg img {
  width: 100%;
}
@media (max-width: 767px) {
  .banner.banner-privacy-policy .bg img {
    height: 320px;
  }
}
.banner.banner-privacy-policy .banner-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 55px;
  z-index: 1;
}
.banner.banner-privacy-policy .banner-content .content {
  text-align: center;
}
@media (max-width: 520px) {
  .banner.banner-privacy-policy .banner-content .content {
    max-width: 275px;
  }
}
.banner.banner-privacy-policy .banner-content h1 {
  font-size: var(--font-siz-48);
  color: var(--bg-white);
  line-height: 1.3;
  font-weight: var(--font-600);
}
@media (max-width: 767px) {
  .banner.banner-privacy-policy .banner-content h1 {
    font-size: var(--font-siz-35);
  }
}
@media (max-width: 520px) {
  .banner.banner-privacy-policy .banner-content h1 {
    font-size: var(--font-siz-33);
    line-height: 1.1;
    margin-bottom: 3px;
    margin-bottom: 8px;
  }
}

.policyStrip.fixed {
  position: fixed;
  top: 59px;
  left: 0;
  right: 0;
  z-index: 1;
}
.policyStrip ul {
  background: var(--bs-gray-300);
  transition: 0.5s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: center;
}
@media (max-width: 520px) {
  .policyStrip ul {
    width: 460px;
    display: flex;
  }
}
.policyStrip ul li {
  position: relative;
  display: inline-block;
  transition: 0.5s ease;
  cursor: pointer;
  padding: 18px 0;
  color: var(--bs-gray-900);
}
@media (max-width: 520px) {
  .policyStrip ul li {
    padding: 18px 6px;
  }
}
.policyStrip ul li:not(:first-child) {
  margin-left: 50px;
}
@media (max-width: 1366px) {
  .policyStrip ul li:not(:first-child) {
    margin-left: 20px;
  }
}
@media (max-width: 520px) {
  .policyStrip ul li:not(:first-child) {
    margin-left: 0px;
  }
}
.policyStrip ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-primary);
  width: 0;
  transition: 0.5s ease;
}
.policyStrip ul li.active, .policyStrip ul li:hover {
  color: var(--bg-primary);
}
.policyStrip ul li.active::before, .policyStrip ul li:hover::before {
  width: 100%;
}

.policySection {
  padding: 4rem 0;
}
.policySection .content h1 {
  color: var(--bg-black);
  font-size: var(--font-siz-36);
  text-align: center;
  margin: 0 0 3rem 0;
  position: relative;
}
.policySection .content h3 {
  font-size: var(--font-siz-24);
  margin-bottom: 15px;
  color: var(--bg-black);
}
.policySection .content p {
  margin-bottom: 20px;
  line-height: 25px;
  text-align: justify;
}
.policySection .content a {
  color: var(--bg-primary);
}
.policySection .content strong, .policySection .content b {
  font-weight: var(--font-600);
}
.policySection .content ul.list_bullet {
  margin-left: 20px;
  margin-bottom: 20px;
}
.policySection .content ul.list_bullet li {
  margin-bottom: 10px;
  line-height: 25px;
  margin-left: 25px;
}
.policySection .content ul.list_bullet li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--bg-primary);
  border-radius: 20px;
  margin-left: -25px;
  margin-right: 16px;
}
.policySection .listContent:not(:first-child) {
  display: none;
}

.otherpages {
  position: relative;
}
.otherpages .bg {
  display: block;
  position: relative;
}
.otherpages .bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--bg-black) 50%, transparent 90%);
  opacity: 0.7;
}
@media (max-width: 520px) {
  .otherpages .bg::after {
    background: var(--bg-black);
    opacity: 0.4;
  }
}
.otherpages .bg img {
  width: 100%;
}
@media (max-width: 767px) {
  .otherpages .bg img {
    height: 320px;
  }
}
.otherpages .content {
  max-width: 510px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.otherpages .content h1 {
  color: var(--bg-white);
  font-size: var(--font-siz-40);
  line-height: 1.3;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .otherpages .content h1 {
    font-size: var(--font-siz-35);
  }
}
@media (max-width: 520px) {
  .otherpages .content h1 {
    font-size: var(--font-siz-33);
    line-height: 1.1;
    margin-bottom: 3px;
    margin-bottom: 8px;
  }
}
.otherpages .content p {
  color: var(--bg-white);
  margin-bottom: 15px;
  padding: 0 20px;
}
@media (max-width: 520px) {
  .otherpages .content .link-btn {
    flex: auto;
  }
}
.otherpages .content .link-btn .btn {
  border: 0;
}
@media (max-width: 520px) {
  .otherpages .content .link-btn .btn {
    width: 100%;
    display: block;
    padding: 13px 9px 9px;
  }
}
.otherpages .d-flex {
  margin-top: 45px;
  gap: 0 8px;
}
.otherpages .banner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 1;
}

.model-quickView {
  position: fixed;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 100%);
  z-index: 4;
  padding: 40px 0 0;
  max-width: 978px;
  width: 100%;
  height: 548px;
  background: var(--bg-white);
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  .model-quickView {
    width: 95%;
  }
}
@media (max-width: 675px) {
  .model-quickView {
    overflow: hidden;
  }
}
.model-quickView.is-open {
  top: 50%;
  transform: translate(-50%, -50%);
}
.model-quickView .model-wrappr {
  border-top: 2px solid var(--bg-primary);
}
@media (max-width: 675px) {
  .model-quickView .model-wrappr {
    border: 0;
    height: 100%;
    overflow-y: scroll;
  }
}
.model-quickView .model-wrappr .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  justify-content: center;
  cursor: pointer;
}
.model-quickView .model-wrappr .close.close {
  width: 40px;
}
.model-quickView .model-wrappr .close svg {
  display: block;
  width: 29px;
  height: 29px;
  pointer-events: none;
}
.model-quickView .model-wrappr .close svg path {
  fill: var(--bs-gray-700);
}
.model-quickView .model-wrappr .d-flex {
  width: 100%;
}
.model-quickView .model-wrappr .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 20px;
}
@media (max-width: 991px) {
  .model-quickView .model-wrappr .col {
    padding: 10px;
  }
}
@media (max-width: 675px) {
  .model-quickView .model-wrappr .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 675px) {
  .model-quickView .model-wrappr .col:first-child {
    overflow: hidden;
  }
}
.model-quickView .model-wrappr .border-left {
  border-left: 1px solid var(--bs-gray-400);
}
.model-quickView .model-wrappr figure {
  display: block;
}
@media (max-width: 675px) {
  .model-quickView .model-wrappr figure img {
    max-width: 280px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0 auto;
    display: block;
    height: auto;
  }
}
.model-quickView .model-wrappr .title {
  font-size: var(--font-siz-24);
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 12px;
}
.model-quickView .model-wrappr .scrol {
  position: relative;
}
.model-quickView .model-wrappr .scrol::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d7d7d7;
}
@media (max-width: 675px) {
  .model-quickView .model-wrappr .scrol::after {
    display: none;
  }
}
.model-quickView .model-wrappr .packageDetailDn {
  padding-left: 15px;
  max-height: 330px;
  overflow-y: scroll;
  position: relative;
  z-index: 1;
}
@media (max-width: 675px) {
  .model-quickView .model-wrappr .packageDetailDn {
    max-height: unset;
    overflow: auto;
  }
}
.model-quickView .model-wrappr .packageDetailDn::-webkit-scrollbar {
  width: 5px;
}
@media (max-width: 675px) {
  .model-quickView .model-wrappr .packageDetailDn::-webkit-scrollbar {
    display: none;
  }
}
.model-quickView .model-wrappr .packageDetailDn::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.model-quickView .model-wrappr .packageDetailDn::-webkit-scrollbar-thumb {
  background-color: var(--bg-primary);
}
.model-quickView .model-wrappr .packageDetailDn ul {
  padding-left: 22px;
  position: relative;
}
.model-quickView .model-wrappr .packageDetailDn ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 25px;
  width: 1px;
  background: var(--bg-primary);
  height: 0;
  transition: inherit;
}
.model-quickView .model-wrappr .packageDetailDn ul.show::before {
  height: calc(100% - 28px);
}
.model-quickView .model-wrappr .packageDetailDn ul li {
  display: block;
  position: relative;
  margin: 15px 0 18px;
}
.model-quickView .model-wrappr .packageDetailDn ul li::before, .model-quickView .model-wrappr .packageDetailDn ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 25px;
  transition: 0.8s ease;
}
.model-quickView .model-wrappr .packageDetailDn ul li::before {
  width: 6px;
  height: 6px;
  left: -24px;
  top: 6px;
  background: var(--bs-gray-600);
  z-index: 1;
}
.model-quickView .model-wrappr .packageDetailDn ul li::after {
  width: 16px;
  height: 16px;
  left: -29px;
  top: 1px;
  background: var(--bg-white);
  border: 1px solid var(--bg-primary);
  opacity: 0;
}
.model-quickView .model-wrappr .packageDetailDn ul li.current::after {
  opacity: 1;
}
.model-quickView .model-wrappr .packageDetailDn ul li.current::before {
  background: var(--bg-primary);
}
.model-quickView .model-wrappr .packageDetailDn ul li p {
  font-size: var(--font-siz-16);
  color: var(--bs-gray-700);
}
.model-quickView .model-wrappr .packageDetailDn ul li p b {
  display: block;
  margin-bottom: 2px;
}
.model-quickView .model-wrappr .packageDetailDn ul li p span {
  color: var(--bs-gray-600);
  display: block;
  font-size: var(--font-siz-14);
}
.model-quickView .model-wrappr .modelActin {
  position: relative;
  padding-top: 30px;
  margin-top: 12px;
}
.model-quickView .model-wrappr .modelActin::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 0;
  height: 1px;
  background: var(--bs-gray-400);
}
@media (max-width: 991px) {
  .model-quickView .model-wrappr .modelActin::before {
    left: 0;
    right: 0;
  }
}
.model-quickView .model-wrappr .modelActin .pri {
  color: var(--bg-black);
  font-size: var(--font-siz-16);
  font-weight: var(--font-600);
}
.model-quickView .model-wrappr .modelActin .link-btn .btn {
  background: var(--bg-primary);
  color: var(--bg-white);
  min-width: 150px;
  text-align: center;
  border: 1px solid var(--bg-primary);
}
@media (max-width: 991px) {
  .model-quickView .model-wrappr .modelActin .link-btn .btn {
    min-width: 150px;
    max-width: 190px;
  }
}
.model-quickView .model-wrappr .modelActin .link-btn .btn:hover {
  background: var(--bg-white);
  color: var(--bg-primary);
}

.mode-PlanTrip {
  position: fixed;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  transform: translateX(100%);
  z-index: 4;
  max-width: 609px;
  width: 100%;
  background: #f9f9f9;
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  .mode-PlanTrip {
    max-width: 390px;
  }
}
@media (max-width: 520px) {
  .mode-PlanTrip {
    max-width: 100%;
  }
}
.mode-PlanTrip.is-open {
  transform: translateX(0);
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr {
    padding-top: 80px;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .mode-PlanTrip .model-wrappr {
    padding-top: 15px;
  }
}
.mode-PlanTrip .model-wrappr .close {
  position: absolute;
  top: 12px;
  right: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr .close {
    top: 8px;
    z-index: 2;
  }
}
.mode-PlanTrip .model-wrappr .close svg {
  display: block;
  width: 29px;
  height: 29px;
  pointer-events: none;
}
.mode-PlanTrip .model-wrappr .close svg path {
  fill: var(--bs-gray-700);
}
.mode-PlanTrip .model-wrappr .modelHeader {
  background: var(--bg-white);
  padding: 12px 35px;
  border-bottom: 2px solid var(--bg-primary);
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr .modelHeader {
    padding: 20px 15px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    top: 0;
  }
}
.mode-PlanTrip .model-wrappr .modelHeader .title {
  font-size: var(--font-siz-24);
  color: var(--bg-black);
  font-weight: var(--font-600);
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr .modelHeader .title {
    font-size: var(--font-siz-22);
  }
}
.mode-PlanTrip .model-wrappr .model-body {
  padding: 15px 35px;
  height: 100%;
  overflow-y: scroll;
}
.mode-PlanTrip .model-wrappr .model-body::-webkit-scrollbar {
  width: 5px;
}
.mode-PlanTrip .model-wrappr .model-body::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.mode-PlanTrip .model-wrappr .model-body::-webkit-scrollbar-thumb {
  background-color: var(--bs-gray-400);
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr .model-body {
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  .mode-PlanTrip .model-wrappr .model-body {
    padding: 70px 20px 0;
  }
}
.mode-PlanTrip .model-wrappr .model-body .form-tab {
  border-bottom: 1px solid var(--bs-gray-300);
  margin-bottom: 25px;
}
@media (max-width: 675px) {
  .mode-PlanTrip .model-wrappr .model-body .form-tab {
    padding-left: 15px;
  }
}
.mode-PlanTrip .model-wrappr .model-body .form-tab button {
  display: inline-block;
  vertical-align: middle;
  margin-right: 45px;
  font-size: var(--font-siz-18);
  font-weight: var(--font-600);
  color: var(--bg-black);
  background: #f9f9f9;
  border: 0;
  outline: none;
  padding: 4px 0 5px;
  position: relative;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.5s ease;
}
.mode-PlanTrip .model-wrappr .model-body .form-tab button::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--bg-primary);
  width: 0;
  transition: 0.5s ease;
}
.mode-PlanTrip .model-wrappr .model-body .form-tab button.current {
  opacity: 1;
}
.mode-PlanTrip .model-wrappr .model-body .form-tab button.current::after {
  width: 100%;
}
@media (max-width: 1300px) {
  .mode-PlanTrip .model-wrappr .model-body .model-form {
    margin-bottom: 45px;
  }
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .text {
  max-width: 85%;
  margin-bottom: 15px;
}
@media (max-width: 1300px) {
  .mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .text {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .text {
    max-width: 100%;
  }
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .text .textTitle {
  font-weight: var(--font-600);
  color: var(--bg-black);
  margin-bottom: 6px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .text p {
  color: var(--bs-gray-700);
  font-size: var(--font-siz-14);
  line-height: 1.3;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .col1 {
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 5px;
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .col1 {
    padding: 0;
  }
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .col2 {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 0 5px;
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .col2 {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .col2:nth-child(2) .input-Info {
    display: none;
  }
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .input-Info {
  font-size: var(--font-siz-14);
  color: var(--bg-black);
  font-weight: var(--font-600);
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .input-Info.em {
    display: none;
  }
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .form-group {
  position: relative;
  margin-bottom: 10px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .form-group label {
  top: 14px;
}
@media (max-width: 675px) {
  .mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .form-group label {
    top: 10px;
  }
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .form-control {
  display: block;
  color: var(--bs-gray-600);
  min-height: 45px;
  padding: 8px 8px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .form-control.valid {
  color: var(--bg-black);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .form-control.valid ~ label {
  top: -7px;
  background: var(--bg-white);
  color: var(--bs-gray-600);
  font-size: 12px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .form-control.valid::-moz-placeholder {
  color: var(--bg-black);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .form-control.valid::placeholder {
  color: var(--bg-black);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop {
  position: relative;
  margin-bottom: 20px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .DDSelected {
  position: relative;
  padding: 8px 10px 10px;
  color: var(--bs-gray-600);
  font-size: var(--font-siz-16);
  border: 1px solid var(--bs-gray-300);
  background: var(--bg-white);
  outline: none;
  min-height: 48px;
  transition: 0.5s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .DDSelected .icon {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .DDSelected .placeholder {
  width: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .DDSelectedBox .li {
  margin-right: 4px;
  font-size: 12px;
  padding: 3px 4px;
  border: 1px solid var(--bs-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .DDSelectedBox .li span.text {
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .DDSelectedBox .closping {
  width: 12px;
  text-align: center;
  cursor: pointer;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList {
  max-height: 300px;
  overflow-y: scroll;
  border: 1px solid var(--bs-gray-300);
  border-top: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  transform: translateY(5%);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList::-webkit-scrollbar {
  width: 5px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList::-webkit-scrollbar-thumb {
  background-color: var(--bg-primary);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList .form-DDSea {
  background: var(--bg-white);
  padding: 8px;
  position: sticky;
  top: 0;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList .form-DDSea .form .form-group {
  margin-bottom: 0;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList .form-DDSea .form .form-group .form-control {
  color: var(--bs-gray-600);
  font-size: var(--font-siz-16);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList .form-DDSea .form .form-group .form-control::-moz-placeholder {
  color: var(--bs-gray-600);
  font-size: var(--font-siz-16);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList .form-DDSea .form .form-group .form-control::placeholder {
  color: var(--bs-gray-600);
  font-size: var(--font-siz-16);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList ul {
  background: var(--bg-white);
  padding: 10px 12px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList ul li {
  display: block;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList ul li strong {
  display: block;
  font-weight: var(--font-600);
  color: var(--bg-black);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList ul li ul {
  margin-bottom: 10px;
  padding: 0;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList ul li ul li {
  display: block;
  cursor: pointer;
  padding: 8px 24px;
  background: var(--bg-white);
  transition: 0.5s ease;
  margin-left: -12px;
  margin-right: -12px;
  border-bottom: 1px solid transparent;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList ul li ul li:hover {
  color: var(--bg-black);
  background: var(--bs-gray-300);
  border-color: var(--bg-white);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .form .CustomSelectDrop .CusDropList ul li ul li.selected {
  color: var(--bg-white);
  background: var(--bg-blue);
  border-color: var(--bg-white);
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .boxRangeSlider {
  max-width: 353px;
  margin-top: 10px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .boxRangeSlider .priceBox {
  margin-bottom: 20px;
}
.mode-PlanTrip .model-wrappr .model-body .modelFormStep .boxRangeSlider .PriceRangeSlider {
  margin-top: 15px;
}
.mode-PlanTrip .model-wrappr .model-body .btn-form {
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (max-width: 675px) {
  .mode-PlanTrip .model-wrappr .model-body .modCon ul {
    justify-content: space-between;
  }
}
.mode-PlanTrip .model-wrappr .model-body .modCon ul li a {
  display: block;
  color: var(--bs-gray-700);
  font-size: var(--font-siz-16);
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  .mode-PlanTrip .model-wrappr .model-body .modCon ul li a {
    font-size: var(--font-siz-14);
  }
}
.mode-PlanTrip .model-wrappr .model-body .modCon ul li a:hover {
  color: var(--bg-primary);
}
.mode-PlanTrip .model-wrappr .model-body .modCon ul li span {
  display: block;
  color: var(--bs-gray-700);
  font-size: var(--font-siz-16);
  margin: 0 10px;
}
@media (max-width: 675px) {
  .mode-PlanTrip .model-wrappr .model-body .modCon ul li span {
    margin: 0;
    font-size: var(--font-siz-14);
  }
}
.mode-PlanTrip .model-wrappr .model-body .ddDialCode {
  position: absolute;
  width: 50px;
  height: 45px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--bs-gray-300);
  z-index: 1;
  transition: 0.5s ease;
  cursor: pointer;
}
.mode-PlanTrip .model-wrappr .model-body .ddDialCode .selectCode {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  -webkit-text-emphasis: revert;
          text-emphasis: revert;
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes {
  min-width: 249px;
  position: absolute;
  top: 100%;
  background: var(--bg-white);
  border: 1px solid #dfdfdf;
  left: 0;
  padding: 0 0 5px 0;
  transform: translateY(5%);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
  z-index: 1;
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes .telSearchPan {
  padding: 5px;
  position: sticky;
  top: 0;
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes .telSearchPan .form-group {
  margin-bottom: 0;
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes ul {
  max-height: 200px;
  overflow-y: scroll;
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes ul::-webkit-scrollbar {
  width: 3px;
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes ul::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes ul::-webkit-scrollbar-thumb {
  background-color: var(--bg-primary);
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes li {
  display: block;
  cursor: pointer;
  padding: 8px 15px;
  background: var(--bg-white);
  transition: 0.5s ease;
  font-size: var(--font-siz-14);
  border-bottom: 1px solid transparent;
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes li:hover {
  color: var(--bg-black);
  background: var(--bs-gray-300);
  border-color: var(--bg-white);
}
.mode-PlanTrip .model-wrappr .model-body .lsiofcodes.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
}
.mode-PlanTrip .model-wrappr .model-body .form .form-group input.tel {
  padding-left: 55px;
}
.mode-PlanTrip .model-wrappr .model-body .form .form-group input.tel:focus ~ .ddDialCode {
  border-color: var(--bg-primary);
}
.mode-PlanTrip .model-wrappr .model-body .form .form-group input.tel ~ label {
  left: 55px;
}

.form-checkBoxTC {
  position: relative;
  padding-left: 35px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1300px) {
  .form-checkBoxTC {
    margin-bottom: 0px;
  }
}
.form-checkBoxTC .fakeCheckbox {
  position: absolute;
  left: 0;
  width: 25px;
  top: 1px;
  height: 25px;
  border: 1px solid var(--bg-primary);
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-checkBoxTC .fakeCheckbox img {
  opacity: 0;
}
.form-checkBoxTC input.inputtcWrap {
  width: 25px;
  height: 25px;
  border: 0;
  outline: none;
  box-shadow: none;
  position: absolute;
  left: 0;
  z-index: 1;
  top: 0;
  opacity: 0;
  cursor: pointer;
}
.form-checkBoxTC input.inputtcWrap:checked ~ .fakeCheckbox {
  background: var(--bg-primary);
}
.form-checkBoxTC input.inputtcWrap:checked ~ .fakeCheckbox img {
  opacity: 1;
}
.form-checkBoxTC .text label {
  display: block;
  font-size: var(--font-siz-12);
  color: var(--bs-gray-700);
  line-height: 13px;
}

@media (max-width: 767px) {
  footer .flex-row {
    flex-wrap: wrap;
  }
}
footer .col-1 {
  flex: 0 1 15%;
  max-width: 15%;
  width: 100%;
}
@media (max-width: 767px) {
  footer .col-1 {
    flex: 0 1 30%;
    max-width: 30%;
  }
}
footer .col-2 {
  flex: 0 1 15%;
  max-width: 15%;
  width: 100%;
  padding-left: 20px;
}
@media (max-width: 767px) {
  footer .col-2 {
    flex: 0 1 30%;
    max-width: 30%;
  }
}
@media (max-width: 520px) {
  footer .col-2 {
    flex: 0 1 37%;
    max-width: 37%;
  }
}
footer .col-3 {
  flex: 0 1 15%;
  max-width: 15%;
  width: 100%;
  padding-left: 20px;
}
@media (max-width: 767px) {
  footer .col-3 {
    flex: 0 1 30%;
    max-width: 30%;
  }
}
@media (max-width: 520px) {
  footer .col-3 {
    flex: 0 1 33%;
    max-width: 33%;
  }
}
footer .col-4 {
  flex: 0 1;
  flex: 0 1 25%;
  max-width: 25%;
  width: 100%;
  padding-left: 25px;
}
@media (max-width: 767px) {
  footer .col-4 {
    flex: 0 1 50%;
    max-width: 50%;
    padding-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 520px) {
  footer .col-4 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
footer .col-5 {
  flex: 0 1;
  flex: 0 1 30%;
  max-width: 30%;
  width: 100%;
  padding-left: 25px;
}
@media (max-width: 767px) {
  footer .col-5 {
    flex: 0 1 50%;
    max-width: 50%;
    margin-top: 30px;
  }
}
@media (max-width: 520px) {
  footer .col-5 {
    flex: 0 1 100%;
    max-width: 100%;
    padding-left: 0;
  }
}

.footerNavSec .navTitile {
  color: var(--bg-white);
  font-weight: var(--font-600);
  font-size: var(--font-siz-18);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .footerNavSec .navTitile {
    font-size: var(--font-siz-16);
  }
}
.footerNavSec ul li {
  display: block;
}
.footerNavSec ul li a {
  display: block;
  color: #a5a5a5;
  padding: 3px 0;
  transition: 0.5s ease;
}
@media (max-width: 520px) {
  .footerNavSec ul li a {
    color: var(--bg-white);
    opacity: 0.57;
  }
}
@media (max-width: 767px) {
  .footerNavSec ul li a {
    font-size: var(--font-siz-14);
  }
}
.footerNavSec ul li a:hover {
  opacity: 1;
  color: var(--bg-primary);
}

@media (max-width: 520px) {
  .newsletterForm {
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    padding: 30px 0;
    text-align: center;
  }
}
.newsletterForm .navTitile {
  margin: 0;
}
.newsletterForm p {
  font-size: var(--font-siz-14);
  color: var(--bg-white);
  opacity: 0.57;
  margin-bottom: 12px;
}
.newsletterForm .newsMsg p {
  opacity: 1;
  margin-top: 10px;
}
.newsletterForm .newsMsg .success {
  color: green;
}
.newsletterForm .newsMsg .err {
  color: var(--bg-primary);
}
.newsletterForm .form .form-group {
  position: relative;
}
.newsletterForm .form .form-group .form-control {
  height: 42px;
  background: var(--bg-white);
  padding: 8px;
  color: var(--bg-black);
  font-size: var(--font-siz-16);
  border: 1px solid var(--bg-white);
  outline: none;
  box-shadow: none;
  width: 100%;
  padding: 15px;
}
.newsletterForm .form .form-group .form-control::-moz-placeholder {
  color: var(--bg-black);
}
.newsletterForm .form .form-group .form-control::placeholder {
  color: var(--bg-black);
}
.newsletterForm .form .form-group label {
  position: absolute;
  top: 8px;
  left: 15px;
}
.newsletterForm .form .btn-form {
  margin-top: 15px;
}
.newsletterForm .form .btn-form .btn {
  display: inline-block;
  padding: 9px 30px;
  background: var(--bg-black);
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
  text-transform: uppercase;
  font-weight: var(--font-600);
  transition: 0.5s ease;
  cursor: pointer;
}
.newsletterForm .form .btn-form .btn:hover {
  background: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid var(--bg-black);
}

.instPost {
  max-width: 290px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 520px) {
  .instPost {
    max-width: 100%;
  }
}

.instPostGrid .insCol {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 8px;
}
.instPostGrid .ins {
  position: relative;
  cursor: pointer;
}
.instPostGrid .ins .img {
  opacity: 1;
  transition: 0.5s ease;
}
.instPostGrid .ins .img img {
  display: block;
  width: 100%;
}
.instPostGrid .ins .insicon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.5s ease;
}
.instPostGrid .ins:hover .img {
  opacity: 0.6;
}
.instPostGrid .ins:hover .insicon {
  opacity: 1;
}

.booterCopyRght {
  border-top: 1px solid var(--bs-gray-900);
}
@media (max-width: 767px) {
  .booterCopyRght .d-flex {
    flex-direction: column-reverse;
  }
}
.booterCopyRght .colA {
  flex: 0 1 25%;
  max-width: 25%;
}
@media (max-width: 767px) {
  .booterCopyRght .colA {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.booterCopyRght .colB {
  flex: 0 1 50%;
  max-width: 50%;
}
@media (max-width: 767px) {
  .booterCopyRght .colB {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .booterCopyRght .privlin {
    text-align: center;
  }
}
.booterCopyRght .privlin a {
  display: inline-block;
  margin-right: 22px;
  color: #a5a5a5;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .booterCopyRght .privlin a {
    margin-right: 10px;
  }
}
@media (max-width: 520px) {
  .booterCopyRght .privlin a {
    color: var(--bg-white);
    opacity: 0.57;
  }
}
.booterCopyRght .privlin a:hover {
  color: var(--bg-primary);
}
.booterCopyRght .privlin a img {
  width: 60px;
}
@media (max-width: 767px) {
  .booterCopyRght .opyright {
    margin-bottom: 15px;
  }
}
.booterCopyRght .opyright p {
  color: #a5a5a5;
  font-size: var(--font-siz-14);
  text-align: center;
}
@media (max-width: 520px) {
  .booterCopyRght .opyright p {
    color: var(--bg-white);
    opacity: 0.57;
  }
}

.socialLinks ul {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .socialLinks ul {
    justify-content: center;
    margin-bottom: 15px;
  }
}
.socialLinks ul li a {
  display: block;
  width: 40px;
  text-align: center;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 520px) {
  .socialLinks ul li a svg {
    width: 20px;
    height: 20px;
  }
}
.socialLinks ul li a svg path {
  fill: var(--bs-gray-400);
}

.stripCokkies {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--bg-black);
  z-index: 1111;
  padding: 6px 120px;
}
@media (max-width: 1140px) {
  .stripCokkies {
    padding: 8px 15px;
  }
}
.stripCokkies .tex {
  flex: 1;
}
@media (max-width: 675px) {
  .stripCokkies .tex {
    flex: 0 1 100%;
    max-width: 100%;
    text-align: center;
  }
}
.stripCokkies .tex p {
  color: var(--bg-white);
}
@media (max-width: 675px) {
  .stripCokkies .tex p {
    font-size: var(--font-siz-14);
  }
}
.stripCokkies .tex p a {
  color: var(--bg-primary);
}
.stripCokkies .CntineBtn {
  flex: 0 1 200px;
  max-width: 200px;
  width: 100%;
  text-align: right;
}
@media (max-width: 675px) {
  .stripCokkies .CntineBtn {
    text-align: center;
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 8px;
  }
}
.stripCokkies .CntineBtn a {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--bg-white);
  padding: 7px 15px;
  text-align: center;
}

.FooterCliLogo {
  display: block;
  padding-top: 25px;
}
.FooterCliLogo .FooterCliSlide {
  max-width: 992px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 20px;
}
.FooterCliLogo .container {
  border-bottom: 1px solid var(--bs-gray-900);
}
.FooterCliLogo .owl-stage {
  display: flex;
}
.FooterCliLogo .img {
  height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.FooterCliLogo .img img {
  width: auto;
  display: block;
  margin: 0 auto;
}

.mobStripBottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--bg-black);
  display: none;
}
@media (max-width: 675px) {
  .mobStripBottom {
    display: block;
  }
}
.mobStripBottom .wrap {
  display: flex;
  flex-wrap: wrap;
}
.mobStripBottom .wrap a, .mobStripBottom .wrap .plantri {
  flex: 1;
  padding: 8px;
  font-size: var(--font-siz-14);
  text-align: center;
  color: var(--bg-white);
}
.mobStripBottom .wrap a:first-child {
  border-right: 1px solid #272727;
}
.mobStripBottom .wrap .plantri {
  background: var(--bg-primary);
}/*# sourceMappingURL=style.css.map */