:root {
  --primary-color: #1d5e00;
  /* --secondary-color: #fbb040; */
  --dark-color: #022833;
  --light-color: #ffffff;
  --global-font: "Inter", sans-serif;
  --primary-font: "Manrope", sans-serif;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: inter;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

figure {
  margin: 0;
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

button {
  border: none;
}

.container {
  width: clamp(320px, 95%, 1430px);
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .container {
    width: 100%;
  }
}

.flex-ctr-spb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.flex-ctr-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-ctr-ctr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-start-spb {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.btn-transparent {
  display: inline-block;
  color: var(--light-color);
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid var(--light-color);
  border-radius: 50px;
  transition: 0.3s;
}

.btn-solid {
  display: inline-block;
  color: var(--dark-color);
  padding: 8px 16px;
  border: 1px solid var(--light-color);
  border-radius: 50px;
  color: var(--dark-color);
  background-color: var(--light-color);
  transition: 0.3s;
}

.btn-solid:hover {
  color: var(--light-color);
}

@media (max-width: 767px) {
  .btn-transparent,
  .btn-solid {
    padding: 5px 10px;
  }
}

/* *********** Select Field ********** */

.select-field {
  position: relative;
}

.select-field::before {
  content: "";
  height: 10px;
  width: 15px;
  z-index: 9;
  position: absolute;
  top: 50%;
  right: 5px;
  background-color: var(--light-color);
  transform: translateY(-50%);
  pointer-events: none;
}

.select-field::after {
  pointer-events: none;
  content: "";
  height: 10px;
  width: 10px;
  border: solid rgba(0, 0, 0, 0.4);
  border-width: 0 0 2px 2px;
  z-index: 99;
  position: absolute;
  top: 35%;
  right: 15px;
  transform: translateY(-35%) rotate(-45deg);
}

/* ***************************** */
/*           Main Style          */
/* ***************************** */
/* *********** Header ********** */
.header {
  z-index: 999;
  transition: 0.3s;
}

.home-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
}

/* .sticky.header {
  background-color: rgba(0, 0, 0, 0.685);
} */

.header__container {
  width: clamp(320px, 96%, 1600px);
  padding: 0 15px;
  margin: 0 auto;
}

.top-header {
  padding: 8px 0;
  border-bottom: 1px solid #ffffff1a;
  background-color: var(--dark-color);
}

.top-header__contact{
    gap: 30px;

}

.top-header__contact__link{
    display: inline-block;
    font: 400 14px var(--global-font);
    color: #fff;
    position: relative;
}

.top-header__contact__icon{
    margin-right: 6px;
}


.top-header__contact li:last-child .top-header__contact__link::after{
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: #fff;
    opacity: .5;
    left: -17px;
    top: 50%;
    transform: translateY(-50%)
}

.top-header__btns {
  margin-left: auto;
  display: flex;
  width: max-content;
  gap: 50px;
}

.top-header__btn {
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--global-font);
  font-weight: 600;
  overflow: visible !important;
  white-space: nowrap;
}

.top-header__btn.btn-transparent {
  position: relative;
}

.top-header__btn.btn-transparent::after {
  content: "";
  height: 60%;
  width: 2px;
  position: absolute;
  top: 50%;
  right: -24px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.top-header__btn:hover {
  background-color: var(--primary-color);
}

/* Main Header */
.main-header {
    padding: 15px 0;
}
.main-header > .flex-ctr-spb {
  gap: 50px;
}

.header__logo {
  /*position: relative;*/
  /*padding: 70px 14px 36px;*/
  /*background-color: var(--light-color);*/
  /*margin-top: -70px;*/
  max-width: 212px;
}

.home-header .header__logo {
  border-radius: 0 0 8px 8px;
}

.main-header__right {
  padding: 13px 0;
}

.main-header__right.flex-ctr-spb {
  gap: 48px;
}

.main-header__nav > .flex-ctr-spb {
  gap: 32px;
  margin-right: 10px;
}

.main-header__nav-link {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark-color);
  padding: 10px 5px;
  position: relative;
}

.main-header__nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dark-color);
  transition: 0.3s;
}

.active-link.main-header__nav-link::after,
.main-header__nav-link:hover::after {
  width: 100%;
}

.main-header__cta-link {
  padding: 22px 30px;
  gap: 12px;
  color: var(--light-color);
  background-color: #ffffffb3;
  border-radius: 10px;
  transition: 0.3s;
}

.main-header__cta-link:hover {
  color: var(--primary-color);
}

.main-header__cta-link span {
  font-size: 12px;
  font-family: var(--global-font);
  font-weight: 600;
  line-height: 1.2;
  display: block;
  margin: 0 0 5px;
}

.main-header__cta-link p {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2%;
  font-family: var(--global-font);
  margin: 0;
  transition: 0.3s;
}

.main-header__btn {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--global-font);
  padding: 14px 32px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border: 2px solid var(--primary-color);
}

.main-header__btn:hover {
  /* background-color: var(--primary-color); */
  color: var(--primary-color);
}

.main-header__offcanvas {
  opacity: 0.7;
  transition: 0.3s;
  display: none;
}

.main-header__offcanvas:hover {
  opacity: 1;
}

.main-header__offcanvas svg {
  pointer-events: none;
}

@media (max-width: 1280px) {
  .header__logo {
    max-width: 150px;
    /*padding-bottom: 25px;*/
  }
  
  .top-header__btn.btn-transparent::after{
        right: -12px;
  }


  .main-header__nav > .flex-ctr-spb {
    margin: 0;
    gap: 24px;
  }

  .top-header__btns,
  .main-header__right.flex-ctr-spb {
    gap: 24px;
  }

  .main-header__cta-link {
    padding: 12px;
  }
  
  .main-header {
    padding: 10px 0;
}
}

@media (max-width: 991px) {
  .main-header__offcanvas {
    display: block;
  }
  
  
  .header__logo {
    max-width: 120px;
  }

  .main-header__right,
  .main-header__nav{
    display: none;
  }
}

@media (max-width: 767px) {
  .top-header__btns {
    gap: 10px;
  }
  
  .top-header__btn.btn-transparent::after{
      display: none;
  }
  
  .top-header__contact{
      flex-wrap: wrap;
      gap: 5px 20px ;
      align-items: flex-start;
  }
  
  .top-header__contact li:last-child .top-header__contact__link::after{
    display: none;
  }
}

@media (max-width: 575px) {
  .header__container {
    width: 100%;
  }
}
@media (max-width: 450px) {
    .top-header .header__container.flex-ctr-spb{
        gap: 20px;
        flex-direction: column;   
    }
    
      .top-header__contact{
        justify-content: center;
         
      }
    
    .top-header__btns{
        margin: 0;
    }
}

/* ***************************** */
/*         Hero Section          */
/* ***************************** */
.hero {
  padding: 250px 0 95px;
  position: relative;
}

.hero__bg {
  position: absolute;
  height: calc(100% - 265px);
  width: 100%;
  top: 0;
  left: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.search__form {
  background-color: var(--light-color);
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 22px 34px 0 rgba(0, 0, 0, 0.05);
  padding: 48px;
  position: relative;
}

.search__form .form__row {
  margin: 32px 0 0;
  gap: 24px;
  align-items: stretch;
}

.search__form .form__row:first-child {
  margin: 0;
}

.search__form .form__row.service-type {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}

.search__form .form__row.service-type .form__field label{
    padding: 0;
}

.search__form .service-type .form__field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search__form .service-type .form__field input {
  accent-color: var(--primary-color);
  height: 24px;
  width: 24px;
  margin: 0;
  cursor: pointer;
}

.search__form .service-type .form__field label {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--global-font);
  color: var(--dark-color);
  line-height: 1.2;
  cursor: pointer;
}

.search__form .form__row .form__box {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  border: 1px solid #00000033;
  border-radius: 10px;
  position: relative;
  flex: 1;
}

.search__form .form__row .form__box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #00000033;
  transform: translateX(-50%);
}
/*.search__form.one-way .form__row .form__box .return-date-field{*/
/*  display: none;*/
/*}*/
/*.search__form.one-way .form__row .form__box.last::after{*/
/*  opacity: 0;*/
/*}*/

.form__box__swap-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.search__form .form__box .form__field,
.search__form .select-fields .form__field {
  flex: 1;
  position: relative;
}

.search__form .form__box .form__field label ,
.search__form .form__field label {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 3px;
  padding: 0;
  display: block;
}

.search__form .form__field label {
    padding: 10px 24px 0 24px;
    margin: 0;
}

.search__form .form__box-input {
  position: relative;
  padding-right: 30px;
}

.location-trigger {
  position: absolute;
  top: -15px;
  right: 0;
  z-index: 9;
  cursor: pointer;
}

.search__form .form__row input,
.search__form .form__row select {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--global-font);
  color: var(--dark-color);
  border: none;
  outline: none;
  width: 100%;
}

.search__form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.search__form .form__box__swap-item {
  display: inline-block;
  background-color: var(--light-color);
  z-index: 9;
  cursor: pointer;
  padding: 0;
}

.location-trigger rect,
.location-trigger path,
.form__box__swap-item path,
.date-picker-trigger path {
  transition: 0.3s;
}

.location-trigger:hover rect,
.location-trigger:hover path,
.form__box__swap-item:hover path,
.date-picker-trigger:hover path {
  stroke: var(--primary-color);
}

.date-picker-trigger {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.search__form .form__row .select-field select {
  padding: 3px 20px 10px;
  border: 1px solid #00000033;
  border-radius: 10px;
  width: 100%;
}

.search__form .form__submit {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.search__form .form__submit button {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 12px 32px;
  font-size: 18px;
  line-height: 1.25;
  font-family: var(--global-font);
  cursor: pointer;
  font-weight: 700;
  border-color: var(--primary-color);
  border-width: 2px;
}

.search__form .form__submit button:hover {
  /* background-color: var(--light-color); */
  color: var(--primary-color);
}

@media (max-width: 1366px){
    .hero {
        padding: 180px 0 95px;
    }
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 115px;
  }
}

@media (max-width: 991px) {
  .hero__bg {
    height: calc(100% - 350px);
  }

  .search__form .form__row {
    flex-wrap: wrap;
  }

  .search__form .form__row .form__box {
    flex: 100%;
  }

  .search__form .select-field.form__field {
    flex: 48%;
  }
}

@media (max-width: 767px) {
  .search__form {
    padding: 30px 20px 50px;
  }

  .search__form .service-type .form__field input {
    height: 15px;
    width: 15px;
  }
}

@media (max-width: 575px) {
  .search__form .form__row.service-type {
    gap: 10px;
  }

  .search__form .service-type .form__field label {
    font-size: 14px;
  }

  .search__form .service-type .form__field {
    gap: 5px;
  }

  .search__form .form__row .form__box {
    flex-direction: column;
  }

  .search__form .form__row .form__box::after {
    height: 1px;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
  }

  .search__form .form__box__swap-item {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}

@media (max-width: 400px) {
  .search__form .service-type .form__field {
    flex: 100%;
    width: 100%;
  }
}

/* ***************************** */
/*         Feature Area          */
/* ***************************** */
.features-area {
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
}

.features-area__bg {
  position: absolute;
  height: calc(100% - 265px);
  width: 100%;
  top: 265px;
  left: 0;
  z-index: -1;
}

.features-area__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.features {
  display: flex;
  justify-content: space-between;
  gap: 43px;
}

.feature {
  padding: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 50px;
  height: 530px;
  overflow: hidden;
  border-radius: 24px;
}

.feature__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.6s;
}

.feature:hover .feature__bg {
  transform: scale(1.1);
}

.feature__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.feature__icon {
  margin-left: auto;
  max-width: 72px;
}

.feature__title {
  font-size: 31px;
  font-family: var(--global-font);
  font-weight: 600;
  color: var(--light-color);
  margin: 0 0 12px;
  line-height: 1.3;
}

.feature__para {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500px;
  margin: 0;
  color: var(--light-color);
}

.feature__link {
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--global-font);
  columns: var(--dark-color);
  letter-spacing: 2%;
  padding: 13px 29px;
  margin-top: 37px;
}

.features__more-link-wrap {
  margin-top: 100px;
  text-align: center;
}

.features__more-link {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  padding: 17px 92px;
}

@media (max-width: 1280px) {
  .features {
    gap: 24px;
    justify-content: center;
  }

  .feature {
    height: 450px;
    padding: 30px;
    min-width: 320px;
  }
}

@media (max-width: 1080px) {
  .features {
    flex-wrap: wrap;
  }

  .feature {
    max-width: 400px;
  }

  .features__more-link-wrap {
    margin-top: 60px;
  }
}

@media (max-width: 991px) {
  .feature {
    max-width: 320px;
  }

  .features-area {
    padding-bottom: 80px;
  }

  .feature__icon svg {
    width: 55px;
    height: 55px;
  }

  .feature__title {
    font-size: 28px;
  }

  .feature__para,
  .features__more-link {
    font-size: 16px;
  }

  .feature__link {
    font-size: 16px;
    padding: 10px 25px;
    margin-top: 30px;
  }

  .features__more-link {
    padding: 15px 70px;
  }
}

@media (max-width: 767px) {
  .feature {
    max-width: 480px;
  }

  .features-area {
    padding-bottom: 50px;
  }

  .features__more-link-wrap {
    margin-top: 40px;
  }

  .feature__title {
    font-size: 24px;
  }

  .feature__para,
  .features__more-link {
    font-size: 15px;
  }

  .feature__link {
    font-size: 15px;
    margin-top: 24px;
  }

  .features__more-link {
    padding: 12px 50px;
  }
}

/* ***************************** */
/*         Why Choose Us         */
/*         Our Services          */
/* ***************************** */
.wcu,
.our-services {
  padding: 115px 0 150px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.wcu__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.wcu__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wcu .container,
.our-services .container {
  /* display: flex; */
  gap: 70px;
  /* justify-content: space-between; */
}

.wcu__title,
.our-services__title {
  width: 400px;
}

.wcu__title-main,
.our-services__title-main {
  font-size: 48px;
  font-family: var(--global-font);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--dark-color);
}

.wcu__title-sub,
.our-services__title-sub {
  font-size: 16px;
  font-family: var(--global-font);
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.wcu__grid-area,
.our-services__grid-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  flex: 1;
}

.wcu__grid-item,
.our-services__grid-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.wcu__grid-item__icon,
.our-services__grid-item__icon {
  width: 72px;
}

.wcu__grid-item__text,
.our-services__grid-item__text {
  flex: 1;
}

.wcu__grid-item__title,
.our-services__grid-item__title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--global-font);
  line-height: 1.2;
  color: var(--dark-color);
  margin: 0 0 10px;
}

.wcu__grid-item__dsc,
.our-services__grid-item__dsc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

@media (max-width: 1400px) {
  .wcu .container,
  .our-services .container {
    gap: 50px;
  }

  .wcu__grid-area,
  .our-services__grid-area {
    gap: 30px;
  }
}

@media (max-width: 1280px) {
  .wcu .container,
  .our-services .container {
    flex-direction: column;
  }

  .wcu__title,
  .our-services__title {
    max-width: 100%;
    width: 480px;
  }
}

@media (max-width: 1023px) {
  .wcu,
  .our-services {
    padding: 100px 0;
  }

  .wcu__grid-item__icon,
  .wcu__grid-item__icon svg,
  .our-services__grid-item__icon,
  .our-services__grid-item__icon svg {
    width: 60px;
    height: 60px;
  }

  .wcu__grid-item,
  .our-services__grid-item {
    gap: 20px;
  }

  .wcu__title-main,
  .our-services__title-main {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .wcu__title-main,
  .our-services__title-main {
    font-size: 36px;
  }

  .wcu__grid-item__title,
  .our-services__grid-item__title {
    font-size: 22px;
  }

  .wcu__title-main,
  .our-services__title-main {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .wcu,
  .our-services {
    padding: 60px 0;
  }

  .wcu__grid-area,
  .our-services__grid-area {
    grid-template-columns: 1fr;
  }

  .wcu__title-main,
  .our-services__title-main {
    font-size: 32px;
    margin: 0 0 15px;
  }

  .wcu__title-sub,
  .wcu__grid-item__dsc,
  .our-services__title-sub,
  .our-services__grid-item__dsc {
    font-size: 15px;
  }

  .wcu__grid-item__title,
  .our-services__grid-item__title {
    font-size: 20px;
  }
}

/* ***************************** */
/*      Testimonials Slider      */
/* ***************************** */
.testimonials {
  padding: 125px 0 145px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

.testimonials__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  margin: 0;
  color: var(--dark-color);
  max-width: 465px;
}

.testimonials__slider {
  padding-top: 70px;
  width: 100vw;
}

.testimonial {
  padding: 50px;
  background-color: var(--light-color);
  border-radius: 15px;
  margin-right: 48px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__author-photo {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial__author-photo img {
  width: 100%;
}

.testimonial__author-content {
  flex: 1;
}

.testimonial__author-name {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 10px;
}

.testimonial__author__ratting-wrap {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.testimonial__author__ratting {
  display: grid;
  grid-template-columns: repeat(5, 18px);
  gap: 5px;
  overflow: hidden;
}

.main-ratting {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  color: #00000052;
}

.testimonial__body {
  margin-top: 40px;
}

.testimonial__body-icon {
  margin: 0 0 33px;
}

.testimonial__para {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
  margin: 0;
}

.testimonials__arrows {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-end;
  margin-top: -28px;
  z-index: 99;
  position: relative;
}

.testimonials__arrow {
  opacity: 0.5;
  transition: 0.3s;
  cursor: pointer;
}

.testimonials__arrow:hover {
  opacity: 1;
}

@media (max-width: 1023px) {
  .testimonials__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .testimonials__title {
    font-size: 36px;
  }

  .testimonial__author-name,
  .testimonial__para {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .testimonials__title {
    font-size: 32px;
  }

  .testimonial__author-name,
  .testimonial__para {
    font-size: 15px;
  }
}

/* ********** Slick Slide Line *********** */

.testimonials__slider .slick-dots {
  position: static;
  display: block;
  width: clamp(320px, 80vw, 1230px);
  padding: 85px 0 0;
  margin: 0;
  display: flex;
  pointer-events: none;
}

.testimonials__slider .slick-dots button {
  display: none;
}

.testimonials__slider .slick-dots li {
  /* position: relative; */
  /* display: inline-block; */
  margin: 0;
  padding: 0;
  /* cursor: pointer; */
  border-radius: 0;
  /* border: none; */
  background: rgba(0, 0, 0, 11%);
  opacity: 1;
  flex: 1;
  height: 3px;
  transition: 0.5s;
}

.testimonials__slider .slick-dots li.slick-active {
  background-color: var(--dark-color);
  opacity: 0.8;
  border-radius: 2px;
}

@media (max-width: 1280px) {
  .testimonials__slider {
    width: 110vw;
  }

  .testimonial {
    padding: 30px;
    margin-right: 30px;
  }

  .testimonials__arrows {
    margin-top: -21px;
  }

  .testimonials__arrow svg {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 1023px) {
  .testimonials {
    padding: 100px 0;
  }

  .testimonials__slider .slick-dots {
    padding-top: 50px;
  }

  .testimonial__body {
    margin-top: 24px;
  }

  .testimonial__body-icon {
    margin-bottom: 24px;
  }

  .testimonials__slider .slick-dots {
    width: 78vw;
  }
}

@media (max-width: 991px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonial {
    padding: 20px;
    margin-right: 15px;
  }

  .testimonials__slider .slick-dots {
    width: 75vw;
  }
}

@media (max-width: 767px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials__slider {
    width: 140vw;
  }

  .testimonials__arrows {
    gap: 5px;
  }

  .testimonials__slider .slick-dots {
    width: 70vw;
  }
}

@media (max-width: 575px) {
  .testimonials__slider {
    width: 175vw;
  }

  .testimonials__slider .slick-dots {
    width: 90vw;
  }

  .testimonials__arrows {
    display: none;
  }
}

/* ***************************** */
/*         Image Gallery         */
/* ***************************** */
.gallery {
  padding: 105px 0 0;
  background-color: var(--dark-color);
}

.gallery .container {
  border-bottom: 1px solid #ffffff3d;
  padding-bottom: 125px;
}

.gallery__title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--global-font);
  margin: 0;
  color: var(--light-color);
}

.gallery__items {
  padding-top: 40px;
  position: relative;
  gap: 35px;
  flex-wrap: wrap;
}

.gallery__item {
  flex: 1;
  min-width: 400px;
  position: relative;
}

/* .gallery__item-figure {
  width: 100%;
  height: 100%;
}*/

.gallery__item-figure img {
  width: 100%;
}

.gallery__item-content {
  position: absolute;
  left: 52px;
  bottom: 52px;
  color: var(--light-color);
  z-index: 999;
}

.gallery__item::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 85%));
}

.gallery__item-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--global-font);
  margin: 0 0 10px;
  color: var(--light-color);
}

.gallery__item-subtitle {
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  color: #ffffffcc;
}

.gallery__more-link {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  padding: 17px 92px;
}

.gallery__more-link-wrap {
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 1023px) {
  .gallery__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .gallery {
    padding-top: 80px;
  }

  .gallery .container {
    padding-bottom: 80px;
  }

  .gallery__item-content {
    left: 20px;
    bottom: 20px;
  }

  .gallery__items {
    gap: 20px;
  }

  .gallery__item {
    min-width: 350px;
  }

  .gallery__title {
    font-size: 36px;
  }

  .gallery__item-title {
    font-size: 22px;
  }

  .gallery__item-subtitle {
    font-size: 16px;
  }

  .gallery__more-link {
    font-size: 16px;
    padding: 15px 70px;
  }

  .gallery__more-link-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .gallery {
    padding-top: 60px;
  }

  .gallery .container {
    padding-bottom: 60px;
  }

  .gallery__more-link-wrap {
    margin-top: 40px;
  }

  .gallery__title {
    font-size: 32px;
  }

  .gallery__item {
    min-width: 280px;
    width: 100%;
  }

  .gallery__item-title {
    font-size: 20px;
  }

  .gallery__item-subtitle {
    font-size: 15px;
  }

  .gallery__more-link {
    font-size: 15px;
    padding: 12px 50px;
  }
}

/* ***************************** */
/*        Call to Action         */
/* ***************************** */
.cta {
  padding: 95px 0 135px;
  background-color: var(--dark-color);
}

.cta__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--global-font);
  color: var(--light-color);
  margin: 0;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.cta__form {
  margin-top: 45px;
  gap: 16px;
}

.cta__form__input {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  color: var(--light-color);
  padding: 16px 24px;
  width: 400px;
  border: 1px solid var(--light-color);
  background-color: transparent;
  border-radius: 50px;
  transition: 0.3s;
}

.cta__form__input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.cta__form__input::placeholder {
  color: var(--light-color);
}

.cta__form__submit {
  font-size: 18px;
  font-family: var(--global-font);
  font-weight: 700;
  color: var(--light-color);
  background-color: var(--primary-color);
  padding: 17px 32px;
  border-width: 2px;
  border-color: var(--primary-color);
  cursor: pointer;
}

.cta__form__submit:hover {
  color: var(--primary-color);
}

@media (max-width: 1023px) {
  .cta__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .cta {
    padding: 80px 0 100px;
  }

  .cta__title {
    font-size: 36px;
  }

  .cta__form__input {
    font-size: 16px;
    padding: 15px 20px;
  }

  .cta__form__submit {
    font-size: 16px;
    padding: 16px 30px;
  }
}

@media (max-width: 767px) {
  .cta {
    padding: 60px 0 80px;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__form__input {
    font-size: 15px;
    padding: 12px 20px;
  }

  .cta__form__submit {
    font-size: 15px;
    padding: 12px 24px;
  }
}

@media (max-width: 575px) {
  .cta {
    padding: 60px 0;
  }

  .cta__form {
    flex-direction: column;
  }

  .cta__form__input {
    max-width: 100%;
  }
}

/* ***************************** */
/*        Payments Mathods       */
/* ***************************** */
.payments {
  padding: 95px 0 50px;
}

.payments__title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.payments__mathods {
  margin-top: 35px;
}

.payments__mathods img {
  width: 100%;
}

@media (max-width: 1023px) {
  .payments__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .payments {
    padding: 80px 0 50px;
  }

  .payments__title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .payments {
    padding-top: 60px;
  }

  .payments__title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  /* .payments__mathods {
    height: 180px;
  }

  .payments__mathods img {
    height: 100%;
    width: 100%;
  } */
}

/* ***************************** */
/*            Footer             */
/* ***************************** */
/* ******** Main Footer ******** */
.footer {
  padding: 70px 0 0;
  border-top: 1px solid #00000033;
}

.footer__widgets {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer__brand-details {
  width: 380px;
  margin-right: 50px;
}

.footer__brand-img {
  display: inline-block;
  margin: 0 0 20px;
  width: 200px;
}

.footer__brand-para {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  font-family: var(--primary-font);
  columns: var(--dark-color);
  margin: 0 0 20px;
}

.footer__widget {
  flex: 1;
}

.footer__widget-links li:not(:last-child) {
  margin-bottom: 24px;
}

.footer__widget-link,
.footer__widget-label {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  font-family: var(--global-font);
  color: var(--dark-color);
  display: inline-block;
  transition: 0.3s;
}

.footer__widget-label {
  display: block;
}

.footer__widget-link:hover {
  color: var(--primary-color);
}

.footer__widget-label .footer__widget-link {
  font-weight: 700;
  margin-top: 12px;
  display: block;
}

.main-footer__bottom {
  margin: 110px 0 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 135px;
}

.footer__btns {
  gap: 8px;
}

.footer__btn {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.footer__btn:hover {
  background-color: var(--primary-color);
}

.footer__social {
  gap: 28px;
  /*margin-top: 20px;*/
}

.footer__social-link path {
  transition: 0.3s;
}

.footer__social-link:hover path {
  fill: var(--primary-color);
}

/* ********** Footer Bottom *********** */
.footer__bottom {
  margin-top: 55px;
  padding: 25px 0;
  background-color: #022833;
}

.footer__bottom .container {
  gap: 15px;
}

.footer__copyright-text {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  letter-spacing: 2%;
  text-align: center;
}

.footer__scroll-top-btn path,
.footer__scroll-top-btn rect {
  transition: 0.3s;
}

.footer__scroll-top-btn:hover path {
  fill: var(--light-color);
}

.footer__scroll-top-btn:hover rect {
  fill: var(--primary-color);
}


@media (max-width: 1200px) {
  .footer__brand-details {
    width: 100%;
  }

  .footer__brand-para {
    max-width: 680px;
  }

  .footer__widgets {
    flex-wrap: wrap;
    gap-row: 40px;
  }

  .footer__widget {
    min-width: 200px;
  }

  .main-footer__bottom {
    gap: 50px;
  }
}

@media (max-width: 991px) {
  .main-footer__bottom {
    margin-top: 60px;
  }

  .footer__copyright-text {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .main-footer__bottom {
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }

  .footer__bottom {
    margin-top: 30px;
    padding: 10px 0;
  }

  .footer {
    padding: 50px 0 0;
  }
}

/* ***************************** */
/*         Fancy Button          */
/* ***************************** */
.btn-solid,
.btn-transparent {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.fancy-btn__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.fancy-btn__bg-pattern {
  position: absolute;
  top: -20%;
  right: 115%;
  transform: skew(35deg);
  transition: 0.4s;
}

.btn-solid:hover .fancy-btn__bg-pattern,
.btn-transparent:hover .fancy-btn__bg-pattern {
  right: -20%;
  top: -50px;
}

.top-header__btn svg path{
    transition: .3s;
}

.top-header__btn:hover svg path{
    stroke: #fff;
}

/* .top-header__btn:hover .fancy-btn__bg-pattern {
  right: -50%;
} */

.btn-transparent .fancy-btn__bg-pattern .pattern-draw {
  fill: var(--primary-color);
}

.feature__link .fancy-btn__bg-pattern .pattern-draw,
.btn-solid .fancy-btn__bg-pattern .pattern-draw {
  /* .register-btn .fancy-btn__bg-pattern .pattern-draw */
  fill: var(--light-color);
}

.btn-solid .fancy-btn__bg::after,
.btn-transparent .fancy-btn__bg::after {
  content: "";
  position: absolute;
  top: -25%;
  right: calc(115% + 40px);
  height: 150%;
  width: 130%;
  background-color: var(--light-color);
  transform: skew(35deg);
  transition: 0.4s;
  z-index: -1;
}

.btn-transparent .fancy-btn__bg::after,
/* .register-btn .fancy-btn__bg::after, */
.feature__link .fancy-btn__bg::after {
  background-color: var(--primary-color);
}

.btn-solid:hover .fancy-btn__bg::after,
.btn-transparent:hover .fancy-btn__bg::after {
  right: -15%;
}

/* ***************************** */
/*            Login              */
/* ***************************** */
.acc-management {
  position: relative;
  padding: 90px 15px 100px;
  z-index: 1;
  background-color: #e5eef4;
}

.acc-management::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 275px;
  width: 100%;
  background-color: #38606c;
  z-index: -1;
}

.acc-management__form {
  width: 600px;
  background-color: var(--light-color);
  padding: 32px;
  margin: 0 auto;
}

.form__title {
  font-size: 30px;
  line-height: 1.2;
  font-family: var(--global-font);
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 12px;
}

.form__short-dsc {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--dark-color);
  margin: 0;
}

.acc-management .form__header,
.acc-management .form__fields {
  margin: 0 0 32px;
}

.acc-management .form__row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.verification-fields .form__field {
  margin: 0 !important;
}

.verification-fields .form__input {
  text-align: center;
}

.input-password-wrap {
  position: relative;
}

.input-password-wrap .eye {
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 99;
  cursor: pointer;
}

.input-password-wrap .open.eye::after {
  content: "";
}

.input-password-wrap .eye::after {
  height: 2px;
  width: 18px;
  background-color: #b9b9b9;
  position: absolute;
  left: -1px;
  top: 11px;
  transform: rotate(-55deg);
}

.verification-fields input[type="number"]::-webkit-inner-spin-button {
  display: none;
}

.acc-management .form__row .form__field {
  flex: 1;
}

.acc-management .form__field:not(:last-child),
.acc-management .form__row .form__field:last-child {
  margin-bottom: 24px;
}

.acc-management .form__label {
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--global-font);
  font-weight: 500;
  color: var(--dark-color);
  margin: 0 0 8px;
  display: inline-block;
}

.acc-management .form__input,
.acc-management .form__select,
.acc-management .form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--global-font);
  color: var(--dark-color);
}

.acc-management .form__input:focus {
  outline: 1px solid var(--primary-color);
}

.acc-management .form__links {
  gap: 30px;
  margin-bottom: 32px;
}

.acc-management .form__links p,
.acc-management .form__links .form__link {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  font-family: var(--global-font);
  color: var(--dark-color);
}

.acc-management .form__links .form__link {
  font-weight: 600;
  text-decoration: underline;
}

.acc-management .form__links .form__link:hover {
  color: var(--primary-color);
}

.acc-management .form__submit {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  color: var(--light-color);
  background-color: var(--primary-color);
  padding: 14px 32px;
  border-radius: 50px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  border: none;
}

.acc-management .form__submit:hover {
  background-color: #164102;
}

@media (max-width: 991px) {
  .acc-management {
    padding: 80px 15px;
  }

  .form__title {
    font-size: 28px;
  }

  .acc-management .form__input,
  .acc-management .form__select,
  .acc-management .form__textarea {
    padding: 10px 15px;
  }
}

@media (max-width: 767px) {
  .acc-management {
    padding: 60px 15px;
  }

  .acc-management::after {
    height: 220px;
  }

  .acc-management__form {
    max-width: 100%;
    padding: 24px;
  }

  .form__title {
    font-size: 24px;
  }

  .acc-management .form__header,
  .acc-management .form__fields {
    margin: 0 0 24px;
  }

  .form__short-dsc {
    font-size: 15px;
  }

  .acc-management__form {
    padding: 20px;
  }

  .acc-management .form__row {
    gap: 0;
    flex-direction: column;
  }

  .acc-management .form__row.verification-fields {
    flex-direction: row;
    gap: 10px;
  }

  .acc-management .form__field:not(:last-child),
  .acc-management .form__row .form__field:last-child {
    margin-bottom: 16px;
  }

  .acc-management .form__links {
    gap: 20px;
    margin-bottom: 24px;
  }

  .acc-management .form__submit {
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 50px;
    width: 100%;
  }

  .acc-management .form__row .form__field {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .acc-management .form__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ***************************** */
/*            Booking            */
/* ***************************** */
.booking {
  background-color: #e5eef4;
  padding: 80px 0 100px;
}

.booking > .flex-start-spb {
  gap: 20px;
}

.booking__main {
  flex: 1;
}

.booking__bredcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}

.booking__bredcrumb,
.booking__bredcrumb a {
  font-size: 15px;
  font-family: var(--global-font);
  display: inline-block;
  margin-right: 10px;
  color: var(--dark-color);
  line-height: 1.2;
  font-weight: 400;
}

.booking__bredcrumb a:hover {
  color: var(--primary-color);
}

.booking__bredcrumb:last-child a {
  pointer-events: none;
}

.booking__box-row-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}

.booking__box-row-wrap .booking__box-row {
  min-width: 300px;
}

.booking__box-row:not(:last-child) {
  margin-bottom: 24px;
}

.booking__title {
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--global-font);
  line-height: 1.2;
  color: var(--dark-color);
}

.booking__box {
  padding: 24px 40px;
  background-color: var(--light-color);
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin: 16px 0 0;
}

.booking__box-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.booking__box-btn,
.book-btn,
.fig-content__btn {
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--global-font);
  color: var(--primary-color);
  padding: 8px 20px;
  background-color: rgba(29, 94, 0, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.airline {
  gap: 10px;
  margin: 0 auto;
}

.airline.flex-start {
  display: flex;
  align-items: flex-start;
}

.airline__logo {
  width: 60px;
  height: 60px;
  /* border-radius: 50%; */
  overflow: hidden;
  display: none;
}

.airline__logo img {
  width: 100%;
}

.airline__name {
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--global-font);
  font-weight: 400;
  color: var(--dark-color);
  margin: 0 0 8px;
}

.airline .airline__text {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--dark-color);
  margin: 0 0 4px;
  opacity: 0.7;
}

.airline__text:last-child {
  margin: 0;
}

.airline__text span {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin: 0 10px;
  display: inline-block;
}

.airline-type {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.take-off,
.duration,
.landing {
  text-align: center;
}

.duration__icon {
  line-height: 0;
}

.take-off p,
.duration p,
.landing p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-color);
  margin: 0;
}

.take-off p b,
.duration p b,
.landing p b {
  font-size: 16px;
  margin: 0 0 8px;
  display: inline-block;
}

.duration p b {
  margin: 0;
}

.booking .acc-management::after {
  display: none;
}

.booking .acc-management__form {
  width: 100%;
}

.booking .acc-management {
  padding: 24px 0 0;
  background-color: none;
}

.booking__aside {
  padding-top: 80px;
  width: 380px;
}

.booking__aside-box {
  padding: 24px;
  background-color: var(--light-color);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.booking__aside-box__title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--global-font);
  margin: 0 0 24px;
  color: var(--dark-color);
}

.booking__aside-box__body {
  margin: 0 0 24px;
}

.booking__aside-box__row {
  margin: 0 0 16px;
  gap: 10px;
}

.booking__aside-box__row span {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--dark-color);
}

.booking__aside-box__row span:last-child {
  font-weight: 400;
  font-size: 13px;
  opacity: 0.8;
}

.booking__aside-box__footer {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.booking__aside-box__footer .booking__aside-box__row span:last-child {
  font-size: 16px;
  opacity: 1;
  font-weight: 600;
}

.booking__aside-box__footer .booking__aside-box__row {
  margin: 0;
}

@media (max-width: 1300px) {
  .booking__aside {
    width: 280px;
  }
}

@media (max-width: 1023px) {
  .booking > .flex-start-spb {
    flex-direction: column;
  }

  .booking__aside {
    width: 100%;
  }

  .booking__aside {
    padding: 0;
  }

  .booking__main {
    width: 100%;
  }
  
    .booking__box {
    padding: 24px;
    }
}

@media (max-width: 991px) {
  .booking__box-btn,
  .book-btn,
  .fig-content__btn {
    font-size: 16px;
    padding: 8px 20px;
  }

  .booking {
    padding: 80px 0;
  }

  .booking__box-row:not(:last-child) {
    margin-bottom: 20px;
  }

  .booking__title {
    margin: 15px 0 0;
    font-size: 22px;
  }

  .booking__box-title {
    font-size: 18px;
  }

  .booking__aside-box__title {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .booking__box-btn,
  .book-btn,
  .fig-content__btn {
    font-size: 15px;
    padding: 6px 15px;
  }

  .booking {
    padding: 50px 0;
  }

  .booking__title {
    font-size: 20px;
  }

  .booking__box {
    padding: 20px;
    margin: 15px 0 0;
  }

  .booking__box-title {
    font-size: 16px;
  }

  .airline {
    gap: 8px;
  }

  .airline__logo {
    width: 50px;
    height: 50px;
  }

  .airline__name {
    font-size: 15px;
  }

  .airline__text span {
    height: 6px;
    width: 6px;
    margin: 0 6px;
  }

  .airline-type,
  .booking__aside-box__row span,
  .booking__aside-box__footer .booking__aside-box__row span:last-child {
    font-size: 15px;
  }

  .take-off p b,
  .duration p b,
  .landing p b {
    font-size: 13px;
    margin: 0 0 6px;
  }
  
  .duration__icon svg{
      width: 80px;
  }

  .booking .acc-management {
    padding: 15px 0 0;
  }

  .booking__aside-box {
    padding: 20px;
  }

  .booking__aside-box__title {
    font-size: 16px;
    margin: 0 0 15px;
  }

  .booking__aside-box__body {
    margin: 0 0 15px;
  }

  .booking__aside-box__row {
    margin: 0 0 15px;
  }

  .booking__aside-box__footer {
    padding-top: 15px;
  }
}

@media (max-width: 575px) {
  .airline-row {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: flex-start;
  }
  

}

/* ***************************** */
/*            Listing            */
/* ***************************** */
.listing {
  padding: 105px 0 145px;
  background-color: #e5eef4;
  position: relative;
  z-index: 1;
}

.listing::after {
  content: "";
  height: 275px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #38606c;
  z-index: -1;
}

.listing__body {
  margin-top: 50px;
  gap: 20px;
}

.listing__aside {
  width: 410px;
  height: calc(100vh - 16px);
  position: sticky;
  top: 8px;
  overflow-y: auto;
  padding-right: 3px;
  scrollbar-width: thin;
  background-color: #e5eef4;
  scrollbar-color: var(--primary-color) var(--light-color);
}

.listing__aside::-webkit-scrollbar {
  width: 6px;
}

.listing__aside::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 3px;
}

.listing__aside::-webkit-scrollbar-track {
  background-color: var(--light-color);
}

.listing__aside-box {
  padding: 32px 24px;
  background-color: var(--light-color);
  border: 1px solid #e2e2e9;
  margin: 0 0 16px;
}

.listing__aside-box:last-child {
  margin: 0;
}

.listing__aside-box__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 22px;
}

.listing__aside-box__row {
  gap: 12px;
}

.listing__aside-box__row:not(:last-child) {
  margin-bottom: 24px;
}

.listing__aside-box__row input[type="checkbox"] {
  height: 18px;
  width: 18px;
  accent-color: var(--primary-color);
  margin: 0;
}

.two-handler-range {
  position: relative;
}

input[type="range"] {
  pointer-events: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  /* animate: 0.2s; */
  background: var(--primary-color);
  border-radius: 1px;
  border-radius: 5px;
  pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
  z-index: 99;
  position: relative;
  box-shadow: 0px 1px 4px #0000005e;
  border: 1px solid #e7e7e7;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
  margin-top: -5px;
  pointer-events: initial;
}

.range-handler2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.listing__aside-box__row input[type="range"] {
  width: 100%;
  accent-color: var(--light-color);
  margin: 0 0 20px;
}

.listing__aside-box__row label {
  flex: 1;
  gap: 15px;
  font-size: 16px;
  line-height: 1.2;
  font-family: var(--global-font);
  color: var(--dark-color);
  font-weight: 400;
}

/* Listing Main Area */
.listing__main {
  flex: 1;
  width: calc(100% - 410px);
}

.listing__main-title {
  font-size: 34px;
  font-weight: 500;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 34px;
  line-height: 1.2;
}

.listing__main__box {
  margin-bottom: 16px;
  background-color: var(--light-color);
}

.listing__main__box:last-child {
  margin: 0;
}

.schedule {
  border-bottom: 1px solid #0000001f;
  width: 100%;
  padding: 0 24px;
}

.schedule-wrap {
  position: relative;
}

.schedule__prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
}

.schedule__next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
}

.schedule__item {
  padding: 13px;
  text-align: center;
  border-right: 1px solid #0000001f;
  transition: 0.3s;
  cursor: pointer;
  min-width: 110px;
}

.schedule__item:hover,
.schedule__item.active-schedule {
  background-color: rgba(29, 94, 0, 0.1);
}

.schedule__item__text {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.schedule__item__text b {
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0 0;
  display: inline-block;
}

.short-by-wrap {
  scrollbar-width: none;
}

.short-by {
  padding: 12px 24px;
  gap: 16px;
}

.short-by__item {
  flex: 1;
  padding: 8px 15px;
  text-align: center;
  background-color: #f2f2f2;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 8px;
  border-bottom: 3px solid transparent;
}

.short-by__item:hover,
.short-by__item.active {
  background-color: #e8efe5;
  border-color: var(--primary-color);
}

.short-by__item-title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 8px;
}

.short-by__item-text {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--dark-color);
  margin: 0;
  opacity: 0.8;
}

/* Accordion */
.accordion__item-header {
  padding: 24px;
}


.accordion__item-widgets.flex-start-spb {
  gap: 48px;
}

.airline__name {
  /* used previous style line no: 2142 */
}

.airline__text {
  /* used previous style line no: 2151 */
  /*text-align: start;*/
}

.accordion__item-col {
  text-align: center;
  flex: 1;
}

/*.accordion__item-col.btn-wrap {*/
/*  text-align: end;*/
/*}*/

.accordion__item-col p {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--dark-color);
  margin: 0;
  white-space: nowrap;
}

.accordion__item-col p.icon {
  line-height: 0;
  margin-top: -8px;
}

.accordion__item-col p b {
  font-size: 13px;
  display: inline-block;
  margin: 0 0 6px;
}

.listing .book-btn {
  /* used previous style line no: 2114 */
  padding: 11px 26px;
  font-size: 15px!important;
  white-space: nowrap;
  background-color: var(--primary-color);
  color: #ffffff;
}

.accordion__collapse-trigger {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 24px;
  margin-left: auto;
  background-color: transparent;
  display: block;
  width: max-content;
  cursor: pointer;
  transition: 0.3s;
}

/* Accordion Body */
.accordion__item-body {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: none;
}

.accordion__item-body__tabs-wrap {
  margin: 0 0 35px;
  scrollbar-width: none;
}

.accordion__item-body__tabs {
  display: flex;
  width: max-content;
}

.accordion__item-body__tab {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--global-font);
  color: var(--dark-color);
  display: inline-block;
  padding: 10px 32px;
  background-color: #f2f2f2;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  border-right: 2px solid rgba(0, 0, 0, 0.08);
}

.accordion__item-body__tab:first-child {
  border-radius: 8px 0 0 8px;
}

.accordion__item-body__tab:last-child {
  border-right: none;
  border-radius: 0 8px 8px 0;
}

.active-tab.accordion__item-body__tab {
  border-color: var(--primary-color);
  border-width: 0 0 3px 0;
  background-color: #e8efe5;
}

.accordion__item-body__title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--global-font);
  color: var(--global-font);
  margin: 0 0 24px;
}

.accordion__item-body__airline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 24px;
}

.accordion__item-body__row {
  gap: 40px;
}

.accordion__item-body__col p {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--dark-color);
  margin: 0 0 8px;
}

.accordion__item-body__col p b {
  font-size: 16px;
}

.accordion__item-body__col p:last-child {
  margin: 0;
}

.accordion__item-body__col .icon {
  margin: -8px 0 0;
  line-height: 0;
}

.accordion__item-body__col.text-center {
  text-align: center;
}

.listing__aside-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  display: none;
}

.listing__aside-close svg {
  pointer-events: none;
  height: 24px;
  width: 24px;
  z-index: 9;
}

.listing__aside-trigger {
  display: none;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.listing__aside-trigger:hover {
  opacity: 1;
}

.listing__aside-trigger svg {
  pointer-events: none;
  height: 32px;
  width: 32px;
}

@media (max-width: 1420px) {
  .accordion__item-widgets.flex-start-spb {
    gap: 30px;
  }

  .accordion__item-header .accordion__item-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  /*.accordion__item-col.btn-wrap {*/
  /*  flex: 100%;*/
  /*}*/

  .accordion__collapse-trigger {
    margin-top: -30px;
    padding-bottom: 12px;
  }
}

@media (max-width: 1200px) {
  .listing__body {
    gap: 0;
  }

  .listing__aside {
    position: fixed;
    top: 0;
    width: 395px;
    height: 100vh;
    padding: 1px 0;
    left: -400px;
    z-index: 9999;
    transition: 0.3s;
  }

  .active-aside.listing__aside {
    left: 0;
    box-shadow: 5px 0 15px 0 #0000003b;
  }

  .listing__body.flex-start-spb {
    flex-direction: column;
    margin-top: 80px;
  }

  .listing__aside-close,
  .listing__aside-trigger {
    display: block;
  }

  /* .listing__aside .listing__aside-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
  }

  .listing__aside-box {
    flex: 49%;
    margin: 0;
  }

  .listing__aside-box:nth-child(1) {
    order: 3;
  }

  .listing__aside-box:last-child {
    order: 4;
  } */

  .listing__main {
    width: 100%;
  }

  .listing__main-title {
    padding-left: 50px;
    margin-top: -35px;
  }
}

@media (max-width: 1023px) {
  .short-by__item-title {
    font-size: 15px;
  }

  .short-by__item {
    padding: 8px 10px;
    /* flex: 1;
    border-radius: 8px;
    border-bottom: 3px solid transparent; */
  }

  .accordion__item-col p b {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  /* .accordion__item-header .accordion__item-row {
    flex-direction: column;
  } */
  .listing {
    padding: 80px 0;
  }

  .listing__aside-box {
    padding: 20px 15px;
    margin: 0 0 10px;
  }

  .listing__aside-box__title {
    font-size: 18px;
    margin: 0 0 20px;
  }

  .listing__aside-box__row input[type="checkbox"] {
    height: 16px;
    width: 16px;
  }

  .listing__aside-box__row label {
    gap: 8px;
    font-size: 15px;
  }

  .listing__main-title {
    font-size: 30px;
    margin: -35px 0 30px;
  }

  .schedule__item__text b {
    font-size: 15px;
  }

  .schedule {
    padding: 0 15px;
  }

  .schedule__prev {
    left: -5px;
  }

  .schedule__next {
    right: -5px;
  }

  .short-by {
    padding: 10px 15px;
    gap: 10px;
  }

  .short-by__item-title {
    font-size: 16px;
    margin: 0 0 8px;
  }

  .accordion__item-header,
  .accordion__item-body {
    padding: 15px;
  }

  .accordion__item-body__tabs-wrap {
    margin: 0 0 20px;
  }

  .accordion__item-body__tab {
    font-size: 15px;
    padding: 10px 20px;
    /* border-bottom: 3px solid transparent;
    border-right: 2px solid rgba(0, 0, 0, 0.08); */
  }

  .accordion__item-body__title {
    font-size: 18px;
    margin: 0 0 20px;
  }

  .accordion__item-body__col p b {
    font-size: 15px;
  }

  .accordion__item-body__row {
    gap: 20px;
  }

  /*
.listing__body {
  margin-top: 50px;
  gap: 20px;
}

.listing__aside {
  width: 394px;
  height: calc(100vh - 16px);
}

.accordion__item-header .accordion__item-row,
.accordion__item-widgets.flex-start-spb {
  gap: 48px;
}

.accordion__collapse-trigger {
  font-size: 14px;
  margin-top: 24px;
}

.accordion__item-body__col .icon {
  margin: -8px 0 0;
}

.listing__aside-close {
  top: 10px;
  right: 10px;
}

  */
}

.accordion__item-widgets{
  width: 100%;
}
.accordion__item-row-mod{
  flex-wrap: wrap!important;
}

.accordion__item_inner {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  /*margin-bottom: -35px;*/
}

.accordion__item_inner .airline {
  /* transform: translateY(-30px); */
}
.accordion__item-footer{
  display: flex;
  align-items: center;    
  width: 100%;
  justify-content: space-between;
  gap: 48px;
}
@media(min-width: 980px){
  .accordion__item-footer{
    padding-left: 110px;
  }
}

/*.accordion__item-col p{*/
/*  min-width: 220px;*/
/*}*/

.airline__info {
  margin-bottom: 25px;
}
/* .airline__info p{
  text-align: center;
} */

@media (max-width: 767px) {
  .listing {
    padding: 50px 0;
  }

  .listing__aside {
    width: 320px;
  }
.accordion__item-footer{
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #dddddd;
    padding-top: 12px;
}
  .listing__aside-box__title {
    font-size: 16px;
    margin: 0 0 15px;
  }

  .listing__aside-box__row:not(:last-child),
  .listing__aside-box__row input[type="range"] {
    margin-bottom: 15px;
  }

  .listing__aside-box__row label {
    gap: 8px;
    font-size: 14px;
  }

  /* .listing__main {
    width: calc(100% - 320px);
  } */

  .listing__main-title {
    font-size: 24px;
    margin: -25px 0 30px;
    padding-left: 40px;
  }

  .accordion__item-widgets.flex-start-spb {
    flex: 100%;
    width: 100%;
  }

  .accordion__item-header .accordion__item-row {
    flex-direction: column;
  }

  .short-by {
    padding: 10px 15px;
  }

  .schedule__item {
    padding: 10px;
  }

  .short-by__item {
    padding: 8px 10px;
  }

  .listing__main__box {
    margin-bottom: 10px;
  }

  .book-btn {
    padding: 10px 20px;
  }

  .accordion__item-body__title {
    font-size: 16px;
  }

  .accordion__item-body__airline {
    gap: 8px;
    margin: 0 0 20px;
  }

  .listing__aside-close svg {
    height: 20px;
    width: 20px;
  }

  .listing__aside-trigger svg {
    height: 26px;
    width: 26px;
  }

  .accordion__item-body__row {
    flex-wrap: wrap;
  }

  .accordion__item-body__col {
    width: 30%;
  }

  .accordion__item-body__col.text-center {
    text-align: start;
  }
}

@media (max-width: 575px) {
  .schedule {
    padding: 0;
  }
  
  .accordion__item_inner .airline{
      align-self: flex-start;
  }
  
  .accordion__item-col p{
      font-size: 10px;
  }
  
    .accordion__item-col p b {
    font-size: 12px;
  }


/*.accordion__item_inner:not(:first-child)::after {*/
/*    content: "";*/
/*    height: 1px;*/
/*    width: 100%;*/
/*    position: absolute;*/
/*    top: -25px;*/
/*    left: 0;*/
/*    background-color: rgb(29, 94, 0);*/
/*}*/


/*.accordion__item-col.btn-wrap {*/
/*  text-align: center;*/
/*  flex: 100%;*/
/*}*/

  .schedule__prev,
  .schedule__next {
    display: none !important;
  }

  .accordion__item-body__col {
    width: 47%;
  }

  .accordion__item-body__tabs-wrap,
  .short-by-wrap {
    overflow-x: auto;
  }

  .short-by {
   max-width: 100%;
  }

.accordion__item_inner{
    flex-direction: column;
}

  .accordion__item-widgets.flex-start-spb {
    /*min-width: 450px;*/
    justify-content: center;
    align-items: center;
  }

  .accordion__item-header .accordion__item-row {
    flex-direction: row;
  }

  .accordion__item-widgets-wrap {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .accordion__item-header .accordion__item-row {
    overflow: hidden;
  }
}

/* ***************************** */
/*        Figure Conten          */
/* ***************************** */
.fig-content {
  padding: 105px 0;
}

.fig-content .flex-start-spb {
  gap: 130px;
}

.fig-content__thumb,
.fig-content__context {
  flex: 1;
  max-width: 50%;
}

.fig-content__context {
  padding-top: 28px;
}

.fig-content__subtitle {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fig-content__title {
  font-size: 48px;
  line-height: 1.2;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 10px;
  font-weight: 700;
}

.fig-content__para {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--global-font);
  margin: 0 0 20px;
  max-width: 460px;
}

.fig-content__para:last-of-type {
  margin: 0;
}

.fig-content__btn {
  display: inline-block;
  /* used previous style line no: 2114 */
  margin: 32px 0 0;
  padding: 14px 32px;
}

@media (max-width: 1300px) {
  .fig-content .flex-start-spb {
    gap: 50px;
  }

  .fig-content__context {
    padding: 0;
  }
}

@media (max-width: 1023px) {
  .fig-content .flex-start-spb,
  .fig-content .flex-ctr-spb {
    flex-direction: column;
  }

  .fig-content__thumb {
    max-width: 600px;
  }

  .fig-content__context,
  .fig-content__para {
    max-width: 100%;
  }

  .fig-content__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .fig-content {
    padding: 80px 0;
  }

  .fig-content__subtitle {
    font-size: 17px;
  }

  .fig-content__title {
    font-size: 36px;
  }

  .fig-content .flex-start-spb {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .fig-content {
    padding: 50px 0;
  }

  .fig-content__subtitle {
    font-size: 16px;
  }

  .fig-content__title {
    font-size: 32px;
  }

  .fig-content__para {
    font-size: 15px;
    margin: 0 0 15px;
  }

  .fig-content__btn {
    margin: 24px 0 0;
    padding: 10px 24px;
  }
}

/* ***************************** */
/*            Airlines           */
/* ***************************** */
.airlines {
  padding: 0 0 105px;
}

.airlines__inner.flex-ctr-spb {
  gap: 30px;
}

.airline {
  text-align: center;
}
.airline p{
  margin-top: -25px;
}
.airline img{
  width: 140px;
}
@media (max-width: 767px) {
  .airlines {
    padding: 0 0 60px;
  }

  .airlines__inner.flex-ctr-spb {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .airline {
    min-width: 100px;
  }
  
  .airline img{
  width: 100px;
}
}

/* ***************************** */
/*            Our Goal           */
/* ***************************** */
.goal {
  padding: 105px 0 120px;
  background-color: #e5eef4;
}

.goal__inner {
  width: clamp(320px, 88%, 1040px);
  margin: 0 auto;
  padding: 0 15px;
}

.goal__title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 60px;
  text-align: center;
}

.goal__card {
  padding: 40px;
  background-color: var(--light-color);
  margin-bottom: 32px;
}

.goal__card:last-child {
  margin: 0;
}

.goal__card.flex-start-spb {
  gap: 40px;
}

.goal__card__figure {
  width: 258px;
}

.goal__card__figure img {
  width: 100%;
}

.goal__card-context {
  flex: 1;
}

.goal__card__title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--global-font);
  margin: 0 0 10px;
  color: var(--dark-color);
}

.goal__card__dsc {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 20px;
}

@media (max-width: 1023px) {
  .goal__title {
    font-size: 42px;
    margin: 0 0 40px;
  }
}

@media (max-width: 991px) {
  .goal {
    padding: 80px 0;
  }

  .goal__title {
    font-size: 36px;
  }

  .goal__card {
    padding: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .goal__title {
    font-size: 32px;
    margin: 0 0 30px;
  }

  .goal__card.flex-start-spb:nth-child(even) {
    gap: 30px;
    flex-direction: column-reverse;
  }

  .goal__card.flex-start-spb:nth-child(odd) {
    gap: 30px;
    flex-direction: column;
  }

  .goal__card__figure {
    width: 100%;
  }

  .goal__card__title {
    font-size: 24px;
  }

  .goal__card__dsc {
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  .goal__inner {
    width: 100%;
  }

  .goal {
    padding: 60px 0;
  }
}

/* ***************************** */
/*         Contact Area          */
/* ***************************** */
.contact-area__header {
  padding: 110px 0;
  background-color: #38606c;
}

.contact-area__title {
  font-size: 48px;
  line-height: 1.2;
  font-family: var(--global-font);
  font-weight: 700;
  color: var(--light-color);
  margin: 0;
}

.contact-area__text {
  padding: 70px 0;
  background-color: #e5eef4;
}

.contact-area__text .flex-ctr-spb {
  gap: 50px;
}

.contact-area__text-label {
  font-size: 34px;
  font-weight: 400;
  color: var(--dark-color);
  font-family: var(--global-font);
  margin: 0;
  line-height: 1.2;
}

.contact-area__text-para {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--dark-color);
  margin: 0;
  max-width: 50%;
}

.contact-area__body {
  padding: 110px 0 120px;
}

.contact-area__body .flex-start-spb {
  gap: 95px;
}

.contact-info {
  margin: 0 0 45px;
}

.contact-info__title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--dark-color);
  font-family: var(--global-font);
  margin: 0 0 24px;
}

.contact-info__text {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--dark-color);
  margin: 0 0 28px;
  opacity: 0.8;
}

.contact-info__text a{
    font: inherit;
    display: inline-block;
    color: inherit;
    transition: .3s;
}

.contact-info__text a:hover{
    text-decoration: underline;
    color: var(--primary-color);
}

.contact-info__text:last-of-type {
  margin: 0;
}

.contact-info__text span {
  font-size: 20px;
  font-weight: 600;
  min-width: 100px;
  margin-right: 10px;
  display: inline-block;
}

.contact-info__map-box {
  margin-top: 45px;
  max-width: 545px;
}

@media (max-width: 1023px) {
  .contact-area__title {
    font-size: 42px;
  }

  .contact-area__body .flex-start-spb {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .contact-area__header {
    padding: 80px 0;
  }

  .contact-area__title {
    font-size: 36px;
  }

  .contact-area__text {
    padding: 40px 0;
  }

  .contact-area__text-label {
    font-size: 30px;
  }

  .contact-area__text-para {
    font-size: 18px;
  }

  .contact-area__body {
    padding: 80px 0;
  }

  .contact-area__body .flex-start-spb {
    flex-direction: column;
  }

  .contact-info {
    margin: 0 0 20px;
  }

  .contact-info__title {
    font-size: 22px;
    margin: 0 0 20px;
  }

  .contact-info__text {
    margin: 0 0 15px;
  }

  .contact-info__text span {
    font-size: 18px;
  }

  .contact-info__map-box {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .contact-area__header {
    padding: 60px 0;
  }

  .contact-area__title {
    font-size: 32px;
  }

  .contact-area__text-label {
    font-size: 24px;
  }

  .contact-area__text .flex-ctr-spb {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-area__text-para {
    font-size: 16px;
    max-width: 100%;
  }

  .contact-area__body {
    padding: 60px 0;
  }

  .contact-info__title {
    font-size: 20px;
    margin: 0 0 24px;
  }

  .contact-info__text {
    font-size: 15px;
  }

  .contact-info__text span {
    font-size: 16px;
  }
}

/* Contact Form */

.contact-area .acc-management::after {
  display: none;
}

.contact-area .acc-management {
  padding: 0;
  background-color: var(--light-color);
}

.contact-area .acc-management .contact-form {
  background-color: var(--light-color);
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-area .contact-form__title {
  font-size: 24px;
  line-height: 1.2;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 32px;
  font-weight: 600;
}

.contact-area .contact-form .form__row {
  gap: 32px;
}

.contact-area .contact-form .form__textarea {
  height: 275px;
  resize: none;
}

@media (max-width: 1200px) {
  .contact-area .contact-form .form__row {
    gap: 16px;
  }
}

@media (max-width: 1023px) {
  .contact-area .contact-form .form__textarea {
    height: 150px;
  }
}

@media (max-width: 991px) {
  .contact-area .acc-management .contact-form {
    padding: 20px;
  }

  .contact-area .contact-form__title {
    font-size: 22px;
    margin: 0 0 20px;
  }

  .contact-area .acc-management {
    width: 100%;
  }

  .contact-area .contact-form .form__row {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .contact-area .contact-form__title {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .contact-area .contact-form__title {
    font-size: 20px;
  }

  .contact-area .contact-form .form__row {
    flex-direction: column;
    gap: 0;
  }

  .contact-area .contact-form .form__textarea {
    height: 100px;
  }
}

/* ***************************** */
/*         Services page         */
/* ***************************** */
.intro-fig-content {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .intro-fig-content {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .intro-fig-content {
    padding: 60px 0;
  }
}

/* ***************************** */
/*            Airlines           */
/* ***************************** */
.services-main .airlines {
  padding-bottom: 100px;
}

.intro-fig-content .flex-ctr-spb {
  gap: 75px;
}

@media (max-width: 991px) {
  .services-main .airlines {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .services-main .airlines {
    padding-bottom: 60px;
  }
}

/* ***************************** */
/*         Our Services          */
/* ***************************** */
/*  Used previous style line no: 834-1027  */

.our-services {
  background-color: #f1f4f2;
  padding: 110px 0 95px;
}

@media (max-width: 991px) {
  .our-services {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .our-services {
    padding: 60px 0;
  }
}

/* ***************************** */
/*       Best Alternative        */
/* ***************************** */
.best-alternative {
  padding: 110px 0;
}

.best-alternative .flex-ctr-spb {
  gap: 110px;
}

.best-alternative .fig-content__title,
.best-alternative .fig-content__para {
  max-width: 510px;
  margin-bottom: 24px;
}

.best-alternative .fig-content__para:last-of-type {
  margin: 0;
}

@media (max-width: 1200px) {
  .best-alternative .flex-ctr-spb {
    gap: 50px;
  }

  .best-alternative .fig-content__title,
  .best-alternative .fig-content__para {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .best-alternative .flex-ctr-spb {
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .best-alternative {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .best-alternative {
    padding: 60px 0;
  }
}

/* ***************************** */
/*        Customer Care          */
/* ***************************** */
.customer-care {
  padding: 0;
  background-color: var(--dark-color);
}

.customer-care .fig-content__context {
  max-width: 560px;
  padding: 50px 30px 50px 0;
}

.customer-care .fig-content__title,
.customer-care .fig-content__para {
  max-width: 560px;
  color: var(--light-color);
  margin-bottom: 24px;
}

.customer-care .fig-content__para:last-of-type {
  margin: 0;
}

.customer-care .fig-content__thumb img {
  width: 50vw;
  max-width: 50vw;
}

@media (max-width: 1200px) {
  .customer-care .fig-content__thumb img {
    width: 63vw;
    max-width: 63vw;
  }
}

@media (max-width: 1023px) {
  .customer-care {
    padding: 70px 0;
  }

  .services-main .customer-care .flex-ctr-spb {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .customer-care .fig-content__context {
    max-width: 100%;
    padding: 0;
  }

  .customer-care .fig-content__title,
  .customer-care .fig-content__para {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .fig-content__thumb {
    max-width: 100%;
  }

  .customer-care .fig-content__thumb img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .customer-care {
    padding: 50px 0;
  }
}

/* ***************************** */
/*       Best Alternative        */
/* ***************************** */
.usefull-locator {
  padding: 110px 0 125px;
}

.usefull-locator .flex-ctr-spb {
  gap: 110px;
}

.usefull-locator .fig-content__context,
.usefull-locator .fig-content__para {
  max-width: 510px;
}

.usefull-locator .fig-content__title {
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .usefull-locator .flex-ctr-spb {
    gap: 50px;
  }
}

@media (max-width: 1023px) {
  .usefull-locator .fig-content__context,
  .usefull-locator .fig-content__para {
    max-width: 100%;
  }

  .usefull-locator .flex-ctr-spb {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .usefull-locator {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .usefull-locator .fig-content__title {
    margin-bottom: 15px;
  }
}

/* ****************************** */
/*   Frequently Asked Questions   */
/* ****************************** */

.faq {
  padding: 110px 0 130px;
  background-color: #f1f4f2;
}

.faq__inner {
  width: clamp(320px, 85%, 985px);
  margin: 0 auto;
  padding: 0 15px;
}

.faq__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-color);
  font-family: var(--global-font);
  line-height: 1.2;
  margin: 0;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.faq__items {
  padding-top: 44px;
}

.faq__item:not(:last-child) {
  margin-bottom: 20px;
}

.faq__item {
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--light-color);
}

.faq__item__header {
  padding: 28px 55px 28px 35px;
  position: relative;
  cursor: pointer;
}

.faq__item__title {
  font-size: 20px;
  line-height: 1.3;
  font-family: var(--global-font);
  color: #000000;
  font-weight: 500;
  margin: 0;
}

.faq__item__collapse-icon,
.faq__item__collapse-icon::after {
  position: absolute;
  top: 50%;
  right: 36px;
  width: 2px;
  height: 16px;
  background-color: #000000;
  transform: translateY(-50%);
  transition: 0.3s;
}

.faq__item__collapse-icon::after {
  content: "";
  height: 2px;
  width: 18px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.active-collpse .faq__item__header .faq__item__collapse-icon {
  transform: translateY(-50%) rotate(-90deg);
}

.active-collpse .faq__item__header .faq__item__collapse-icon::after {
  transform: translate(-50%, -50%) scale(0.1);
}

.faq__item__body {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 35px;
  display: none;
}

.faq__item__dsc {
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

@media (max-width: 991px) {
  .faq__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .faq {
    padding: 80px 0;
  }

  .faq__title {
    font-size: 36px;
  }

  .faq__item__title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }

  .faq__title {
    font-size: 32px;
  }

  .faq__items {
    padding-top: 35px;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 16px;
  }

  .faq__item__header {
    padding: 15px 35px 15px 15px;
  }

  .faq__item__title {
    font-size: 16px;
  }

  .faq__item__collapse-icon,
  .faq__item__collapse-icon::after {
    right: 20px;
  }

  .faq__item__body {
    padding: 15px 20px;
  }

  .faq__item__dsc {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .faq__inner {
    width: 100%;
  }
}

/* ****************************** */
/*        Mobile Offcanvas        */
/* ****************************** */
.mbl-offcanvas {
  height: 100vh;
  width: 280px;
  background-color: var(--light-color);
  right: -281px;
  top: 0;
  position: fixed;
  padding: 80px 1px 30px 0;
  transition: 0.3s;
  z-index: 999999;
}

.offcanvas-active.mbl-offcanvas {
  right: 0;
  box-shadow: 0 0 15px 0 #00000021;
}

.mbl-offcanvas__close {
  height: 30px;
  width: 30px;
  border: 1px solid var(--dark-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 22px;
  color: var(--dark-color);
  cursor: pointer;
  line-height: 1;
  padding-bottom: 3px;
}

.mbl-offcanvas__logo {
  max-width: 60%;
  margin: 0 auto 30px;
}

.mbl-offcanvas__nav-list a {
  font-size: 16px;
  font-weight: 400;
}

.mbl-offcanvas__nav-list a {
  display: block;
  text-decoration: none;
}

.mbl-offcanvas__nav-list > li {
  border-bottom: solid 1px #00000015;
}

.mbl-offcanvas__nav-list > li a {
  color: var(--dark-color);
  padding: 14px 20px;
}

.mbl-offcanvas__nav-list > li a:hover,
.mbl-offcanvas__nav-list > li a.active-link {
  color: #ffffff;
  background-color: var(--dark-color);
}

.terms-page{
  padding: 80px 0;
}

.terms-page h1{
  font-size: 42px;
  margin: 0 0 25px;
}

.terms-page p{
  line-height: 1.6;
}


/*********** Loader On Form Submit *************/
#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    background-color:  #C20002;
    z-index: 999999;
}

.spinner {
    text-align: center;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.loader-text{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #1d5e00;
    margin: 24px 0 0 0;
}


@media (max-width: 767px){
    .spinner svg{
        width: 70px;
        height: 70px;
    }
}





