@font-face {
  font-family: 'Karla_Medium';
  src: url('../fonts/Karla-Medium.ttf');
}

@font-face {
  font-family: 'Karla_Regular';
  src: url('../fonts/Karla-Regular.ttf');
}

@font-face {
  font-family: 'Montserrat_Medium';
  src: url('../fonts/Montserrat-Medium.ttf');
}

@font-face {
  font-family: 'Montserrat_SemiBold';
  src: url('../fonts/Montserrat-SemiBold.ttf');
}

:root {
  font-size: 16px;
  --dark: #191919;
  --white: #fff;
}

@media (max-width: 991.9px) {
  :root {
    font-size: 14px;
  }
}

@media (max-width: 767.9px) {
  :root {
    font-size: 13px;
  }
}

@media (max-width: 575.9px) {
  :root {
    font-size: 12px;
  }
}

@keyframes showOpacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  background-color: #312A1F;
}

* {
  box-sizing: border-box;
  margin: 0;
}

a {
  text-decoration: none;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.gap-5 {
  gap: 3rem;
}

.mb_sec {
  margin-bottom: 6rem;
}

.pb_sec {
  padding-bottom: 6rem;
}

.ele_linear_gradient_border {
  position: relative;
}

.ele_linear_gradient_border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #E6E345, #A1EE7D);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.3s;
}

.ele_linear_gradient_border:hover::before {
  opacity: 1;
}

/* === Header === */

header {
  background-color: var(--dark);
  padding: 1.5rem 0;
  font-family: 'Karla_Medium';
  position: sticky;
  top: 0;
  z-index: 11;
  transition: 0.3s;
}

header.scrolled {
  padding: 1.125rem 0;
}

header .link_logo {
  display: inline-flex;
}

header .link_logo img {
  flex: 1 0 auto;
  width: auto;
  height: auto;
  max-width: 5.5rem;
}

header .links {
  display: flex;
  gap: 1.5rem;
}

header .links a {
  color: var(--white);
  font-size: 1rem;
}

header .link_btn {
  color: var(--dark);
  background-color: var(--white);
  border: 1px solid var(--white);
  font-size: 1rem;
  padding: 1rem 1.5rem;
  transition: 0.3s;
}

header .link_btn:hover {
  background-color: var(--dark);
  color: var(--white);
}

header .link_btn:active {
  border-color: #363B3E;
  color: #363B3E;
  -webkit-tap-highlight-color: transparent;
}

header .open_menu_mobile {
  display: inline-flex;
  cursor: pointer;
}

header .open_menu_mobile svg {
  width: 2.25rem;
  height: auto;
}

header .open_menu_mobile svg [fill] {
  fill: var(--white);
  transition: 0.3s;
}

header .open_menu_mobile:hover svg [fill] {
  fill: #8D795B;
}

@media (min-width: 768px) {
  header .bg_mobile {
    display: none;
  }
}

@media (max-width: 767.9px) {
  header .links {
    position: fixed;
    top: 0;
    left: -70%;
    width: 70%;
    height: 100vh;
    background-color: var(--dark);
    flex-direction: column;
    padding: 1.5rem;
    z-index: 9;
    transition: 0.4s;
  }

  header .links.show {
    left: 0;
  }

  header .bg_mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 7;
    background-color: rgba(25, 25, 25, 0.7);
    display: none;
  }

  header .links.show+.bg_mobile {
    display: block;
    animation: showOpacity 0.2s linear both;
  }
}

@media (max-width: 575.9px) {
  header .links {
    left: -80%;
    width: 80%;
  }
}

/* === Hero === */

.hero {
  background-color: #312B1F;
  padding: 7rem 0 9rem;
}

.hero .img {
  display: inline-flex;
}

.hero .img img {
  flex: 1 0 auto;
  width: 100%;
  height: auto;
}

.hero .text span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat_Medium';
  font-size: 0.6875rem;
  color: var(--white);
  padding: 0.5rem 1rem;
  background: #ffffff1a;
  border-radius: 5rem;
}

.hero .text span svg {
  flex: 0 0 0.75rem;
  width: 0.75rem;
  height: auto;
}

.hero .text h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-family: 'Montserrat_SemiBold';
}

.hero .text p {
  font-family: 'Karla_Regular';
  color: var(--white);
  font-size: 0.875rem;
}

.hero .btns_hero {
  display: inline-flex;
  gap: 0.86rem;
}

.hero .btn_download,
.hero .btn_learn_more {
  padding: 1rem 2rem;
  transition: 0.3s;
  color: var(--white);
  font-size: 0.875rem;
  font-family: 'Karla_Medium';
  transition: 0.3s;
}

.hero .btn_download {
  background-color: #363B3E;
}

.hero .btn_learn_more {
  position: relative;
  transition: 0.3s;
}

.hero .btn_learn_more::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #312A1F, #716048);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: 0.3s;
}

.hero .btn_learn_more:hover {
  background: linear-gradient(to bottom, #E6E345, #A1EE7D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .btn_learn_more:hover::before {
  background: linear-gradient(to bottom, #A1A2A1, #A1A2A1);
}

.hero .btn_learn_more:active {
  background-color: #363B3E;
  color: var(--white);
}

.hero .btn_learn_more:active::before {
  background: linear-gradient(to bottom, #312A1F, #716048);
}

.hero .btn_download:active {
  color: #363B3E;
  background-color: transparent;
}

@media (max-width: 991.9px) {
  .hero .text {
    text-align: center;
  }
}

@media (max-width: 349.9px) {
  .hero .btns_hero {
    flex-wrap: wrap;
  }

  .hero .btns_hero>* {
    width: 100%;
  }
}

/* === Features === */

.features {
  background-color: #312A1F;
  position: relative;
}

.features h2 {
  text-align: center;
  color: #ffffffde;
  font-family: 'Montserrat_Medium';
  font-size: 2rem;
}

.features p {
  color: #A1A2A1;
  font-family: 'Karla_Regular';
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}

.features .title {
  margin-bottom: 10rem;
}

.container_list_features {
  position: relative;
  z-index: 9;
  top: -6.5rem;
}

.list_features {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.list_features>div {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.list_features>div:nth-child(1),
.list_features>div:nth-child(4) {
  width: 70%;
  margin: auto;
}

.list_features>div>span {
  padding: 2rem;
  width: 22rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: inline-block;
  font-size: 1.25rem;
  color: var(--white);
  font-family: 'Montserrat_Medium';
  line-height: 1.5;
}

.features .circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.features .circles svg {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.features .circles img {
  height: auto;
  width: auto;
  max-width: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991.9px) {
  .list_features {
    gap: 5rem;
  }
}


@media (max-width: 767.9px) {
  .list_features {
    gap: 4rem;
  }

  .list_features>div {
    gap: 3rem;
  }

  .list_features>div>span {
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 767.9px) {

  .list_features>div:nth-child(1),
  .list_features>div:nth-child(4) {
    width: 100%;
  }
}

@media (max-width: 575.9px) {
  .list_features>div {
    flex-wrap: wrap;
  }

  .list_features>div>span {
    width: 70%;
  }

  .list_features>div>span:nth-child(2) {
    margin-left: auto;
  }

  .container_list_features {
    top: -2.4rem;
  }

  .features .circles img {
    display: none;
  }
}

/* === How Works === */

.how_works {
  position: relative;
  background-color: #312A1F;
  margin-bottom: 6rem;
}

.how_works .title {
  margin-bottom: 5rem;
}

.how_works .title h2 {
  text-align: center;
  color: #ffffffde;
  font-family: 'Montserrat_Medium';
  font-size: 2rem;
}

.how_works .title p {
  color: #A1A2A1;
  font-family: 'Karla_Regular';
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}

.container_slides .img {
  position: relative;
}

.container_slides .img img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 9;
}

.container_slides .img svg {
  width: auto;
  max-width: 100%;
  height: calc(100% - 1rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
}

.container_slides .img svg:not(.svgShape) {
  width: auto;
  max-width: 97vw;
  height: auto;
  bottom: unset;
  top: 50%;
  transform: translate(-50%, -50%);
}

.how_works .swiper {
  width: 100%;
  height: 50vh;
}

.how_works .swiper .swiper-slide {
  padding-left: 3.375rem;
  transition: 2s;
  transform: scale(0.52);
  transform-origin: left center;
}

.how_works .swiper .swiper-slide:not(.swiper-slide-active+div) b,
.how_works .swiper .swiper-slide:not(.swiper-slide-active+div) h4,
.how_works .swiper .swiper-slide:not(.swiper-slide-active+div) p {
  font-weight: 100;
  opacity: 0.4;
}

.how_works .swiper .swiper-slide-active+div {
  transform: scale(1);
}

.how_works .swiper .swiper-slide-active+div,
.how_works .swiper .swiper-slide-active+div+div {
  padding-left: 7rem;
}

.how_works .swiper .swiper-slide-active+div+div {
  padding-left: 11rem;
}

.how_works .swiper .swiper-slide b,
.how_works .swiper .swiper-slide h4 {
  font-size: 1.4rem;
  font-family: 'Montserrat_Medium';
  color: var(--white);
  line-height: 1.8;
  transition: 0.3s;
}

.how_works .swiper .swiper-slide b {
  position: relative;
}

.how_works .swiper .swiper-slide i {
  position: absolute;
  top: 0.25rem;
  left: -3.375rem;
  display: inline-flex;
  width: 1.375rem;
  height: 1.375rem;
  background: linear-gradient(to bottom, #E6E345, #A1EE7D);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.how_works .swiper .swiper-slide i::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.how_works .swiper .swiper-slide:not(.swiper-slide-active+div) i {
  width: 0.75rem;
  height: 0.75rem;
  background: #A1A2A1;
}

.how_works .swiper .swiper-slide:not(.swiper-slide-active+div) i::before {
  background: #A1A2A1;
}

.how_works .swiper .swiper-slide h4 {
  margin-bottom: 0.625rem;
}

.how_works .swiper .swiper-slide p {
  color: #A1A2A1;
  font-size: 1.125rem;
  font-family: 'Karla_Regular';
}

.container_slides .row {
  width: 100%;
  margin: auto;
}

.container_get_app_now {
  margin-top: 5rem;
  padding-bottom: 1.5rem;
}

.get_app_now::before {
  opacity: 1;
}

.get_app_now {
  font-size: 1rem;
  font-family: 'Karla_Regular';
  padding: 1.5rem 3rem;
  color: var(--white);
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.get_app_now::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(to bottom, #E6E345, #A1EE7D);
  opacity: 0;
  transition: 0.3s;
}

.get_app_now:hover::after {
  opacity: 0.05;
}

.how_works>img {
  position: absolute;
}

.how_works>img.shapeTop {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}

.how_works>img.shapeBottom {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (min-width: 992px) {
  .container_slides {
    margin-right: 0;
    max-width: calc(960px + ((100% - 960px)/2));
  }
}

@media (min-width: 1200px) {
  .container_slides {
    margin-right: 0;
    max-width: calc(1140px + ((100% - 1140px)/2));
  }
}

@media (min-width: 1400px) {
  .container_slides {
    margin-right: 0;
    max-width: calc(1320px + ((100% - 1320px)/2));
  }
}

@media (max-width: 991.9px) {
  .how_works .swiper {
    height: 30rem;
  }

  .how_works .swiper .swiper-slide {
    padding-left: 4rem !important;
  }
}

@media (max-width: 575.9px) {
  .container_slides .img svg:not(.svgShape) {
    max-width: 95vw;
  }
}

/* === Track === */

.track {
  background-color: #312A1F;
  position: relative;
  margin-bottom: 7.5rem;
}

.track .blur {
  width: 15rem;
  height: 15rem;
  background-color: #A1A2A1;
  display: inline-block;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(500px);
}

.track .blur1,
.track .blur2 {
  left: 9rem;
}

.track .blur3 {
  right: 9rem;
}

.track .blur1 {
  top: 15%;
}

.track .blur2 {
  top: 60%;
}

.track .blur3 {
  bottom: 5%;
}

.track>img {
  position: absolute;
  z-index: 1;
}

.track .shape_center {
  width: auto;
  height: auto;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.track .shape_top {
  width: auto;
  height: auto;
  max-width: 25%;
  top: 0;
  left: 0;
}

.track>.container {
  position: relative;
  z-index: 9;
}

.track .title {
  padding: 3rem 0 5.5rem;
  text-align: center;
}

.track .title h2 {
  color: #ffffffde;
  font-family: 'Montserrat_Medium';
  font-size: 2rem;
}

.track .title p {
  color: #A1A2A1;
  font-family: 'Karla_Regular';
  font-size: 1rem;
  line-height: 1.5;
}

.track .row_tracks {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

.track .row_tracks>.row {
  align-items: center;
  justify-content: space-between;
}

.track .row_tracks>.row:nth-child(even) .colImg {
  order: -1;
}

.track .row_tracks .img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.track .row_tracks>.row:nth-child(even) .img {
  justify-content: flex-start;
}

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

.track .row_tracks h3 {
  font-size: 1.375rem;
  color: var(--white);
  font-family: 'Montserrat_Medium';
  margin-bottom: 0.625rem;
}

.track .row_tracks p {
  font-size: 1.125rem;
  color: #A1A2A1;
  font-family: 'Karla_Regular';
}

@media (max-width: 767.9px) {
  .track .row_tracks {
    text-align: center;
    gap: 5rem;
  }

  .track .row_tracks .colImg {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .track .row_tracks .img {
    justify-content: center !important;
  }
}

/* === testimonials === */

.testimonials {
  background-color: var(--dark);
  padding: 3rem 0;
  overflow: hidden;
  margin-bottom: 6rem;
}

.testimonials .title {
  margin-bottom: 5.5rem;
}

.testimonials .title h2 {
  text-align: center;
  color: #ffffffde;
  font-family: 'Montserrat_Medium';
  font-size: 2rem;
}

.testimonials .title p {
  color: #A1A2A1;
  font-family: 'Karla_Regular';
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}

.testimonial-main {
  width: 100%;
  height: 400px;
  perspective: 1200px;
  overflow: unset !important;
}

.testimonial-main .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 5rem;
}

.testimonial-main .swiper-slide p {
  font-size: 1rem;
  font-family: 'Karla_Regular';
  color: var(--white);
  line-height: 1.5;
}

.testimonial-main .swiper-slide-active {
  background-color: #F4A44E;
}

.testimonial-main .swiper-slide-active+div {
  background-color: #8C8786;
}

.testimonial-main .swiper-slide-active+div+div {
  background-color: #454749;
}

.testimonial-main .swiper-slide svg {
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 4.5rem;
  margin-bottom: 3rem;
}

.testimonial-main .swiper-slide svg [fill] {
  fill: var(--white);
}

.swiper-persons {
  height: auto;
  margin-top: 3.75rem;
  overflow: visible !important;
  width: 600px;
}

.swiper-persons .swiper-slide {
  width: auto;
  opacity: 0.5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 7rem;
  height: calc(5.5rem + 8px);
  transition: 0.3s;
  top: 0;
}

.swiper-persons img {
  width: 5.5rem;
  height: 5.5rem;
  flex: 0 0 5.5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #DFDCD9;
  transition: 0.3s;
}

.swiper-persons .swiper-slide-active {
  opacity: 1;
}

.swiper-persons .swiper-slide-active {
  top: calc(-3.75rem - 2.25rem);
}

.swiper-persons img+div {
  margin-top: 1rem;
  display: none;
}

.swiper-persons .swiper-slide-active img {
  border: 4px solid var(--dark);
}

.swiper-persons .swiper-slide-active img+div {
  display: block;
  animation: showOpacity 0.3s linear;
  width: 100%;
}

.swiper-persons .swiper-slide img+div h5 {
  font-size: 1rem;
  font-family: 'Montserrat_Medium';
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.swiper-persons .swiper-slide img+div span {
  font-size: 1rem;
  font-family: 'Karla_Regular';
  color: #A1A2A1;
  font-weight: 100;
}

.swiper-persons .swiper-slide img+div h5,
.swiper-persons .swiper-slide img+div span {
  width: 100%;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767.9px) {
  .testimonial-main .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 3rem;
  }
}

@media (max-width: 601px) {
  .swiper-persons {
    width: 200px;
  }
}

/* === Before Footer === */

.before_footer {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.before_footer .blur {
  position: absolute;
  display: inline-block;
  width: 36rem;
  height: 36rem;
  background: linear-gradient(to bottom, #E6E345, #A1EE7D);
  border-radius: 50%;
  filter: blur(1000px);
}

.before_footer .blur1 {
  top: -100%;
  left: -50%;
}

.before_footer .blur2 {
  bottom: -100%;
  right: -50%;
}

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

.before_footer h6 {
  font-size: 3.56rem;
  color: var(--white);
  font-family: 'Montserrat_SemiBold';
  margin-bottom: 1rem;
}

.before_footer p {
  color: var(--white);
  font-size: 0.875rem;
  font-family: 'Karla_Regular';
  line-height: 1.6;
  margin-bottom: 2rem;
}

.before_footer a {
  background-color: #363B3E;
  color: var(--white);
  font-size: 0.875rem;
  font-family: 'Karla_Medium';
  padding: 1rem 1.5rem;
}

@media (max-width: 991.9px) {
  .before_footer {
    text-align: center;
  }
}

/* === Footer === */

footer {
  background-color: var(--dark);
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

footer .link_logo {
  display: inline-flex;
}

footer .link_logo img {
  height: 5rem;
  width: auto;
}

footer .rowLinks {
  margin-bottom: 3.5rem;
}

footer .rowLinks ul {
  list-style: none;
  padding: 0;
}

footer .rowLinks ul li:first-child {
  margin-bottom: 1rem;
  font-family: 'Montserrat_Medium';
  color: var(--white);
}

footer .rowLinks ul li {
  margin-bottom: 0.5rem;
}

footer .rowLinks ul li:last-child {
  margin-bottom: 0;
}

footer .rowLinks ul li a {
  font-size: 0.875rem;
  color: var(--white);
  font-family: 'Karla_Regular';
  font-weight: 100;
  transition: 0.3s;
  display: inline-block;
}

footer .rowLinks ul li a:hover {
  transform: translateX(10px);
}

footer .copy_right {
  text-align: center;
  font-size: 0.875rem;
  color: #A1A2A1;
  font-family: 'Karla_Regular';
  font-weight: 100;
}

/* === Loader === */

.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader img {
  width: 25%;
}