/* .primary-btn,
.secondary-btn {
  font-weight: 700;
} */

.hero-feature {
  display: flex;
  margin: 0 auto 48px;
  gap: 10px;
}

.feature-wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  padding-top: 40px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.feature-content .feature-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-content .feature-desc h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 120%;
  color: #111111;
}

.feature-content .feature-desc h1 span {
  color: var(--new-blue);
}

.feature-content .feature-desc p {
  font-size: 20px;
  line-height: 150%;
  color: var(--gray-650);
  font-weight: 500;
}

.feature-btn {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: fit-content;
  gap: 24px;
}

.feature-btn p {
  position: relative;
  color: black;
  margin-left: 28px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.feature-btn p::before {
  content: "";
  position: absolute;
  top: 3px;
  margin-left: -28px;
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
  /* background-image: url(../images/icons/credit-card.svg); */
}

.feature-btn p.check-trail::before{
  background-image: url(../images/icons/circle-check.svg);
}

.feature-btn p.credit::before {
  background-image: url(../images/icons/credit-card.svg);
}


/* FEATURE IMG */

.feature-wrapper .feature-img {
  display: flex;
}

.feature-wrapper .feature-img img {
  object-fit: cover;
  max-width: 100%;
  object-position: left top;
}

/* SCROLL IMG */

.scroll-wrap {
  background-color: var(--new-blue);
  padding: 10px 0 80px;
  overflow: hidden;
  width: 100vw;
  position: relative;
  height: inherit;
}

.scroll-box {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 16px;
}

.scroll-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  /* margin: 15px auto; */
  margin: 0px auto;
  font-weight: 700;
}

.scroll-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 3vw;
  gap: 64px;
}

.scroll-primary {
  width: inherit;
  /* width: 80vw; */
  position: absolute;
  left: 0%;
  top: 45%;
  /* animation: primary-feature 20s linear infinite; */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* @keyframes primary-feature {
  from {
    right: -10%;
  }

  to {
    left: -100%;  
  }
} */

/* section.feature-cards {
  margin: 96px 0;
} */

section.feature-cards:nth-of-type(even) {
  background-color: var(--blue-150);
}

section:last-of-type {
  background-color: var(--white);
}

.feature-section {
  display: flex;
  flex-direction: column;
}

.feature-section .section-card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: var(--new-blue);
  border-radius: 24px;
  margin: 60px 0 60px;
}

/* COMMON FOR SECTION-CARDS */

.text-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding: 48px;
}

.text-content .content-title {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff1a;
  border-radius: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  padding: 10px 20px;
}

.content-title .circle {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--white);
}

.text-content h2 {
  font-size: 56px;
  color: var(--white);
}

.text-content p {
  line-height: 1.5;
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}

.text-content .secondary-btn {
  color: var(--new-blue);
}

/* SECTION BG GRADIENT */

.section-card .bg-gradient {
  position: absolute;
  background-color: #ffffff47;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  filter: blur(60px);
  left: 25%;
  border: 1px solid #000;
  z-index: 9;
  top: -50px;
}

.img-content {
  width: 65%;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: flex-end;
  /* height: -webkit-fill-available; */
}

.img-content img {
  width: 100%;
  height: auto;
  border-bottom-right-radius: 22px;
}

.img-content .desk-img {
  display: inline-block;
}

.img-content .mob-img {
  display: none;
  width: 93%;
}

.img-content .mob-img img {
  border-top-left-radius: 16px;
  border-bottom-right-radius: 22px;
}

/* SECTION IMG */

.section-card .map-box {
  position: relative;
  width: 100%;
  border-radius: 12px 0 12px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: white;
  border: 6px solid #5e96cd;
  border-right: none;
  border-bottom: none;
  height: 92%;
  z-index: 10;
  transition: background-image 0.5s linear;
}

.section-card .map-box .map {
  width: 100%;
  height: 100%;
}

/* COUNTRY */

.map-box {
  display: flex;
}

.map-box .map .country-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: white;
  padding: 8px;
  border-radius: 8px;
  position: absolute;
  top: 20px;
  left: 20px;
  box-shadow: 0 20px 35px #0000000d;
}

.map .country-list li {
  font-size: 16px;
  background-color: #f5f8fc;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.country-list li.active {
  background-color: var(--new-blue);
  color: var(--white);
}

/* FEATURES */

.feature-box {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 62%;
  height: fit-content;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--white);
  bottom: 20px;
  right: 25px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
  z-index: 11;
}

.feature-box .feature {
  display: flex;
  justify-content: start;
  gap: 16px;
}

.feature-box .feature img {
  width: 30px;
  height: 30px;
  border-radius: 0;
}

.feature-box .feature .core {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-box .feature img {
  width: 30px;
  height: 30px;
}

.feature .core .core-heading {
  color: var(--black) !important;
  font-size: 16px;
  line-height: 130%;
  font-weight: 700;
}

.feature .core p {
  color: var(--gray-650);
  font-size: 14px;
  line-height: 140%;
}

/*
.section-card img {
  flex: 1;
  max-width: 100%;
  width: 60%;
  height: 550px;
  max-height: 100%;
  object-fit: fill;
}
*/
/* *********************** */
/* ****** CAUROUSEL ****** */
/* *********************** */

.carousel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 96px;
}

.carousel-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: scroll;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  width: 350px;
  padding: 32px;
  gap: 30px;
  background: linear-gradient(
    180deg,
    rgba(0, 84, 166, 0) 0%,
    rgba(0, 84, 166, 0.04) 100%
  );
  border: 1px solid #eeeeee;
  border-radius: 12px;
  transform: translateX(0);
}

.carousel-item:nth-child(odd) {
  background: linear-gradient(
    180deg,
    rgba(0, 84, 166, 0) 0%,
    rgba(0, 84, 166, 0.04) 100%
  );
}

.carousel-item:nth-child(even) {
  background: linear-gradient(
    180deg,
    rgba(0, 84, 166, 0.04) 0%,
    rgba(0, 84, 166, 0) 100%
  );
}

.carousel-item .carousel-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--new-blue);
  height: 56px;
  width: 56px;
  border-radius: 50%;
}

.carousel-item .carousel-logo img {
  height: 32px;
  width: 32px;
}

.carousel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-item .carousel-content h3 {
  font-size: 20px;
  line-height: 130%;
  text-align: center;
}

.carousel-item .carousel-content p {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
}

/* CAROUSEL BTN */

.carousel-btn {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.carousel-btn .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}

.carousel-btn .btn.left {
  background-color: white;
  border: 1px solid var(--new-blue);
}

.carousel-btn .btn.right {
  background-color: var(--new-blue);
  border: 1px solid var(--new-blue);
}

/* ***************************** */
/* ******* MEDIA QUERIES ******* */
/* ***************************** */

/* ******* LAPTOP ******* */

@media (max-width: 1440px) {
  /* HERO */

  .feature-content {
    gap: 48px;
  }

  .feature-content .feature-desc {
    gap: 32px;
  }

  .feature-content .feature-desc h1 {
    font-size: 44px;
  }

  .feature-content .feature-desc p {
    font-size: 22px;
  }

  .feature-btn {
    gap: 24px;
  }

  /* SECTION CARDS */

  /* section.feature-cards {
    margin: 80px 0;
  } */

  .feature-section .section-card {
    margin: 80px 0 60px;
  }

  /* CAROUSEL */

  .carousel {
    margin-bottom: 80px;
  }
}

/* ******* MINI_LAPTOP ******* */

@media (max-width: 1200px) {
  /* HERO */

  .feature-content {
    gap: 32px;
  }

  .feature-content .feature-desc {
    gap: 28px;
  }

  .feature-content .feature-desc h1 {
    font-size: 40px;
  }

  .feature-content .feature-desc p {
    font-size: 20px;
  }

  .feature-btn {
    gap: 20px;
  }

  /* SECTION CARDS */
  #mapbox.feature-section .section-card {
    align-items: unset;
  }

  .feature-section .section-card {
    align-items: end;
  }

  /* .section-card img {
    height: 100%;
  } */

  /* FEATURE */

  .feature-box {
    padding: 10px;
    gap: 12px;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-55%, 10%); */
  }

  .feature-box .feature img {
    height: 28px;
    width: 28px;
  }

  /* CONTENT */

  .text-content h2 {
    font-size: 48px;
  }

  /* CAROUSEL */

  .carousel-container.margin-center {
    margin: initial;
  }

  /* .d-none {
    display: inherit !important;
  } */
}

/* ******* LAPTOP_DESKTOP_VIEW ******* */

@media (max-width: 1024px) {
  .feature-content {
    gap: 28px;
  }

  /* FEATURE */

  .feature-box {
    padding: 10px;
  }

  /* CONTENT */

  .text-content h2 {
    font-size: 40px;
  }
}

/* ******* TABLETS_LARGE ******* */

@media (max-width: 990px) {
  .hero-feature {
    margin: 0 auto 48px;
  }

  .feature-wrapper {
    grid-template-columns: 100%;
    gap: 24px;
  }

  .feature-content {
    justify-content: initial;
    align-items: center;
  }

  .feature-content .feature-desc {
    gap: 32px;
  }

  .feature-content .feature-desc h1 {
    text-align: center;
  }

  .feature-content .feature-desc p {
    text-align: center;
  }

  .feature-content .feature-btn {
    flex: 1;
    align-items: center;
  }

  /* FEATURE SECTION */

  #mapbox.feature-section .section-card {
    align-items: end;
  }

  /* section.feature-cards {
    margin: 64px 0;
  } */

  .carousel {
    margin-bottom: 64px;
  }

  .feature-section .section-card {
    flex-direction: column;
    margin: 64px 0 60px;
  }

  /* .section-card img {
    width: 100%;
  } */

  .section-card .map-box {
    margin: 32px 0 0 0;
    width: 94%;
    /* background: top white; */
  }

  .feature-section .section-card .map-box img {
    position: unset;
  }

  .section-card .bg-gradient {
    position: absolute;
    background-color: #ffffff47;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(75px);
    left: -50px;
    top: calc(50% - 280px / 2 - 0.37px);
  }

  /* CONTENT */

  .text-content {
    width: 100%;
    align-items: center;
    padding: 48px 48px 0;
  }

  .text-content h2 {
    text-align: center;
  }

  .text-content p {
    text-align: center;
  }

  .img-content {
    width: 100%;
  }

  /* FEATURE BOX */

  .feature-box {
    width: 94%;
  }

  /* ANIMATION */
  .scroll-primary {
    animation: primary-feature 10s linear infinite;
  }
}

/* ******* TABLETS ******* */

@media (max-width: 768px) {
  /* .primary-btn,
  .secondary-btn {
    font-size: 18px;
  } */

  .hero-feature {
    margin: 0 auto 0px;
  }

  .feature-content {
    gap: 16px;
  }

  .feature-content .feature-desc {
    gap: 24px;
  }

  .feature-content .feature-desc h1 {
    font-size: 36px;
  }

  .feature-content .feature-desc p {
    font-size: 18px;
  }

  .feature-btn p {
    /* font-size: 14px;
    margin-left: 58px; */
    text-align: center;
  } 

  /* IMG */

  .feature-wrapper .feature-img {
    display: flex;
  }

  .feature-wrapper .feature-img img {
    /* opacity: 0; */
    object-fit: contain;
    max-width: 100%;
    flex: 1;
  }

  /* SECTION CARD */

  .section-card {
    gap: 32px;
  }

  .section-card .map-box {
    margin: 0;
    flex-direction: column;
  }

  .img-content {
    flex-direction: column;
  }

  .img-content .desk-img {
    display: none;
  }

  .img-content .mob-img {
    display: flex;
    border-top-left-radius: 22px;
    /* border: 6px solid #5e96cd; */
    border-right: none;
    border-bottom: none;
  }

  .feature-box {
    position: static;
    grid-template-columns: 1fr;
    margin: -100px auto 20px;
  }

  .map-box .map .country-list {
    top: 10px;
    left: 10px;
  }

  .map .country-list li {
    font-size: 14px;
  }

  /* CONTENT */

  .text-content {
    padding: 32px 32px 0;
  }

  .text-content .content-title {
    font-size: 18px;
  }

  .text-content h2 {
    font-size: 32px;
  }

  .text-content p {
    font-size: 16px;
  }

  /* FEATURE BOX */

  .map-box .feature-box .feature img {
    height: 24px;
    width: 24px;
  }

  /* CAROUSEL */

  .carousel-container {
    gap: 16px;
  }

  .carousel-item {
    padding: 24px;
  }

  .carousel-item .carousel-content {
    width: 300px;
  }

  .carousel-item .carousel-content h3 {
    font-size: 18px;
  }
}

/* ******* MOBILE ******* */

@media (max-width: 480px) {
  .scroll-wrap {
    padding: 10px 0 60px;
  }

  .scroll-heading {
    margin: 0;
    font-size: 16px;
  }

  .scroll-primary {
    top: 46%;
  }

  .scroll-content {
    gap: 42px;
  }

  .scroll-content img {
    height: 40px;
    width: 100px;
  }

  /* .primary-btn,
  .secondary-btn {
    font-size: 14px;
  } */

  /* HERO */

  .hero-feature {
    margin: 0 auto 16px;
  }

  .feature-content {
    gap: 32px;
  }

  .feature-content .feature-desc {
    gap: 16px;
  }

  .feature-content .feature-desc h1 {
    font-size: 30px;
  }

  .feature-content .feature-desc p {
    font-size: 16px;
  }

  /*
  .feature-btn p {
    margin-left: 45px;
    font-size: 12px;
  }*/

  /* FEATURE CARDS */

  /* section.feature-cards {
    margin: 32px 0;
  } */

  .feature-section .section-card {
    margin: 32px 0 60px;
  }

  /* COUNTRY */

  .map-box .map .country-list {
    top: 5px;
    left: 5px;
    padding: 4px;
    gap: 5px;
  }

  .map .country-list li {
    border-radius: 2px;
    padding: 4px 8px;
  }

  /* MAP */

  .section-card .map-box {
    background-position: top;
    min-height: 350px;
    background-size: 150%;
  }

  .feature-box {
    /* margin-top: -100px; */
    margin-bottom: 10px;
  }

  /* CONTENT */

  .text-content {
    padding: 24px 24px 0;
  }

  .text-content h2 {
    font-size: 28px;
  }

  .text-content .content-title {
    font-size: 16px;
  }

  /* CAROUSEL */

  .carousel {
    margin-bottom: 32px;
  }

  .carousel-item .carousel-logo {
    height: 44px;
    width: 44px;
  }

  .carousel-item .carousel-logo img {
    height: 26px;
    width: 26px;
  }

  .carousel-btn .btn {
    padding: 10px;
  }

  .carousel-btn .btn img {
    height: 21px;
    width: 21px;
  }
}
