@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #006B92;
  --secondary-color: #FFD600;
  --white-color: #FFFFFF;
  --black-color: #353535;
  --black-color-2: #000000;
  --black-color-3: #727272;
  --white-color-2: #D5F4FF;
}

.header-main {
  position: relative;
  z-index: 99999;
  height: 69px;
}
.header-main .topbar {
  padding: 8px 0px 28px;
  background-color: var(--black-color);
}
.header-main .topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-main .topbar .left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-main .topbar .left a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.header-main .topbar .left a:hover {
  color: var(--secondary-color);
}
.header-main .topbar .left a:hover .icon-top {
  background-color: var(--secondary-color);
}
.header-main .topbar .left a .icon-top {
  height: 33px;
  width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.header-main .topbar .left a .icon-top svg {
  stroke: var(--black-color);
  height: 19px;
  width: 19px;
}
.header-main .topbar .right .language select {
  cursor: pointer;
  min-width: 92px;
  background-color: transparent;
  color: var(--white-color);
  outline: none;
  border: none;
}
.header-main .topbar .right .language select option {
  color: var(--black-color);
}
@media (max-width: 575px) {
  .header-main .topbar {
    display: none;
  }
  .header-main .topbar .container {
    gap: 12px;
    justify-content: center;
  }
  .header-main .topbar .container .left {
    flex-wrap: wrap;
    gap: 12px;
  }
  .header-main .topbar .container .right {
    display: none;
  }
}
.header-main header {
  top: 100%;
  transform: translateY(-20px);
  left: 0;
  right: 0;
}
.header-main header .inner {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-main header .inner .logo img {
  max-height: 58px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-main header .inner .menu nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-main header .inner .menu nav ul li {
  position: relative;
}
.header-main header .inner .menu nav ul li a {
  color: var(--black-color);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
.header-main header .inner .menu nav ul li a:hover {
  color: var(--primary-color);
}
.header-main header .inner .menu nav ul li .sub-menu-inner {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 12px;
  align-items: start;
}
.header-main header .inner .menu nav ul li:hover .sub-menu-inner {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main header .inner .menu nav ul li.active a {
  color: var(--primary-color);
}
@media (max-width: 1199px) {
  .header-main header .inner .menu {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-main header .main-btn .button {
    display: none;
  }
  .header-main header .main-btn #menu-btn-toggle {
    height: 42px;
    width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--primary-color);
    border-radius: 50px;
  }
  .header-main header .main-btn #menu-btn-toggle .icon {
    stroke: var(--white-color);
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 575px) {
  .header-main {
    height: 100%;
  }
  .header-main header {
    transform: translateY(0px);
  }
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
}

.menu-overlay.active {
  display: block;
}

.menu-mobile {
  position: fixed;
  top: 0px;
  right: -280px;
  z-index: 9999999;
  background-color: var(--white-color);
  padding: 24px;
  height: 100%;
  width: 280px;
  transition: all 0.3s ease-in-out;
}
.menu-mobile nav {
  height: 100%;
  overflow: scroll;
  padding-bottom: 60px;
}
.menu-mobile nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-mobile nav ul li {
  width: 100%;
}
.menu-mobile nav ul li a {
  color: var(--black-color);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-mobile nav ul li a:hover {
  color: var(--primary-color);
}
.menu-mobile nav ul li .sub-menu-inner {
  display: none;
  transition: all 0.3s ease-in-out;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 12px;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}
.menu-mobile nav ul li.active a {
  color: var(--primary-color);
}
.menu-mobile nav ul li.active .sub-menu-inner {
  display: flex;
}
.menu-mobile nav ul li.active .sub-menu-inner li a {
  color: var(--black-color);
}
.menu-mobile nav ul li.active .sub-menu-inner li a:hover {
  color: var(--primary-color);
}

#menu-mobile.active {
  right: 0;
}

.close button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.close button .icon {
  stroke: var(--black-color);
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 733px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.hero-slide .nt-hero-slide .content {
  position: relative;
}
.hero-slide .nt-hero-slide .content .title {
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.hero-slide .nt-hero-slide .content h1 {
  margin-bottom: 16px;
  color: var(--white-color);
}
.hero-slide .nt-hero-slide .content p {
  margin-bottom: 48px;
  color: var(--white-color);
}
.hero-slide .nt-hero-slide .content p b {
  color: var(--secondary-color);
}
.hero-slide .swiper-pagination {
  bottom: 24px;
}
.hero-slide .swiper-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background-color: var(--white-color);
  border-radius: 50px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.hero-slide .swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
}
.hero-slide .nt-design-1 {
  position: absolute;
  top: 62px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-1 3s ease-in-out infinite;
}
.hero-slide .nt-design-1 svg {
  transition: transform 0.1s linear;
  transform-origin: center;
}
@keyframes float-1 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
.hero-slide .nt-design-2 {
  position: absolute;
  top: 107px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-2 3s ease-in-out infinite;
}
.hero-slide .nt-design-2 svg {
  transition: transform 0.1s linear;
  transform-origin: center;
}
@keyframes float-2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
.hero-slide .nt-design-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-3 3s ease-in-out infinite;
}
.hero-slide .nt-design-3 svg {
  transition: transform 0.1s linear;
  transform-origin: center;
}
@keyframes float-3 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .hero-slide {
    padding: 84px 0px;
  }
}
@media (max-width: 767px) {
  .hero-slide .nt-design-2 {
    top: 50%;
  }
}
@media (max-width: 575px) {
  .hero-slide {
    padding: 24px 0px 48px;
  }
}

.about-us {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
.about-us .content .title {
  color: var(--primary-color);
}
.about-us .content h1 {
  color: var(--black-color);
}
.about-us .content p {
  color: var(--black-color-3);
}
.about-us .content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.about-us .content ul li {
  color: var(--primary-color);
  padding-left: 12px;
  position: relative;
  width: 48%;
}
.about-us .content ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: var(--primary-color);
  opacity: 0.3;
}
.about-us .content ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: var(--primary-color);
  opacity: 1;
}
@media (max-width: 1199px) {
  .about-us .content ul li {
    width: 100%;
  }
}

.director {
  background-color: var(--white-color-2);
  overflow-x: hidden;
}
.director .content h5 p {
  color: var(--black-color);
    font-size: 20px;
    font-weight: 700;
}
.director .content h5 span {
  color: var(--primary-color);
}
.director .content .director-name {
  font-family: "Dancing Script", sans-serif !important;
  font-size: 54px;
  color: var(--black-color);
}
.director .content .director-position {
  color: var(--white-color);
  padding: 16px 24px;
  background-color: var(--black-color);
  border-left: 4px solid var(--primary-color);
  display: inline-block;
}
.director .image {
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.director .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--black-color);
}
.director .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  position: relative;
}

.destination {
  overflow: hidden;
}
.destination .top .title {
  color: var(--primary-color);
}
.destination .box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}
.destination .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}
.destination .box:hover img {
  transform: scale(1.03);
}
.destination .box img {
  width: 100%;
  height: 216px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.destination .box .content {
  z-index: 1;
}
.destination .box .content h4 {
  color: var(--white-color);
}
.destination .box .content .btn-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.destination .box .content .btn-icon svg {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.destination .box .content .btn-icon:hover {
  background-color: var(--secondary-color);
}
.destination .box .content .btn-icon:hover svg {
  color: var(--primary-color);
  transform: rotate(-45deg);
}

.what-we-offer {
  overflow-x: hidden;
}
.what-we-offer .top {
  text-align: center;
}
.what-we-offer .top .title {
  color: var(--primary-color);
}
.what-we-offer .top h2 {
  color: var(--black-color);
}
.what-we-offer .content .box {
  border: 1px solid var(--black-color);
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 10px;
}
.what-we-offer .content .box:last-child {
  margin-bottom: 0;
}
.what-we-offer .content .box h4 {
  color: var(--black-color);
  margin-bottom: 8px;
}
.what-we-offer .content .box ul {
  padding-left: 24px;
}
.what-we-offer .content .box ul li {
  color: var(--black-color-3);
  list-style: disc;
  margin-bottom: 4px;
}
.what-we-offer .content .box ul li:last-child {
  margin-bottom: 0;
}
.what-we-offer .content .box ul li::marker {
  color: var(--black-color-3);
  font-size: 8px;
}

.popular-travels {
  padding: 0px 10px;
  overflow-x: hidden;
}
.popular-travels .inner {
  background-color: var(--primary-color);
  border-radius: 20px;
  overflow: hidden;
}
.popular-travels .inner .top {
  text-align: center;
}
.popular-travels .inner .top .title {
  color: var(--secondary-color);
}
.popular-travels .inner .top h2 {
  color: var(--white-color);
}
.popular-travels .inner .design-1 {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
}
.popular-travels .inner .design-1 svg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-travels .inner .design-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.popular-travels .inner .design-2 svg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-travels .inner .design-3 {
  position: absolute;
  top: 47px;
  right: 0;
  animation: float-2 3s ease-in-out infinite;
}
.popular-travels .inner .design-3 img {
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-travels .inner .design-4 {
  position: absolute;
  left: 231px;
  bottom: 0;
  animation: float-1 3s ease-in-out infinite;
}
.popular-travels .inner .design-4 img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .popular-travels .inner .design-4 {
    left: 0;
  }
}
.popular-travels .inner .popular-slide {
  padding-bottom: 80px;
}
.popular-travels .inner .popular-slide .box {
  background-color: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
}
.popular-travels .inner .popular-slide .box:hover .image img {
  transform: scale(1.03);
}
.popular-travels .inner .popular-slide .box .image {
  position: relative;
  overflow: hidden;
}
.popular-travels .inner .popular-slide .box .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}
.popular-travels .inner .popular-slide .box .image img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.popular-travels .inner .popular-slide .box .image .days {
  position: absolute;
  left: 0px;
  width: 100%;
  padding: 8px 16px;
  text-align: center;
  bottom: 0px;
  z-index: 1;
}
.popular-travels .inner .popular-slide .box .image .days div {
  background-color: rgba(255, 255, 255, 0.1254901961);
  padding: 8px;
  border-radius: 50px;
  color: var(--white-color);
}
.popular-travels .inner .popular-slide .box .content {
  padding: 16px;
}
.popular-travels .inner .popular-slide .box .content .review .font-14, .popular-travels .inner .popular-slide .box .content .review .header-main .topbar .left a, .header-main .topbar .left .popular-travels .inner .popular-slide .box .content .review a, .popular-travels .inner .popular-slide .box .content .review .header-main .topbar .right .language select, .header-main .topbar .right .language .popular-travels .inner .popular-slide .box .content .review select, .popular-travels .inner .popular-slide .box .about-us .content .review ul li, .about-us .popular-travels .inner .popular-slide .box .content .review ul li, .popular-travels .inner .popular-slide .box .about-us .content ul .review li, .about-us .popular-travels .inner .popular-slide .box .content ul .review li, .popular-travels .inner .popular-slide .box .what-we-offer .content .review .box ul li, .what-we-offer .popular-travels .inner .popular-slide .box .content .review .box ul li, .popular-travels .inner .popular-slide .box .what-we-offer .content .box ul .review li, .what-we-offer .popular-travels .inner .popular-slide .box .content .box ul .review li {
  color: var(--black-color);
}
.popular-travels .inner .popular-slide .box .content h5 {
  color: var(--primary-color);
  margin-bottom: 4px;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.popular-travels .inner .popular-slide .box .content .location {
  display: flex;
  align-items: center;
  color: var(--black-color-3);
  margin-bottom: 8px;
}
.popular-travels .inner .popular-slide .box .content .location .font-14, .popular-travels .inner .popular-slide .box .content .location .header-main .topbar .left a, .header-main .topbar .left .popular-travels .inner .popular-slide .box .content .location a, .popular-travels .inner .popular-slide .box .content .location .header-main .topbar .right .language select, .header-main .topbar .right .language .popular-travels .inner .popular-slide .box .content .location select, .popular-travels .inner .popular-slide .box .about-us .content .location ul li, .about-us .popular-travels .inner .popular-slide .box .content .location ul li, .popular-travels .inner .popular-slide .box .about-us .content ul .location li, .about-us .popular-travels .inner .popular-slide .box .content ul .location li, .popular-travels .inner .popular-slide .box .what-we-offer .content .location .box ul li, .what-we-offer .popular-travels .inner .popular-slide .box .content .location .box ul li, .popular-travels .inner .popular-slide .box .what-we-offer .content .box ul .location li, .what-we-offer .popular-travels .inner .popular-slide .box .content .box ul .location li {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.popular-travels .inner .popular-slide .box .content .price {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.popular-travels .inner .popular-slide .box .content .price p {
  color: var(--black-color-3);
  line-height: 1;
}
.popular-travels .inner .popular-slide .box .content .price h6, 
.popular-travels .inner .popular-slide .box .content .price .button, 
.popular-travels .inner .popular-slide .box .content .price .shop_categories .main_content form button#wpforms-submit-47, 
.shop_categories .main_content form .popular-travels .inner .popular-slide .box .content .price button#wpforms-submit-47 {
  color: var(--black-color);
}
.popular-travels .inner .popular-slide .box .content .price span {
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 2px 6px;
  border-radius: 4px;
}
.popular-travels .inner .popular-slide .swiper-pagination {
  bottom: 24px;
}
.popular-travels .inner .popular-slide .swiper-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background-color: var(--white-color);
  border-radius: 50px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.popular-travels .inner .popular-slide .swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
  background-color: var(--secondary-color);
}

.loction {
  overflow: hidden;
}
.loction .content {
  border: 1px dashed var(--primary-color);
  padding: 16px;
  height: 100%;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
}
.loction .content h3 {
  color: var(--black-color);
  margin-bottom: 4px;
}
.loction .content p {
  color: var(--black-color-3);
}
.loction .image {
  border-radius: 20px;
  overflow: hidden;
}
.loction .image:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}
.loction .image img {
  width: 100%;
  height: 236px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.5);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.tour-guide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}
.tour-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.tour-guide .container {
  position: relative;
}
.tour-guide .container .content h2 {
  color: var(--white-color);
  margin-bottom: 16px;
}
.tour-guide .container .content h5 {
  color: var(--white-color);
  margin-bottom: 24px;
}
.tour-guide .container .content p {
  color: var(--white-color);
}
.tour-guide .container .box {
  border: 1px dashed var(--white-color);
  padding: 16px;
  text-align: center;
}
.tour-guide .container .box .icon {
  margin-bottom: 4px;
}
.tour-guide .container .box .icon svg {
  width: 76px;
  height: 76px;
  stroke: var(--white-color);
}
.tour-guide .container .box h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.tour-guide .container .box h1 span {
  color: var(--white-color);
}
.tour-guide .container .box h6,
.tour-guide .container .box .button,
.tour-guide .container .box .shop_categories .main_content form button#wpforms-submit-47, 
.shop_categories .main_content form .tour-guide .container .box button#wpforms-submit-47 {
  color: var(--white-color);
}

.why-china {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
}
.why-china::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.why-china .content .top .title {
  color: var(--secondary-color);
}
.why-china .content .top h2 {
  color: var(--white-color);
}
.why-china .content p {
  color: var(--white-color);
}
.why-china .bottom-animation {
  overflow: hidden;
}
.why-china .bottom-animation .image {
  height: 327px;
  background-repeat: repeat-x;
  background-size: contain;
  animation: cloudMove 60s linear 0s infinite;
}
@keyframes cloudMove {
  0% {
    background-position: 1920px 100%;
  }
  100% {
    background-position: 0px 100%;
  }
}
@media (max-width: 767px) {
  .why-china .bottom-animation .image {
    height: 150px;
  }
}
@media (max-width: 575px) {
  .why-china .bottom-animation .image {
    height: 70px;
  }
}

.cards {
  overflow-x: hidden;
}
.cards .content {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.cards .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.cards .content .inner {
  border: 1px dashed var(--white-color);
  height: 100%;
  position: relative;
  padding: 16px;
  border-radius: 20px;
  min-height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.cards .content .inner h3 {
  color: var(--white-color);
  margin-bottom: 4px;
}
.cards .content .inner p {
  color: var(--white-color);
}

.testimonials {
  overflow-x: hidden;
}
.testimonials .image img {
  border-radius: 20px;
}
.testimonials .content {
  height: 100%;
  border-radius: 20px;
  border: 1px dashed var(--primary-color);
  display: flex;
  align-items: center;
  padding: 20px;
}
.testimonials .content .testimonials-slide {
  padding-bottom: 60px;
}
.testimonials .content .testimonials-slide .inner .profile {
  height: 76px;
  width: 76px;
  background-color: var(--primary-color);
  padding: 5px;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials .content .testimonials-slide .inner .profile img {
  height: 100%;
  width: 100%;
  border: 4px solid var(--white-color);
  border-radius: 100px;
}
.testimonials .content .testimonials-slide .inner p {
  text-align: center;
}
.testimonials .content .testimonials-slide .inner h6, 
.testimonials .content .testimonials-slide .inner .button, 
.testimonials .content .testimonials-slide .inner .shop_categories .main_content form button#wpforms-submit-47, 
.shop_categories .main_content form .testimonials .content .testimonials-slide .inner button#wpforms-submit-47 {
  text-align: center;
}
.testimonials .content .testimonials-slide .inner .font-14, 
.testimonials .content .testimonials-slide .inner .header-main .topbar .left a, 
.header-main .topbar .left .testimonials .content .testimonials-slide .inner a, 
.testimonials .content .testimonials-slide .inner .header-main .topbar .right .language select, 
.header-main .topbar .right .language .testimonials .content .testimonials-slide .inner select, 
.testimonials .about-us .content .testimonials-slide .inner ul li, 
.about-us .testimonials .content .testimonials-slide .inner ul li, 
.testimonials .about-us .content ul .testimonials-slide .inner li, 
.about-us .testimonials .content ul .testimonials-slide .inner li, 
.testimonials .what-we-offer .content .testimonials-slide .inner .box ul li, 
.what-we-offer .testimonials .content .testimonials-slide .inner .box ul li, 
.testimonials .what-we-offer .content .box ul .testimonials-slide .inner li, 
.what-we-offer .testimonials .content .box ul .testimonials-slide .inner li {
  text-align: center;
}
.testimonials .content .swiper-pagination {
  bottom: 24px;
}
.testimonials .content .swiper-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 50px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.testimonials .content .swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
}

.blog {
  background-color: var(--white-color-2);
  overflow-x: hidden;
}
.blog .top .title {
  color: var(--primary-color);
}
.blog .top .right .swiper-button-prev {
  background-color: var(--primary-color);
  color: var(--white-color);
  height: 48px;
  width: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .top .right .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 600;
}
.blog .top .right .swiper-button-next {
  background-color: var(--primary-color);
  color: var(--white-color);
  height: 48px;
  width: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .top .right .swiper-button-next::after {
  font-size: 18px;
  font-weight: 600;
}
.blog .blog-slide .inner {
  border-radius: 20px;
  background-color: var(--white-color);
}
.blog .blog-slide .inner .image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.blog .blog-slide .inner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blog-slide .inner .image .date {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: var(--white-color);
  color: var(--primary-color);
  padding: 5px 24px;
  border-radius: 50px;
}
.blog .blog-slide .inner ul {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog .blog-slide .inner ul li {
  position: relative;
  padding-right: 12px;
  color: var(--primary-color);
}
.blog .blog-slide .inner ul li:after {
  content: ",";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 4px;
  border-radius: 50px;
  background-color: var(--primary-color);
}
.blog .blog-slide .inner ul li:last-child {
  padding-right: 0;
}
.blog .blog-slide .inner ul li:last-child:after {
  display: none;
}
.blog .blog-slide .inner h4 {
  color: var(--black-color);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog .blog-slide .inner p {
  color: var(--black-color);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog .blog-slide .inner a {
  color: var(--primary-color);
  margin-bottom: 0px;
}

.ready-for-your-next-adventure {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow-x: hidden;
  border-top: 1px solid var(--primary-color);
}
.ready-for-your-next-adventure .left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ready-for-your-next-adventure .left h2 {
  color: var(--primary-color);
}
.ready-for-your-next-adventure .left p {
  color: var(--primary-color);
}
.ready-for-your-next-adventure .right .image {
  height: 100%;
}
.ready-for-your-next-adventure .right .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .ready-for-your-next-adventure {
    grid-template-columns: 1fr;
  }
  .ready-for-your-next-adventure .left {
    padding: 40px;
    order: 1;
  }
  .ready-for-your-next-adventure .right {
    order: 0;
  }
}
@media (max-width: 575px) {
  .ready-for-your-next-adventure .left {
    padding: 12px;
  }
}

footer {
  overflow-x: hidden;
}
footer .inner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
footer .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
}
footer .inner .container {
  position: relative;
}
footer .inner .container .content a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px dashed var(--white-color);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
footer .inner .container .content a:last-child {
  margin-bottom: 0;
}
footer .inner .container .content a:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}
footer .inner .container .content a:hover .icon svg {
  stroke: var(--primary-color);
}
footer .inner .container .content a:hover h6, 
footer .inner .container .content a:hover .button, 
footer .inner .container .content a:hover .shop_categories .main_content form button#wpforms-submit-47, 
.shop_categories .main_content form footer .inner .container .content a:hover button#wpforms-submit-47 {
  color: var(--primary-color);
}
footer .inner .container .content a:hover p {
  color: var(--primary-color);
}
footer .inner .container .content a .icon svg {
  height: 54px;
  width: 54px;
  transition: all 0.3s ease-in-out;
  stroke: var(--white-color);
}
footer .inner .container .content a h6, 
footer .inner .container .content a .button, 
footer .inner .container .content a .shop_categories .main_content form button#wpforms-submit-47, 
.shop_categories .main_content form footer .inner .container .content a button#wpforms-submit-47 {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
footer .inner .container .content a p {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  footer .inner .container .content a {
    flex-wrap: wrap;
    gap: 16px;
  }
}
footer .inner .container .right-content .logo img {
  max-height: 84px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px 10px;
  background-color: var(--white-color);
  border-radius: 10px;
}
footer .inner .container .right-content p {
  color: var(--white-color);
}
footer .inner .container .right-content .follow-icon a {
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
footer .inner .container .right-content .follow-icon a svg {
  stroke: var(--primary-color);
}
footer .inner .container .right-content .follow-icon a:hover {
  background-color: var(--secondary-color);
}
footer .inner .container .right-content .follow-icon a:hover svg {
  stroke: var(--primary-color);
}
footer .inner .container .right-content h4 {
  color: var(--white-color);
}
footer .inner .container .right-content ul li a {
  color: var(--white-color);
  padding: 4px 16px;
  border: 1px dashed var(--white-color);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
footer .inner .container .right-content ul li a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
footer .copyright {
  background-color: var(--primary-color);
}
footer .copyright p {
  color: var(--white-color);
}

.inner-page-hero {
  min-height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 0px;
  display: flex;
  align-items: end;
  justify-content: start;
}
.inner-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.inner-page-hero .container {
  position: relative;
}
.inner-page-hero .container .content h1 {
  color: var(--white-color);
  margin-bottom: 20px;
}
.inner-page-hero .container .content ul {
  display: flex;
  align-items: center;
  justify-content: start;
}
.inner-page-hero .container .content ul li {
  color: var(--white-color);
  margin-right: 10px;
  padding-right: 18px;
  position: relative;
}
.inner-page-hero .container .content ul li::after {
  content: " / ";
  position: absolute;
  right: 0px;
}
.inner-page-hero .container .content ul li:last-child::after {
  display: none;
}
.inner-page-hero .container .content ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.inner-page-hero .container .content ul li a:hover {
  color: var(--secondary-color);
}

.inner-page-details {
  overflow-x: hidden;
}
.inner-page-details .title {
  color: var(--primary-color);
}
.inner-page-details .image {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.inner-page-details .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-page-details .content .content-inner {
  border: 1px dashed var(--primary-color);
  padding: 20px;
  height: 100%;
  border-radius: 10px;
}
.inner-page-details .content .content-inner h5 {
  color: var(--primary-color);
}

.destination-content-inner {
  overflow-x: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.destination-content-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.destination-content-inner .content {
  position: relative;
  padding: 40px;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed var(--white-color);
}
.destination-content-inner .content h4 {
  color: var(--white-color);
}
.destination-content-inner .content p {
  color: var(--white-color);
}
.destination-content-inner .content ul li {
  color: var(--white-color);
}

.destination-details {
  overflow-x: hidden;
}

.shop_categories .main_content form {
  padding: 20px;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  background-color: var(--white-color-2);
}
.shop_categories .main_content form .wpforms-field-row {
  max-width: 100%;
}
.shop_categories .main_content form input, .shop_categories .main_content form select, .shop_categories .main_content form textarea {
  max-width: 100% !important;
}
.shop_categories .main_content form button#wpforms-submit-47 {
  padding: 5px 24px 5px 24px !important;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: var(--white-color) !important;
  transition: all 0.3s ease-in-out;
}
.shop_categories .main_content form button#wpforms-submit-47:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.shop_categories .main_content form button#wpforms-submit-47:hover .svg_icon {
  background-color: var(--primary-color);
  transform: rotate(-45deg);
}
.shop_categories .main_content form button#wpforms-submit-47:hover .svg_icon svg {
  stroke: var(--secondary-color);
}

* {
  padding: 0px;
  margin: 0px;
  font-family: "Jost", sans-serif !important;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

h1, h2, h3, h4, h5, h6, .button, .shop_categories .main_content form button#wpforms-submit-47, p, span, a, button, ul, li, img, i, input, textarea, select, table, tr, td {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Jost", sans-serif !important;
  color: var(--black-color);
}

h1, .h1 {
  font-size: 48px;
  font-weight: 900;
}

h2, .h2 {
  font-size: 32px;
  font-weight: 900;
}

h3, .h3 {
  font-size: 28px;
  font-weight: 700;
}

h4, .h4 {
  font-size: 24px;
  font-weight: 700;
}

h5, .h5 {
  font-size: 20px;
  font-weight: 700;
}

h6, .button, .shop_categories .main_content form button#wpforms-submit-47, .h6, .director .content .director-position {
  font-size: 16px;
  font-weight: 700;
}

p, .p, .header-main header .inner .menu nav ul li a, .menu-mobile nav ul li a {
  font-size: 16px;
  font-weight: 400;
}

.font-14, .header-main .topbar .left a, .header-main .topbar .right .language select, .about-us .content ul li, .what-we-offer .content .box ul li {
  font-size: 14px;
  font-weight: 400;
}

.title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Dancing Script", sans-serif !important;
}

.button {
  padding: 5px 5px 5px 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.button:hover .svg_icon {
  background-color: var(--primary-color);
  transform: rotate(-45deg);
}
.button:hover .svg_icon svg {
  stroke: var(--secondary-color);
}
.button .svg_icon {
  height: 42px;
  width: 42px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.button .svg_icon svg {
  height: 24px;
  width: 24px;
  stroke: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.button.white {
  background-color: var(--white-color);
  color: var(--primary-color);
}
.button.white:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.button.white:hover .svg_icon {
  background-color: var(--primary-color);
}
.button.white:hover .svg_icon svg {
  stroke: var(--secondary-color);
}
.button.white .svg_icon {
  background-color: var(--primary-color);
}
.button.white .svg_icon svg {
  stroke: var(--white-color);
}

@media (max-width: 575px) {
  .py-60 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .mb-60 {
    margin-bottom: 24px;
  }
  .mt-60 {
    margin-top: 24px;
  }
  h1, .h1 {
    font-size: 38px;
    font-weight: 900;
  }
  h2, .h2 {
    font-size: 28px;
    font-weight: 900;
  }
  h3, .h3 {
    font-size: 24px;
    font-weight: 700;
  }
  h4, .h4 {
    font-size: 20px;
    font-weight: 700;
  }
}


/* Local CSS */
.destination-details-tour{
  background-color: var(--white-color-2);
}
.destination-details-tour .content .image{
  overflow: hidden;
  border-radius: 10px;
}
.destination-details-tour .content .image img{
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.destination-details-tour .content:hover .image img{
  transform: scale(1.03);
}
.destination-details-tour .content .inner{
  padding: 10px;
}
.destination-details-tour .content .inner h4{
  color: var(--primary-color);
  margin-bottom: 4px;
}
.destination-details-tour .content .inner p{
  color: var(--black-color-3);
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.destination-details-tour .accordion {
  width: 100%;
  margin: 20px auto;
  border-radius: 6px;

}
.destination-details-tour .accordion .accordion-item{
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.destination-details-tour .accordion-header {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.destination-details-tour .accordion-header .arrow {
  transition: transform 0.3s ease;
  color: var(--white-color);
  font-size: 20px;
}

.destination-details-tour .accordion-item.active .arrow {
  transform: rotate(180deg);
}

.destination-details-tour .accordion-content {
  overflow: hidden;
  background-color: #f9f9f9;
  transition: max-height 0.3s ease, padding 0.3s ease;
  height: 0px;
}

.destination-details-tour .accordion-item.active .accordion-content {
  padding: 15px;
  height: auto;
}
.destination-details-tour .accordion-content p{
  margin: 10px 0px;
}
.destination-details-tour .accordion-content ul{
  padding-left: 20px;
  margin-bottom: 20px;
}
.destination-details-tour .accordion-content ul li{
  list-style: disc;
}
.destination-details-tour .accordion-content .image{
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
   gap: 10px;
}
.destination-details-tour .accordion-content .image img{
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.call-to-action{
  background-color: var(--white-color-2);
  border-top: 1px solid var(--white-color);
}
.call-to-action .inner{
  text-align: center;
}
/* .contact-section{
  border-bottom: 1px solid var(--primary-color);
} */
.contact-section form input,
.contact-section form textarea{
  width: 100%;
  outline: none;
  padding: 10px 16px;
  border: 1px solid var(--black-color-3);
  border-radius: 4px;
}
.contact-section form input:focus,
.contact-section form textarea:focus{
  border-color: var(--primary-color);
}
.contact-section form textarea{
  margin-bottom: 10px;
  max-height: 118px;
}
.contact-section form input.btn{
  padding: 10px 16px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 4px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0px;
  border: 1px solid #ededed !important;
  font-weight: 300;
  padding: 10px;
  border-radius: 4px;
}
.contact-section form input.btn:hover{
  background-color: var(--black-color);
}

.blog-main-page{
  background-color: var(--white-color-2);
}
.blog-main-page .content{
    background-color: var(--white-color);
    border-radius: 10px;
    /* padding: 20px; */
}

.blog-main-page .content .image{
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.blog-main-page .content .image img{
    /* height: 300px; */
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
/* .blog-main-page .content:hover .image img{
    transform: scale(1.03);
} */
.blog-main-page .content .image .date{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 50px;
}

.blog-main-page .content .content-inner h4{
    color: var(--black-color);
    margin-bottom: 20px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.blog-main-page .content .content-inner p{
  color: var(--black-color);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.blog-main-page .content .content-inner ul{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 20px;
}
.blog-main-page .content .content-inner ul li{
    color: var(--primary-color);
    margin-right: 10px;
    padding-right: 18px;
    position: relative;
}
.blog-main-page .content .content-inner ul li::after{
    content: ",";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 4px;
    border-radius: 50px;
    background-color: var(--primary-color);
}
.blog-main-page .content .content-inner ul li:last-child{
    padding-right: 0;
}
.blog-main-page .content .content-inner ul li:last-child::after{
    display: none;
}
.blog-main-page .content .content-inner a{
    color: var(--primary-color);
}

.blog-main-page .right-blog-tags .box{
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #f9f9f9;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.blog-main-page .right-blog-tags .box h5{
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-main-page .right-blog-tags .box ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-main-page .right-blog-tags .box ul li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 500;
}
.blog-main-page .right-blog-tags .box ul li span{
    color: var(--primary-color);
}
.blog-main-page .right-blog-tags .box ul.tags{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-main-page .right-blog-tags .box ul.tags li{
  margin-bottom: 0px;
}
.blog-main-page .right-blog-tags .box ul.tags li a{
    padding: 5px 16px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}
.blog-main-page .right-blog-tags .box ul.tags li a:hover{
    background-color: var(--black-color);
}
.blog-main-page .right-blog-tags .box form{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white-color);
  padding: 4px;
  border-radius: 50px;
  border: 1px solid #727272;
  overflow: hidden;
}
.blog-main-page .right-blog-tags .box form input{
    width: 100%;
    outline: none;
    border: none;
    padding: 10px;
}
.blog-main-page .right-blog-tags .box form button{
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    min-height: 48px;
    min-width: 48px;
    transition: all 0.3s ease-in-out;
}
.blog-main-page .right-blog-tags .box form button:hover{
    background-color: var(--black-color);
}

.destination-details .main_content{
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.destination-details .main_content p{
  color: var(--black-color-3);
  margin-bottom: 10px;
}
.destination-details .main_content ul {
  padding-left: 20px;
}
.destination-details .main_content ul li{
  list-style: disc;
}
.destination-details .main_content img{
  width: 100%;
  border-radius: 20px;
}
/* .destination-details{
  border-bottom: 1px solid var(--primary-color);
} */

.whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}
.whatsapp a{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease-in-out;
    outline: 1px solid var(--white-color);
    outline-offset: 4px;
}
.whatsapp a:hover{
    background-color: var(--black-color);
}