* {
  -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;
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap !important;
}

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: auto !important;
  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;
  max-width: 100%;
}

img:not([src]) {
  display: none;
  visibility: hidden;
}

figure {
  max-width: 100% !important;
}

figcaption {
  font-size: 10px !important;
}

.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;
}

.tab-cont {
  display: block !important;
}

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;
}

.container-video-controls {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  z-index: 5;
  pointer-events: all;
  margin-left: 3px;
}

.safety__banner {
  width: 633px;
  position: absolute;
  top: 88px;
  right: 30px;
  z-index: 1;
}

.safety__banner .banner_mobile_text {
  display: none;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .container-video-controls {
    margin-left: 20px !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }

  .container-video-controls {
    margin-left: 20px !important;
  }
}

@media (min-width: 1440px) {

  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1680px) {

  .container,
  .container-video-controls {
    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;
}

.tours-title {
  margin-bottom: 12px;
}

.tours-tripadvisor-google {
  margin-bottom: 24px;
}

.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: #f5b800 !important;
  color: #000 !important;
  text-transform: uppercase !important;
  border: 1px solid #000 !important;
}

.btn--more {
  background: #fff;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--grey);
}

.btn--book.tw-widget.tw-book-now-btn:not(.btn-layout-custom),
.btn--book.tw-widget.tw-book-now-button:not(.btn-layout-custom) {
  color: #000 !important;
  font-family: "Montserrat", serif !important;
}

.btn--book-dark,
.btn-dark,
.btn-dark .btn--book.tw-widget.tw-book-now-button:not(.btn-layout-custom) {
  background: var(--accentDark) !important;
  color: #fff !important;
  text-transform: uppercase !important;
  width: fit-content;
  border-radius: 8px !important;
}

.btn-dark:hover {
  border: 1px solid var(--accentDark) !important;
}

.btn-cta {
  margin: auto;
  margin-top: -40px;

}

.btn-cta a,
.btn-cta .btn--book.tw-widget.tw-book-now-button:not(.btn-layout-custom) {
  background: var(--accentDark) !important;
  color: #fff !important;
  text-transform: uppercase !important;
  width: fit-content;
  border-radius: 8px !important;
}


/*header*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  padding: 0;
  z-index: 9;
  background: var(--textColorLight);
}



header .header_container {
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--textColorDark);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px;
  z-index: 9;
  height: 80px;
  margin: auto;
}

header.fixed {
  background: var(--textColorLight);
  color: var(--textColorDark);
}

.header__left {
  display: flex;
  align-items: center;
  gap: 40px;
}

header.fixed .header__right-top {
  display: none;
}

.tops-wigman__logo {
  display: flex;
  flex-direction: column;
}

.wigman__logo {
  cursor: pointer;
  width: 60px;
  height: 54px;
}

.wigman__logo img {
  height: 100%;
  width: 100%;
}

.tops__logo {
  cursor: pointer;
  width: auto;
  height: 80px;
}

.tops__logo img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.logo__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}


.certifications {
  display: flex;
  gap: 4px;
  align-items: center;
}

.certifications-img-wigman {
  max-width: 140px;
  height: fit-content;
}

.frontpage__safety-cert {
  display: flex;
  gap: 4px;
  align-items: center;
}

.safety-front-wingman {
  height: 120px;
  object-fit: contain;
}

.certifications-img {
  min-width: 140px;
  height: fit-content;
}

.certifications img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.logo {}

.logo img {
  display: block;
  width: auto;
  height: 64px;
}

/*header.fixed .logo__fixed img {
  height: 40px;
}*/
.phone__number {
  text-decoration: none;
  position: absolute;
  top: 40px;
  /* left: 25px; */
  font-weight: 600;
  width: 100%;
}

.phone__number_mobile {
  display: none;
}

.tops__logo__responsive {
  display: none;
}

.main__nav {}

.main__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-around;
}

.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;
}

@media only screen and (max-width: 1200px) {
  .main__nav ul li a {
    font-size: 12px;
  }

  .search__btn svg {
    width: 18px !important;
  }

  .header__right-content,
  .header__right-content .box_1,
  .header__right-content .box_2,
  .header__right-content .box_2 .links {
    gap: 4px;
  }

  .header__left {
    gap: 12px;
  }

  .header__left,
  .header__right {
    min-width: 150px;
  }

  .header__right {
    justify-content: end;
  }

  .tops__logo img {
    object-fit: contain;
    height: 100%;
    width: 120px;
  }

  .menu__btn {
    margin: 0px;
  }

  .header__right-content .links .ticket {
    font-size: 12px;
    padding: 4px 4px;
  }

  .lang__active {
    padding: 2px;
  }
}


/* @media only screen and (max-width: 1024px) {

  header .header_container {
    width: 100%;
  }
  
  .container-video-controls{
    margin-left: 19px !important;
  }
} */


.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: 6px !important;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px !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,
.header__right-content .box_1,
.header__right-content .box_2,
.header__right-content .box_2 .links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

/* .header__right a {
  text-decoration: none;
} */

.search__btn {
  height: 32px;
  cursor: pointer;
  padding-left: 24px;
}

.search__btn svg {
  width: 32px;
  height: 32px;
}

header.fixed svg path {
  fill: var(--textColorDark) !important;
}

/* .lang {
  position: relative;
  font-size: 16px;
}

.lang__active {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
  line-height: 1;
}

.lang__active svg {
  width: 16px;
  height: 16px;
  transition: all .2s ease-in-out;
}

.lang:hover .lang__active svg {
  transform: rotate(180deg);
}

header.fixed .lang__active svg path {
  fill: var(--textColorDark);
}

.lang__list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 40px;
  right: 0;
  width: 180px;
  padding: 24px;
  margin: 0;
  list-style: none;
  color: var(--textColorLight);
  background: rgb(21, 21, 21, 0.8);
  transition: all .3s ease-in-out;
  transform: translateY(16px);
}

.lang__list:before {
  content: '';
  position: absolute;
  top: -8px;
  right: 8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgb(21, 21, 21, 0.8);
}

.lang__list:after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.lang:hover .lang__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */



/* :HERE:  */
/* ================================
   LANGUAGE DROPDOWN - FULL CSS
   ================================ */

/* Main container */
.lang {
  position: relative;
}

/* Active language button */
.lang__active {
  display: flex;
  align-items: center;
  gap: 0px;
  cursor: pointer;
  padding: 2px;
  border-radius: 6px;
}

.lang__code {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--textColor);
}

.lang__active svg {
  width: 16px;
  height: 16px;
  transition: all .2s ease-in-out;
}

.lang:hover .lang__active svg {
  transform: rotate(180deg);
}

/* DROPDOWN LIST */
.lang__list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0;
  width: fit-content;
  padding: 12px 32px;
  margin: 8px 0 0 0;
  list-style: none;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.28s ease;
  transform: translateY(10px);
  z-index: 1200;
}

/* Show on hover/focus */
.lang:hover .lang__list,
.lang:focus-within .lang__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow pointer */
.lang__list::before {
  content: '';
  position: absolute;
  right: 16px;
  border: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  top: -16px !important;
}

.lang-title {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  text-align: left;
  color: var(--accentDark);
  text-transform: capitalize;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(max-content, 1fr));
  gap: 6px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lang-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  transition: background 0.2s;
  white-space: nowrap;
}


/* .header__right a {
  display: block !important;
  width: fit-content;
} */

/* Each language item */
.lang-grid .lang-item {
  margin: 0;
  padding: 0;
  list-style: none;
}


.lang-item a:hover {
  background: #f8f9fa;
}

/* Current/Active language */
.current-lang a {
  background: #f0f4ff;
  font-weight: 550;
}

.lang-item img {
  width: 16px;
  height: auto;
  flex-shrink: 0;
}

.lang-primary {
  font-weight: 400;
  white-space: nowrap;
  padding-left: 10px;
}

.lang-separator {
  opacity: 0.4;
  margin: 0 4px;
  font-size: 0.95em;
}

.lang-native {
  white-space: nowrap;
  font-weight: 400;
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */
@media (max-width: 1024px) {

  /* //LANGUAGE  */
  .lang__list {
    width: calc(100vw - 16px) !important;
    max-width: 500px !important;
    right: -52px !important;
    padding: 12px !important;
    top: 30px !important;
  }


  .lang-grid {
    grid-template-columns: repeat(2, auto);
  }

  .lang-grid {
    gap: 2px;
  }

  .lang_responsive a {
    display: flex !important;
    font-size: 11px;
    flex-wrap: wrap;
    width: calc(100vw / 2 - 16px);
    max-width: 242px;
  }

  .lang-primary {
    padding: 0px;
  }

  .lang__list::before {
    right: 61px !important;
    top: -16px !important;
    border-bottom: 8px solid #FFF !important;
  }

}


.details-mobile {
  display: none;
}

.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%);
  min-width: 250px;
  top: 66px;
}

.slider-desc-mobile a {
  display: flex !important;
}

.slider-desc-mobile .login__icon-wrapper-mobile {
  display: none !important;
}

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);
}


.header__right-content .links .ticket {
  position: relative;
  width: 100%;
  min-width: 110px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  padding: 12px 4px;
  border-radius: 8px;
  line-height: 14px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.header__right-content .links .ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #a2eb91;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}

.header__right-content .links .ticket:hover::before {
  transform: scaleY(1);
}

.header__right-content .links .ticket:hover {
  color: #000;
  border-color: #000;
}

.ticket-mobile {
  display: none;
}


.header__right-content .links .fifa {
  position: relative;
  width: 100%;
  min-width: 110px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background-color: #0b3d0b;
  color: #ffffff;
  padding: 12px;
  font-size: 22px;
  border-radius: 8px;
  line-height: 14px;
  text-decoration: none;
  overflow: hidden;
  border: none;
  letter-spacing: 1px;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Green fill animation (same as ticket) */
.header__right-content .links .fifa::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1a5c1a;        /* Slightly lighter green for fill effect */
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}

/* Yellow stripe - now behind the text */
.header__right-content .links .fifa::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background-color: hsl(45, 86%, 62%, 0.6);
  z-index: -1;           /* Important: behind text */
  border-radius: inherit;
}

.header__right-content .links .fifa:hover::before {
  transform: scaleY(1);
}

.header__right-content .links .fifa:hover {
  color: #ffffff;        /* Keep text white on hover */
}

.header__right-content .login__icon {
  filter: brightness(0);
  /* black */
  transition: filter 0.3s ease;
}


.header__right-content .login__icon:hover {
  filter: brightness(0) saturate(100%) invert(16%) sepia(23%) saturate(1800%) hue-rotate(204deg) brightness(90%) contrast(95%) !important;
  /* background-color: rgba(0, 0, 0, 0.3);
  border-radius: 100%; */
}

/* .login_div {
  height: 42px;
  width: 42px;
} */

.login__btn {
  position: relative;
  cursor: pointer;
}

.login__page {
  margin-bottom: 40px;
}

.login__page-form {
  max-width: 640px;
  margin: 0 auto;
}

.login__page-form .btn {
  width: 160px;
  padding: 11px 24px;
}

.login__btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  background-color: gray;
  border-radius: 50%;
  display: flex;
}

.login__btn-close img {
  width: 24px;
  height: 24px;
}

.login__wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 65px;
  right: 0;
  width: 320px;
  padding: 24px;
  color: #000;
  background: rgb(255 255 255 / 87%);
  transition: all .3s ease-in-out;
  transform: translateY(16px);
  border: 2px solid #000;
}

.login__wrapper .form__item {
  width: 100%;
}

.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-user {
  display: flex;
  border-bottom: 1px solid var(--textColorLight);
  padding-bottom: 16px;
}

.login__wrapper .form__item .btn {
  width: 160px;
  padding: 16px;
  border: none;
}

.login__wrapper a {
  display: block;
  margin-top: 16px;
  text-transform: capitalize;
}

.login__wrapper .form__group {
  display: block !important;
}

.login__wrapper:before {
  content: '';
  position: absolute;
  top: -8px;
  right: 4px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgb(21, 21, 21, 0.8);
}

.login__wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  right: 0;
}

.login {
  position: relative;
  font-size: 16px;
}

.login__active {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
  line-height: 1;
}

.login__active svg {
  width: 16px;
  height: 16px;
  transition: all .2s ease-in-out;
}

.login:hover .login__active svg {
  transform: rotate(180deg);
}

.login__form {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 40px;
  right: 0;
  width: 320px;
  padding: 24px;
  margin: 0;
  list-style: none;
  color: var(--textColorLight);
  background: rgb(21, 21, 21, 0.8);
  transition: all .3s ease-in-out;
  transform: translateY(16px);
  border-radius: 8px;
}

.login__form:before {
  content: '';
  position: absolute;
  top: -8px;
  right: 8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgb(21, 21, 21, 0.8);
}

.login__form:after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.login:hover .login__form {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.login__form .form__group {
  margin-bottom: 16px;
}

.login__form .form__group label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--textColorLight);
}

.w-100 {
  width: 100%;
}

.login__form .form__group input[type="text"],
.login__form .form__group input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Montserrat", serif;
}

.login__form .form__group--checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login__form .form__group--checkbox label {
  margin-bottom: 0;
  cursor: pointer;
}

.login__form .form__group--checkbox input[type="checkbox"] {
  width: auto;
}

.login__form .login__submit {
  width: 100%;
  padding: 12px;
  background: var(--accentDark);
  color: var(--textColorLight);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.login__form .login__submit:hover {
  background: var(--brandColor);
}

.login__form .form__links {
  margin-top: 16px;
  text-align: center;
}

.login__form .form__links a {
  display: inline-block;
  margin: 0 8px;
  font-size: 12px;
  color: var(--textColorLight);
  text-decoration: none;
}

.login__form .form__links a:hover {
  text-decoration: underline;
}

.login__icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  display: flex;
}

.membership__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login__wrapper-user {
  /*font-weight: 600;*/
  /*font-size: 14px;*/
  /*color: var(--textColorLight);*/
  /*border-bottom: 1px solid rgba(240, 245, 255, 0.2);*/
  /*padding-bottom: 8px;*/
  /*margin-bottom: 4px;*/
}

.membership__wrapper a {
  display: block;
  font-size: 14px;
  color: var(--textColorLight);
  text-decoration: none;
  padding: 4px 0;
  transition: all .2s ease-in-out;
}

.membership__wrapper a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.membership__learn-more {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--textColorLight);
  text-decoration: none;
  text-align: center;
  padding: 8px 0;
  border-top: 1px solid rgba(240, 245, 255, 0.2);
}

.membership__learn-more:hover {
  color: var(--accent);
  text-decoration: underline;
}

.lang_responsive {
  display: none;
}

.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;
}

/* Archive hero: offset exactly the fixed header height so no white gap shows */
.elementor-2151 .elementor-element.elementor-element-ba75a34,
.elementor-1707 .elementor-element.elementor-element-404e3be,
.elementor-4996 .elementor-element.elementor-element-404e3be {
  --margin-top: 80px !important;
}

/*masterhead*/
.masterhead {
  position: relative;
}

.masterhead:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  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;
  pointer-events: none;
}

.masterhead--small .big__slider,
.masterhead--small {
  height: 33vh;
  margin-bottom: 40px;
}

.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) 30%)
}

.masterhead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.masterhead .slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--accentDark);
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.masterhead .next__btn {
  left: auto;
  right: 0;
}

.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;
  overflow: hidden;
}

.big__slider .slick-list,
.big__slider .slick-track {
  height: 100%;
}

.big__slider .slick-slide {
  z-index: auto !important;
}

.big__slider-item {
  display: none;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.big__slider.slick-initialized .big__slider-item {
  display: block;
}

/* Image fills the slide absolutely — no height-chain dependency */
.big__slider-item picture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.big__slider-item picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}


.big__slider-img {
  width: 100%;
  height: 100%;
}

.big__slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}

.big__slider-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* Static HeliNY Logo - Always Visible */
.video-static-logo {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  text-align: left;
  pointer-events: none;
  margin-top: -40px;
  padding: 0;
}

.video-static-logo .container {
  text-align: left;
}

.video-logo-title {
  font-size: 72px;
  font-weight: 700;
  color: white;
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 0, 0, 0.5);
  line-height: 1;
  letter-spacing: 2px;
}

/* Video Text Overlay with Timeline */
.video-text-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin-top: 40px;
  z-index: 3;
  text-align: left;
  /* pointer-events: none; */
}

.video-text-overlay .container {
  text-align: left;
}

.video-text-segment {
  position: relative;
  width: 100%;
  max-width: 700px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.video-overlay-title {
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.video-overlay-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: white;
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

/* Video Controls - YouTube Style */
.big__slider--video {
  position: relative;
}



.video-controls {
  position: absolute;
  top: 90px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  z-index: 5;
  pointer-events: all;
}

.video-control-btn {
  background: rgba(0, 0, 0, 0.75);
  border: none;
  color: white;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.1s ease;
  backdrop-filter: blur(10px);
}

.video-control-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.video-control-btn:active {
  transform: scale(0.95);
}

.video-control-btn svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
}

.volume-slider-container {
  display: flex;
  align-items: center;
  margin-left: 4px;
  background: rgba(0, 0, 0, 0.75);
  padding: 6px 10px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease;
}

.volume-slider-container:hover {
  background: rgba(0, 0, 0, 0.9);
}

.volume-slider {
  width: 50px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.volume-slider:hover {
  height: 6px;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.volume-slider:hover::-webkit-slider-thumb {
  transform: scale(1.15);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.volume-slider:hover::-moz-range-thumb {
  transform: scale(1.15);
}

.big__slider-info {
  width: 100%;
  position: absolute;
  bottom: 15px;
  left: 0;
}

.big__slider-info .container {
  display: flex;
  flex-direction: column;
}

.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;
  color: var(--textColorLight);
  text-shadow: 0 4px 8px #212121;
}

.masterhead__offers {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 0 0 16px 0;
  border-radius: 16px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 4px rgba(21, 21, 21, .2);
}

.lang__active svg path {
  fill: #000;
}


.slider-desc-mobile {
  display: none;
}

.offers__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  border: none;
  width: 100%;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.offers__tabs span {
  padding: 0 6px;
  cursor: pointer;
  border: 1px solid transparent;
  color: var(--accentDark);
  background-color: #fff;
  font-weight: bold;
}

.offers__tabs span:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.offers__tabs span:last-child {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.offers__tabs span:hover {
  color: #fff;
  background-color: var(--accentDark);
}

.offers__tabs span.active {
  color: #fff;
  background-color: 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: 3px;
  border-radius: 16px;
  text-align: center;
  transition: all .3s ease-in-out;
  margin-top: auto;
  margin-top: 2px;
}

.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-price-btn .masterhead__info-item {
  margin: 0 auto;
}

.offer__item-price-btn .masterhead__info-item span {
  color: #383e70;
  text-align: center;
  font-size: 14px;
  text-transform: inherit;
}

.offers__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  flex-wrap: nowrap;
  height: 35px;
  gap: 10px;
  margin-bottom: -16px;
}

.offers__footer .box1 {
  width: calc(50% - 112.5px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.offers__footer .box2 {
  width: calc(50% - 112.5px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.offers__footer .experiences {
  width: 225px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  /* margin-top: 35px; */
}

.offers__footer .btn.btn--small.btn--experience {
  position: static;
  transform: none;
  left: auto;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.6em 1.2em;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.offers__footer .box1 img,
.offers__footer .box2 img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}


.btn--experience {
  position: absolute;
  /* bottom: -16px; */
  left: 50%;
  padding: 9px 24px;
  font-size: 14px;
  text-transform: uppercase;
  transform: translateX(-50%);
  width: 225px;
}

.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;
}

.home__desc-tripadvisor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.tripadvisor-counter {
  display: block;
  width: 160px;
  height: auto;
  max-height: 128px;
  object-fit: contain;
}

/*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;
  align-items: flex-start;
  gap: 24px;
}

.tour__offer-item {
  position: relative;
  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;
  white-space: nowrap;
  transform: translateX(-50%);
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: -10px;
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid var(--accent);
  border-top-color: transparent;
  border-right-color: transparent;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 12px 0 12px 8px;
  background-color: var(--accent);
  font-size: 14px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
  text-transform: uppercase;
  text-align: center;
}

.ribbon::before {
  top: 0;
  left: 4px;
}

.ribbon::after {
  bottom: 4px;
  right: 0;
}

.ribbon span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}

.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;
  min-height: 64px;
}

.tour__offer-price {}

.tour__offer-price span {
  font-size: 16px;
}

.tour__offer-price p {
  font-weight: bold;
  color: var(--accentDark);
  font-size: 24px;
  margin: 0;
}

.tour__offer-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  flex: 1;
  display: none;
}

.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;
  display: none;
  text-align: center;
}

/* Initial state and transition setup for toggle content */
.tour__offer-info .tour__offer-desc,
.tour__offer-info .tour__offer-btns {
  display: none;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Arrow icon styling */
.arrow-icon {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 12px;
  vertical-align: middle;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #000;
  /* Downward arrow */
  transition: transform 0.4s ease;
  transform: rotate(180deg);
  cursor: pointer;
}

/* Rotate arrow when checkbox is checked */
.details-toggle:checked~.btn--small .arrow-icon {
  transform: rotate(180deg);
  /* Upward arrow */
}

.btn--small:hover .arrow-icon {
  border-top-color: #FFF;
  /* Red color on hover */
}

/* Style the label */
.tour__offer-info .custom__tour-details .btn--more,
.btn--small {
  cursor: pointer;
  position: relative;
}

/* Prevent large images from breaking layout */
.tour__offer-info .tour__offer-data img {
  max-width: 100%;
  height: auto;
}

.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: 520px;
  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: 10px 0 40px;
}

/*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%;
  z-index: 1;
}

.masterhead__info p {
  color: #fff;
  text-shadow: 0px 2px 4px #000;
}

.masterhead__info-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.masterhead__info-title {
  color: #fff;
  text-shadow: 0px 2px 4px #000;
}

.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;
  text-shadow: 0px 2px 4px #000;
}

.masterhead__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.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;
  white-space: nowrap;
  min-width: 200px;
}

.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__content-left .tour__rated {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tour__content-left .tour__rated img {
  height: 100px;
  width: auto;
}

.tour__content-left .tour__rated img.google {
  border: 1px solid #4285f4;
  border-radius: 14px;
  padding: 4px;
}

.tour__content-left {
  padding: 0 40px;
}

.tour__title {
  font-size: 32px;
  margin: 0 0 16px;
}

.tour__subtitle {
  font-size: 16px;
}

.tour__data {
  display: flex;
  gap: 16px;
  flex-direction: column;
  padding-top: 32px;
}

.tour__data-item {
  width: 100%;
}

.tour__data-title {
  display: flex;
  align-items: self-start;
  gap: 20px;
}

.tour__data-title span {
  font-weight: 600;
}

.tour__data-title img {
  width: 42px;
  height: 42px;
}

.tour__data-item p {
  margin: 8px 0 0;
}

.tour__content-left .tour__route {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.tour__content-left .tour__route .tour__start,
.tour__content-left .tour__route .tour__end,
.tour__content-left .tour__route .passes .pass_tour {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.tour__content-left .tour__route .passes .pass_tour {
  padding: 8px 0;
}

.tour__content-left .tour__route .tour__start div,
.tour__content-left .tour__route .tour__end div,
.tour__content-left .tour__route .passes .pass_tour div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour__content-left .tour__route .tour__start {
  border-bottom: 1px solid var(--border-color);
}

.tour__content-left .tour__route .tour__end {
  border-top: 1px solid var(--border-color);
}

.tour__content-left .tour__route .passes {
  border-left: 1px solid var(--border-color);
  padding: 34px 50px;
  margin-left: 50px;
}

.tour__content-left .tour__route .tour__start div p,
.tour__content-left .tour__route .tour__end div p {
  font-size: 14px;
  color: var(--grey);
  padding: 0px;
  margin: 0px;
  line-height: 16px;
}

.tour__content-left .tour__route .tour__start div p.point,
.tour__content-left .tour__route .tour__end div p.point {
  font-size: 16px;
  color: var(--textColorDark);
  font-weight: 600;
  line-height: 16px;

}


.tour__content-left .tour__route .tour__start div a,
.tour__content-left .tour__route .tour__end div a {
  color: var(--accent);
  border: none;
  padding: 0px;
  text-transform: none;
  font-size: 14px;
  line-height: 16px;
}

.tour__content-left .tour__route .tour__start div a:hover,
.tour__content-left .tour__route .tour__end div a:hover {
  background-color: transparent;
  text-decoration: underline;
}

.tour__content-left .tour__route .tour__start img,
.tour__content-left .tour__route .tour__end img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.tour__content-left .tour__time_square img {
  width: 100%;
}

.tour__content-left .directions p {
  padding: 0px;
  margin: 0px;
}

.tour__content-left .directions .btn-dark {
  margin: 20px auto;
}

.tour__content-left .tour__route .passes p {
  margin: 0px;
}

.tour__content-left .tour__route .passes .pass_tour img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 8px;

}

.tour__route h2 {
  font-size: 24px;
  margin: 0px;
}

@media only screen and (max-width: 767px) {
  .tour__content-left {
    padding: 0;
  }

  .tour__data {
    padding-top: 16px;
  }

  .tour__route h2 {
    margin: 0;
  }

}

.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%;
  max-width: 560px;
  margin-left: auto;
}

@media only screen and (max-width: 1024px) {
  .tour__content-right {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }
}

.tour__content-right .img {
  position: relative;
  z-index: 0;
  height: fit-content;
}

.tour__content-right .explorer {
  position: relative;
  z-index: 0;
  height: fit-content;
  width: 560px;
  max-width: 100%;
  margin-left: auto;
  display: flex;
  justify-content: center;
  padding: 20px;
  flex-direction: column;
  text-align: center;
}

.tour__content-right .top {
  width: 560px;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  position: absolute;
  right: 0;
  padding: 120px 80px;
  background-color: rgba(155, 155, 155, 0.6);
  color: #000;
  font-weight: 600;
  font-size: 22px;
  z-index: 1;
}


.tour__content-right .bottom {
  width: 560px;
  position: absolute;
  max-width: 100%;
  right: 0;
  bottom: 0;
  padding: 120px 80px;
  background-color: rgba(155, 155, 155, 0.6);
  color: #000;
  font-weight: 600;
  font-size: 22px;
  z-index: 1;
}

.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: 16px;
  justify-content: center;
}

.grid__item {
  position: relative;
  width: calc(25% - 27px);
}

.tour__item {
  position: relative;
  width: calc(25% - 12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 16px;
  border-radius: 16px;
  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;
  border-radius: 16px 16px 0 0;
}

.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: 0;
}

.tour__item--popular {
  border: 2px solid var(--accent);
}

.tour__duration {}

.tour__duration .masterhead__info-data {
  flex-direction: column;
  gap: 4px;
  margin: 12px 0;
  color: inherit;
  text-shadow: none;
}

.tour__duration .masterhead__info-item {}

.tour__duration .masterhead__info-item img {
  width: 16px;
  height: 16px;
}

.tour__duration .masterhead__info-item span {
  font-size: 14px;
}

.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 .masterhead__info-item {
  margin: 0 auto;
}

.tour__item .masterhead__info-item span {
  color: #383e70;
  text-align: center;
  font-size: 14px;
  text-transform: inherit;
}

.tour__item-btns {}

.custom__tour-details {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.tour__offers--private .is-hidden {
  display: none !important;
}

.tour__offers--private .tour__offer-custom {
  display: inline-block;
  position: relative;
  max-width: 100%;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding: 16px 3px;
  background: #fff;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--grey);
  text-decoration: none;
  transition: all .2s ease-in-out;
  cursor: pointer;
  border-radius: 8px;
}

.tour__offers--private .tour__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tours__popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 450px;
  max-width: 90%;
  background: var(--accentDark);
  color: var(--textColorLight);
  transform: translate(-50%, -50%);
  border-radius: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 99999999;
  overflow: hidden;

}

.tours__popup-inner {
  display: flex;
  text-align: center;
  width: 100%;
  height: 100%;
}

.tours__popup-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.tours__popup-content {
  width: 50%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.tours__popup h2 {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  font-size: 24px;
}

.tours__popup-blocks {
  display: flex;
  justify-content: center;
}

.tours__popup-block {
  width: 100%;
  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;
}

/* Exit Intent Popup */
.exit-intent-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 450px;
  max-width: 90%;
  background: var(--accentDark);
  color: var(--textColorLight);
  transform: translate(-50%, -50%);
  border-radius: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 99999999;
  overflow: hidden;
}

.exit-intent-popup .form-group input {
  border: 1px solid black;
}

.exit-intent-popup .form-group {
  margin-bottom: 10px;
}

.exit-intent-popup .checkbox-group label {
  color: black;
}

.exit-intent-popup-inner {
  display: flex;
  width: 100%;
  height: 600px;
  max-width: 1000px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page__desc-register {
  text-align: center;
  font-size: 18px;
}

.exit-intent-popup-left {
  width: 50%;
  position: relative;
}

.exit-intent-popup-img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.exit-intent-popup-content {
  width: 100%;
  background: rgba(255, 255, 255, 80%);
  color: var(--accentDark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.exit-intent-popup-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.3;
  color: var(--accentDark);
}

.exit-intent-signup-form {
  width: 100%;
  max-width: 400px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: white;
  color: #333;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.form-checkboxes {
  margin: 25px 0;
  text-align: left;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  color: white;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--accentDark);
  font-weight: bold;
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: #ffed4a;
}

.exit-intent-submit-btn {
  width: 100%;
  padding: 18px;
  background: #3b4a7d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exit-intent-submit-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.exit-intent-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

.exit-intent-popup-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/*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-videos {
  display: flex;
  gap: 40px;
}

.experience__tour-video h2 {
  font-size: 24px;
  text-align: center;
}

.experience__tour-video video {
  width: 100%;
  height: auto;
  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;
}

/*news*/
.masterhead--news {
  width: 100%;
  height: 400px;
}

/*single post*/
.single__post {
  margin: 160px auto 80px;
}

.single__post-image {
  position: relative;
  width: 100%;
  height: 420px;
}

.single__post-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1A1A1A;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0) 100%);
}

.single__post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single__post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px;
  margin: 0;
  color: var(--textColorLight);
}

.single__post-wrapper {
  display: flex;
  gap: 80px;
  margin-top: 40px;
}

.single__post-details {
  width: 70%;
}

.single__post-sidebar {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single__post-sidebar .tw-widget.tw-calendar {
  width: 100%;
}

.widget_block {
  margin-bottom: 40px;
}

/* -------- Images -------- */
.elementor-widget-text-editor img.alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
  /* spacing to the right */
  display: inline;
}

.elementor-widget-text-editor img.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
  /* spacing to the left */
  display: inline;
}

.elementor-widget-text-editor img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  float: none;
}

/* -------- Figures (with figcaption) -------- */
.elementor-widget-text-editor figure.alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
  text-align: left;
}

.elementor-widget-text-editor figure.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
  text-align: right;
}

.elementor-widget-text-editor figure.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Style the caption text nicely */
.elementor-widget-text-editor figure figcaption {
  font-size: 10px;
  margin-top: 4px;
  text-align: left;
}

/*author page*/
.author__page {
  display: flex;
  gap: 80px;
  margin: 180px auto 80px;
}

.author__info {
  width: 30%;
}

.author__info img {
  width: 100%;
  height: auto;
}

.author__bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.author__posts {
  width: 70%;

}

.author__posts-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.author__posts article a {
  display: flex;
  gap: 24px;
  text-decoration: none;
}

.author__post-img {
  width: 240px;
}

.author__post-img img {
  width: 240px;
  height: auto;
  display: block;
}

.author__post-info {
  width: calc(100% - 280px);
}

.author__post-info h2 {
  margin-bottom: 16px;
}

.author__post-info h2 a {
  text-decoration: none;
}

.author__post-info p {}

/*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 p {
  margin-bottom: 0;
}

.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;
}

.form__item 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__main {
  position: relative;
  padding: 40px;
  background: #F5F5F5;
}

.footer__main: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__main .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;
  flex-wrap: wrap;
}

.footer__main 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 ul {
  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: 24px;
  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;
  margin-bottom: 8px;
}

.footer__copyright-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.box-item-passwords .form__item {
  width: 100%;
}

.page__desc {
  margin-bottom: 40px;
}


.wigman__popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgb(37 44 100 / 90%);
  width: 100%;
  height: 100%;
}

.wigman__popup.active {
  display: block;
}

.wigman__popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #252c64;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*TOPS Popup*/
.tops__popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgb(37 44 100 / 90%);
  width: 100%;
  height: 100%;
}

.tops__popup.active {
  display: block;
}

.tops__popup-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 960px;
  max-width: 95%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  overflow: auto;
  padding: 40px;
}

.tops__popup-metadata {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.tops__popup-metadata span {
  font-size: 14px;
}

.tops__popup-desc {}

.tops__popup-desc figure {
  float: right;
  margin: 8px;
  width: 320px;
}

.tops__popup-desc figure img {
  width: 100%;
  height: auto;
}

.tops__popup-desc figcaption {
  font-style: italic;
}

.tops__popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #252c64;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tops__popup-close img {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}


/* Profile */
.profile__wrapper {
  /*width: 960px;*/
  max-width: 100%;
  margin: 0 auto;
}

.tabs {
  display: flex;
  border: 1px solid var(--accentDark);
}

.tab__item {
  position: relative;
  width: 50%;
  text-align: center;
  padding: 8px 24px;
  cursor: pointer;
}

.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;
}

.tab__item._active:after,
.tab__item:hover:after {
  opacity: 1;
  visibility: visible;
}

.tab__item span {
  transition: all .3s ease-in-out;
}

.tab__item._active span,
.tab__item:hover span {
  color: var(--textColorLight);
}

.profile__info {
  width: 100%;
  flex-direction: column;
}

.profile__info>h2 {}

.profile__info-data {}

.profile__data-item {
  margin-bottom: 16px;
}

.profile__data-item span:first-child {
  font-weight: bold;
}

.front_page_img {
  width: 80px;
  height: 80px;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.front_page_img img {
  width: 64px !important;
  height: 64px !important;
}

.d-none {
  display: none;
}

.button-day-night {
  background: #fff;
  text-transform: uppercase;
  color: var(--grey);
  border-radius: 10px;
  padding: 6px 12px;
  border: 1px solid var(--grey);
  cursor: pointer;
}

.day-night-buttons {
  margin: 8px 0px;
}

.button-day-night.active {
  background: var(--accentDark);
  color: #FFF;
}

.mobile-offers {
  display: none;
}

#fp-nj-day-list {
  display: flex;
  justify-content: center;
}

fp-nj-night-list {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
}

.private_charters-select {
  position: relative;
  width: 100%;
  max-width: 220px;
}

.private_charters-select__input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  height: 34px;
  padding: 6px 28px 6px 10px;
  border: 1px solid #9aa0a6;
  border-radius: 3px;
  background: #fff;
  color: #222;
  outline: none;
}

.private_charters-select__input:hover {
  border-color: #7f8891;
}

.private_charters-select__input:focus {
  border-color: #3c4043;
  box-shadow: none;
}

.private_charters-select__input:active {
  border-color: #3c4043;
}

.private_charters-select__input:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.private_charters-select__icon {
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
}

.offer__item-price .private-tours_price span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin: 4px 0 0;
}

.offer__item-price .private-tours_price .js-price {
  margin: 2px 0 0;
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}

.offer__item-custom .private-tours-item-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.travel__agents {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.form__travel {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 18px;
}

.travel__agents .form__item:last-child {
  width: calc(50% - 8px);
}

.form__submit-btn {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 20px 0px;
  width: 50%;
}

.travel__agents h2 {
  text-align: center;
  font-size: 28px;
}

.travel__agents button {
  padding: 12px 16px;
  width: fit-content;
}

.travel__agents .form__travel p {
  font-size: 14px;
}

.form__travel-trip {
  display: flex;
  row-gap: 20px;
}

.tours__agents-state {
  flex-direction: row;
}

.mobile-image-tripadvisor-google {
  display: none;
}

.image-tripadvisor-google {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.image-tripadvisor-google img {
  display: block !important;
  width: 134px !important;
  height: auto !important;
  max-height: 128px !important;
  object-fit: contain !important;
}

.image-tripadvisor-google img:nth-child(4) {
  background-color: #FFF;
  border-radius: 10px;
  border: 1px solid #d7d7d7d7 !important;
}

.available-tours h3 {
  margin: 24px 0px 16px 0px;
  text-align: left;
}

.tours__agents-checkboxes-title {
  display: grid;
  grid-template-columns: auto 1fr 150px;
  align-items: center;
  gap: 8px;
}

.tours__agents-checkboxes-title input:nth-child(3) {
  width: 100%;
  height: 24px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--textColorDark);
  outline: none;
}

.tours__agents-checkboxes-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tours__agents-checkboxes {
  display: flex;
  gap: 120px;
  margin-bottom: 24px;
}

.tours__agents-radio-checkboxes {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.agent__single-checkbox {
  margin-bottom: 12px;
}

.tours-links-footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.tours-links-footer a {
  font-weight: bold;
}