/* Poppins */
.poppins-100 { /*Thin*/
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-200 { /*ExtraLight*/
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-300 { /*Light*/
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-400 { /*Regular*/
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-500 { /*Medium*/
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-600 { /*SemiBold*/
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-700 { /*Bold*/
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-800 { /*ExtraBold*/
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-900 { /*Black*/
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

:root {
  --white-100: hsl(206, 5%, 100%);
  --white-200: hsl(206, 5%, 90%);
  --white-300: hsl(206, 5%, 80%);
  --white-400: hsl(206, 5%, 65%);
  --white-500: hsl(206, 5%, 45%);
  --black-100: hsl(210, 21%, 12%);
  --black-200: hsl(210, 21%, 9%);
  --black-300: hsl(210, 21%, 6%);
  --black-400: hsl(210, 21%, 3%);
  --black-500: hsl(210, 21%, 1%);
  --night-100: hsl(217, 27%, 20%);
  --night-200: hsl(217, 27%, 16%);
  --night-300: hsl(217, 27%, 12%);
  --night-400: hsl(215, 27%, 8%);
  --night-500: hsl(215, 27%, 4%);
  --pink-100: hsl(326, 85%, 90%);
  --pink-200: hsl(327, 87%, 80%);
  --pink-300: hsl(329, 86%, 70%);
  --pink-400: hsl(330, 81%, 60%);
  --pink-500: hsl(333, 71%, 50%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
      0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 24px 0 rgba(0, 0, 0, 0.14);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1050;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pink-500);
  text-transform: uppercase;
}
.brand img {
  width: 160px;
}
@media (max-width: 575px) {
  .brand img {
    width: 100px;
  }
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
}
.navbar-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 0 0 17%;
}
.navbar-center {
  display: flex;
}
.navbar-right {
  display: flex;
  flex: 0 0 17%;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media only screen and (max-width: 992px) {
  .navbar-left, .navbar-right {
    flex: 0 0 auto;
  }
  .navbar-right {
    align-items: center;
  }
  .navbar-center {
    flex: 0 0 100%;
    order: 3;
    align-items: center;
  }
}

@media only screen and (max-width: 992px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    transform: translate(-100%);
    background-color: var(--white-100);
    transition: all 0.4s ease-in-out;
  }
  .menu.is-active {
    transform: translate(0%);
  }
  .menu .menu-link {
    color: var(--black-100);
    justify-content: start;
  }
  .menu .menu-link > i.bi {
    color: var(--black-100);
  }
  .menu .menu-link > img {
    filter: invert(1);
  }
}

.menu .menu-inner {
  margin-bottom: 0;
  padding: 0;
}
.menu-header {
  display: none;
  box-shadow: var(--shadow-medium);
}
.menu-item {
  display: inline-block;
  line-height: 1.5;
  padding-left: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white-100);
  text-transform: capitalize;
  transition: all 0.25s ease;
  text-decoration: none;
}
.menu-link > i.bi {
  font-size: 0.8rem;
  margin-left: 0.25rem;
  transform: rotate(90deg);
}
.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-size: 1.45rem;
  color: var(--black-300);
  transition: all 0.25s ease;
}
@media only screen and (min-width: 993px) {
  .menu-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .menu-header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }
  .menu-header.is-active {
    visibility: visible;
    background-color: var(--white-100);
  }
  .menu-header.is-active > .menu-arrow {
    display: block;
  }
  .menu-arrow {
    display: none;
    cursor: pointer;
    width: 3rem;
    height: 4rem;
    text-align: center;
  }
  .menu-arrow > i.bi {
    font-size: 1.5rem;
    line-height: 4rem;
    color: var(--black-300);
    transition: all 0.25s ease;
  }
  .menu-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    color: var(--black-300);
  }
  .menu-inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .menu-item {
    display: block;
    line-height: 1;
    padding-inline: 0;
    margin-bottom: 0.5rem;
  }
  .menu-link {
    justify-content: space-between;
    height: 2.5rem;
    line-height: 2.5rem;
    padding-inline: 1.25rem;
  }
  .menu-link > i.bi {
    margin-left: 0.5rem;
    transform: rotate(0deg);
  }
}

.submenu {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  background-color: var(--white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.25s ease-in-out;
}
.submenu ul.submenu-list {
  padding-left: 0;
}
@media (max-width: 991px) {
  .submenu ul.submenu-list {
    margin-top: 20px;
  }
}
.submenu-inner {
  flex: auto;
}
.submenu-title {
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.75rem 0;
  color: var(--black-100);
  transition: all 0.3s ease;
}
.submenu-item {
  display: block;
  line-height: 1;
  margin: 0 auto;
  margin-bottom: 1.3rem;
}
.submenu-item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .submenu-item {
    margin-bottom: 1rem;
  }
}
.submenu-link {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  text-transform: capitalize;
  color: var(--black-300);
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}
.submenu-link:hover {
  color: #EA530E;
}
.submenu-link.highlighted {
  color: #EA530E;
}
.submenu-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media only screen and (max-width: 992px) {
  .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    box-shadow: none;
    transform: translateX(0%);
  }
  .submenu.is-active {
    display: block;
  }
  .submenu-inner {
    flex: 0 0 100%;
    padding: 0rem;
  }
  .submenu-list {
    margin-bottom: 1rem;
  }
  .submenu-link {
    display: flex;
  }
  .submenu-image {
    margin-top: 0;
  }
}

.megamenu {
  left: 50%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transform: translateX(-50%);
}
.megamenu-column-1 {
  width: auto;
  height: auto;
}
.megamenu-column-4 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .megamenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
    box-shadow: none;
  }
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 1.6rem;
  height: 1rem;
  margin-right: 2rem;
  opacity: 0;
  background: transparent;
}
@media only screen and (max-width: 992px) {
  .burger {
    opacity: 1;
    display: block;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 1rem;
  background: var(--black-400);
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.active .burger-line {
  background-color: #FFFFFF;
}

.header .scroll-menu {
  display: none;
}

.header.active {
  background: #FFF;
  color: #000;
}
.header.active .navbar {
  display: flex;
  flex-wrap: nowrap;
  height: auto;
}
.header.active .navbar .scroll-menu {
  width: 100%;
  display: block;
}
.header.active .navbar .scroll-menu .transit-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 1024px) {
  .header.active .navbar .scroll-menu .transit-list {
    gap: 15px;
  }
}
.header.active .navbar .scroll-menu .transit-list .transit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 12px;
}
.header.active .navbar .scroll-menu .transit-list .transit video {
  width: 40px;
  height: 40px;
}
.header.active .navbar .scroll-menu .transit-list .transit p {
  margin-bottom: 0;
  white-space: nowrap;
}
.header.active .navbar .navbar-center {
  font-size: 12px;
  display: flex;
}
.header.active .navbar .navbar-center .menu .menu-inner {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding-left: 15px;
}
.header.active .navbar .navbar-center .menu .menu-inner .menu-item {
  padding-left: 10px;
}
.header.active .navbar .navbar-center .menu .menu-inner .menu-item .menu-link {
  color: #000;
  white-space: nowrap;
}
.header.active .navbar .navbar-center .menu .menu-inner .menu-item .menu-link img {
  width: 18px;
}
.header.active .navbar .navbar-center .menu .menu-inner .menu-item .btn {
  font-size: 12px;
  white-space: nowrap;
  box-shadow: none;
  padding-left: 6px;
  padding-right: 6px;
}
.header.active .navbar .navbar-center .menu .menu-inner .menu-item .btn:hover, .header.active .navbar .navbar-center .menu .menu-inner .menu-item .btn:focus {
  background-color: white;
  color: #EA530E;
}
.header.active .navbar .navbar-center .menu .menu-inner .menu-item .btn img {
  width: 18px;
}
.header.bg-white {
  background: #fff;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.06);
}
.header.bg-white .menu-link {
  color: #000;
}
.header.bg-white .btn.btn-white {
  border: 1px solid;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #0D0B0B;
  overflow-x: hidden;
}

h1 {
  font-weight: 700;
  font-size: clamp(18px, 4vw, 42px);
  line-height: clamp(26px, 4vw, 60px);
}

h2 {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: clamp(48px, 4vw, 78px);
}

h3 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: clamp(42px, 4vw, 66px);
}

h4 {
  font-weight: 700;
  font-size: clamp(14px, 3vw, 34px);
  line-height: clamp(24px, 5vw, 50px);
}

h5 {
  font-weight: 700;
  font-size: clamp(14px, 4vw, 26px);
  line-height: clamp(20px, 4vw, 40px);
}

h6 {
  font-weight: 700;
  font-size: clamp(16px, 4vw, 16px);
  line-height: clamp(24px, 4vw, 24px);
}

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

.cursor-pointer {
  cursor: pointer !important;
}

hr {
  color: var(--bs-border-color) !important;
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

.text-primary {
  color: #EA530E !important;
}

.text-blue {
  color: #3F88C5 !important;
}

.text-black {
  color: #0D0B0B !important;
}

.text-gray-light {
  color: #959494 !important;
}

.text-gray-dark {
  color: #342F2F !important;
}

.btn {
  border: 0;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0.8rem;
}
@media (max-width: 575px) {
  .btn {
    font-size: 14px;
  }
}

.btn-primary {
  background-color: #EA530E;
  box-shadow: 0 0 23px 0 rgba(234, 83, 14, 0.1);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #EA530E;
}

.btn-blue {
  background-color: #3F88C5;
  box-shadow: 0 0 23px 0 rgba(63, 136, 197, 0.1);
  color: #FFFFFF;
}
.btn-blue:hover, .btn-blue:focus, .btn-blue:active {
  background-color: #3F88C5 !important;
  color: #FFFFFF !important;
}

.btn-success {
  background-color: #34c759;
  box-shadow: 0 0 23px 0 rgba(63, 136, 197, 0.1);
  color: #FFFFFF;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
  background-color: #34c759 !important;
  color: #FFFFFF !important;
}

.btn-dark {
  background-color: #0D0B0B;
  box-shadow: 0 0 23px 0 rgba(63, 136, 197, 0.1);
  color: #FFFFFF;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active {
  background-color: #0D0B0B !important;
  color: #FFFFFF !important;
}

.btn-white {
  background-color: #FFFFFF;
  box-shadow: 0 0 23px 0 rgba(234, 83, 14, 0.1);
  color: #EA530E;
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  background-color: #EA530E !important;
  color: #FFFFFF !important;
}
.btn-white:hover img, .btn-white:focus img, .btn-white:active img {
  filter: brightness(0) invert(1);
}
.btn-white.text-blue {
  color: #3F88C5;
}
.btn-white.text-blue:hover, .btn-white.text-blue:focus {
  background-color: #FFFFFF;
  color: #3F88C5;
}
.btn-white.text-blue:hover img, .btn-white.text-blue:focus img {
  filter: brightness(0) invert(1);
}

.border-primary {
  border-color: #EA530E !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.slider-controls {
  display: flex;
  align-items: center;
}
.slider-controls .custom-swiper-button-prev {
  margin-right: 5px;
}
.slider-controls .custom-swiper-button-next {
  margin-left: 5px;
}
.slider-controls .custom-swiper-pagination {
  display: flex;
  justify-content: center;
}
.slider-controls .custom-swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: 0.3s;
}
.slider-controls .custom-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 10px;
}
.slider-controls .custom-swiper-pagination.orange-white .swiper-pagination-bullet {
  background-color: #FFFFFF;
}
.slider-controls .custom-swiper-pagination.orange-white .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #EA530E;
}
.slider-controls .custom-swiper-pagination.orange-gray .swiper-pagination-bullet {
  background-color: #959494;
}
.slider-controls .custom-swiper-pagination.orange-gray .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #EA530E;
}
.slider-controls .custom-swiper-pagination.blue-gray .swiper-pagination-bullet {
  background-color: #959494;
}
.slider-controls .custom-swiper-pagination.blue-gray .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3F88C5;
}

@media screen and (min-width: 992px) {
  .position-lg-relative {
    position: relative;
  }
}
.scroll-margin-top-140 {
  scroll-margin-top: 140px;
}
@media (max-width: 575px) {
  .scroll-margin-top-140 {
    scroll-margin-top: 120px;
  }
}

.form-control {
  border: 1px solid #959494;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: none;
}
.form-control:active, .form-control:focus {
  border: 1px solid #EA530E;
  box-shadow: none;
}

.column-count-2 {
  -moz-column-count: 2 !important;
       column-count: 2 !important;
}

.column-count-3 {
  -moz-column-count: 3 !important;
       column-count: 3 !important;
}
@media (max-width: 575px) {
  .column-count-3 {
    -moz-column-count: 2 !important;
         column-count: 2 !important;
  }
}

.max-detail-1-line, .max-detail-2-line, .max-detail-3-line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-detail-1-line {
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.max-detail-2-line {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.max-detail-3-line {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.hero-section {
  position: relative;
  height: 600px;
  max-height: 100%;
}
.hero-section .hero-slider {
  display: flex;
  align-items: center;
}
.hero-section .hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-section .hero-slider.swiper {
  width: 100%;
  height: 100%;
}
.hero-section .hero-slider.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-slider.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.8px) {
  .hero-section .hero-slider.swiper .swiper-slide img {
    min-height: 250px;
  }
}
.hero-section .hero-slider .title-text {
  position: absolute;
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  max-width: 98%;
  margin: auto;
}
.hero-section .hero-slider .title-text h1 {
  margin-bottom: 0;
}
.hero-section .hero-section-content {
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 0;
  right: 0;
}
.hero-section .hero-section-content .title-text h1 {
  color: #FFFFFF;
  animation: fade-in-text 2s;
  animation-delay: 0.5s;
  margin-bottom: 50px;
}
@keyframes fade-in-text {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .title-text h1 {
    color: #0D0B0B;
    animation: none;
  }
}
.hero-section .hero-section-content .tabbing-btns .nav {
  border-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
  flex-wrap: nowrap;
}
.hero-section .hero-section-content .tabbing-btns .nav .nav-item {
  box-shadow: 0px -4px 24px 0px rgba(0, 0, 0, 0.1);
}
.hero-section .hero-section-content .tabbing-btns .nav .nav-item .nav-link {
  background-color: #FFFFFF;
  border-radius: 0;
  border: 1px solid transparent;
  color: #959494;
  min-width: 200px;
  padding: 15px 20px;
  white-space: nowrap;
}
.hero-section .hero-section-content .tabbing-btns .nav .nav-item .nav-link.active {
  background-color: #EA530E;
  color: #FFFFFF;
  border: 1px solid #EA530E;
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .tabbing-btns .nav .nav-item {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill;
  }
  .hero-section .hero-section-content .tabbing-btns .nav .nav-item .nav-link {
    width: 100%;
    min-width: 150px;
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .hero-section .hero-section-content .tabbing-btns .nav .nav-item .nav-link {
    min-width: unset;
  }
}
@media (max-width: 425px) {
  .hero-section .hero-section-content .tabbing-btns .nav .nav-item .nav-link {
    font-size: 12px;
    font-weight: 600;
    padding: 10px 5px;
  }
}
@media (max-width: 350px) {
  .hero-section .hero-section-content .tabbing-btns .nav .nav-item .nav-link {
    font-size: 11px;
  }
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .tabbing-btns {
    width: 100%;
  }
}
.hero-section .hero-section-content .filter-badge {
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
  padding: 20px 30px;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .filter-badge {
    padding: 20px;
    margin-bottom: 0;
  }
}
.hero-section .hero-section-content .filter-badge .filter {
  position: relative;
}
.hero-section .hero-section-content .filter-badge .filter.decoration-line-right::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #959494;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 991.8px) {
  .hero-section .hero-section-content .filter-badge .filter.decoration-line-right::after {
    display: none;
  }
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .filter-badge .filter img {
    width: 20px;
  }
}
.hero-section .hero-section-content .filter-badge .filter h6 {
  font-weight: 600;
  margin-left: 10px;
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .filter-badge .filter h6 {
    font-size: 14px;
  }
}
.hero-section .hero-section-content .filter-badge .filter .select2-container--default .select2-selection--single {
  border: 0;
}
.hero-section .hero-section-content .filter-badge .filter .select2-selection__placeholder {
  font-size: 14px;
}
.hero-section .hero-section-content .filter-badge .filter .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
}
.hero-section .hero-section-content .filter-badge .filter .search-input {
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 10px;
  border-radius: 0;
  /* Hide the calendar icon for WebKit browsers */
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .filter-badge .filter .search-input {
    padding-top: 5px;
    font-size: 14px;
  }
}
.hero-section .hero-section-content .filter-badge .filter .search-input::-moz-placeholder {
  color: rgb(149, 148, 148);
}
.hero-section .hero-section-content .filter-badge .filter .search-input::placeholder {
  color: rgb(149, 148, 148);
}
.hero-section .hero-section-content .filter-badge .filter .search-input[type=date] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white;
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 200px;
}
.hero-section .hero-section-content .filter-badge .filter .search-input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}
.hero-section .hero-section-content .filter-badge .filter p {
  color: #959494;
  margin-bottom: 0;
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .filter-badge .filter {
    font-size: 14px;
  }
  .hero-section .hero-section-content .filter-badge .filter .dropdown-item {
    font-size: 14px;
  }
}
.hero-section .hero-section-content .filter-badge .search-btn {
  padding: 15px 25px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.8px) {
  .hero-section .hero-section-content .filter-badge .search-btn {
    width: 100%;
    justify-content: start;
  }
}
@media (max-width: 767.8px) {
  .hero-section .hero-section-content .filter-badge .search-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
  }
  .hero-section .hero-section-content .filter-badge .search-btn img {
    width: 26px;
  }
}
@media (max-width: 767.8px) {
  .hero-section {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-section .hero-slider {
    order: 0;
  }
  .hero-section .slider-controls {
    order: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: 15px auto 0;
  }
  .hero-section .hero-section-content {
    position: unset;
    order: 0;
  }
  .hero-section .hero-section-content .filter-badge .title {
    color: #EA530E;
  }
  .hero-section .hero-section-content .tabbing-btns .nav {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 575px) {
  .hero-section .hero-section-content .tabbing-btns .nav {
    border-radius: 10px 10px 0px 0px;
  }
  .hero-section .hero-section-content .filter-badge {
    margin-top: 0;
    border-radius: 20px;
  }
  .hero-section .hero-section-content .filter-badge .title {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .hero-section .hero-section-content .filter-badge .title {
    font-size: 12px;
  }
}
.hero-section.package-list {
  height: auto;
  width: 100%;
}
.hero-section.package-list .hero-section-content {
  position: unset;
  width: 100%;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #EA530E;
}

.browse-transits-section {
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767.8px) {
  .browse-transits-section {
    margin-bottom: 20px;
  }
}
.browse-transits-section .section-title {
  text-align: center;
}
.browse-transits-section .section-title h6 {
  margin-bottom: 10px;
}
.browse-transits-section .transit-list {
  gap: 20px;
  justify-content: center;
}
.browse-transits-section .transit-list .transit {
  box-shadow: 0px 0px 0px 2px rgba(63, 136, 197, 0.25);
  border: 2px solid rgb(63, 136, 197);
  border-radius: 10px;
  overflow: hidden;
  max-width: 110px;
  width: 100%;
  flex: 1 1 auto;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.browse-transits-section .transit-list .transit p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #0D0B0B;
}
.browse-transits-section .transit-list .transit:hover {
  border-color: #EA530E;
  box-shadow: 0px 0px 0px 4px rgba(234, 83, 14, 0.3);
}
@media (max-width: 767.8px) {
  .browse-transits-section .transit-list .transit {
    padding: 10px;
  }
  .browse-transits-section .transit-list .transit video {
    width: 60px;
  }
  .browse-transits-section .transit-list .transit p {
    font-weight: 700;
  }
}
@media (max-width: 575px) {
  .browse-transits-section .transit-list .transit {
    max-width: 90px;
  }
  .browse-transits-section .transit-list .transit video {
    width: 60px;
  }
  .browse-transits-section .transit-list .transit p {
    font-size: 12px;
  }
}
@media (max-width: 425px) {
  .browse-transits-section .transit-list {
    gap: 10px;
  }
  .browse-transits-section .transit-list .transit {
    max-width: 80px;
    padding: 5px;
  }
  .browse-transits-section .transit-list .transit video {
    width: 50px;
  }
  .browse-transits-section .transit-list .transit p {
    font-size: 10px;
  }
}

.advertisement-slider-section {
  margin-bottom: 30px;
}
@media (max-width: 767.8px) {
  .advertisement-slider-section {
    margin-bottom: 20px;
  }
}
.advertisement-slider-section .advertisementSlider {
  width: 728px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.advertisement-slider-section .advertisementSlider .swiper-slide {
  padding-left: 15px;
  padding-right: 15px;
}
.advertisement-slider-section .advertisementSlider .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 575px) {
  .advertisement-slider-section .advertisementSlider {
    height: 80px;
    min-height: 50px;
  }
}

.top-ready-package-section {
  background-color: rgba(63, 136, 197, 0.1);
  background-image: url("../images/blue-background-patern.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 767.8px) {
  .top-ready-package-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .top-ready-package-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.top-ready-package-section hr {
  margin-top: 50px;
  margin-bottom: 40px;
  color: #3F88C5 !important;
}
@media (max-width: 767.8px) {
  .top-ready-package-section hr {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .top-ready-package-section hr {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.top-ready-package-section .domestic-package .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
}
.top-ready-package-section .domestic-package .swiper-slide .image-circle {
  height: 260px;
  width: 245px;
  border-radius: 20px;
  border: 2px solid #3F88C5;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.top-ready-package-section .domestic-package .swiper-slide .image-circle img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-ready-package-section .domestic-package .swiper-slide .content {
  text-align: start;
  margin-top: 10px;
}
.top-ready-package-section .domestic-package .swiper-slide .content h6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .top-ready-package-section .domestic-package .swiper-slide .content h6 {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (max-width: 767.8px) {
  .top-ready-package-section .domestic-package .swiper-slide {
    width: 150px;
  }
  .top-ready-package-section .domestic-package .swiper-slide .image-circle {
    width: 100%;
    height: 100%;
  }
  .top-ready-package-section .domestic-package .swiper-slide .content h6 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .top-ready-package-section .domestic-package .swiper-slide {
    width: 90px;
  }
  .top-ready-package-section .domestic-package .swiper-slide .content h6 {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
  }
}

.circle-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
}
.circle-slider .swiper-slide .image-circle {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  border: 2px solid #EA530E;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
}
.circle-slider .swiper-slide .image-circle img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.circle-slider .swiper-slide .content {
  border: 2px solid #FFFFFF;
  background: #EA530E;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  margin-top: -20px;
  color: #FFFFFF;
  width: 100%;
}
.circle-slider .swiper-slide .content h6 {
  margin-bottom: 0;
}
@media (max-width: 767.8px) {
  .circle-slider .swiper-slide {
    width: auto;
  }
  .circle-slider .swiper-slide .image-circle {
    width: 150px;
    height: 150px;
  }
  .circle-slider .swiper-slide .content {
    padding: 6px 15px;
  }
  .circle-slider .swiper-slide .content h6 {
    font-size: 14px;
    font-weight: 600;
  }
}
@media (max-width: 575px) {
  .circle-slider .swiper-slide {
    width: 100px;
  }
  .circle-slider .swiper-slide .image-circle {
    width: 90px;
    height: 90px;
  }
  .circle-slider .swiper-slide .content {
    padding: 4px 10px;
    margin-top: -10px;
  }
  .circle-slider .swiper-slide .content h6 {
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
    text-align: center;
  }
}

.swiper-container-free-mode .swiper-wrapper {
  transition-timing-function: linear;
}

.small-banner-section {
  padding-top: 120px;
  padding-bottom: 80px;
  background-image: url(../images/small-banner-decoration-3.png), url(../images/small-banner-decoration-4.png);
  background-position: 0% 50%, 100% 100%;
  background-size: 110px, 60px;
  background-repeat: no-repeat;
  position: relative;
}
.small-banner-section .decorations .decoration-1 {
  width: 110px;
  height: 110px;
  position: absolute;
  left: 3%;
  top: 3%;
}
.small-banner-section .decorations .decoration-2 {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 3%;
  top: 20%;
}
@media (max-width: 1400px) {
  .small-banner-section {
    background-position: 0% 50%, 100% 100%;
  }
  .small-banner-section .decorations .decoration-2 {
    top: 5%;
  }
}
@media (max-width: 767.8px) {
  .small-banner-section {
    background-position: 0% 90%, 100% 95%;
  }
}
@media (max-width: 575px) {
  .small-banner-section {
    padding-top: 90px;
    padding-bottom: 40px;
  }
  .small-banner-section .decorations .decoration-1 {
    width: 80px;
    height: 80px;
  }
  .small-banner-section .decorations .decoration-2 {
    width: 50px;
    height: 50px;
  }
}
.small-banner-section .inner-section .swiper-slide {
  position: relative;
}
.small-banner-section .inner-section .swiper-slide .slide-image {
  border-radius: 20px;
  overflow: hidden;
}
.small-banner-section .inner-section .swiper-slide .slide-image img {
  height: 100%;
  min-width: 100%;
  max-width: unset !important;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 350px;
}
.small-banner-section .inner-section .swiper-slide .slide-content {
  border-radius: 20px;
  background-color: rgba(13, 11, 11, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767.8px) {
  .small-banner-section .inner-section .swiper-slide .slide-content {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .small-banner-section .inner-section .swiper-slide .slide-content {
    padding: 20px;
  }
}
.small-banner-section .inner-section .swiper-slide .slide-content h5 {
  color: #FFFFFF;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .small-banner-section .inner-section .swiper-slide .slide-content h5 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .small-banner-section .inner-section .swiper-slide .slide-image,
  .small-banner-section .inner-section .swiper-slide .slide-content {
    height: 100%;
    max-height: 250px;
  }
}

.ready-to-travel-section {
  padding-bottom: 120px;
  background-image: url(../images/ready-to-travel-decoration-3.png);
  background-position: 90% 100%;
  background-size: 100px, 80px;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1199.8px) {
  .ready-to-travel-section {
    background-position: 85% 100%;
  }
}
@media (max-width: 991.8px) {
  .ready-to-travel-section {
    background-position: 100% 100%;
  }
}
@media (max-width: 575px) {
  .ready-to-travel-section {
    background-position: 115% 100%;
    padding-bottom: 90px;
  }
}
@media (max-width: 375px) {
  .ready-to-travel-section {
    background-position: 115% 100%;
    background-size: 80px;
  }
}
.ready-to-travel-section .decorations .decoration-1 {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0%;
  bottom: 0%;
}
.ready-to-travel-section .decorations .decoration-2 {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 20%;
  bottom: 0%;
}
@media (max-width: 1199.8px) {
  .ready-to-travel-section .decorations .decoration-2 {
    right: 30%;
  }
}
@media (max-width: 575px) {
  .ready-to-travel-section .decorations .decoration-1 {
    width: 70px;
    height: 70px;
  }
  .ready-to-travel-section .decorations .decoration-2 {
    height: 60px;
    width: 60px;
    right: 20%;
  }
}

.interested-in-section {
  position: relative;
}
.interested-in-section .content-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(234, 83, 14, 0.06);
  height: 100%;
  display: flex;
  padding-right: 50px;
}
.interested-in-section .content-section .interest-list {
  max-height: calc(100vh - 500px);
  min-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 20px;
}
@media (max-width: 1400px) {
  .interested-in-section .content-section .interest-list {
    max-height: calc(100vh - 500px);
    min-height: 250px;
  }
}
@media (max-width: 1199.8px) {
  .interested-in-section .content-section .interest-list {
    max-height: calc(100vh - 700px);
    min-height: 200px;
  }
}
@media (max-width: 991.8px) {
  .interested-in-section .content-section .interest-list {
    max-height: calc(100vh - 650px);
    min-height: 350px;
    padding-right: 0px;
  }
}
@media (max-width: 767.8px) {
  .interested-in-section .content-section .interest-list {
    max-height: calc(100vh - 500px);
    min-height: 300px;
  }
}
@media (max-width: 575px) {
  .interested-in-section .content-section .interest-list {
    min-height: 210px;
  }
}
.interested-in-section .content-section .interest-list .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0D0B0B;
  text-decoration: none;
}
.interested-in-section .content-section .interest-list .item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(149, 148, 148, 0.3);
}
@media (max-width: 767.8px) {
  .interested-in-section .content-section .interest-list .item:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .interested-in-section .content-section .interest-list .item:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.interested-in-section .content-section .interest-list .item h6 {
  margin-bottom: 0;
  margin-left: 20px;
}
@media (max-width: 767.8px) {
  .interested-in-section .content-section .interest-list .item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
  }
}
@media (max-width: 575px) {
  .interested-in-section .content-section .interest-list .item h6 {
    margin-left: 10px;
  }
}
@media (max-width: 767.8px) {
  .interested-in-section .content-section .interest-list .item .image-icon {
    width: 24px;
  }
}
@media (max-width: 575px) {
  .interested-in-section .content-section .interest-list .item .image-icon {
    width: 20px;
  }
}
.interested-in-section .content-section ::-webkit-scrollbar {
  width: 8px;
}
.interested-in-section .content-section ::-webkit-scrollbar-track {
  background: #fadbcc;
  border-radius: 8px;
}
.interested-in-section .content-section ::-webkit-scrollbar-thumb {
  background: #EA530E;
  border-radius: 8px;
  border: 2px solid #fadbcc;
}
@supports not selector(::-webkit-scrollbar) {
  .interested-in-section .content-section {
    scrollbar-color: #EA530E #fadbcc;
  }
}
@media (max-width: 991.8px) {
  .interested-in-section .content-section {
    position: unset;
    padding: 50px;
  }
  .interested-in-section .content-section .interest-list .item {
    padding-right: 10px;
  }
}
@media (max-width: 767.8px) {
  .interested-in-section .content-section {
    padding: 30px 0px;
  }
}
@media (max-width: 575px) {
  .interested-in-section .content-section {
    padding: 20px 0px;
  }
}
.interested-in-section .image-section img {
  height: 450px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.8px) {
  .interested-in-section .image-section img {
    height: auto;
  }
}

.cta-section {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 767.8px) {
  .cta-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .cta-section {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cta-section .inner-section {
  min-height: 280px;
  padding: 50px;
  background-color: #3F88C5;
  border-radius: 20px;
  background-image: url(../images/cta-bg-1.png), url(../images/cta-bg-2.png);
  background-repeat: no-repeat;
  background-position: center bottom, 90% 100%;
}
@media (max-width: 575px) {
  .cta-section .inner-section .left-section p {
    font-size: 14px;
  }
}
.cta-section .inner-section .right-section {
  width: 100%;
  display: flex;
  align-items: center;
}
.cta-section .inner-section .right-section .input-group {
  border-radius: 10px;
  overflow: hidden;
}
.cta-section .inner-section .right-section .input-group .input-group-text {
  padding: 18px 20px;
  background-color: #FFFFFF;
  position: relative;
  border: 0;
}
.cta-section .inner-section .right-section .input-group .input-group-text::after {
  content: "";
  background-color: #959494;
  height: 50%;
  width: 1px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cta-section .inner-section .right-section .input-group input {
  padding: 18px 20px;
  border-left: 0;
  color: #959494;
  box-shadow: none;
  border: 0;
}
.cta-section .inner-section .right-section .input-group input::-moz-placeholder {
  color: #959494;
}
.cta-section .inner-section .right-section .input-group input::placeholder {
  color: #959494;
}
.cta-section .inner-section .right-section .btn {
  padding: 18px 20px;
  margin-left: 20px;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .cta-section .inner-section {
    padding: 15px 0px;
    background-image: none;
    min-height: auto;
  }
  .cta-section .inner-section .right-section {
    flex-direction: column;
  }
  .cta-section .inner-section .right-section .input-group .input-group-text {
    padding: 10px;
  }
  .cta-section .inner-section .right-section .input-group input {
    padding: 10px 15px;
  }
  .cta-section .inner-section .right-section .btn {
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 10px 15px;
    font-weight: 600;
  }
}

.pages-link-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: rgba(149, 148, 148, 0.15);
}
@media (max-width: 767.8px) {
  .pages-link-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .pages-link-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.pages-link-section .link-group:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .pages-link-section .link-group:not(:last-child) {
    margin-bottom: 10px;
  }
}
.pages-link-section .link-group h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pages-link-section .link-group ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
.pages-link-section .link-group ul li {
  margin-bottom: 10px;
}
.pages-link-section .link-group ul li a {
  text-decoration: none;
  color: #342F2F;
}
.pages-link-section .link-group ul li:not(:last-child) {
  margin-right: 24px;
}
@media (max-width: 767.8px) {
  .pages-link-section .link-group h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
  }
  .pages-link-section .link-group .user-list {
    -moz-column-count: 2;
         column-count: 2;
    display: block;
  }
  .pages-link-section .link-group ul li {
    margin-bottom: 4px;
  }
  .pages-link-section .link-group ul li a {
    font-size: 14px;
  }
}

.footer-section {
  background-color: #0D0B0B;
  color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.toaster-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 200%);
  width: 500px;
  max-width: 100%;
  background-color: #FFFFFF;
  padding: 10px 30px 30px;
  border-radius: 20px;
  z-index: 1100;
  transition: transform 0.5s;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.14);
}
.toaster-message .inner-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.toaster-message .inner-section .range-slider {
  width: 100%;
  margin-bottom: 10px;
}
.toaster-message .inner-section .range-slider input[type=range] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, rgb(234, 83, 14) 100%, rgba(234, 83, 14, 0.1) 100%);
  border-radius: 4px;
  outline: none;
  transition: background 0.3s ease-in-out;
}
.toaster-message .inner-section .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  height: 0;
}
.toaster-message .inner-section .popup-header {
  width: 100%;
  margin-bottom: 50px;
}
.toaster-message .inner-section .popup-header .popup-image {
  height: 150px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}
.toaster-message .inner-section .popup-header .popup-image video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.toaster-message .inner-section .popup-header .close-popup {
  cursor: pointer;
}
.toaster-message .inner-section p {
  font-size: 14px;
}
.toaster-message.active {
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 0px 100vw rgba(0, 0, 0, 0.5);
}
@media (max-width: 767.8px) {
  .toaster-message {
    max-width: 90%;
    max-height: 90vh;
    height: -moz-max-content;
    height: max-content;
    right: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-x: hidden;
    opacity: 0;
    display: none;
    box-shadow: 0px 0px 0px 100vw rgba(0, 0, 0, 0.5);
  }
  .toaster-message .inner-section .popup-header {
    margin-bottom: 30px;
  }
  .toaster-message .inner-section .popup-header .popup-image {
    height: 100px;
    width: 100px;
    border-radius: 50%;
  }
  .toaster-message.active {
    transform: translate(-50%, -50%);
    opacity: 1;
    display: flex;
  }
}

.top-nav-space {
  padding-top: 56px;
}

.package-listing-main .advertisement-slider-section {
  margin-bottom: 35px;
  padding-bottom: 15px;
  transition: 0.3s;
  position: sticky;
  top: 56px;
  z-index: 20;
  background-color: #FFFFFF;
}
@media (max-width: 991.8px) {
  .package-listing-main .advertisement-slider-section {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 5px;
  }
}
@media (max-width: 575px) {
  .package-listing-main .advertisement-slider-section {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.month-year-calender {
  padding: 10px;
}
@media (max-width: 575px) {
  .month-year-calender {
    padding: 0;
  }
}
.month-year-calender .popup {
  border: 1px solid rgb(149, 148, 148);
  border-radius: 16px;
}
.month-year-calender .popup::before {
  display: none;
}
.month-year-calender .popup .table {
  border: none;
  font-size: 16px;
}
.month-year-calender .popup .table th {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
.month-year-calender .popup .table td {
  border: none;
  border-left: 0 !important;
}
.month-year-calender .popup .table td.active {
  background: #EA530E !important;
  color: #FFFFFF !important;
  border-radius: 6px;
}

.tags-with-dot {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.tags-with-dot p {
  overflow: hidden;
  line-height: 1.4;
  max-height: 1.4em;
  word-break: break-word;
  margin: 0;
  position: relative;
  white-space: nowrap;
}
.tags-with-dot p.more-active {
  line-clamp: unset;
  -webkit-line-clamp: unset;
  max-height: unset;
}
.tags-with-dot p span {
  position: relative;
  padding-right: 10px;
  margin-right: 5px;
  display: inline-flex;
}
.tags-with-dot p span:not(:last-child)::after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #0D0B0B;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tags-with-dot .more-link {
  color: #3F88C5;
  cursor: pointer;
  font-weight: bold;
  padding-left: 5px;
  padding-right: 5px;
  white-space: nowrap;
  font-size: 0.9em;
  line-height: 1.4;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.listing-section .form-control {
  border: 1px solid #959494;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: none;
}
@media (max-width: 575px) {
  .listing-section .form-control {
    padding: 8px 10px;
    border-radius: 8px;
  }
}
.listing-section .filter-section {
  border: 1px solid rgba(52, 47, 47, 0.5);
  box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 16px 20px;
  border-radius: 16px;
}
.listing-section .filter-section .range-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 66px;
  justify-content: end;
  padding-bottom: 10px;
}
.listing-section .filter-section .range-slider .sliders-control {
  position: relative;
}
.listing-section .filter-section .range-slider .slider-tooltip {
  position: absolute;
  top: -4rem;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #EA530E;
  color: #FFFFFF;
  font-size: 16px;
  border-radius: 4px;
  padding: 2px 5px;
  min-width: 40px;
  text-align: center;
  translate: -50% 0;
}
@media (max-width: 575px) {
  .listing-section .filter-section .range-slider .slider-tooltip {
    font-size: 14px;
  }
}
.listing-section .filter-section .range-slider .slider-tooltip::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  translate: -50% 0;
  width: 0.5rem;
  height: 0.5rem;
  rotate: 45deg;
  z-index: -1;
  background-color: inherit;
}
.listing-section .filter-section .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 15px;
  height: 15px;
  background-color: #EA530E;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #EA530E;
  cursor: pointer;
}
.listing-section .filter-section .range-slider input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  pointer-events: all;
  width: 15px;
  height: 15px;
  background-color: #EA530E;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #EA530E;
  cursor: pointer;
}
.listing-section .filter-section .range-slider input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #EA530E;
  pointer-events: none;
  border-radius: 10px;
  cursor: pointer;
}
.listing-section .filter-section .range-slider #fromSlider {
  height: 0;
  z-index: 1;
}
.listing-section .filter-section .group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.listing-section .filter-section .group:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 575px) {
  .listing-section .filter-section .group {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.listing-section .filter-section datalist {
  position: absolute;
  background-color: #FFFFFF;
  border: 1px solid blue;
  border-radius: 0 0 5px 5px;
  border-top: none;
  font-family: sans-serif;
  width: 350px;
  padding: 5px;
}
.listing-section .filter-section option {
  background-color: #FFFFFF;
  padding: 4px;
  color: blue;
  margin-bottom: 1px;
  font-size: 18px;
  cursor: pointer;
}
.listing-section .filter-section .accordion .accordion-item {
  border: none;
}
.listing-section .filter-section .accordion .accordion-item h6 {
  margin-bottom: 0.5rem;
}
.listing-section .filter-section .accordion .accordion-item h6 .accordion-button {
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.listing-section .filter-section .accordion .accordion-item .accordion-body {
  padding: 0;
}
@media (max-width: 575px) {
  .listing-section .filter-section .accordion .accordion-item h6 {
    font-size: 14px;
  }
  .listing-section .filter-section .accordion .accordion-item h6 .accordion-button {
    font-size: 14px;
  }
  .listing-section .filter-section .accordion .accordion-item .accordion-body .form-check-label {
    font-size: 14px;
  }
}
.listing-section .filter-section .form-check {
  margin-bottom: 0.8rem;
}
@media (max-width: 575px) {
  .listing-section .filter-section .form-check {
    margin-bottom: 0.4rem;
  }
}
.listing-section .filter-section .form-check-input {
  border-color: #959494;
}
.listing-section .filter-section .form-check-input:checked {
  background-color: #EA530E;
  border-color: #EA530E;
}
.listing-section .filter-section .form-check-input:focus {
  border-color: #EA530E;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(234, 83, 14, 0.25);
}
.listing-section .filter-after-scroll {
  position: sticky;
  top: 205px;
  left: 10px;
  right: 10px;
}
.listing-section .package-list .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.listing-section .package-list .title .left-section {
  display: flex;
  align-items: center;
}
.listing-section .package-list .title .left-section h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listing-section .package-list .title .left-section small {
  font-size: 20px;
  font-weight: 700;
}
.listing-section .package-list .title .right-section {
  display: flex;
  align-items: center;
}
.listing-section .package-list .title .right-section .select-state {
  border: 1px solid #EA530E;
  border-radius: 4px;
  padding: 5px 10px;
  color: #EA530E;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .listing-section .package-list .title .right-section .select-state {
    padding: 2px 5px;
  }
}
.listing-section .package-list .title .right-section .select-state img {
  width: 18px;
}
.listing-section .package-list .title .right-section .filter-switch {
  cursor: pointer;
}
.listing-section .package-list .title .right-section .filter-switch p {
  margin-bottom: 0;
  color: #EA530E;
  margin-left: 6px;
  font-size: 16px;
}
.listing-section .package-list .title .right-section .list-grid-switch-btn .view {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.listing-section .package-list .title .right-section .list-grid-switch-btn .view p {
  margin-bottom: 0;
  color: #EA530E;
  margin-left: 10px;
  font-size: 16px;
}
.listing-section .package-list .list .package {
  border: 1px solid rgba(52, 47, 47, 0.5);
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
  padding: 12px;
  border-radius: 16px;
  position: relative;
}
.listing-section .package-list .list .package:not(:last-child) {
  margin-bottom: 16px;
}
.listing-section .package-list .list .package h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.listing-section .package-list .list .package .image-section {
  position: relative;
  overflow: hidden;
}
.listing-section .package-list .list .package .image-section .image {
  border-radius: 8px;
  overflow: hidden;
}
.listing-section .package-list .list .package .image-section .image img {
  transition: 0.3s;
  width: 100%;
}
.listing-section .package-list .list .package .image-section .image::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.listing-section .package-list .list .package .image-section .image .slider-controls {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 30px 30px 10px;
}
.listing-section .package-list .list .package .image-section:hover .image img {
  scale: 1.1;
}
.listing-section .package-list .list .package .image-section:hover .image .swiper-slide img {
  scale: 1;
}
.listing-section .package-list .list .package .image-section:hover .image .swiper-slide-active img {
  scale: 1.1;
}
.listing-section .package-list .list .package .image-section:hover .image::after {
  height: 250%;
  transition: all 0.6s linear;
  background-color: transparent;
}
.listing-section .package-list .list .package .image-section .day-and-night {
  background-color: #FFFFFF;
  padding: 7px 10px;
  border-radius: 0px 10px 10px 0px;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 5;
}
.listing-section .package-list .list .package .image-section .day-and-night p {
  font-size: 14px;
  color: #EA530E;
  font-weight: 500;
}
@media (max-width: 767.8px) {
  .listing-section .package-list .list .package .image-section .day-and-night {
    padding: 4px 8px;
    top: 60px;
  }
  .listing-section .package-list .list .package .image-section .day-and-night p {
    font-size: 14px;
  }
}
.listing-section .package-list .list .package .image-section .like-btn {
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 5;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
  padding: 10px;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
}
.listing-section .package-list .list .package .image-section .like-btn img {
  width: 16px;
}
@media (max-width: 767.8px) {
  .listing-section .package-list .list .package .image-section .like-btn {
    padding: 10px;
    left: 10px;
    right: unset;
  }
  .listing-section .package-list .list .package .image-section .like-btn img {
    width: 16px;
  }
}
.listing-section .package-list .list .package .right-section {
  height: 100%;
}
.listing-section .package-list .list .package .right-section .agent-detail {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  justify-content: end;
  height: 100%;
}
@media (max-width: 767.8px) {
  .listing-section .package-list .list .package .right-section .guaranteed-badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
  }
  .listing-section .package-list .list .package .right-section .guaranteed-badge img {
    width: 100%;
    max-width: 180px;
  }
  .listing-section .package-list .list .package .right-section .agent-detail {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .listing-section .package-list .list .package .right-section .agent-detail .agent-image img {
    width: auto;
  }
}
.listing-section .package-list .list .package.guaranteed-service .right-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.listing-section .package-list .list .package.guaranteed-service .right-section .guaranteed-badge {
  margin-top: -5px;
  margin-left: 13px;
  margin-right: -13px;
  animation: blink 4s infinite;
}
@media (max-width: 767.8px) {
  .listing-section .package-list .list .package.guaranteed-service .right-section .guaranteed-badge {
    margin-top: 0px;
    margin-left: 0;
    margin-right: -8px;
  }
}
@keyframes blink {
  0%, 85% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.listing-section .package-list .list .package.guaranteed-service .right-section .agent-detail {
  height: auto;
}
.listing-section .package-list .list .package.guaranteed-service .right-section .agent-detail .agent-image img {
  max-width: 120px;
  max-height: 50px;
  margin-bottom: 10px;
}
@media (max-width: 767.8px) {
  .listing-section .package-list .list .package.guaranteed-service .right-section .agent-detail .agent-image img {
    width: auto;
  }
}
.listing-section .package-list .list .package.guaranteed-service .right-section h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.listing-section .package-list .list.grid-view .package .image-section .like-btn {
  left: 10px;
  right: unset;
}
.listing-section .package-list .list.grid-view .package .image-section .day-and-night {
  top: 70px;
}
.listing-section .package-list .list.grid-view .package .guaranteed-badge {
  position: absolute;
  z-index: 2;
  right: 0px;
  top: 10px;
}
@media (max-width: 1400px) {
  .listing-section .package-list .list .package .content-section {
    margin-top: 15px;
  }
  .listing-section .package-list .list .package .content-section h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .listing-section .package-list .list .package .content-section .tags-with-dot span {
    font-size: 14px;
  }
  .listing-section .package-list .list .package .content-section p {
    font-size: 14px;
  }
  .listing-section .package-list .list .package .content-section img {
    width: 20px;
  }
  .listing-section .package-list .title .left-section h6 {
    max-width: 330px;
  }
}
@media (max-width: 991.8px) {
  .listing-section .package-list .title {
    padding-top: 10px;
    position: sticky;
    top: 206px;
    z-index: 10;
    background: #FFFFFF;
    width: calc(100% + 2px);
  }
}
@media (max-width: 767.8px) {
  .listing-section .package-list .title p {
    font-size: 14px !important;
  }
  .listing-section .package-list .title .filter-switch img {
    width: 22px;
  }
  .listing-section .package-list .title .filter-switch p {
    display: none;
  }
  .listing-section .package-list .title .list-grid-switch-btn img {
    width: 18px;
  }
}
@media (max-width: 620px) {
  .listing-section .package-list .title .left-section h6 {
    max-width: 280px;
  }
}
@media (max-width: 575px) {
  .listing-section .package-list .title {
    top: 146px;
    padding-top: 0px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .listing-section .package-list .title .left-section h6, .listing-section .package-list .title .left-section small {
    font-size: 14px;
    max-width: 230px;
  }
}
@media (max-width: 500px) {
  .listing-section .package-list .title .left-section h6 {
    max-width: 200px;
  }
}
@media (max-width: 425px) {
  .listing-section .package-list .title .left-section h6 {
    max-width: 150px;
  }
}
@media (max-width: 400px) {
  .listing-section .package-list .title .left-section h6 {
    max-width: 130px;
  }
}
@media (max-width: 375px) {
  .listing-section .package-list .title .left-section h6 {
    max-width: 110px;
  }
}
@media (max-width: 350px) {
  .listing-section .package-list .title .left-section h6 {
    font-size: 12px;
    max-width: 100px;
  }
  .listing-section .package-list .title p {
    font-size: 10px !important;
  }
}
@media (max-width: 320px) {
  .listing-section .package-list .title .left-section h6 {
    max-width: 80px;
  }
}
.listing-section .advertisement .advertisementVertical {
  min-height: 400px;
  height: calc(100vh - 210px);
  max-height: 600px;
  position: sticky;
  top: 205px;
}
.listing-section .advertisement .advertisementVertical img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 991.8px) {
  .filter-section-main {
    display: none;
  }
  .filter-section-main.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    padding: 0px;
    display: block;
  }
  .filter-section-main.active .filter-section {
    height: calc(100vh - 140px);
    overflow-x: hidden;
    border: 0;
    position: relative;
    padding-top: 70px;
    padding-bottom: 30px;
    width: 80%;
    background-color: #FFFFFF;
    border-radius: 0;
  }
  .filter-section-main.active .filter-section .filter-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 16px;
    background-color: #FFFFFF;
    width: 80%;
  }
  .filter-section-main.active .common-search-btn {
    position: fixed;
    bottom: 0;
    background: #FFFFFF;
    left: 0;
    right: 0;
    padding: 20px 15px;
    width: 80%;
    z-index: 99;
  }
  .filter-section-main.active .common-search-btn .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .filter-section-main.active .filter-section {
    height: calc(100vh - 125px);
    padding-top: 55px;
    padding-bottom: 0;
  }
  .filter-section-main.active .filter-section .filter-header {
    padding: 10px 20px;
  }
  .filter-section-main.active .common-search-btn .btn {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 991.8px) {
  .filter-package-modal .modal-content {
    height: auto;
    background: transparent;
    border: 0;
  }
}

.package-slider-section .slider-section {
  position: relative;
}
.package-slider-section .slider-section .swiper {
  border-radius: 8px;
}
.package-slider-section .slider-section .swiper .swiper-slide {
  height: auto;
}
.package-slider-section .slider-section .swiper .swiper-slide img {
  height: 100%;
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .package-slider-section .slider-section .swiper .swiper-slide img {
    max-height: 220px;
  }
}
.package-slider-section .slider-section .slider-controls {
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 0;
  right: 0;
  padding-bottom: 15px;
  padding-top: 25px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.package-slider-section .content-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.package-slider-section .content-section .centered-info .badge-primary {
  background-color: #EA530E;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 8px;
}
@media (max-width: 575px) {
  .package-slider-section .content-section .centered-info .badge-primary {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .package-slider-section .content-section .centered-info .badge-primary {
    font-size: 14px;
  }
}
.package-slider-section .content-section .centered-info .tags-with-dot {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .package-slider-section .content-section .centered-info .tags-with-dot {
    font-size: 14px;
  }
}
.package-slider-section .content-section .centered-info .quick-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.package-slider-section .content-section .centered-info .quick-info p {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .package-slider-section .content-section .centered-info .quick-info {
    gap: 10px;
  }
  .package-slider-section .content-section .centered-info .quick-info img {
    width: 20px;
  }
  .package-slider-section .content-section .centered-info .quick-info p {
    font-size: 14px;
  }
}
.package-slider-section .content-section .price-badge {
  padding: 15px 20px;
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(52, 47, 47, 0.5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.package-slider-section .content-section .price-badge .left-section p {
  margin-bottom: 0;
  color: #959494;
}
.package-slider-section .content-section .price-badge .left-section h4 {
  color: #EA530E;
  font-weight: 700;
}
.package-slider-section .content-section .price-badge .right-section {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .package-slider-section .content-section .price-badge .right-section {
    width: 100%;
  }
}
.package-slider-section .content-section .price-badge .right-section .btn {
  font-size: 16px;
  padding: 10px 15px;
}
@media (max-width: 575px) {
  .package-slider-section .content-section .price-badge {
    flex-direction: column;
    align-items: start;
    border-radius: 10px;
    padding: 10px;
  }
  .package-slider-section .content-section .price-badge .left-section {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
  }
  .package-slider-section .content-section .price-badge .left-section h4 {
    font-size: 18px;
  }
  .package-slider-section .content-section .price-badge .right-section {
    margin-top: 10px;
  }
  .package-slider-section .content-section .price-badge .right-section .btn {
    font-size: 14px;
  }
}

.package-detail-section .floating-navbar {
  margin-top: 20px;
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  position: sticky;
  top: 43px;
  background: #FFFFFF;
  z-index: 10;
  padding: 30px 0;
  width: calc(100% + 2px);
}
@media (max-width: 575px) {
  .package-detail-section .floating-navbar {
    padding: 20px 0;
    margin-top: 10px;
    top: 46px;
  }
}
.package-detail-section .floating-navbar .ProductNav {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  position: relative;
  font-size: 0;
  width: 90%;
  margin: auto;
  scrollbar-width: none;
}
.package-detail-section .floating-navbar .ProductNav .nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  border: 0;
  position: relative;
  float: left;
  transition: transform 0.2s ease-in-out;
}
.package-detail-section .floating-navbar .ProductNav .nav .ProductNav_Link {
  display: table-cell;
  vertical-align: middle;
}
.package-detail-section .floating-navbar .ProductNav .nav .ProductNav_Link:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 575px) {
  .package-detail-section .floating-navbar .ProductNav .nav .ProductNav_Link:not(:last-child) {
    margin-right: 10px;
  }
}
.package-detail-section .floating-navbar .ProductNav .nav .ProductNav_Link a {
  text-decoration: none;
}
.package-detail-section .floating-navbar .ProductNav .nav .ProductNav_Link a button {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #0D0B0B;
  white-space: nowrap;
  padding: 0;
  border: 0;
}
@media (max-width: 575px) {
  .package-detail-section .floating-navbar .ProductNav .nav .ProductNav_Link a button {
    font-size: 14px;
  }
}
.package-detail-section .floating-navbar .ProductNav .nav .ProductNav_Link a button.active {
  color: #EA530E;
  font-weight: 700;
  position: relative;
  border: 0;
}
.package-detail-section .floating-navbar .ProductNav .nav .ProductNav_Link a button.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #EA530E;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .package-detail-section .floating-navbar .ProductNav {
    width: 85%;
  }
}
@media (max-width: 400px) {
  .package-detail-section .floating-navbar .ProductNav {
    width: 80%;
  }
}
.package-detail-section .floating-navbar .ProductNav .ProductNav_Contents-no-transition {
  transition: none;
}
.package-detail-section .floating-navbar .nav-arrow .Advancer {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  height: 30px;
  width: 30px;
  border: none;
  cursor: pointer;
}
.package-detail-section .floating-navbar .nav-arrow .Advancer.Advancer_Left {
  left: 5px;
}
.package-detail-section .floating-navbar .nav-arrow .Advancer.Advancer_Right {
  right: 5px;
}
@media (max-width: 575px) {
  .package-detail-section .floating-navbar .nav-arrow .Advancer {
    height: 20px;
  }
}
.package-detail-section .sticky-top {
  position: sticky;
  top: 60px !important;
}
.package-detail-section .detail-card {
  position: relative;
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(52, 47, 47, 0.5);
  padding: 16px 30px;
  border-radius: 16px;
  position: relative;
}
.package-detail-section .detail-card:not(:last-child) {
  margin-bottom: 20px;
}
.package-detail-section .detail-card::before {
  content: "";
  width: 13px;
  height: 26px;
  background-color: #EA530E;
  border-radius: 0px 4px 4px 0px;
  position: absolute;
  left: 0;
  top: 24px;
}
@media (max-width: 575px) {
  .package-detail-section .detail-card {
    padding: 15px;
    font-size: 14px;
  }
  .package-detail-section .detail-card::before {
    top: 12px;
    width: 8px;
  }
}
.package-detail-section .detail-card .detail-header {
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.package-detail-section .detail-card .detail-header h5 {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .package-detail-section .detail-card .detail-header h5 {
    font-size: 20px;
  }
}
.package-detail-section .detail-card .detail-body .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .package-detail-section .detail-card .detail-body .accordion-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.package-detail-section .detail-card .detail-body .accordion-item:last-child .accordion-body {
  padding-bottom: 0;
}
.package-detail-section .detail-card .detail-body .accordion-item .accordion-button {
  padding: 0;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #0D0B0B;
}
.package-detail-section .detail-card .detail-body .accordion-item .accordion-button:not(.collapsed), .package-detail-section .detail-card .detail-body .accordion-item .accordion-button:focus {
  background-color: #FFFFFF;
  box-shadow: none;
}
.package-detail-section .detail-card .detail-body .accordion-item .accordion-button .day-badge {
  background-color: #EA530E;
  color: #FFFFFF;
  padding: 6px 18px;
  border-radius: 100px;
  margin-right: 30px;
}
@media (max-width: 575px) {
  .package-detail-section .detail-card .detail-body .accordion-item .accordion-button {
    flex-direction: column;
    align-items: start;
    padding-bottom: 10px;
  }
  .package-detail-section .detail-card .detail-body .accordion-item .accordion-button .day-badge {
    margin-right: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
  }
  .package-detail-section .detail-card .detail-body .accordion-item .accordion-button::after {
    position: absolute;
    top: 0;
    right: 0;
  }
  .package-detail-section .detail-card .detail-body .accordion-item .accordion-button p {
    font-size: 14px;
  }
}
.package-detail-section .detail-card .detail-body .accordion-item .accordion-body {
  padding: 0;
  padding-bottom: 20px;
}
.package-detail-section .detail-card .detail-body .accordion-item .accordion-body ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 30px;
}
@media (max-width: 575px) {
  .package-detail-section .detail-card .detail-body .accordion-item .accordion-body img {
    width: 22px;
  }
  .package-detail-section .detail-card .detail-body .accordion-item .accordion-body ul {
    padding-left: 18px;
    flex-wrap: wrap;
    gap: 10px 30px;
  }
}
.package-detail-section .detail-card .detail-body .badge {
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
}
.package-detail-section .detail-card .detail-body .badge.badge-success {
  background: #34c759;
  color: #FFFFFF;
}
.package-detail-section .detail-card .detail-body .badge.badge-danger {
  background: #ff3b30;
  color: #FFFFFF;
}
.package-detail-section .detail-card .detail-body .detail-listing {
  list-style: none;
  padding-left: 0;
}
.package-detail-section .detail-card .detail-body .detail-listing li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .package-detail-section .detail-card .detail-body .detail-listing li {
    margin-bottom: 10px;
  }
}
.package-detail-section .detail-card .detail-body .detail-listing li img {
  margin-right: 12px;
}
.package-detail-section .detail-card .table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
  table-layout: fixed;
}
@media (max-width: 575px) {
  .package-detail-section .detail-card .table {
    table-layout: auto;
  }
}
.package-detail-section .detail-card .table tr th {
  color: #EA530E;
  font-weight: 500;
}
.package-detail-section .right-section .detail-card .detail-body .agent-logo {
  height: 250px;
  background-color: rgba(234, 83, 14, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
}
.package-detail-section .right-section .detail-card .detail-body .agent-logo img {
  max-width: 210px;
  width: 100%;
}
.package-detail-section .right-section .detail-card .detail-body .agent-detail {
  font-size: 18px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .package-detail-section .right-section .detail-card .detail-body .agent-detail .btn {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .package-detail-section .right-section .detail-card .detail-body .agent-detail {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .package-detail-section .right-section .detail-card .detail-body .agent-detail .btn {
    font-size: 12px;
    font-weight: 500;
  }
}
.package-detail-section .right-section .detail-card .detail-body .agent-detail h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 30px;
}
@media (max-width: 575px) {
  .package-detail-section .right-section .detail-card .detail-body .agent-detail h5 {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.package-detail-section .right-section .detail-card .detail-body .agent-detail h6 {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .package-detail-section .right-section .detail-card .detail-body .agent-detail h6 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .package-detail-section img.icon {
    width: 20px;
  }
}

.tour-detail-accordion {
  background-color: rgba(149, 148, 148, 0.15);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
}
.tour-detail-accordion .accordion .accordion-item {
  border-radius: 16px;
  overflow: hidden;
  padding: 1.2rem;
  border: 1px solid rgba(52, 47, 47, 0.5);
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
  .tour-detail-accordion .accordion .accordion-item {
    padding: 15px;
  }
}
.tour-detail-accordion .accordion .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .tour-detail-accordion .accordion .accordion-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.tour-detail-accordion .accordion .accordion-item .accordion-header .accordion-button {
  padding: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0D0B0B;
}
@media (max-width: 575px) {
  .tour-detail-accordion .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.tour-detail-accordion .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.tour-detail-accordion .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #FFFFFF;
  box-shadow: none;
}
.tour-detail-accordion .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .tour-detail-accordion .accordion .accordion-item .accordion-body {
    margin-top: 10px;
    padding-top: 15px;
    font-size: 14px;
  }
}

.similar-packages-section {
  background-color: rgba(234, 83, 14, 0.1);
  padding-top: 15px;
  padding-bottom: 15px;
}
.similar-packages-section .similar-packages .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}
.similar-packages-section .similar-packages .swiper-slide .package {
  border: 1px solid rgba(52, 47, 47, 0.5);
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
  padding: 12px;
  border-radius: 16px;
  background-color: #FFFFFF;
  width: 390px;
}
.similar-packages-section .similar-packages .swiper-slide .package:not(:last-child) {
  margin-bottom: 16px;
}
.similar-packages-section .similar-packages .swiper-slide .package h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section {
  position: relative;
  overflow: hidden;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section .image {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section .image img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section .image::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section .image .slider-controls {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 30px 30px 10px;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section .image .swiper {
  width: 360px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .similar-packages-section .similar-packages .swiper-slide .package .image-section .image .swiper {
    width: auto;
  }
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section:hover .image img {
  scale: 1.1;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section:hover .image .swiper-slide img {
  scale: 1;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section:hover .image .swiper-slide-active img {
  scale: 1.1;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section:hover .image::after {
  height: 250%;
  transition: all 0.6s linear;
  background-color: transparent;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section .day-and-night {
  background-color: #EA530E;
  padding: 8px 16px;
  border-radius: 0px 10px 10px 0px;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 5;
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section .day-and-night p {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 600;
}
@media (max-width: 767.8px) {
  .similar-packages-section .similar-packages .swiper-slide .package .image-section .day-and-night {
    padding: 4px 8px;
  }
  .similar-packages-section .similar-packages .swiper-slide .package .image-section .day-and-night p {
    font-size: 14px;
  }
}
.similar-packages-section .similar-packages .swiper-slide .package .image-section .like-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
  padding: 15px;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
}
@media (max-width: 767.8px) {
  .similar-packages-section .similar-packages .swiper-slide .package .image-section .like-btn {
    padding: 10px;
  }
  .similar-packages-section .similar-packages .swiper-slide .package .image-section .like-btn img {
    width: 16px;
  }
}
@media (max-width: 575px) {
  .similar-packages-section .similar-packages .swiper-slide .package {
    width: 360px;
  }
  .similar-packages-section .similar-packages .swiper-slide .package h6 {
    font-size: 16px;
    line-height: 18px;
  }
  .similar-packages-section .similar-packages .swiper-slide .package .content-section img {
    width: 20px;
  }
  .similar-packages-section .similar-packages .swiper-slide .package p {
    font-size: 14px;
  }
}

.other-packages-section {
  background-color: rgba(234, 83, 14, 0.1);
  padding-top: 15px;
  padding-bottom: 15px;
}
.other-packages-section .other-packages .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}
.other-packages-section .other-packages .swiper-slide .package {
  border: 1px solid rgba(52, 47, 47, 0.5);
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
  padding: 12px;
  border-radius: 16px;
  background-color: #FFFFFF;
  width: 390px;
}
.other-packages-section .other-packages .swiper-slide .package:not(:last-child) {
  margin-bottom: 16px;
}
.other-packages-section .other-packages .swiper-slide .package h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.other-packages-section .other-packages .swiper-slide .package .image-section {
  position: relative;
  overflow: hidden;
}
.other-packages-section .other-packages .swiper-slide .package .image-section .image {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.other-packages-section .other-packages .swiper-slide .package .image-section .image img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.other-packages-section .other-packages .swiper-slide .package .image-section .image::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.other-packages-section .other-packages .swiper-slide .package .image-section .image .slider-controls {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 30px 30px 10px;
}
.other-packages-section .other-packages .swiper-slide .package .image-section .image .swiper {
  height: 100%;
  width: 360px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .other-packages-section .other-packages .swiper-slide .package .image-section .image .swiper {
    width: auto;
  }
}
.other-packages-section .other-packages .swiper-slide .package .image-section:hover .image img {
  scale: 1.1;
}
.other-packages-section .other-packages .swiper-slide .package .image-section:hover .image .swiper-slide img {
  scale: 1;
}
.other-packages-section .other-packages .swiper-slide .package .image-section:hover .image .swiper-slide-active img {
  scale: 1.1;
}
.other-packages-section .other-packages .swiper-slide .package .image-section:hover .image::after {
  height: 250%;
  transition: all 0.6s linear;
  background-color: transparent;
}
.other-packages-section .other-packages .swiper-slide .package .image-section .day-and-night {
  background-color: #EA530E;
  padding: 8px 16px;
  border-radius: 0px 10px 10px 0px;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 5;
}
.other-packages-section .other-packages .swiper-slide .package .image-section .day-and-night p {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 600;
}
@media (max-width: 767.8px) {
  .other-packages-section .other-packages .swiper-slide .package .image-section .day-and-night {
    padding: 4px 8px;
  }
  .other-packages-section .other-packages .swiper-slide .package .image-section .day-and-night p {
    font-size: 14px;
  }
}
.other-packages-section .other-packages .swiper-slide .package .image-section .like-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
  padding: 15px;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
}
@media (max-width: 767.8px) {
  .other-packages-section .other-packages .swiper-slide .package .image-section .like-btn {
    padding: 10px;
  }
  .other-packages-section .other-packages .swiper-slide .package .image-section .like-btn img {
    width: 16px;
  }
}
@media (max-width: 575px) {
  .other-packages-section .other-packages .swiper-slide .package {
    width: 360px;
  }
  .other-packages-section .other-packages .swiper-slide .package h6 {
    font-size: 16px;
    line-height: 18px;
  }
  .other-packages-section .other-packages .swiper-slide .package .content-section img {
    width: 20px;
  }
  .other-packages-section .other-packages .swiper-slide .package p {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .other-packages-section .other-packages .swiper-slide .package {
    width: 300px;
  }
}

.agent-cover-image {
  height: 450px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/agent-detail/cover-image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-cover-image h2 {
  color: #FFFFFF;
}
@media (max-width: 767.8px) {
  .agent-cover-image {
    height: 250px;
  }
}

.agent-profile-section {
  padding-bottom: 30px;
}
.agent-profile-section .profile-image {
  width: 250px;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.agent-profile-section .profile-image img {
  width: 100%;
}
.agent-profile-section .detail {
  margin-top: 30px;
}
.agent-profile-section .social-links {
  margin-top: 30px;
}
@media (max-width: 767.8px) {
  .agent-profile-section .profile-image {
    width: 200px;
  }
}
@media (max-width: 575px) {
  .agent-profile-section {
    padding-bottom: 20px;
  }
  .agent-profile-section .profile-image {
    width: 150px;
    padding: 10px;
  }
  .agent-profile-section .detail {
    margin-top: 10px;
  }
  .agent-profile-section .left-section p {
    font-size: 14px;
  }
  .agent-profile-section .left-section .icon {
    width: 20px;
  }
  .agent-profile-section .social-links {
    margin-top: 16px;
  }
  .agent-profile-section .social-links img {
    width: 22px;
  }
}

.locations-section {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.locations-section .location {
  padding: 24px;
  border-radius: 8px;
}
.locations-section .location.blue {
  background-color: rgba(63, 136, 197, 0.1);
}
.locations-section .location.orange {
  background-color: rgba(234, 83, 14, 0.1);
}
.locations-section .location h6 {
  font-size: 20px;
  font-weight: 700;
}
.locations-section .location .detail {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.locations-section .location .detail a {
  text-decoration: none;
  color: #0D0B0B;
  margin-left: 10px;
}
@media (max-width: 575px) {
  .locations-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .locations-section .location {
    padding: 15px;
  }
  .locations-section .location h6 {
    font-size: 16px;
  }
  .locations-section .location .detail {
    margin-top: 10px;
  }
  .locations-section .location .detail a {
    font-size: 14px;
  }
  .locations-section .location .detail img {
    width: 20px;
  }
}

.gallery-section {
  margin-top: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.gallery-section .photos-grid-container {
  height: 100%;
}
.gallery-section .photos-grid-container .img-box {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-section .photos-grid-container .img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.9);
}
.gallery-section .photos-grid-container img {
  max-width: 100%;
  display: block;
  height: auto;
}
.gallery-section .photos-grid-container .transparent-box {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-section .hide-element {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@media (max-width: 575px) {
  .gallery-section {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .gallery-section .photos-grid-container .row {
    margin: 0;
  }
  .gallery-section .photos-grid-container .row .col-4 {
    padding: 5px;
  }
  .gallery-section .photos-grid-container .img-box {
    margin-bottom: 0;
  }
}

.customer-feedback-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.customer-feedback-section .customer-feedback .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}
.customer-feedback-section .customer-feedback .swiper-slide .package {
  border: 1px solid rgba(52, 47, 47, 0.5);
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
  padding: 12px;
  border-radius: 16px;
  background-color: #FFFFFF;
  width: 390px;
}
.customer-feedback-section .customer-feedback .swiper-slide .package:not(:last-child) {
  margin-bottom: 16px;
}
.customer-feedback-section .customer-feedback .swiper-slide .package h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section {
  position: relative;
  overflow: hidden;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section .image {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section .image img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section .image::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section .image .slider-controls {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 30px 30px 10px;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section .image .swiper {
  width: 360px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .customer-feedback-section .customer-feedback .swiper-slide .package .image-section .image .swiper {
    width: auto;
  }
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section:hover .image img {
  scale: 1.1;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section:hover .image .swiper-slide img {
  scale: 1;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section:hover .image .swiper-slide-active img {
  scale: 1.1;
}
.customer-feedback-section .customer-feedback .swiper-slide .package .image-section:hover .image::after {
  height: 250%;
  transition: all 0.6s linear;
  background-color: transparent;
}
@media (max-width: 575px) {
  .customer-feedback-section .customer-feedback .swiper-slide .package {
    width: 360px;
  }
  .customer-feedback-section .customer-feedback .swiper-slide .package h6 {
    font-size: 16px;
    line-height: 18px;
  }
  .customer-feedback-section .customer-feedback .swiper-slide .package .content-section img {
    width: 20px;
  }
  .customer-feedback-section .customer-feedback .swiper-slide .package p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .customer-feedback-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.why-us-accordion .accordion .accordion-item {
  border-radius: 16px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(52, 47, 47, 0.5);
  box-shadow: 2px 4px 40px 0px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
  .why-us-accordion .accordion .accordion-item {
    padding: 15px;
  }
}
.why-us-accordion .accordion .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .why-us-accordion .accordion .accordion-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.why-us-accordion .accordion .accordion-item .accordion-header .accordion-button {
  padding: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0D0B0B;
}
@media (max-width: 575px) {
  .why-us-accordion .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.why-us-accordion .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.why-us-accordion .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #FFFFFF;
  box-shadow: none;
}
.why-us-accordion .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .why-us-accordion .accordion .accordion-item .accordion-body {
    margin-top: 10px;
    padding-top: 15px;
    font-size: 14px;
  }
}

.favourite-list-section .favourite-list-table {
  width: 100%;
  position: relative;
}
.favourite-list-section .favourite-list-table .table-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.favourite-list-section .favourite-list-table .table-container table {
  border-collapse: collapse;
}
.favourite-list-section .favourite-list-table .table-container table thead .btn-row {
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 0%;
  transform: translateY(-50%);
}
.favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn {
  position: absolute;
  top: 120px;
  background: #FFFFFF;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
  color: #FFFFFF;
  border: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn.prev {
  left: 330px;
}
.favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn.next {
  right: -20px;
}
@media (max-width: 1199.8px) {
  .favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn {
    top: 85px;
  }
  .favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn.prev {
    left: 240px;
  }
  .favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn.next {
    right: -20px;
  }
}
@media (max-width: 575px) {
  .favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn {
    top: 85px;
  }
  .favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn.prev {
    left: 140px;
  }
  .favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn.next {
    right: -20px;
  }
}
@media (max-width: 400px) {
  .favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn {
    top: 70px;
  }
  .favourite-list-section .favourite-list-table .table-container table thead .btn-row .slider-btn.next {
    right: -10px;
  }
}
.favourite-list-section .favourite-list-table .table-container table thead th .tour-detail {
  position: relative;
}
.favourite-list-section .favourite-list-table .table-container table thead th .tour-detail .tour-image {
  aspect-ratio: 16/9;
  width: auto;
  height: 220px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.favourite-list-section .favourite-list-table .table-container table thead th .tour-detail h6 {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 575px) {
  .favourite-list-section .favourite-list-table .table-container table thead th .tour-detail h6 {
    font-size: 14px;
  }
}
.favourite-list-section .favourite-list-table .table-container table thead th .tour-detail .like-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
  padding: 15px;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
}
@media (max-width: 767.8px) {
  .favourite-list-section .favourite-list-table .table-container table thead th .tour-detail .like-btn {
    padding: 10px;
    left: 10px;
    right: unset;
  }
  .favourite-list-section .favourite-list-table .table-container table thead th .tour-detail .like-btn img {
    width: 16px;
  }
}
@media (max-width: 1199.8px) {
  .favourite-list-section .favourite-list-table .table-container table thead th .tour-detail .tour-image {
    height: 150px;
  }
}
@media (max-width: 400px) {
  .favourite-list-section .favourite-list-table .table-container table thead th .tour-detail .tour-image {
    height: 130px;
  }
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td:first-child {
  border-radius: 8px 0px 0px 8px;
  font-weight: 700;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td:last-child {
  border-radius: 0px 8px 8px 0px;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td .travel-agent p {
  margin-bottom: 10px;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td .travel-agent img {
  max-width: 82px;
  max-height: 45px;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td .review {
  display: flex;
  align-items: center;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td .review p {
  margin-bottom: 0;
  margin-left: 5px;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td .tags-with-dot p {
  max-height: unset;
  white-space: unset;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td .pricing h6 {
  color: #EA530E;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .favourite-list-section .favourite-list-table .table-container table tbody tr td .pricing h6 {
    font-size: 16px;
  }
}
.favourite-list-section .favourite-list-table .table-container table tbody tr td .pricing button {
  font-weight: 500;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr:nth-child(even) {
  background-color: #EEEEEE;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr:nth-child(even) td {
  background-color: #EEEEEE;
}
.favourite-list-section .favourite-list-table .table-container table tbody tr:nth-child(odd) td {
  background-color: #FFFFFF;
}
.favourite-list-section .favourite-list-table .table-container table th,
.favourite-list-section .favourite-list-table .table-container table td {
  padding: 10px;
  min-width: 340px;
  width: 340px;
  max-width: 340px;
  vertical-align: top;
}
.favourite-list-section .favourite-list-table .table-container table th.fixed-column,
.favourite-list-section .favourite-list-table .table-container table td.fixed-column {
  position: sticky;
  left: 0;
  z-index: 10;
}
@media (max-width: 575px) {
  .favourite-list-section .favourite-list-table .table-container table th.fixed-column,
  .favourite-list-section .favourite-list-table .table-container table td.fixed-column {
    min-width: 150px;
    width: 150px;
    max-width: 150px;
  }
}
@media (max-width: 1199.8px) {
  .favourite-list-section .favourite-list-table .table-container table th,
  .favourite-list-section .favourite-list-table .table-container table td {
    min-width: 250px;
    width: 250px;
    max-width: 250px;
  }
}
@media (max-width: 575px) {
  .favourite-list-section .favourite-list-table .table-container table th,
  .favourite-list-section .favourite-list-table .table-container table td {
    min-width: 210px;
    width: 210px;
    max-width: 210px;
    font-size: 12px;
  }
}

.top-links-section {
  margin-top: 80px;
}
.top-links-section .main-item {
  border: 1px solid rgba(52, 47, 47, 0.5);
  padding: 20px 20px 0px;
  border-radius: 16px;
  height: 100%;
}
.top-links-section .main-item h6 {
  font-size: 20px;
  font-weight: 700;
  color: #EA530E;
  margin-bottom: 20px;
}
.top-links-section .main-item ul {
  margin-bottom: 0px;
  padding-left: 0;
}
.top-links-section .main-item ul li {
  list-style: none;
  margin-bottom: 20px;
}
.top-links-section .main-item ul li a {
  text-decoration: none;
  color: #0D0B0B;
}

.contact-hero-section {
  height: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .contact-hero-section {
    height: 200px;
  }
}
.contact-hero-section .image-section {
  display: contents;
}
.contact-hero-section .image-section img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-hero-section .content-section {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(13, 11, 11, 0.4);
}
.contact-hero-section .content-section h2 {
  color: #FFFFFF;
}

.contact-form-section {
  margin-top: 50px;
}
.contact-form-section .detail-section {
  padding: 30px;
  box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(52, 47, 47, 0.5);
  border-radius: 16px;
}
.contact-form-section .detail-section .item {
  display: flex;
}
.contact-form-section .detail-section .item:not(:last-child) {
  margin-bottom: 30px;
}
.contact-form-section .detail-section .item:last-child {
  margin-bottom: 50px;
}
.contact-form-section .detail-section .item .icon {
  min-height: 44px;
  min-width: 44px;
  margin-right: 10px;
}
.contact-form-section .detail-section .item span {
  font-weight: 700;
}
.contact-form-section .detail-section .item p {
  color: #959494;
  margin-bottom: 0;
}
.contact-form-section .detail-section .item a {
  margin-top: 10px;
  text-decoration: none;
  color: #EA530E;
  display: block;
}
@media (max-width: 575px) {
  .contact-form-section {
    margin-top: 30px;
  }
  .contact-form-section .detail-section {
    padding: 15px;
  }
  .contact-form-section .detail-section .item:not(:last-child) {
    margin-bottom: 15px;
  }
  .contact-form-section .detail-section .item:last-child {
    margin-bottom: 20px;
  }
  .contact-form-section .detail-section .item .icon {
    min-height: 30px;
    min-width: 30px;
  }
  .contact-form-section .detail-section .item p {
    font-size: 14px;
  }
  .contact-form-section .detail-section .item a {
    font-size: 14px;
    margin-top: 5px;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #342F2F;
  color: #fff;
  padding: 16px;
  text-align: center;
  font-family: sans-serif;
  z-index: 9999;
  display: none;
}
#cookie-banner button {
  background-color: #EA530E;
  color: white;
  border: none;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
}
#cookie-banner button:hover {
  background-color: #EA530E;
}

.sticky-back-btn {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  z-index: 9999;
  border-radius: 50px;
}
.sticky-back-btn a {
  padding: 0.6rem 0.8rem;
  background-color: rgba(234, 83, 14, 0.1);
  border: 1px solid #EA530E;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0D0B0B;
  border-radius: 50px;
  transition: 0.4s;
  font-size: 14px;
}
@media (max-width: 575px) {
  .sticky-back-btn a {
    font-size: 12px;
  }
}
.sticky-back-btn a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sticky-back-btn a:hover {
  background-color: #ea530e;
  color: #FFFFFF;
}

.back-to-top-button {
  position: fixed;
  bottom: -100px;
  right: 30px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background-color: #FFFFFF;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.24);
  transition: 0.2s;
  background-color: #FFFFFF;
  border: 1px solid #EA530E;
  padding: 0;
}
.back-to-top-button.active {
  bottom: 30px;
  transition: 0.2s;
}
.back-to-top-button .inner-div {
  background-color: rgba(234, 83, 14, 0.1);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top-button img {
  width: 22px;
}
@media (max-width: 575px) {
  .back-to-top-button {
    height: 35px;
    width: 35px;
    right: 1rem;
  }
  .back-to-top-button.active {
    bottom: 1rem;
  }
}

@media (min-width: 576px) {
  .border-sm-0 {
    border: 0 !important;
  }
}
.entry-modal .modal-content {
  background-color: transparent;
  border: 0;
  border-radius: 0;
}
.entry-modal .modal-content .modal-body {
  padding: 0;
}
.entry-modal .modal-content .field-image {
  width: calc(100% + 2rem);
  height: calc(100% - 40px);
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 991.8px) {
  .entry-modal .modal-content .field-image {
    display: none;
  }
}
.entry-modal .modal-content .field-image .entry-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry-modal .modal-content .field-area {
  background-color: #FFFFFF;
  padding: 4rem 2rem;
  border-radius: 0.8rem;
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991.8px) {
  .entry-modal .modal-content .field-area {
    min-height: unset;
  }
}
.entry-modal .modal-content .field-area .modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.entry-modal .modal-content .field-area .link {
  color: #EA530E;
  text-decoration: none;
  font-weight: 600;
}

.agent-entry-bg {
  height: calc(100vh - 56px);
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
@media (max-width: 991.8px) {
  .agent-entry-bg {
    height: calc(40vh - 56px);
    border-radius: 10px;
  }
}
.agent-entry-bg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.link-primary {
  color: #EA530E !important;
  text-decoration: none;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */