:root {
  --color-body: #232323;
  --color-link: #0094ff;
  --color-white: #fff;
  --color-gray: #f3f3f3;
  --color-primary: #0097d7;
  --font-family-base: 'Lato', sans-serif;
  --transition-base: all 0.3s ease-in-out;
  --color-primary-hover: rgba(0, 148, 255, 0.8);
  --gradient-primary: linear-gradient(0deg, rgba(81, 147, 255, 0.9), rgba(81, 147, 255, 0.9));
  --gradient-white: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.68) 73.67%);
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-base);
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-body);
}

h1 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.125;
}

h2 {
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.1667;
}

h3 {
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.333;
}

h4 {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.333;
}

p:last-child, h1:last-child, h2:last-child, h3:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  --bs-gutter-x: 3rem;
  max-width: 70.875rem !important;
}

.row {
  --bs-gutter-x: 1.875rem;
}

.btn {
  display: inline-block;
  min-width: 13.625rem;
  max-width: 100%;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.333;
  background-color: var(--color-primary);
  border-radius: 4px;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  transition: var(--transition-base);
}

.btn:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
}

.color--white {
  color: var(--color-white);
}

.color--primary {
  color: var(--color-primary);
}

.section-paddings {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-paddings--large {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.splide__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: auto;
  top: auto;
  left: auto;
  right: auto;
  margin: 16px auto;
  height: 20px;
}

.splide__pagination > li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.splide__pagination__page {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 4px;
  border-radius: 50%;
  background-color: #e0e0e0;
  opacity: 1;
  transition: var(--transition-base);
}

.splide__pagination__page.is-active {
  width: 12px;
  height: 12px;
  transform: none;
  background-color: var(--color-primary);
}

.splide__pagination__page img {
  display: none;
}

/*Header Styles*/

header.header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-gray);
}

#logo img {
  max-width: 155px;
  max-height: 55px;
  width: auto;
  height: auto;
}

/*Hero Styles*/

.section--hero {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: calc(100vh - 8rem);
  padding: 18.75rem 1.5rem 0;
  margin-bottom: 1.5rem;
}

.hero-media__wrapper {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: calc(100% - 8rem);
  height: calc(100% - 5rem);
  transform: translateX(-50%);
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  width: 32.1875rem;
  max-width: 100%;
  padding: 3rem 3rem 12px;
  text-align: center;
}

.hero-content::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.646) 0%, rgba(255, 255, 255, 0.578) 73.67%);
  backdrop-filter: blur(3px);
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

.hero-content .btn {
  margin-top: 1.5rem;
}

.page-template-tpl-homepage-2023 .hero-content {
  width: 53.75rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.page-template-tpl-homepage-2023 .hero-content h3 {
  max-width: 31.5rem;
  margin: 0 auto;
}

/*Logo Slider*/

.logo-slider__item {
  width: 145px;
  padding-right: 15px;
  padding-left: 15px;
}

.logo-slider__img {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 71%;
}

.logo-slider__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


/*Text + Video Section*/

.section--text-video {
  padding: 140px 0;
}

.text-video__content {
  max-width: 470px;
}

.text-video__content h2:first-child {
  width: 375px;
  max-width: 100%;
  margin-bottom: 4rem;
}

.page-template-tpl-homepage-2023 .text-video__content h2:first-child {
  width: 100%;
  margin-bottom: 1.5rem;
}

.section--text-video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.section--text-video .video-poster,
.section--text-video .video-poster img,
.section--text-video .wp-video,
.section--text-video iframe,
.section--text-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section--text-video .video-poster img {
  object-fit: cover;
}

.section--text-video .video-poster {
  z-index: 10;
  cursor: pointer;
}

.section--text-video .video-poster::after {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 90px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjMiIGhlaWdodD0iODQiIHZpZXdCb3g9IjAgMCA2MyA4NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjBfYl83OV8zMjcxKSI+CjxwYXRoIGQ9Ik02MS4xNTI4IDQ1LjMwNDlMNi4yNTMzNSA4Mi43MzY0QzMuNTk4MTEgODQuNTQ2NyAwIDgyLjY0NTEgMCA3OS40MzE0VjQuNTY4NTZDMCAxLjM1NDg3IDMuNTk4MTIgLTAuNTQ2NzM2IDYuMjUzMzUgMS4yNjM2NUw2MS4xNTI4IDM4LjY5NTFDNjMuNDgxNyA0MC4yODMgNjMuNDgxNyA0My43MTcgNjEuMTUyOCA0NS4zMDQ5WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzc5XzMyNzEpIi8+CjwvZz4KPGRlZnM+CjxmaWx0ZXIgaWQ9ImZpbHRlcjBfYl83OV8zMjcxIiB4PSItMTIiIHk9Ii0xMS40MzgyIiB3aWR0aD0iODYuODk5NCIgaGVpZ2h0PSIxMDYuODc2IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUdhdXNzaWFuQmx1ciBpbj0iQmFja2dyb3VuZEltYWdlRml4IiBzdGREZXZpYXRpb249IjYiLz4KPGZlQ29tcG9zaXRlIGluMj0iU291cmNlQWxwaGEiIG9wZXJhdG9yPSJpbiIgcmVzdWx0PSJlZmZlY3QxX2JhY2tncm91bmRCbHVyXzc5XzMyNzEiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2JhY2tncm91bmRCbHVyXzc5XzMyNzEiIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl83OV8zMjcxIiB4MT0iMzMiIHkxPSItMyIgeDI9IjMzIiB5Mj0iODciIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0id2hpdGUiIHN0b3Atb3BhY2l0eT0iMC44MiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IndoaXRlIiBzdG9wLW9wYWNpdHk9IjAuNzMiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: var(--transition-base);
}

.section--text-video .video-poster:hover::after {
  opacity: 0.5;
}

.section--text-video iframe,
.section--text-video video {
  z-index: 1;
}

/*Counters*/

.section--counter {
  padding-bottom: 50px;
  background-size: cover;
  background-position: 46% 50%;
}

.counters__title {
  margin-bottom: 4rem;
}

.counter__col {
  justify-content: center;
  margin-bottom: var(--bs-gutter-x);
  border-right: 1px solid var(--color-white);
}

.counter__col:nth-child(n+4) {
  border-right: none;
}

.counter__item {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 234px;
}

.counter__icon {
  position: relative;
  flex: 0 0 5rem;
  width: 5rem;
  height: 5rem;
  margin-right: 1rem;
  transform-origin: center;
}

.counter__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.animation-zoom {
  animation: zoom-in-zoom-out 5.5s ease-in-out infinite;
}

.animation-zoom-rotate {
  animation: zoom-rotate 5.5s ease-in-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}

@keyframes zoom-rotate {
  0% {
    transform: scale(0.8) rotate(0);
  }
  50% {
    transform: scale(1) rotate(-25deg);
  }
  100% {
    transform: scale(0.8) rotate(0);
  }
}


/*Video Slider Styles*/

.video-slider {
  margin-top: 4rem;
}

/*.video-slider .splide__slide {*/
/*  padding-right: 16px;*/
/*  padding-left: 16px;*/
/*}*/

.video-slider__item {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 60.3%;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}

.video-slider__item::after {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 90px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjMiIGhlaWdodD0iODQiIHZpZXdCb3g9IjAgMCA2MyA4NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgZmlsdGVyPSJ1cmwoI2ZpbHRlcjBfYl83OV8zMjcxKSI+CjxwYXRoIGQ9Ik02MS4xNTI4IDQ1LjMwNDlMNi4yNTMzNSA4Mi43MzY0QzMuNTk4MTEgODQuNTQ2NyAwIDgyLjY0NTEgMCA3OS40MzE0VjQuNTY4NTZDMCAxLjM1NDg3IDMuNTk4MTIgLTAuNTQ2NzM2IDYuMjUzMzUgMS4yNjM2NUw2MS4xNTI4IDM4LjY5NTFDNjMuNDgxNyA0MC4yODMgNjMuNDgxNyA0My43MTcgNjEuMTUyOCA0NS4zMDQ5WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzc5XzMyNzEpIi8+CjwvZz4KPGRlZnM+CjxmaWx0ZXIgaWQ9ImZpbHRlcjBfYl83OV8zMjcxIiB4PSItMTIiIHk9Ii0xMS40MzgyIiB3aWR0aD0iODYuODk5NCIgaGVpZ2h0PSIxMDYuODc2IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+CjxmZUZsb29kIGZsb29kLW9wYWNpdHk9IjAiIHJlc3VsdD0iQmFja2dyb3VuZEltYWdlRml4Ii8+CjxmZUdhdXNzaWFuQmx1ciBpbj0iQmFja2dyb3VuZEltYWdlRml4IiBzdGREZXZpYXRpb249IjYiLz4KPGZlQ29tcG9zaXRlIGluMj0iU291cmNlQWxwaGEiIG9wZXJhdG9yPSJpbiIgcmVzdWx0PSJlZmZlY3QxX2JhY2tncm91bmRCbHVyXzc5XzMyNzEiLz4KPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2JhY2tncm91bmRCbHVyXzc5XzMyNzEiIHJlc3VsdD0ic2hhcGUiLz4KPC9maWx0ZXI+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl83OV8zMjcxIiB4MT0iMzMiIHkxPSItMyIgeDI9IjMzIiB5Mj0iODciIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0id2hpdGUiIHN0b3Atb3BhY2l0eT0iMC44MiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IndoaXRlIiBzdG9wLW9wYWNpdHk9IjAuNzMiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: var(--transition-base);
}


.video-slider__item:hover::after {
  opacity: 0;
}

.video-slider__item video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  overflow: hidden;
}

/*Testimonials*/

.section--video-slider + .section--testimonials {
  padding-top: 0;
  margin-top: -60px;
}

.testimonials-slider {
  position: relative;
  padding-bottom: 65px;
}

@media (min-width: 2000px) {
  .testimonials-slider {
    padding-bottom: 100px;
  }
}

.testimonials-slider .splide__pagination {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  margin-bottom: 0;
}

.testimonials-slider .splide__track {
  position: relative;
}

.testimonials-slider .splide__track::before {
  content: '';
  position: absolute;
  z-index: 10;
  left: 0;
  top: -20px;
  width: 100%;
  height: calc(100% + 100px);
  background: linear-gradient(90deg, #fff 0%, transparent 25%, transparent 75%, #fff 100%);
  pointer-events: none;
}

.testimonials-slider .splide__slide {
  padding-right: 12px;
  padding-left: 12px;
  text-align: center;
}

.testimonial__author {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial__author img {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
}

.testimonial__text {
  font-size: 1.5rem;
  line-height: 1.333;
  font-style: italic;
}


#ask-question {
  max-width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
}

#ask-question > h3 {
  font-weight: 400;
}

#ask-question input,
#ask-question textarea,
#ask-question select {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 2.75rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 4px;
  color: var(--color-white);
}

#ask-question .wpcf7-form-control-wrap {
  position: relative;
}

#ask-question .wpcf7-not-valid-tip {
  position: absolute;
  top: 100%;
  left: 0;
  color: #e78989;
  font-size: 12px;
}

#ask-question .screen-reader-response {
  display: none;
}

#ask-question textarea {
  height: 100px;
  min-height: 140px;
}

#ask-question .wpcf7-form-control::placeholder {
  color: #fff !important;
  opacity: 1;
}

#ask-question [type="submit"] {
  height: auto;
  margin-top: 2rem;
  padding: 1rem;
  text-transform: uppercase;
  color: var(--color-body);
  background-color: #fff;
  border: none;
}

#ask-question [type="submit"]:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
}


/*@media screen and (max-width: 1199px) {*/
/*}*/

@media screen and (max-width: 991px) {
  h1 {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 48px;
  }

  .page-template-tpl-homepage-2023 h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
  }

  h2 {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 18px;
    line-height: 24px;
  }

  h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .section-paddings {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-paddings--large {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  header.header {
    padding: 16px 0;
  }

  .section--hero {
    min-height: 500px;
    padding: 240px 24px 0;
    margin-bottom: 24px;
  }

  .hero-media__wrapper {
    position: absolute;
    top: 24px;
    left: 24px;
    width: calc(100% - 48px);
    height: calc(100% - 64px);
    transform: none;
  }

  .hero-content {
    position: relative;
    width: 400px;
    padding: 32px 32px 12px;
  }

  .page-template-tpl-homepage-2023 .hero-content {
    width: 530px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .page-template-tpl-homepage-2023 .hero-content h3 {
    max-width: 360px;
  }

  /*Logo Slider*/
  .logo-slider__item {
    width: 130px;
    padding-right: 8px;
    padding-left: 8px;
  }

  /*Text + Video Section*/
  .video-slider__item::after,
  .section--text-video .video-poster::after {
    width: 48px;
    height: 66px;
  }

  .text-video__content {
    max-width: 100%;
  }

  .text-video__content h2:first-child {
    width: 100%;
    margin-bottom: 32px;
  }

  /*Counters*/
  .section--counter {
    padding-bottom: 24px;
  }

  .counters__title {
    margin-bottom: 32px;
  }

  .counter__col {
    margin-bottom: 16px;
    border: none;
  }

  .counter__col:nth-child(odd) {
    justify-content: flex-end;
  }

  .counter__col:nth-child(even) {
    justify-content: flex-start;
  }

  /*Video Slider Styles*/
  .video-slider {
    margin-top: 32px;
  }

  /*.video-slider .splide__slide {*/
  /*  padding-right: 8px;*/
  /*  padding-left: 8px;*/
  /*}*/
  .section--video-slider + .section--testimonials {
    padding-top: 0;
    margin-top: 0;
  }
}


@media screen and (max-width: 767px) {
  .section--hero {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding-top: 24px;
    margin-bottom: 55px;
  }

  .hero-media__wrapper {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 0;
    padding-bottom: 78.5%;
    margin-bottom: 24px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content::before {
    content: none;
  }

  /*Text + Video Section*/
  .text-video__content {
    max-width: 100% !important;
    margin-bottom: 40px;
    text-align: center;
  }

  .text-video__content br {
    display: none;
  }

  .video-slider .splide__slide {
    width: 327px !important;
  }

  .section--video-slider + .section--testimonials {
    margin-top: -60px;
  }

  .testimonials-slider {
    padding-bottom: 0;
  }

  .testimonial__item {
    display: flex;
    flex-direction: column-reverse;
  }

  .testimonial__author {
    min-height: 0;
    margin-top: 24px;
    margin-bottom: 0;
  }

  .testimonial__author img {
    display: none;
  }

  .testimonials-slider .splide__pagination {
    position: relative;
    bottom: auto;
    left: auto;
    height: 72px;
    margin-bottom: 12px;
  }

  .testimonials-slider .splide__pagination .splide__pagination__page {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    margin: 8px;
    background: transparent;
    opacity: 0.64;
  }

  .testimonials-slider .splide__pagination .splide__pagination__page.is-active {
    width: 48px;
    height: 48px;
    opacity: 1;
  }

  .testimonials-slider .splide__pagination .splide__pagination__page.is-active img {

    border: 4px solid rgba(81, 147, 255, 0.64);
  }

  .testimonials-slider .splide__pagination .splide__pagination__page img {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
  }


  .testimonials-slider .splide__track::before {
    content: none;
  }

  .testimonials-slider .splide__slide {
    padding-right: 24px;
    padding-left: 24px;
  }

  #ask-question {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 575px) {
  .counter__item {
    flex-direction: column;
  }

  .counter__icon {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .counter__text {
    max-width: 138px;
    font-weight: 400;
  }
}

/* faqs begin */
.section--faqs {
  background-color: #f3f3f3;
}

.accordion {
}

.accordion__panel {
  border-bottom: 1px solid var(--color-body);
}

.accordion__header {
  font-size: 1.5rem;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.5rem;
  position: relative;
}

.accordion__header.active .accordion__icon::after {
  opacity: 0;
}

.accordion__icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: inline-block;
  pointer-events: none;
}

.accordion__icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-body);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.accordion__icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-body);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  display: block;
  transition: opacity 0.3s ease;
}

.accordion__content {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

@media screen and (max-width: 767px) {
  .accordion__header {
    font-size: 1rem;
  }

  .section--faqs__title {
    text-align: center;
    margin-bottom: 2rem !important;
  }
}

/* faqs end */

/* Book Seat begin */
.section--book-seat {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.book-seat__content h2:first-child {
  max-width: 100%;
  margin-bottom: 4rem;
}

.book-seat__content h3:first-child {
  margin-bottom: 2rem;
}

.book-seat__content .btn-secondary {
  margin-top: 3rem;
  text-transform: uppercase;
  min-width: 379px;
}

@media screen and (max-width: 991px) {
  .book-seat__content h2:first-child {
    margin-bottom: 2rem;
  }

  .book-seat__content h3:first-child {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .book-seat__content {
    text-align: center;
  }

  .book-seat__content .btn-secondary {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 425px) {
  .book-seat__content .btn-secondary {
    min-width: auto;
    width: 100%;
  }
}

/* Book Seat end */

/* Other Upcoming Flights begin */
.page-template-tpl-homepage-2023 .section--other-flights {
  padding-top: 0;
}

.other-flights-slider .splide__track {
  margin-top: 4rem;
  overflow: visible !important;
}

.other-flights-slider .splide__arrows {
  position: relative;
  text-align: right;
  font-size: 0;
}

.other-flights-slider .splide__arrow[disabled] {
  opacity: 0.5;
}

.other-flights-slider .splide__arrow {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: 1px solid var(--color-body);
  top: 0;
  transform: none;
  opacity: 1;
  left: 0;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5H14.5M14.5 5L10.5 1M14.5 5L10.5 9' stroke='%23232323'/%3E%3C/svg%3E%0A");
}

.other-flights-slider .splide__arrow--prev {
  transform: rotate(-180deg);
  margin-right: 1rem;
}

.other-flights__item {
  position: relative;
  color: var(--color-white);
  padding-bottom: 47.5%;
  max-width: 455px;
  width: 455px !important;
  border-radius: 4px;
  overflow: hidden;
}

.other-flights__item--sold-out .other-flights__img {
  filter: url("data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'><filter%20id='grayscale'><feColorMatrix%20type='matrix'%20values='0.3333%200.3333%200.3333%200%200%200.3333%200.3333%200.3333%200%200%200.3333%200.3333%200.3333%200%200%200%200%200%201%200'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
  filter: grayscale(100%); /* Current draft standard */
  -webkit-filter: grayscale(100%); /* New WebKit */
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray; /* IE6+ */
}

.other-flights__item--sold-out::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(50% - 57px);
  transform: translate(-50%, -50%);
  background-image: url('../img/sold-out.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  width: 80%;
  height: 80%;
  filter: grayscale(0%);
}

.other-flights__item:hover .other-flights__content::after {
  transform: translateY(0);
}

.other-flights__item:hover .other-flights__title::before {
  max-width: 100%;
}

.other-flights__item:hover .other-flights__title::after {
  width: 45px;
}

.other-flights__img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.other-flights__content {
  background: linear-gradient(180deg, rgba(81, 147, 255, 0.144) 0%, rgba(81, 147, 255, 0.21) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px 24px;
  transition: background 0.5s ease;
}

.other-flights__content::after {
  content: '';
  background: linear-gradient(180deg, rgba(81, 147, 255, 0.38) 0%, rgba(81, 147, 255, 0.58) 100%);
  inset: 0;
  height: 100%;
  width: 100%;
  transform: translateY(100%);
  position: absolute;
  z-index: -1;
  transition: transform 0.3s ease;
}

.other-flights__date {
  margin: 0 0 10px;
}

.other-flights__title {
  font-weight: 600;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  position: relative;
}

.other-flights__title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 0;
  height: 1px;
  background-color: #fff;
  transition: max-width 0.7s ease;
}

.other-flights__title::after {
  content: '';
  position: absolute;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='46' height='10' viewBox='0 0 46 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5H45M45 5L40.5357 1M45 5L40.5357 9' stroke='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right;
  width: 25px;
  height: 8px;
  top: calc(50% - 8px);
  transform: translateY(-50%);
  transition: width 0.7s ease;
}

.other-flights__link {
  position: absolute;
  inset: 0;
}

.other-flights__item--va {
  background: linear-gradient(270deg, #0097D7 0%, #183B67 100%), #5193FF;
}

.other-flights__item--va .other-flights__content {
  background: none;
}

.other-flights__item--va .other-flights__content::after {
  content: none;
}

.other-flights__va {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
}

.other-flights__va-title {
  font-weight: 700;
  text-align: center;
  position: relative;
  max-width: 70%;
}

.other-flights__va-title::before {
  content: '';
  position: absolute;
  width: 91px;
  height: 48px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='91' height='48' viewBox='0 0 91 48' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M32.1094 0.201332C31.9585 0.445463 31.7185 0.0306409 36.5394 7.8616C38.623 11.2462 40.4305 14.0821 40.5564 14.1636C40.6822 14.2451 43.6727 14.3131 47.2021 14.3149C53.433 14.318 53.6171 14.3067 53.5546 13.928C53.5167 13.6994 50.0692 10.7391 45.2217 6.7727L36.9534 0.00723667L34.5957 0.000174282C33.1834 -0.00426447 32.1864 0.0764419 32.1094 0.201332ZM0.0151468 9.79266C-0.0612848 9.9916 0.154499 10.3854 0.595543 10.8519C0.981533 11.2601 3.42795 13.9548 6.03207 16.84C11.5156 22.9156 12.4584 23.8129 14.0235 24.4456L15.1734 24.9104L27.7183 24.9681L40.2629 25.0258L40.6788 25.5547C40.9506 25.9005 41.0494 26.2298 40.9641 26.5058C40.8923 26.738 38.0236 31.4901 34.5892 37.066C31.1551 42.6418 28.2977 47.3858 28.2394 47.608C28.1359 48.004 28.2271 48.0117 32.7452 47.9956L37.3567 47.9792L47.9474 36.5456L58.5382 25.1122L74.7691 25.0113L91 24.9104L90.9601 24.0346C90.907 22.8743 89.9348 20.8623 88.9605 19.8965C88.026 18.9702 86.3816 18.1012 84.7356 17.6638C82.3993 17.043 77.7293 16.9263 48.8517 16.7692C19.8132 16.611 19.8117 16.611 18.4864 16.1736C16.7393 15.5971 15.3347 14.6485 12.0476 11.825L9.32508 9.48679L4.73092 9.48114C0.738122 9.4765 0.120618 9.51726 0.0151468 9.79266Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 24px);
}

@media screen and (min-width: 768px) and (max-width: 70.875rem) {
  .other-flights__item {
    padding-bottom: 46.5%;
  }
}

@media screen and (max-width: 767px) {
  .other-flights__item--sold-out::after {
    top: calc(50% - 40px);
  }

  .other-flights__item {
    height: 271px;
    max-width: 327px;
  }

  .other-flights__title {
    padding-bottom: 0;
  }

  .other-flights__title::before {
    display: none;
  }

  .other-flights__title::after {
    top: 50%;
  }

  .other-flights__content {
    padding: 8px 16px 13px;
  }

  .other-flights__section-title {
    text-align: center;
  }

  .other-flights-slider .splide__arrows {
    display: none;
  }

  .other-flights-slider .splide__track {
    margin-top: 2.5rem;
  }
}

/* Other Upcoming Flights end */

/* footer begin */
.footer-lp {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 40px;
  position: relative;
}

.footer-lp > div {
  position: relative;
  z-index: 1;
}

.footer-lp::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.footer-lp__copyright {
  font-size: 0.875rem;
  margin-bottom: 0;
  display: inline-block;
}

.footer-lp__copyright a {
  color: var(--color-link);
}

.scl-items {
  display: inline-block;
}

.scl-items .fab {
  font-size: 1.125rem;
  color: var(--color-white);
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  transition: opacity 0.3s ease;
}

.scl-items .fab:hover {
  opacity: 0.7;
}

/*.footer-lp .wpcf7-form {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  max-width: 400px;*/
/*  margin: 55px auto 40px;*/
/*}*/

.footer-lp .wpcf7-form-control-wrap {
  flex: 1 1 245px;
}

.footer-lp .wpcf7-email {
  border: 2px solid #FFF;
  border-radius: 4px 0 0 4px;
  background-color: transparent;
  height: 3.5rem;
  padding: 15px;
  text-align: center;
  box-shadow: none;
  outline: none;
  color: var(--color-white);
  width: 100%;
}

.footer-lp .wpcf7-submit {
  text-transform: uppercase;
  color: var(--color-body);
  font-weight: 700;
  font-size: 1.125rem;
  background: #fff;
  border-radius: 0 4px 4px 0;
  padding: 14.5px 24px;
  box-shadow: none;
  outline: none;
  border: none;
  transition: var(--transition-base);
  flex: 1 1 158px;
}

.footer-lp .wpcf7-submit:hover {
  opacity: 0.7;
}

.footer-lp .wpcf7-email::placeholder {
  color: var(--color-white);
}

.footer-lp .wpcf7-email::-webkit-input-placeholder {
  color: var(--color-white);
}

.footer-lp .wpcf7-email::-moz-placeholder {
  color: var(--color-white);
}

.footer-lp .wpcf7-email:-ms-input-placeholder {
  color: var(--color-white);
}

.footer-lp-payments {
  display: inline-flex;
  align-items: center;
}

.footer-lp-payments__text {
  display: inline-block;
  margin-right: 25px;
}

.footer-lp-payments__img {
  max-width: 90px;
}

.btn-secondary {
  color: var(--color-body);
  background-color: #fff;
}

.footer-lp-form__wrapper .btn {
  text-transform: uppercase;
}

.compensate-for-scrollbar {
  padding-right: 0 !important;
}

.footer-lp-form__flex {
  display: flex;
  align-items: self-start;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.footer-lp-form__wrapper .wpcf7-form {
  margin: 55px 0 40px;
}

.footer-lp-form__wrapper .screen-reader-response, .footer-lp-form__wrapper .wpcf7-response-output {
  display: none;
}

.footer-lp-form__wrapper .wpcf7-not-valid-tip {
  color: #e78989;
}

.footer-lp-form__wrapper .wpcf7-form.sent .wpcf7-response-output {
  display: block;
  margin-top: 1rem;
}

/* form fancybox begin */
.fancybox__content label {
  display: block;
  margin-bottom: 10px;
}

.fancybox__content .wpcf7-form-control-wrap {
  display: block;
}

.fancybox__content .wpcf7-submit {
  display: block;
  min-width: 13.625rem;
  max-width: 100%;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.333;
  background-color: var(--color-primary);
  border-radius: 4px;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  transition: var(--transition-base);
  border: none;
  margin: 30px auto 0;
  text-transform: uppercase;
}

.fancybox__content .wpcf7-submit:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
}

.fancybox__content textarea {
  resize: none;
  height: 7.5rem;
  border-radius: 4px;
  border: 1px solid var(--color-body);
}

.fancybox__content input[type="text"], .fancybox__content input[type="email"] {
  height: 1.875rem;
  border-radius: 4px;
  border: 1px solid var(--color-body);
  width: 100%;
}

/* form fancybox end */


@media screen and (max-width: 767px) {
  .footer-lp-payments {
    margin-bottom: 1rem;
  }

  .footer-lp .wpcf7-form {
    margin: 40px auto;
  }

  .footer-lp__copyright {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }

  .scl-items {
    display: block;
    text-align: center;
  }
}

/* footer end */

