* {
  -webkt-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --brandColor: #232D6A;
  --textColorLight: #F0F5FF;
  --textColorDark: #1a1a1a;
  --accentDark: #232D6A;
  --accent: #D0212A;
  --border-color: #F4F4F7;
  --grey: #757575;
}

body {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  background-color: #fff;
  color: var(--textColorDark);
  margin: 0;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
 
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
::-webkit-scrollbar-thumb {
  background-color: #000;
}

.hide {
  opacity: 0;
  visibility: hidden;
}
.show {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.hide__desktop {
  display: none;
}

.lazy {
  display: block;
  border: none !important;
}
img {
  display: inline-block;
}

img:not([src]) {
  display: none;
  visibility: hidden;
}

.skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--brandColor);
}
.skeleton:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(85, 97, 165, 0) 0, rgba(85, 97, 165, 0.2) 20%, rgba(85, 97, 165, 0.5) 60%, rgba(85, 97, 165, 0));
  animation: shimmer 5s infinite;
  content: '';
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: "Montserrat", serif;
  color: #7E7E7E;
}
::-moz-placeholder { /* Firefox 19+ */
  font-family: "Montserrat", serif;
  color: #7E7E7E;
}
:-ms-input-placeholder { /* IE 10+ */
  font-family: "Montserrat", serif;
  color: #7E7E7E;
}
:-moz-placeholder { /* Firefox 18- */
  font-family: "Montserrat", serif;
  color: #7E7E7E;
}

p {
  margin: 0 0 16px;
}
a {
  color: var(--textColor);
}
a:hover {
  color: var(--accent);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 24px;
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}

.section__title {
  position: relative;
  font-size: 32px;
}
.section__title--center {
  text-align: center;
}

.page__title {
  position: relative;
  font-size: 48px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.page__title--center {
  text-align: center;
}

.container {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1680px) {
  .container {
    max-width: 1440px;
  }
}

.btn {
  display: inline-block;
  position: relative;
  min-width: 130px;
  padding: 14px 16px;
  background-color: var(--accentDark);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: var(--textColorLight);
  text-decoration: none;
  transition: all .2s ease-in-out;
  cursor: pointer;
  border-radius: 8px;
}
.btn:hover {
  color: var(--textColorLight);
  background-color: var(--accent);
  text-decoration: none;
  border-color: var(--accent);
}
.btn--small {
  min-width: unset;
  font-size: 12px;
  padding: 8px 12px;
}
.btn--large {
  text-transform: uppercase;
  min-width: 320px;
  padding: 24px;
  font-size: 16px;
}

.btn__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.btn__link:hover {
  text-decoration: none;
  color: var(--accent);
}

.btn--book {
  background: #fff;
  color: var(--accentDark);
  text-transform: uppercase;
  border: 1px solid var(--accentDark);
}
.btn--more {
  background: #fff;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--grey);
}

/*header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--textColorDark);
  font-weight: 700;
  text-transform: uppercase;
  padding: 24px;
  z-index: 9;
}
header.fixed {
  background: var(--textColorLight);
  color: var(--textColorDark);
}
.header__left {
  display: flex;
  align-items: center;
  gap: 40px;
}
header.fixed .header__right-top {
  display: none;
}
.logo__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.logo {

}
.logo img {
  display: block;
  width: auto;
  height: 64px;
}
/*header.fixed .logo__fixed img {
  height: 40px;
}*/
.phone__number {
  text-decoration: none;
}
header.fixed .phone__number {
  display: none;
}
.main__nav {

}
.main__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.main__nav ul li {
  position: relative;
}
.main__nav ul li:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}
.main__nav ul li a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--textColorDark);;
  text-decoration: none;
  transition: all .2s ease-in-out;
  cursor: pointer;
}
.main__nav ul li:hover > a,
.main__nav ul li.current-menu-item > a {
  color: var(--accent);
}
header.fixed .main__nav a {
  color: var(--textColorDark);
}
.main__nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: all .2s ease-in-out;
}
.main__nav ul li:hover > a:after,
.main__nav ul li.current-menu-item > a:after {
  width: 100%;
}
.sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 40px;
  left: 0;
  min-width: 160px;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 16px !important;
  background: rgba(255, 255, 255, 0.8);
  padding: 24px !important;
  transition: all .3s ease-in-out;
  transform: translateY(16px);
}
.sub-menu li a {
  white-space: nowrap;
}
.main__nav ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__right {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}
.header__right-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__right a {
  text-decoration: none;
}
.search__btn {
  height: 32px;
  cursor: pointer;
}
header.fixed svg path {
  fill: var(--textColorDark) !important;
}
.header__badge {
  width: 40px;
  height: 40px;
  background: var(--accentDark);
  border-radius: 100px;
}
.search__form {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  height: 64px;
  background: #fff;
  z-index: 1;
  transition: all .2s ease-in-out;
  transform: translateY(10px);
}

.search__form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

header.fixed .search__form svg path {
  fill: var(--textColorLight) !important;
}

.search__form > label {
  width: 100%;
  height: 100%;
  position: relative;
}

.search__field {
  width: 100%;
  height: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.search__submit {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 48px;
  height: 48px;
  background: var(--accentDark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.search__submit:hover {
  background-color: var(--brandColor);
}
.login__btn {
  position: relative;
  cursor: pointer;
}
.login__wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 32px;
  right: 0;
  width: 320px;
  padding: 24px;
  color: var(--textColorLight);
  background: rgb(21, 21, 21, 0.8);
  transition: all .3s ease-in-out;
  transform: translateY(16px);
}
.login__btn:hover .login__wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.login__wrapper .form__item label {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
}
.login__wrapper .form__item .btn {
  width: 160px;
  padding: 16px;
  border: none;
}
.login__wrapper a {
  display: block;
  margin-top: 16px;
  text-transform: capitalize;
}

.menu__btn {
  position: relative;
  display: none;
  width: 32px;
  height: 18px;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.menu__btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: var(--accentDark);
  opacity: 1;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
.menu__btn span:nth-child(even) {
  border-radius: 0 3px 3px 0;
  left: 50%;
}
.menu__btn span:nth-child(odd) {
  border-radius: 3px 0 0 3px;
  left:0px;
}
.menu__btn span:nth-child(1), .menu__btn span:nth-child(2) {
  top: 0px;
}
.menu__btn span:nth-child(3), .menu__btn span:nth-child(4) {
  top: 8px;
}
.menu__btn span:nth-child(5), .menu__btn span:nth-child(6) {
  top: 16px;
}
.menu__btn.active span:nth-child(1),.menu__btn.active span:nth-child(6) {
  transform: rotate(45deg);
}
.menu__btn.active span:nth-child(2),.menu__btn.active span:nth-child(5) {
  transform: rotate(-45deg);
}
.menu__btn.active span:nth-child(1) {
  left: 5px;
  top: 7px;
}
.menu__btn.active span:nth-child(2) {
  left: calc(50% - 1px);
  top: 7px;
}
.menu__btn.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.menu__btn.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.menu__btn.active span:nth-child(5) {
  left: 5px;
  top: 17px;
}
.menu__btn.active span:nth-child(6) {
  left: calc(50% - 1px);
  top: 17px;
}

/*default page*/
.default__page {
  margin: 80px 0;
}
.default__page .container {
  max-width: 960px;
}

/*masterhead*/
.masterhead {
  position: relative;
}
.masterhead:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.masterhead--small .big__slider,
.masterhead--small {
  height: 33vh;
}
.masterhead--small:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%)
} 
.masterhead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scroll__down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  cursor: pointer;
}
.big__slider {
  width: 100%;
  height: 100vh;
  position: relative;
}
.big__slider-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.big__slider .slick-list,
.big__slider .slick-track {
  height: 100%;
}
.big__slider-img {
  width: 100%;
  height: 100%;
  background: #071925;
}
.big__slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6 !important;
}
.big__slider-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big__slider-info {
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 0;
}
.big__slider-info .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.big__slider-item {
  position: relative;
}
.big__slider-title {
  position: absolute;
  top: 240px;
  width: 100%;
  z-index: 1;
}
.big__slider-item p {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
}
.masterhead__offers {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 0 0 16px 0;
  border-radius: 16px;
  box-shadow: 0 4px 4px rgba(21, 21, 21, .2);
}
.offers__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
}
.offers__tabs span {
  padding: 8px 0;
  cursor: pointer;
  border: 1px solid transparent;
}
.offers__tabs span:hover {
  border-bottom: 1px solid var(--grey);
}
.offers__tabs span.active {
  font-weight: bold;
  color: var(--accentDark);
  border-bottom: 1px solid var(--accentDark);
}
.offers__tab-container {
  display: none;
  padding: 0 8px;
  justify-content: center;
}
.offers__tab-container.active {
  display: flex;
}
.offer__item {
  position: relative;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  border-radius: 16px;
  text-align: center;
  transition: all .3s ease-in-out;
}
.offer__item:hover {
  background: #ececec;
}
.offer__item:after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 80%;
  background: #ececec;
}
.offer__item:last-child:after {
  display: none;
}
.offer__item-title {
  font-size: 20px;
  margin-bottom: 0px;
}
.offer__item-popular {
  font-size: 12px;
  line-height: 20px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: bold;
}
.offer__item-price-btn {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer__item-price {
  display: flex;
  flex-direction: column;
}
.offer__item-price span {
  font-size: 12px;
  line-height: 1;
}
.offer__item-price p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--accentDark);
  margin: 0;
}
.offer__item-btns {

}
.btn--experience {
  position: absolute;
  bottom: -16px;
  left: 50%;
  padding: 9px 24px;
  font-size: 14px;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.tripadvisor-counter {
  position: absolute;
  top: -75px;
  right: 0;
  width: 160px !important;
  height: auto !important;
  object-fit: unset !important;
}
.big__slider-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  margin-bottom: 80px;
}
.big__slider-desc p {
  margin: 0;
}
.home__desc-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: bold;
}
.home__desc-links span {
  cursor: pointer;
}
.home__desc-links a {
  text-decoration: none;
}

/*Offers Compare*/
.tours__compare {
  padding: 0 0 40px;
}
.tours__tab-container {
  display: none;
}
.tours__tab-container.active {
  display: block;
}
.tour__offers {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.tour__offer-item {
  position: relative;
  flex-grow: 1;
  max-width: calc(25% - 12px);
  font-size: 14px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all .3s ease-in-out;
}
.tour__offer-item:hover {
  background: #f5f5f5;
}
.tour__offer-item.tour__popular {
  border-top: 3px solid var(--accent);
}
.tour__offer-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  font-size: 12px;
  line-height: 1;
  padding: 10px 24px;
  color: var(--textColorLight);
  background: var(--accent);
  text-transform: uppercase;
  font-weight: bold;
  transform: translateX(-50%);
}
.tour__offer-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.tour__offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour__offer-info {
  height: calc(100% - 240px);
  display: flex;
  flex-direction: column;
}
.tour__offer-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 24px;
  text-align: center;
}
.tour__offer-title {
  font-size: 24px;
  margin: 0;
}
.tour__offer-price {

}
.tour__offer-price span {
  font-size: 16px;
}
.tour__offer-price p {
  font-weight: bold;
  color: var(--accentDark);
  font-size: 32px;
  margin: 0;
}
.tour__offer-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  flex: 1;
}
.tour__offer-data {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour__offer-data-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tour__offer-data-title img {
  width: 16px;
  height: 16px;
  display: block;
}
.tour__offer-data-title span {
  font-weight: bold;
  line-height: 1;
}
.tour__offer-data p {
  margin: 0;
}
.tour__offer-data ul {
  margin: 0;
}
.tour__offer-desc p {
  margin: 0;
}
.tour__offer-btns {
  display: flex;
  align-items: center;
  padding: 0 24px 24px;
  justify-content: center;
  gap: 16px;
}
.tour__offer-btns .btn{
  padding: 14px 13px;
}

/*difference*/
.difference {
  padding: 40px 0;
}
.difference__items {
  display: flex;
  gap: 24px;
}
.difference__item {
  flex: 0 0 calc((50% - 48px) / 3); /* 3 items share 50% minus 2 gaps */
  height: 420px;
  transition: all 0.3s ease;
  padding: 24px;
  background: #f5f5f5;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
}
.difference__item:hover {
  box-shadow: 0 4px 8px rgba(21, 21, 21, .15);
}
.difference__item.active {
  flex: 0 0 calc(50% - 24px);
  box-shadow: 0 4px 8px rgba(21, 21, 21, .15);
}
.difference__item-info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 16px;
  height: 100%;
}
.difference__item.active .difference__item-info {
  display: none;
}
.difference__item-img {
  width: 64px;
  height: 64px;
  display: block;
  margin-bottom: 8px;
}
.difference__item-title {
  font-size: 16px;
  margin: 0;
}
.difference__item-link {
  font-size: 14px;
  text-transform: uppercase;
}
.difference__item-details {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  height: 100%;
  font-size: 14px;
}
.difference__item.active .difference__item-details {
  display: flex;
}
.difference__item-details-title {
  font-size: 24px;
  margin: 0;
}
.difference__item-details-img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 128px;
  opacity: .2;
}
.difference__item-details p {
  margin: 0;
}

/*testimonials*/
.testimonials {
  position: relative;
  padding: 40px 0;
}
.testimonial__qote-img {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto 24px;
}
.testimonials__slider {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
.testimonial__item {

}
.testimonial__item p {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 24px;
}
.testimonial__name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8;
}
.testimonial__name img {
  height: 16px;
  width: auto;
}
.testimonial__name span {
  font-weight: 600;
}
.slick-arrow {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.prev__btn {

}
.next__btn {
  left: auto;
  right: 0;
}

/*social media*/
.social__media {
  padding: 40px 0;
}
.social__media-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.social__media-icons a img {
  width: 24px;
  height: 24px;
}

/*page offers*/
.page__offers {
  padding: 40px 0;
}

/*safety*/
.safety__page {
  padding: 40px 0;
}
.safety__wrapper {
  display: flex;
  flex-direction: column;
}
.safety__item {
  display: flex;
  align-items: center;
}
.safety__item-img {
  position: relative;
  width: 50%;
}
.safety__item:nth-child(even) .safety__item-img {
  order: 2;
}
.safety__item-img img {
  width: 100%;
  height: auto;
  min-height: 480px;
  object-fit: cover;
}
.safety__item-info {
  width: 50%;
  padding: 40px;
}
.safety__item-inner {
  max-width: 640px;
  margin: 0 auto;
}

/*tour details*/
.masterhead__info {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
}
.masterhead__info-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.masterhead__info-title {

}
.masterhead__info-title h1 {
  font-size: 40px;
  margin: 0 0 16px;
}
.masterhead__info-title p {
  font-size: 32px;
  margin: 0;
  font-weight: bold;
}
.masterhead__info-title span {
  font-size: 16px;
  font-style: italic;
  text-transform: uppercase;
}
.masterhead__info-data {
  display: flex;
  align-items: center;
  gap: 24px;
}
.masterhead__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.masterhead__info-item img {
  width: 24px;
  height: 24px;
}
.masterhead__info-item span {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}
.masterhead__info-left .btn {
  width: 160px;
  margin-top: 24px;
  padding: 14px 16px;
  font-size: 14px;
}

.tour__content {
  padding: 40px 0;
}
.single-helicopter-tours .big__slider {
  height: 70vh;
}
.single-helicopter-tours .big__slider:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%)
}
.tour__content .container {
  display: flex;
  gap: 80px;
}
.tour__content-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tour__title {
  font-size: 32px;
  margin: 0 0 16px;
}
.tour__subtitle {
  font-size: 24px;
}
.tour__data {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.tour__data-item {
  width: calc(33.333% - 20px);
}
.tour__data-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tour__data-title img {
  width: 16px;
  height: 16px;
}
.tour__data-title span {

}
.tour__data-item p {
  margin: 8px 0 0;
}

.tour__route h2 {
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.tour__departure {

}
.tour__departure h2 {
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tour__departure-desc {
  display: flex;
  gap: 24px;
}
.tour__departure-desc > div {
  width: 50%;
}
.tour__departure-desc iframe {
  width: 50%;
}

.tour__content-right {
  width: 50%;
}
.tour__route-map {
  width: 560px;
  height: auto;
  max-width: 100%;
  margin-left: auto;
}

/*grid items*/
.tour__wrapper {
  margin-bottom: 80px;
}
.grid__wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.grid__item {
  position: relative;
  width: calc(25% - 27px);
}
.tour__item {
  position: relative;
  width: calc(25% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  border: 1px solid var(--border-color);
}
.tour__item:hover {
  background: #f5f5f5;
}
.tour__item-img {
  width: 100%;
  height: 240px;
  display: block;
  margin: 0 0 16px;
  overflow: hidden;
}
.tour__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}
.tour__item:hover .tour__item-img img {
  transform: scale(1.2);
}
.tour__item-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.tour__item--popular {
  border: 2px solid var(--accent);
}
.tour__item-price-btn {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tour__item-price {
  display: flex;
  flex-direction: column;
}
.tour__item-price span {
  font-size: 12px;
  line-height: 1;
}
.tour__item-price p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--accentDark);
  margin: 0;
}
.tour__item-btns {

}

.tours__popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 640px;
  max-width: 90%;
  padding: 40px;
  background: var(--accentDark);
  color: var(--textColorLight);
  transform: translate(-50%, -50%);
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0,0.2);
}
.tours__popup-inner {
  text-align: center;
}
.tours__popup h2 {
  width: 80%;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.tours__popup-blocks {
  display: flex;
  justify-content: center;
}
.tours__popup-block {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tours__popup-block p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
} 
.tours__popup-block span {
  font-weight: bold;
  font-size: 12px;
}
.tours__popup-block .btn {
  color: var(--accentDark);
  background: var(--textColorLight);
}
.tours__popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/*experiences*/
.experiences {
  padding: 40px 0;
}
.experiences__wrapper {
  display: flex;
  gap: 80px;
}
.experiences__left {
  width: 50%;
}
.experiences__left h2 {

}
.experiences__left img {
  width: 420px;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

.experiences__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 50%;
}
.experience__tour-video {

}
.experience__tour-video video {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.experiences__gallery {
 
}
.experiences__gallery-inner {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.experiences__gallery img {
  width: calc(33.333% - 11px);
  height: 160px;
  object-fit: cover;
}

/*faq*/
.faq {
  margin: 80px 0;
}

.faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.faq__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__group-title {
  font-size: 24px;
}
.faq__group-item {
  cursor: pointer;
}
.faq__item-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  transition: all .2s ease-in-out;
}
.faq__group-item._active .faq__item-question,
.faq__group-item:hover .faq__item-question {
  background: var(--accentDark);
  color: var(--textColorLight);
}
.faq__item-question span {

}
.faq__group-item._active .faq__item-question svg path,
.faq__group-item:hover .faq__item-question svg path {
  fill: var(--textColorLight);
}
.faq__item-question svg {
  transition: all .3s ease-in-out;
}
.faq__group-item._active .faq__item-question svg {
  transform: rotate(45deg);
}
.faq__group-answer {
  display: none;
  padding: 16px;
  border: 1px solid var(--accentDark);
}
.faq__group-answer p {

}

/*fleet*/
.fleet__tabs {
  padding: 80px 0 0;
}
.fleet__tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid #757575;
  width: 320px;
  margin: 0 auto;
}
.fleet__tab-item {
  position: relative;
  width: 50%;
  text-align: center;
  padding: 8px 24px;
  cursor: pointer;
}
.fleet__tab-item span {
  transition: all .3s ease-in-out;
}
.fleet__tab-item._active span,
.fleet__tab-item:hover span {
  color: var(--textColorLight);
}
.fleet__tab-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accentDark);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
  z-index: -1;
}
.fleet__tab-item._active:after,
.fleet__tab-item:hover:after {
  opacity: 1;
  visibility: visible;
}
.fleet__items {
  
}
.tab__content {
  display: none;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}
.tab__content._active {
  max-height: unset;
  opacity: 1;
  visibility: visible;
  padding-top: 40px;
  display: flex;
}
.fleet__items .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.fleet__3d {
  display: none;
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}
.fleet__3d.active {
  display: block;
}
.fleet__3d-img {
  width: 100%;
  height: auto;
}
.fleet__3d-expand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background: var(--accentDark);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.fleet__3d-expand img {
  width: 24px;
  height: 24px;
}
.fleet__3d-popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--textColorLight);
  z-index: 999;
  transition: all .3s ease-in-out;
}
.fleet__3d-popup.active {
  opacity: 1;
  visibility: visible;
}
.fleet__3d-grab {
  cursor: grab;
}
.fleet__popup-close {
  position: absolute;
  top: 80px;
  right: 80px;
  cursor: pointer;
}
.fleet__popup-close img {
  width: 40px;
  height: 40px;
}
.fleet__popup-info {

}

.fleet__items-title {
  font-size: 32px;
}
.fleet__items-specs {
  display: flex;
  gap: 160px;
}
.fleet__spec-item {
  text-align: center;
}
.fleet__spec-item i {
  font-style: normal;
}
.fleet__spec-item p {
  font-weight: 700;
  font-size: 64px;
}
.fleet__spec-item span {
  display: block;
  font-size: 24px;
}

.fleet__item-wrapper {
  
}
.fleet__item-wrapper._active {
  padding-top: 80px;
}
.fleet__slider-wrapper {
  width: 50%;
  align-self: stretch;
  position: relative;
}
.fleet__slider {
  width: 100%;
  height: 100%;
}
.fleet__slider .slick-list,
.fleet__slider .slick-track {
  height: 100%;
}
.fleet__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet__slider-thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 168px;
  padding: 24px;
}
.fleet__slider-thumbs img {
  width: 240px;
  height: 120px;
  object-fit: cover;
  border: 2px solid var(--brandGrey) !important;
}
.fleet__slider-thumbs img.slick-current {
  border: 2px solid var(--accent) !important;
}
.fleet__slider-thumbs .slick-list,
.fleet__slider-thumbs .slick-track {
  height: 100%;
}
.fleet__slider-thumbs .prev__btn, 
.fleet__slider-thumbs .next__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--accentDark);
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.fleet__slider-thumbs .next__btn  {
  left: auto;
  right: 0;
}
.fleet__item-info {
  width: 50%;
  padding: 80px;
}
.fleet__item-inner {
  max-width: 640px;
  margin: 0 auto;
}
.fleet__item-inner h4 {
  margin: 24px 0 16px;
}

/*Pilots*/
.about__wrapper {
  display: flex;
  flex-direction: column;
}
.about__item {
  display: flex;
  align-items: center;
}
.about__item-img {
  position: relative;
  width: 50%;
}
.about__item:nth-child(odd) .about__item-img {
  order: 2;
}
.about__item-img img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.about__item-info {
  width: 50%;
  padding: 40px;
}
.about__item-inner {
  max-width: 640px;
  margin: 0 auto;
}
.about__team {
  margin-top: 80px;
}
.about__team-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.team__item {
  display: block;
  width: calc(33.333% - 27px);
  text-decoration: none;
}
.team__item:hover {
  text-decoration: none;
}
.team__item-img {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 0 auto;
}
.team__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__item-info {
  padding: 16px;
  text-align: center;
}
.team__item-info h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.team__item-position {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
}

.team__item--pilot {
  width: calc(16.666% - 14px);
}
.team__item--pilot .team__item-img {
  width: 100%;
  height: auto;
  padding-top: 100%;
}
.team__item--pilot .team__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.team__item--pilot .section__title {
  font-size: 24px;
  margin-bottom: 0;
}
.team__item--pilot .section__title:after {
  bottom: -8px;
}
.team__item--pilot .team__item-position {
  font-size: 14px;
}

.pilots__stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.stat__item {
  width: 320px;
  height: 160px;
  padding: 16px;
  text-align: center;
  background: var(--textColorLight);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.stat__item p {
  margin: 0;
  font-size: 18px;
}
.stat__item span {
  font-size: 40px;
  font-weight: 700;
}
.about__history {
  display: flex;
}
.about__history-img {
  width: 50%;
  position: relative;
}
.about__history-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__history-info {
  width: 50%;
  padding: 40px;
}
.about__history-inner {
  max-width: 640px;
  margin: 0 auto;
}
.founder__title {
  font-size: 24px;
  margin-bottom: 8px;
}

/*team*/
.about .container {
  display: flex;
}
.about-img {
  position: relative;
  width: 50%;
  min-height: 720px;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-info {
  width: 50%;
  padding: 40px;
}
.about-desc {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.about-desc p {

}
.team__details {
  margin: 80px 0;
}
.team__position {
  display: block;
  font-size: 24px;
  text-transform: uppercase;
}
.pilot__info {
  margin-bottom: 24px;
}
.pilot__info h4 {
  margin-bottom: 16px;
}


/*contact*/
.contact__form {
  width: 100%;
  padding: 80px 0;
}
.contact__form form {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.contact__form .wpcf7 {
  width: 100%;
  display: flex;
  justify-content: center;
}
.form__group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.form__group > p {
  font-size: 18px;
}
.form__item {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__item:last-child {
  width: 100%;
}
.form__item label {
  display: block;
}
.form__item input[type="text"],
.form__item input[type="email"],
.form__item input[type="date"],
.form__item input[type="time"],
.form__item input[type="number"],
.form__item input[type="password"],
.form__item textarea,
.form__item select {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--textColorDark);
  outline: none;
}
.form__item input[type="text"]:focus,
.form__item input[type="email"]:focus,
.form__item input[type="date"]:focus,
.form__item input[type="time"]:focus,
.form__item input[type="number"]:focus,
.form__item input[type="password"]:focus,
.form__item textarea:focus,
.form__item select:focus {
  outline: none;
  border: 1px solid #F44336;
}
.form__item textarea {
  height: 160px;
}
.form__item-h {
  display: flex;
  gap: 24px;
}
.contact__form input[type="submit"] {
  display: inline-block;
  position: relative;
  width: 160px;
  padding: 17px 16px;
  background-color: var(--accentDark);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  border: none;
  margin-top: 16px;
  color: var(--textColorLight);
  text-decoration: none;
  transition: all .2s ease-in-out;
}
.contact__form input[type="submit"]:hover {
  background: var(--brandColor);
}

.contact__locations {
  padding: 40px 0;
}
.location__item {
  margin-bottom: 40px;
}
.location__item-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.location__map {
  width: 50%;
}
.location__map iframe {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.location__item:nth-child(even) .location__map {
  order: 2;
}
.location__desc {
  width: 50%;
}
.location__item:nth-child(even) .location__desc {
  order: 1;
}
/*footer*/
footer {
  position: relative;
  padding: 40px;
  background: #F5F5F5;
}
footer:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/ny-skyline.svg) no-repeat center center;
  background-size: cover;
  opacity: 0.03;
}
footer .container {
  display: flex;
  gap: 40px;
  color: var(--textColorDark);
}
.footer__item {
  flex-grow: 1;
}
.footer__item:first-child {
  width: 400px;
}
.footer__item:nth-child(3) {
  width: 380px;
}
.logo__footer img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}
.footer__item p {
  font-size: 14px;
  margin-bottom: 24px;
}
.social__icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
footer a {
  text-decoration: none;
}
.social__icons img {
  display: block;
}
.badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.badges a {
  text-decoration: none;
}
.badges img {
  width: auto;
  height: 40px;
  max-width: 128px;
  object-fit: contain;
}
.footer__item-title {
  font-size: 32px;
}
.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__item-info span {

}
.footer__copyright {
  margin-top: 40px;
  padding: 24px 0;
  font-size: 12px;
  justify-content: space-between;
  border-top: 1px solid var(--textColorDark);
}
.footer__copyright p {
  margin: 0;
}
.footer__copyright-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__copyright-right {
  display: flex;
  align-items: center;
  gap: 16px;
}














