html {
  scroll-behavior: smooth;
}

html,
body {
  background: #fff;
}

html,
body,
button,
input,
select,
textarea {
  font-family: "Nunito Sans", serif;
}

body {
  font-optical-sizing: auto;
  color: #000;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  overflow-x: hidden;
}

.border-dark-10 {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-gray-hover:hover {
  background: rgba(0, 0, 0, 0.1);
}

.bg-dark-80-hover:hover {
  background: rgba(0, 0, 0, 0.8);
}
.bg-dark-80-hover:hover path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  fill: #FF6E39;
}

.cols-1h5-2 {
  grid-template-columns: 1.5fr 2fr;
}

.cols-2-1h2 {
  grid-template-columns: 2fr 1.2fr;
}

hr {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header nav li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header nav li a.active, .header nav li a:hover {
  font-weight: 800;
}

.follow {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 24px;
}
.follow a:hover svg circle,
.follow a:hover svg path {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.follow a:hover svg circle {
  fill: rgba(0, 0, 0, 0.8);
  fill-opacity: 1;
}
.follow a:hover svg path {
  fill: #fff;
  fill-opacity: 0.8;
}

.text-dark-hover:hover {
  color: #000;
}

.btn {
  height: 56px;
  padding: 0px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.hero-wrap {
  height: calc(100vh - 110px);
  max-height: 800px;
  min-height: 402px;
  padding: 24px 24px 24px 96px;
}
.hero-wrap img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: -o-linear-gradient(right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.hero-wrap .hero-cols {
  min-height: inherit;
  grid-template-columns: 1fr 540px;
}
.hero-wrap .swiper-hero {
  height: 100vh;
}
.hero-wrap .swiper-cards {
  max-width: 100%;
}
.hero-wrap .country-label {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 8px 12px;
}
.hero-wrap .city-card {
  border: 40px solid #fff;
}
.hero-wrap .city-card .swiper-pagination {
  top: -32px;
}
.hero-wrap .city-card .swiper-pagination-bullet-active {
  background: #000;
}
.hero-wrap .city-card .price {
  padding: 9.5px 16px;
}
.hero-wrap .city-card .swiper-slide {
  padding-bottom: 32px;
}
.hero-wrap .city-card .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.hero-wrap .city-card .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.country-label {
  padding: 6px 12px;
  bottom: 24px;
  left: 24px;
}

.ceo-box {
  border: 1px dashed rgba(0, 0, 0, 0.1);
}
.ceo-box .ceo-info {
  padding: 12px 48px 12px 12px;
  border-radius: 46px;
}

.faq-section .faq-bg {
  margin: 0 -8%;
  min-width: 116%;
  height: 280px;
}
.faq-section .faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-section .faq-item .faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}
.faq-section .faq-item .faq-title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.faq-section .faq-item .open-icon {
  width: 24px;
  height: 24px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.faq-section .faq-item:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05);
}
.faq-section .faq-item:hover:not(.active) .faq-title {
  font-weight: 600;
}
.faq-section .faq-item.active .faq-title {
  font-weight: 600;
}
.faq-section .faq-item.active .faq-answer {
  height: auto;
  padding: 0 0 24px;
  margin-top: -16px;
  visibility: visible;
  opacity: 1;
}
.faq-section .faq-item.active .open-icon {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.travel-wrap {
  background: rgb(242, 170, 77) url(../images/travel-bg.webp) no-repeat top right;
  background-size: 80%;
}

.travel-country .tc-gallery:nth-child(1) .tc-poster:nth-child(1) {
  height: calc(40% - 12px);
}
.travel-country .tc-gallery:nth-child(1) .tc-poster:nth-child(2) {
  height: 60%;
}
.travel-country .tc-gallery:nth-child(2) .tc-poster:nth-child(1) {
  height: calc(30% - 12px);
}
.travel-country .tc-gallery:nth-child(2) .tc-poster:nth-child(2) {
  height: 70%;
}

.map-link {
  bottom: 24px;
  left: 24px;
  right: 24px;
}

footer {
  padding: 48px 0;
}

@media (max-width: 1170px) {
  .hero-wrap .hero-cols {
    grid-template-columns: 1fr 420px;
  }
  .hero-wrap {
    padding: 24px 24px 24px 48px;
  }
}
@media (max-width: 980px) {
  .hero-wrap {
    height: calc(100vh - 84px);
  }
  .hero-wrap .hero-cols {
    grid-template-columns: 1fr;
  }
  .cols-1h5-2 {
    grid-template-columns: 1fr;
  }
  .cols-2-1h2 {
    grid-template-columns: 1fr 1fr;
  }
  .travel-country .tc-poster {
    width: 280px;
    height: 272px !important;
  }
}
@media (max-width: 768px) {
  .hero-wrap .hero-cols {
    grid-template-columns: 1fr;
  }
  .hero-wrap {
    padding: 24px;
  }
  footer {
    padding: 24px 0 48px;
  }
  .ceo-text {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .cols-2-1h2 {
    grid-template-columns: 1fr;
  }
  .map-bg {
    height: 351px;
  }
  .travel-wrap {
    min-height: 400px;
  }
  .faq-section .faq-bg {
    margin-top: -48px;
  }
  .faq-section .faq-bg img {
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 100%;
  }
  .partners {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .partners .partner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}