@font-face {
  font-family: "Thunder LC";
  src: url("assets/images/Thunder-LC.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: unset;
  font-family: "Inter", sans-serif;
}

body {
  background: #000000;
  color: #000000;
}
body h1, body h2, body h3, body h4 {
  margin: unset;
}
body a {
  text-decoration: none;
  color: #ffffff;
}

section {
  width: 100%;
  position: relative;
  padding-inline: 31px;
}
@media (max-width: 842px) {
  section {
    padding-inline: 0px;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding-inline: 10px;
  position: relative;
}
@media (max-width: 992px) {
  .container {
    padding-inline: 20px;
  }
}
@media (max-width: 842px) {
  .container {
    padding-inline: 10px;
  }
}

.tag {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 200px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
}
.tag {
  font-family: "Inter", sans-serif;
}
@media (max-width: 842px) {
  .tag {
    font-size: 14px;
    padding: 4px 12px;
  }
}
.tag.black {
  color: black;
  border: 1px solid #CCCCCC;
}

button, .btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.16px;
  cursor: pointer;
  display: flex;
  padding: 17px 32px;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: black;
  text-decoration: none;
  transition: all 300ms ease;
  font-family: "Inter", sans-serif;
}
@media (max-width: 842px) {
  button, .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
button:hover, .btn:hover {
  filter: brightness(0.9);
  text-decoration: underline;
}

.btn-submit {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background-color: rgb(69, 135, 129);
  padding: 8px;
  border-style: none;
  border-color: none;
}

.btn-black {
  background: #000000;
  color: #ffffff;
}

.btn-green {
  border-radius: 100%;
  background-color: rgb(69, 135, 129);
  border-style: none;
  border-color: none;
  display: flex;
  padding: 11px;
  justify-content: center;
  align-items: center;
}
.btn-green svg {
  width: 18px;
  height: 18px;
}

.oranament-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 100%;
  max-width: 1500px;
  height: auto;
}
@media (max-width: 842px) {
  .oranament-bg {
    display: none;
  }
}
@media (max-width: 1280px) {
  .oranament-bg {
    width: 98%;
  }
}

.tag-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
.tag-section img {
  width: 24px;
  height: 24px;
}
.tag-section span {
  color: rgba(2, 6, 9, 0.8);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

.tag-section.white span {
  color: #ffffff;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 24px;
  z-index: 999;
  transition: all 300ms ease;
}
.navbar.hidden {
  transform: translateY(-100%);
}
.navbar.show {
  transform: translateY(0%);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding-block: 12px;
}
.navbar.show .navbar__menu a {
  color: #000000;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}
.navbar__menu .navbar__links--wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 842px) {
  .navbar__menu .navbar__links--wrap {
    flex-direction: column;
  }
}
.navbar__menu .navbar__links--wrap a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
  text-transform: uppercase;
  font-family: Inter;
}
.navbar__menu .navbar__links--wrap a:hover {
  color: #ffffff;
}
@media (max-width: 842px) {
  .navbar__menu .navbar__links--wrap a {
    font-size: 14px;
  }
}
@media (max-width: 842px) {
  .navbar__menu {
    position: fixed;
    inset: 0;
    background: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
  }
  .navbar__menu.active {
    opacity: 1;
    visibility: visible;
  }
  .navbar__menu .btn {
    margin-top: 16px;
  }
}
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}
@media (max-width: 842px) {
  .navbar__toggle {
    display: flex;
  }
}
.navbar__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.navbar__logo span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.navbar__logo span a {
  text-transform: uppercase;
  font-family: "Thunder LC", sans-serif;
  font-size: 36px;
  line-height: 100%;
}
@media (max-width: 842px) {
  .navbar .navbar__menu {
    display: none;
  }
  .navbar__menu.active {
    display: flex;
  }
  .navbar .navbar__logo {
    z-index: 999;
  }
}

.navbar--light .navbar__menu a {
  color: rgba(255, 255, 255, 0.6);
}
.navbar--light .navbar__menu a:hover {
  color: #458781;
}
@media (max-width: 842px) {
  .navbar--light .navbar__menu a {
    color: rgba(255, 255, 255, 0.6);
  }
}
.navbar--light a.btn {
  background: #ffffff;
  color: #000000;
}
.navbar--light a.btn:hover {
  color: #000000;
}

.navbar--dark .navbar__menu a {
  color: #000000;
}
@media (max-width: 842px) {
  .navbar--dark .navbar__menu a {
    color: white;
  }
}
.navbar--dark .navbar__menu a:hover {
  color: #458781;
}
.navbar--dark .navbar__toggle span {
  background-color: #000000;
}
.navbar--dark .navbar__toggle.active span {
  background-color: #ffffff;
}
.navbar--dark .navbar__logo a {
  color: #000000;
}
.navbar--dark .navbar__logo .dark {
  color: white;
}
.navbar--dark a.btn {
  background: #000000;
  color: #ffffff;
}
@media (max-width: 842px) {
  .navbar--dark a.btn {
    color: #000000;
    background: #ffffff;
  }
}

.navbar--dark.show a.btn {
  background: #000000;
  color: #ffffff;
}

.hero {
  background: url("/assets/images/noice_grain.svg") repeat, linear-gradient(180deg, #020609 0%, #458781 100%);
}
.hero .hero__layout {
  max-width: 1440px;
  padding-top: 220px;
  width: 100%;
  margin: auto;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 842px) {
  .hero .hero__layout {
    height: auto;
    padding-top: 80px;
    background: linear-gradient(180deg, #020609 0%, #458781 100%);
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 140px;
  }
}
.hero__title {
  color: #FFF;
  font-family: Inter;
  font-size: 88px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -3.52px;
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 80px;
    letter-spacing: -3px;
    max-width: 400px !important;
  }
}
@media (max-width: 842px) {
  .hero__title {
    font-size: 44px;
    letter-spacing: -1.5px;
    max-width: 100%;
  }
}
.hero__title-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 842px) {
  .hero__title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }
}
.hero__title-wrap span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  letter-spacing: -0.16px;
}
.hero__title-wrap span {
  font-family: "Inter", sans-serif;
}
.hero__title-wrap .hero__display {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
  gap: 8px;
}
.hero__title-wrap .hero__display span {
  color: rgba(255, 255, 255, 0.6);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -1.44px;
}
@media (max-width: 842px) {
  .hero__title-wrap .hero__display span {
    font-size: 18px;
  }
}
.hero__title-wrap .hero__btn {
  border-radius: 100px;
  border: 0.8px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 58.51%);
  box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.02) inset, 0 -24px 32px 0 rgba(0, 0, 0, 0.24) inset, 0 8px 24px 0 rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(12px);
  margin-bottom: auto;
  margin-top: auto;
  display: flex;
  width: 200px;
  min-width: 200px;
  padding: 79px 32px;
  align-items: flex-end;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 842px) {
  .hero__title-wrap .hero__btn {
    padding: 20px 32px;
    border-radius: 80px;
    width: 100%;
  }
}
.hero__title-wrap .hero__btn span {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  max-width: 79px;
}
@media (max-width: 842px) {
  .hero__title-wrap .hero__btn span {
    max-width: 100%;
  }
}
.hero__tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 328px;
}
@media (max-width: 842px) {
  .hero__tagline {
    max-width: 100%;
    align-items: flex-start;
  }
}
.hero__tagline p {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 842px) {
  .hero__tagline p {
    text-align: left;
    font-size: 16px;
    letter-spacing: -0.46px;
  }
}
.hero__tagline .icon_hero {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 100%;
}
.hero .container.hero__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0;
  margin-top: auto;
  align-items: center;
}
@media (max-width: 842px) {
  .hero .container.hero__top {
    gap: 40px;
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
.hero .container.hero__top .hero__top-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 240px;
}
@media (max-width: 842px) {
  .hero .container.hero__top .hero__top-left {
    gap: 100px;
  }
}
.hero .container.hero__top .hero__top-left .top__fotos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  max-width: 207px;
}
.hero .container.hero__top .hero__top-left .top__fotos .top__fotos-head {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.hero .container.hero__top .hero__top-left .top__fotos .top__fotos-head img {
  width: 96px;
  height: 40px;
}
.hero .container.hero__top .hero__top-left .top__fotos span {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.hero .container.hero__bottom {
  margin-top: 40px;
  margin-bottom: 32px;
}
.hero__foot {
  max-width: 100%;
  padding-inline: unset;
  padding-top: 48px;
}
.hero__foot .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 842px) {
  .hero__foot .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    gap: 42px;
  }
}
.hero .scroll_down {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 842px) {
  .hero .scroll_down {
    display: none;
  }
}
.hero .scroll_down span {
  color: rgba(255, 255, 255, 0.6);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}

.img-human {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 54px;
  left: 0;
  object-fit: cover;
}
@media (max-width: 842px) {
  .img-human {
    display: none;
  }
}

.img-mobile-human {
  display: none;
}
@media (max-width: 842px) {
  .img-mobile-human {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: contain;
    height: auto;
    margin-top: 40px;
  }
}

.mobile-btn_hero {
  display: none;
}
@media (max-width: 842px) {
  .mobile-btn_hero {
    display: flex;
    padding: 20px 32px;
    border-radius: 80px;
    gap: 8px;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 0.8px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 58.51%);
    box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.02) inset, 0 -24px 32px 0 rgba(0, 0, 0, 0.24) inset, 0 8px 24px 0 rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(12px);
  }
}

@media (max-width: 842px) {
  .dekstop-btn_hero {
    display: none !important;
  }
}

.footer {
  background: url("/assets/images/noice_grain.svg") repeat, linear-gradient(180deg, #020609 0%, #234441 100%);
  background-size: auto;
  position: relative;
}
@media (max-width: 842px) {
  .footer {
    padding-top: 0px;
  }
}
.footer .container:nth-child(1) {
  padding-top: 100px;
  padding-inline: 32px;
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 842px) {
  .footer .container:nth-child(1) {
    padding-inline: 10px;
    padding-top: 80px;
  }
}
.footer .container:nth-child(2) {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .container:nth-child(2) p {
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.56px;
}
@media (max-width: 842px) {
  .footer .container:nth-child(2) {
    flex-direction: column;
    gap: 12px;
  }
}
.footer .container:nth-child(2) .menus__allright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.footer .container:nth-child(2) .menus__allright a {
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.56px;
}
.footer .container:nth-child(2) .menus__allright a {
  font-family: "Inter", sans-serif;
}
.footer .container:nth-child(2) p {
  font-family: "Inter", sans-serif;
}
.footer__card {
  display: flex;
  flex-direction: column;
  gap: 140px;
  color: #ffffff;
}
@media (max-width: 842px) {
  .footer__card {
    gap: 82px;
  }
}
.footer__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-inline: 10px;
}
@media (max-width: 842px) {
  .footer__head {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__head .footer__title h2 {
  width: 100%;
  max-width: 464px;
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 52px */
  letter-spacing: -1.6px;
}
@media (max-width: 1280px) {
  .footer__head .footer__title h2 {
    font-size: 64px;
    width: 464px;
  }
}
@media (max-width: 842px) {
  .footer__head .footer__title h2 {
    font-size: 38px;
    letter-spacing: -1.2px;
    max-width: 100%;
    word-break: break-word;
  }
}
@media (max-width: 576px) {
  .footer__head .footer__title h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }
}
.footer__head .footer__title .form-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 443px;
  padding-bottom: 16px;
  border-bottom: 0.8px solid rgba(255, 255, 255, 0.16);
}
.footer__head .footer__title .form-footer .form-footer__input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.64px;
}
.footer__menu {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 24px;
}
.footer__menu a {
  color: #ffffff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.72px;
  text-transform: uppercase;
}
.footer__menu a {
  font-family: "Inter", sans-serif;
}
.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__bottom h2 {
  color: #FFF;
  font-size: 480px;
  font-style: normal;
  font-weight: 600;
  line-height: 0.85;
  font-family: "Thunder LC";
  display: flex;
  margin-top: -40px;
}
@media (max-width: 1280px) {
  .footer__bottom h2 {
    font-size: 300px;
  }
}
@media (max-width: 842px) {
  .footer__bottom h2 {
    font-size: 180px;
  }
}
@media (max-width: 576px) {
  .footer__bottom h2 {
    font-size: 120px;
  }
}
.footer__bottom h2 img {
  width: 122px;
  height: 136px;
  flex-shrink: 0;
  aspect-ratio: 61/68;
}
@media (max-width: 842px) {
  .footer__bottom h2 img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 61/68;
    margin-top: -60px;
  }
}
@media (max-width: 576px) {
  .footer__bottom h2 img {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 61/68;
    margin-top: -60px;
  }
}

.layout-line {
  overflow: hidden;
}

.footer .line.oranament-bg-up {
  background-color: rgba(255, 255, 255, 0.12);
  top: 80px;
}
.footer .line.oranament-bg-up .line-square-right {
  background-color: rgba(255, 255, 255, 0.12);
}
.footer .line.oranament-bg-up .line-square-left {
  background-color: rgba(255, 255, 255, 0.12);
}
.footer .line.oranament-bg-bottom {
  background-color: rgba(255, 255, 255, 0.12);
  top: 780px;
}
.footer .line.oranament-bg-bottom .line-square-right {
  background-color: rgba(255, 255, 255, 0.12);
}
.footer .line.oranament-bg-bottom .line-square-left {
  background-color: rgba(255, 255, 255, 0.12);
}

.running-text {
  background: #000000;
  padding-block: 24px;
  overflow: hidden;
}
.running-text .container {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  max-width: 100%;
}
@media (max-width: 992px) {
  .running-text {
    gap: 18px;
  }
}
@media (max-width: 842px) {
  .running-text {
    gap: 12px;
  }
}
.running-text__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: fit-content;
  animation: running-xl 30s linear infinite;
}
@media (max-width: 992px) {
  .running-text__wrap {
    animation: running-lg 30s linear infinite;
    gap: 18px;
  }
}
@media (max-width: 842px) {
  .running-text__wrap {
    animation: running-md 30s linear infinite;
    gap: 12px;
  }
}
.running-text__item {
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 842px) {
  .running-text__item {
    font-size: 24px;
    letter-spacing: -1px;
  }
}
.running-text .dot {
  width: 24px;
  height: 24px;
  background-color: #458781;
  flex-shrink: 0;
  background: url("../assets/images/icon_running.svg") no-repeat;
  background-position: center;
  background-size: contain;
}
@keyframes running-xl {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-200% - 80px));
  }
}
@keyframes running-lg {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-200% - 40px));
  }
}
@keyframes running-md {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-200% - 20px));
  }
}

section.sponsore .container.sponsore__container {
  padding: 40px;
  background-color: #000000;
}
@media (max-width: 842px) {
  section.sponsore .container.sponsore__container {
    padding: 40px 10px;
  }
}
section.sponsore .container.sponsore__container .sponsore__logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 842px) {
  section.sponsore .container.sponsore__container .sponsore__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
section.sponsore .container.sponsore__container .sponsore__logos .sponsore__logo {
  width: 189px;
  height: 48px;
  aspect-ratio: 63/16;
}
@media (max-width: 842px) {
  section.sponsore .container.sponsore__container .sponsore__logos .sponsore__logo {
    width: 180px;
    height: 30px;
  }
}

section.section-aboutus {
  background-color: #ffffff;
  position: relative;
}
section.section-aboutus .aboutus__container {
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
section.section-aboutus .aboutus__container .aboutus__content .aboutus__content-head {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container .aboutus__content .aboutus__content-head {
    flex-direction: column;
  }
}
section.section-aboutus .aboutus__container .aboutus__content--span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}
section.section-aboutus .aboutus__container .aboutus__content--span img {
  width: 24px;
  height: 24px;
}
section.section-aboutus .aboutus__container .aboutus__content--span span {
  color: rgba(2, 6, 9, 0.8);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  min-width: 90px;
}
section.section-aboutus .aboutus__container .aboutus__content--title {
  color: #020609;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 67.6px */
  letter-spacing: -2.08px;
  max-width: 900px;
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container .aboutus__content--title {
    font-size: 32px;
    margin-top: 12px;
  }
}
section.section-aboutus .aboutus__container .aboutus__content--icon {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 60px;
  padding-top: 16px;
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container .aboutus__content--icon {
    display: none;
  }
}
section.section-aboutus .aboutus__container .aboutus__content--icon img:nth-child(1) {
  width: 48px;
  height: 24px;
}
section.section-aboutus .aboutus__container .aboutus__content--icon img:nth-child(2) {
  width: 196px;
  height: 16px;
}
section.section-aboutus .aboutus__container .aboutus__content-body {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container .aboutus__content-body {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__left {
  width: 100%;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.72px;
  color: #020609;
  max-width: 379px;
  display: flex;
  flex-direction: column;
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__left span:nth-child(1) {
  color: #020609;
  font-family: Inter;
  font-size: 88px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 96.8px */
  letter-spacing: -3.52px;
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__left span:nth-child(1) span {
  color: #207080;
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__left span:nth-child(2) {
  color: #020609;
  text-align: justify;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__center {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container .aboutus__content-body .body__center {
    flex-direction: column-reverse;
    width: 100%;
  }
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__center img {
  width: 442px;
  height: 480px;
}
@media (max-width: 1280px) {
  section.section-aboutus .aboutus__container .aboutus__content-body .body__center img {
    width: 362px;
    height: 400px;
  }
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container .aboutus__content-body .body__center img {
    width: 100%;
    height: auto;
  }
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__center .arrow-left {
  width: 44px;
  height: 22px;
  margin-top: auto;
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__center .arrow-right {
  width: 44px;
  height: 22px;
  transform: rotate(180deg);
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container .aboutus__content-body .body__center .arrow-right {
    margin-left: auto;
  }
}
section.section-aboutus .aboutus__container .aboutus__content-body .body__right {
  color: #020609;
  text-align: justify;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 379px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 842px) {
  section.section-aboutus .aboutus__container .aboutus__content-body .body__right {
    max-width: 100%;
  }
}

.oranament-line {
  position: absolute;
  z-index: 0;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 100%;
  max-width: 1500px;
  height: auto;
}
@media (max-width: 842px) {
  .oranament-line {
    display: none;
  }
}
.oranament-line .oranament-bg-up {
  position: absolute;
  top: 100px;
  width: 100%;
}
.oranament-line .oranament-bg-center {
  position: absolute;
  top: 600px;
  width: 100%;
}
.oranament-line .oranament-bg-bottom {
  position: absolute;
  top: 880px;
  width: 100%;
}

.line {
  position: relative;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 1500px;
  display: flex;
  align-items: center;
}
.line .line-square-right {
  width: 8px;
  height: 8px;
  background-color: #E5E8E8;
  position: absolute;
  right: 28px;
}
.line .line-square-left {
  width: 8px;
  height: 8px;
  background-color: #E5E8E8;
  position: absolute;
  left: 28px;
}

section.keyoutcome {
  background: #F4F6F6;
  position: relative;
}
section.keyoutcome .container.keyoutcome__container {
  z-index: 1;
  position: relative;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container {
    padding: 10px 10px;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content--span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content--span img {
  width: 24px;
  height: 24px;
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content--span span {
  color: rgba(2, 6, 9, 0.8);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content--span .keyoutcome__dsc {
  color: #020609;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-transform: capitalize;
  opacity: 0.8;
  max-width: 328px;
  width: 100%;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content--span .keyoutcome__dsc {
    max-width: 100%;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content--title {
  color: #020609;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 67.6px */
  letter-spacing: -2.08px;
  max-width: 529px;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content--title {
    font-size: 32px;
    margin-top: 12px;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content--icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding-top: 16px;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content--icon {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content--icon img:nth-child(1) {
  width: 48px;
  height: 24px;
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content--icon img:nth-child(2) {
  width: 196px;
  height: 16px;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content--icon img:nth-child(2) {
    display: none;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body {
  margin-top: 80px;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body {
    margin-top: 40px;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--title {
  width: 100%;
  display: grid;
  grid-template-columns: 0.65fr repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-bottom: 40px;
  padding-inline: 24px;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--title {
    display: none;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--title span {
  color: rgba(2, 6, 9, 0.4);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list {
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list {
    padding: 5px 10px;
  }
} 
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/key_hover-img.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list::before {
    background-size: cover;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list:hover::before {
  opacity: 1;
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list .keyoutcome__content-body--item {
  display: grid;
  grid-template-columns: 0.65fr repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list .keyoutcome__content-body--item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list .keyoutcome__content-body--item .item__number {
  color: #FFF;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  max-width: 169px;
  width: 100%;
  opacity: 0;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list .keyoutcome__content-body--item .item__number {
    height: 0;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list .keyoutcome__content-body--item .item__title {
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.12px;
  max-width: 430px;
  width: 100%;
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list .keyoutcome__content-body--item .item__dsc {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  opacity: 0;
}
@media (max-width: 842px) {
  section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list .keyoutcome__content-body--item .item__dsc {
    height: 0;
  }
}
section.keyoutcome .container.keyoutcome__container .keyoutcome__content .keyoutcome__content-body--list .keyoutcome__content-body--item .item__dsc span {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 372px;
  width: 100%;
}

@media (max-width: 842px) {
  .keyoutcome__content-body--list:hover {
    padding: 15px 10px !important;
  }
}
.keyoutcome__content-body--list:hover .keyoutcome__content-body--item {
  padding-inline: 20px;
}
.keyoutcome__content-body--list:hover .keyoutcome__content-body--item .item__number {
  opacity: 1 !important;
  transition: opacity 0.4s ease;
}
@media (max-width: 842px) {
  .keyoutcome__content-body--list:hover .keyoutcome__content-body--item .item__number {
    height: unset !important;
  }
}
.keyoutcome__content-body--list:hover .keyoutcome__content-body--item .item__title {
  color: #FFF;
  transition: color 0.4s ease;
}
.keyoutcome__content-body--list:hover .keyoutcome__content-body--item .item__dsc {
  opacity: 1 !important;
  transition: opacity 0.4s ease;
}
@media (max-width: 842px) {
  .keyoutcome__content-body--list:hover .keyoutcome__content-body--item .item__dsc {
    height: unset !important;
  }
}
.keyoutcome__content-body--list:hover .keyoutcome__content-body--item .item__dsc span {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.4s ease;
}

.key-1::before {
  background-image: url("assets/images/key_hover-img1.png") !important;
}

.key-2::before {
  background-image: url("assets/images/key_hover-img2.png") !important;
}

.key-3::before {
  background-image: url("assets/images/key_hover-img3.png") !important;
}

.key-4::before {
  background-image: url("assets/images/key_hover-img4.png") !important;
}

section.core {
  position: relative;
  background-image: url("assets/images/bg-core.png");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 576px) {
  section.core {
    padding-top: 80px;
    background-position: -650px;
  }
}
@media (max-width: 842px) {
  section.core {
    padding-top: 80px;
    background-position: cover;
  }
}
section.core .container.core__container {
  padding-top: 262px;
  padding-bottom: 40px;
  z-index: 1;
  position: relative;
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 842px) {
  section.core .container.core__container {
    padding-top: 100px;
  }
}
section.core .container.core__container .core__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 273px;
}
@media (max-width: 842px) {
  section.core .container.core__container .core__content {
    gap: 80px;
  }
}
section.core .container.core__container .core__content .core__content-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.core .container.core__container .core__content .core__content-head .core__content--title {
  color: #FFF;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 67.6px */
  letter-spacing: -2.08px;
}
section.core .container.core__container .core__content .core__content-head .core__img-oranment {
  width: 100%;
  margin-top: 40px;
}
section.core .container.core__container .core__content .core__content-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: white;
}
@media (max-width: 842px) {
  section.core .container.core__container .core__content .core__content-bottom {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-template-rows: 1fr;
  }
}
@media (max-width: 1280px) {
  section.core .container.core__container .core__content .core__content-bottom {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    width: 100%;
  }
}
section.core .container.core__container .core__content .core__content-bottom .card__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
section.core .container.core__container .core__content .core__content-bottom .card__item .card__item-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
section.core .container.core__container .core__content .core__content-bottom .card__item .card__item-head h3 {
  color: #FFF;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.8px;
}
section.core .container.core__container .core__content .core__content-bottom .card__item span {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}

.white .line.oranament-bg-up {
  background-color: rgba(255, 255, 255, 0.12);
  top: 236px;
}
.white .line.oranament-bg-up .line-square-right {
  background-color: rgba(255, 255, 255, 0.12);
}
.white .line.oranament-bg-up .line-square-left {
  background-color: rgba(255, 255, 255, 0.12);
}

section.section-whoweserve {
  background-color: #ffffff;
  position: relative;
}
section.section-whoweserve .whoweserve__container {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content .whoweserve__content-head {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content .whoweserve__content-head {
    flex-direction: column;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content--span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}
section.section-whoweserve .whoweserve__container .whoweserve__content--span img {
  width: 24px;
  height: 24px;
}
section.section-whoweserve .whoweserve__container .whoweserve__content--span span {
  color: rgba(2, 6, 9, 0.8);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  min-width: 140px;
}
section.section-whoweserve .whoweserve__container .whoweserve__content--title {
  max-width: 900px;
  display: flex;
  flex-direction: column;
}
section.section-whoweserve .whoweserve__container .whoweserve__content--title h2 {
  color: #020609;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 67.6px */
  letter-spacing: -2.08px;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content--title h2 {
    font-size: 32px;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content--title h2:nth-child(1) {
  margin-left: 0px;
}
@media (max-width: 1280px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content--title h2:nth-child(1) {
    margin-left: 0px;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content--icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 16px;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content--icon {
    display: none;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content--icon .whoweserve-icon_head {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
section.section-whoweserve .whoweserve__container .whoweserve__content--icon .whoweserve-icon_head img {
  width: 96px;
  height: 40px;
}
section.section-whoweserve .whoweserve__container .whoweserve__content--icon span {
  color: rgba(2, 6, 9, 0.8);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  max-width: 207px;
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body {
  margin-top: 44px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content-body {
    flex-direction: column;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img img:nth-child(1) {
    display: none;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img .video-wrapper {
  overflow: hidden;
  max-width: 443px;
  height: 280px;
  margin-top: 32px;
  margin-bottom: 24px;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img .video-wrapper {
    max-width: 100%;
    height: auto;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img .video-wrapper .whoserve_fotos {
  max-width: 443px;
  height: 280px;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img .video-wrapper .whoserve_fotos {
    max-width: 100%;
    height: auto;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img .video-wrapper img {
  display: none;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img .video-wrapper img {
    display: block;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img .video-wrapper video {
  display: block;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img .video-wrapper video {
    display: none;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_img span {
  color: #020609;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  max-width: 443px;
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link {
  cursor: pointer;
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: 0.5fr 2fr 0.5fr;
  grid-template-rows: 1fr;
  grid-column-gap: px;
  grid-row-gap: 0px;
  align-items: center;
  padding-block: 32px;
  border-bottom: solid 1px rgba(2, 6, 9, 0.12);
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link {
    padding-block: 20px;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link > :nth-child(3) {
  justify-self: end;
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link span:nth-child(1) {
  color: #020609;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link span:nth-child(2) {
  color: #9A9B9D;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.6px;
  transition: color 0.3s ease, margin-left 0.3s ease;
}
@media (max-width: 842px) {
  section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link span:nth-child(2) {
    font-size: 24px;
  }
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link svg {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-5px);
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link:hover svg {
  opacity: 1;
}
section.section-whoweserve .whoweserve__container .whoweserve__content-body .content-body_left .whoweserve__link:hover span:nth-child(2) {
  color: #020609;
  margin-left: 10px;
}

.show {
  display: flex !important;
}

.video-3 .whoserve_fotos {
  height: 280px !important;
  max-width: 474px !important;
}
@media (max-width: 842px) {
  .video-3 .whoserve_fotos {
    height: auto !important;
    max-width: 100% !important;
  }
}

section.solutions {
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 842px) {
  section.solutions {
    padding-top: 100px;
  }
}
section.solutions .container.solutions__container {
  position: relative;
  padding-bottom: 80px;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 160px;
}
@media (max-width: 842px) {
  section.solutions .container.solutions__container {
    margin-bottom: unset;
    padding-top: 40px;
  }
}
section.solutions .container.solutions__container .solutions__content-head {
  color: #000000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 842px) {
  section.solutions .container.solutions__container .solutions__content-head {
    flex-direction: column;
    gap: 20px;
  }
}
section.solutions .container.solutions__container .solutions__content-head h1 {
  color: #020609;
  font-family: Inter;
  font-size: 78px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -3.12px;
  max-width: 832px;
}
@media (max-width: 842px) {
  section.solutions .container.solutions__container .solutions__content-head h1 {
    font-size: 48px;
    letter-spacing: -1.12px;
  }
}
section.solutions .container.solutions__container .solutions__content-head p {
  color: rgba(2, 6, 9, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 443px;
}

section.solutions__content-body {
  padding: unset;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: 615px;
}
@media (max-width: 842px) {
  section.solutions__content-body {
    height: 300px;
  }
}
section.solutions__content-body img {
  width: 100%;
  max-width: 100%;
  height: 615px;
  object-fit: cover;
}
@media (max-width: 842px) {
  section.solutions__content-body img {
    height: 300px;
  }
}

section.forfinancial {
  background: #FFFFFF;
  position: relative;
}
@media (max-width: 842px) {
  section.forfinancial {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.forfinancial .container.forfinancial__container {
  z-index: 1;
  position: relative;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 80px;
  padding-bottom: 90px;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container {
    padding: 10px 10px;
    padding-top: 20px !important;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content--span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}

section.forfinancial .container.forfinancial__container .forfinancial__content--span1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px; 
  gap: 6px;
  flex: 2; 
  margin-left: 40px;
}

section.forfinancial .container.forfinancial__container .forfinancial__content--span img {
  width: 24px;
  height: 24px;
}
section.forfinancial .container.forfinancial__container .forfinancial__content--span span {
  color: rgba(2, 6, 9, 0.8);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}
section.forfinancial .container.forfinancial__container .forfinancial__content--span .forfinancial__dsc {
  color: #020609;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-transform: capitalize;
  opacity: 0.8;
  max-width: 328px;
  width: 100%;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content--span .forfinancial__dsc {
    max-width: 100%;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content--title {
  color: #020609;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 67.6px */
  letter-spacing: -2.08px;
  max-width: 529px;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content--title {
    font-size: 32px;
    margin-top: 12px;
    letter-spacing: -1.12px;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content--icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding-top: 16px;
  margin-bottom: auto;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content--icon {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content--icon img:nth-child(1) {
  width: 48px;
  height: 24px;
}
section.forfinancial .container.forfinancial__container .forfinancial__content--icon img:nth-child(2) {
  width: 196px;
  height: 16px;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content--icon img:nth-child(2) {
    display: none;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body {
  display: flex;
  flex-direction: row;
  margin-top: 72px;
  justify-content: flex-end;
  gap: 16px;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body {
    flex-direction: column;
    margin-top: 40px;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 40px 24px;
  justify-content: flex-start;
  align-items: flex-start;
  background: #F4F6F6;
  gap: 108px;
  max-width: 328px;
  width: 100%;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card {
    max-width: 100%;
  }
}
@media (max-width: 1280px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card {
    gap: 40px;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card .forfinancial__card-head {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card .forfinancial__card-head .forfinancial__card-span {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card .forfinancial__card-head .forfinancial__card-span span {
  color: #020609;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.72px;
  opacity: 0.4;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card .forfinancial__card-head .forfinancial__card-title {
  margin-top: 48px;
  margin-bottom: 32px;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card .forfinancial__card-head .forfinancial__card-title span {
  color: #020609;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card .forfinancial__card-head img {
  width: 194px;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card .forfinancial__card-body {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card .forfinancial__card-body span {
  color: #020609;
  text-align: right;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card.black {
  background: black;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card.black .forfinancial__card-span span {
  color: white;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card.black .forfinancial__card-title span {
  color: white;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card.black .forfinancial__card-body span {
  color: white;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-body .forfinancial__content-card.black img {
  filter: contrast(1);
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-img {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 321px 40px 40px 40px;
  background-image: url("assets/images/financial_img.png");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
  gap: 16px;
}
@media (max-width: 842px) {
  section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-img {
    padding: 200px 20px 20px 20px;
  }
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-img span {
  color: white;
}
section.forfinancial .container.forfinancial__container .forfinancial__content .forfinancial__content-img .forfinancial__img-text {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
  max-width: 500px;
  width: 100%;
}

.forfinancial__content-img {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 321px 40px 40px 40px;
  background-image: url("assets/images/financial_img.png");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
  gap: 16px;
}
@media (max-width: 842px) {
  .forfinancial__content-img {
    padding: 200px 20px 20px 20px;
  }
}
.forfinancial__content-img span {
  color: white;
}
.forfinancial__content-img .forfinancial__img-text {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
  max-width: 500px;
  width: 100%;
}

.forpayment__content-img {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 321px 40px 40px 40px;
  background-image: url("assets/images/forpayment-img.png");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
  gap: 16px;
}
@media (max-width: 842px) {
  .forpayment__content-img {
    padding: 200px 20px 20px 20px;
  }
}
.forpayment__content-img .forpayment__content--span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}
.forpayment__content-img .forpayment__content--span span {
  color: white;
}
.forpayment__content-img .forpayment__img-text {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
  max-width: 500px;
  width: 100%;
}

.formarket__content-img {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 321px 40px 40px 40px;
  background-image: url("assets/images/formarket-img.png");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
  gap: 16px;
}
@media (max-width: 842px) {
  .formarket__content-img {
    padding: 200px 20px 20px 20px;
  }
}
.formarket__content-img .formarket__content--span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}
.formarket__content-img .formarket__content--span span {
  color: white;
}
.formarket__content-img .formarket__img-text {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
  max-width: 500px;
  width: 100%;
}

section.services {
  background-color: #ffffff;
  position: relative;
}
section.services .container.services__container {
  position: relative;
  padding-bottom: 80px;
  padding-top: 160px;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 842px) {
  section.services .container.services__container {
    margin-bottom: unset;
    padding-top: 120px;
  }
}
section.services .container.services__container .services__content-head {
  color: #000000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 842px) {
  section.services .container.services__container .services__content-head {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    max-width: 500px;
  }
}
section.services .container.services__container .services__content-head h1 {
  color: #020609;
  font-family: Inter;
  font-size: 78px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -3.12px;
  width: 100%;
  max-width: 832px;
}
@media (max-width: 842px) {
  section.services .container.services__container .services__content-head h1 {
    font-size: 40px;
    letter-spacing: -1.12px;
  }
}
section.services .container.services__container .services__content-head p {
  color: rgba(2, 6, 9, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  width: 100%;
  max-width: 443px;
}

section.services__content-body {
  padding: unset;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: 615px;
}
@media (max-width: 842px) {
  section.services__content-body {
    height: 415px;
  }
}
section.services__content-body img {
  width: 100%;
  max-width: 100%;
  height: 615px;
  object-fit: cover;
}
@media (max-width: 842px) {
  section.services__content-body img {
    height: 415px;
  }
}

section.services-page {
  background: #FFFFFF;
  position: relative;
}
@media (max-width: 842px) {
  section.services-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.services-page .container.services-page__container {
  z-index: 1;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container {
    padding: 10px 10px;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 246px;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content .services-page__content-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
section.services-page .container.services-page__container .services-page__content--span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}
section.services-page .container.services-page__container .services-page__content--span img {
  width: 24px;
  height: 24px;
}
section.services-page .container.services-page__container .services-page__content--span span {
  color: rgba(2, 6, 9, 0.8);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}
section.services-page .container.services-page__container .services-page__content--span .services-page__dsc {
  color: #020609;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-transform: capitalize;
  opacity: 0.8;
  max-width: 328px;
  width: 100%;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content--span .services-page__dsc {
    max-width: 100%;
  }
}
section.services-page .container.services-page__container .services-page__content--title {
  color: #020609;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2.08px;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content--title {
    font-size: 32px;
    margin-top: 12px;
  }
}
section.services-page .container.services-page__container .services-page__content--icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding-top: 16px;
  margin-bottom: auto;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content--icon {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
section.services-page .container.services-page__container .services-page__content--icon img:nth-child(1) {
  width: 48px;
  height: 24px;
}
section.services-page .container.services-page__container .services-page__content--icon img:nth-child(2) {
  width: 196px;
  height: 16px;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content--icon img:nth-child(2) {
    display: none;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body {
  margin-top: 80px;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content .services-page__content-body {
    margin-top: 40px;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--title {
  width: 100%;
  display: grid;
  grid-template-columns: 0.65fr repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-inline: 24px;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content .services-page__content-body--title {
    display: none;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--title span {
  color: rgba(2, 6, 9, 0.4);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--list {
  position: relative;
  padding: 20px 20px;
  overflow: hidden;
  border-bottom: solid 1px rgba(2, 6, 9, 0.1);
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content .services-page__content-body--list {
    padding: 10px 10px;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item {
  display: grid;
  grid-template-columns: 0.65fr repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  padding-block: 20px;
  z-index: 1;
  position: relative;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item {
    display: grid;
    padding-block: 10px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 20px;
    align-items: center;
  }
  section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__number {
    grid-column: 1;
    grid-row: 1;
  }
  section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__title {
    grid-column: 2;
    grid-row: 1;
  }
  section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__dsc {
    grid-column: 1/span 2;
    grid-row: 2;
    display: flex;
    justify-content: flex-end !important;
    align-items: flex-end;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__number {
  color: #020609;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 14.4px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  max-width: 169px;
  width: 100%;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__number {
    height: 1;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__title {
  color: #020609;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 33.6px */
  letter-spacing: -1.12px;
  max-width: 430px;
  width: 100%;
  position: relative;
  right: 0;
  transition: all 0.2s ease-in-out;
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__dsc {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  opacity: 1;
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__dsc span {
  color: #020609;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 328px;
  width: 100%;
  opacity: 0.8;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item .item__dsc span {
    font-size: 16px;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item:hover {
  background-color: rgba(240, 248, 254, 0.5);
  cursor: pointer;
}
section.services-page .container.services-page__container .services-page__content .services-page__content-body--list .services-page__content-body--item:hover .item__title {
  right: -0.5rem;
}
section.services-page .container.services-page__container .services-page__content .services-page__content-img {
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 321px 40px 40px 40px;
  background-image: url("assets/images/service-1-img.png");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
  gap: 16px;
}
@media (max-width: 842px) {
  section.services-page .container.services-page__container .services-page__content .services-page__content-img {
    padding: 200px 20px 20px 20px;
  }
}
section.services-page .container.services-page__container .services-page__content .services-page__content-img span {
  color: white;
}
section.services-page .container.services-page__container .services-page__content .services-page__content-img .services-page__img-text {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
  max-width: 500px;
  width: 100%;
}

.services-page__content-img {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 321px 40px 40px 40px;
  background-image: url("assets/images/service-1-img.png");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
  gap: 16px;
}
@media (max-width: 842px) {
  .services-page__content-img {
    padding: 200px 20px 20px 20px;
  }
}
.services-page__content-img span {
  color: white;
}
.services-page__content-img .services-page__img-text {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
  max-width: 500px;
  width: 100%;
}

.service-2 {
  background-image: url("assets/images/service-2-img.png") !important;
}

.service-3 {
  background-image: url("assets/images/service-3-img.png") !important;
}

.service-3_layout .container.services-page__container {
  padding-bottom: 120px !important;
}

.service-line .line.oranament-bg-up {
  top: 76px;
}
.service-line .line.oranament-bg-bottom {
  top: 1330px;
}

section.howwework {
  background: #FFFFFF;
  position: relative;
}
@media (max-width: 842px) {
  section.howwework {
    padding-top: 40px;
  }
}
section.howwework .container.howwework__container {
  z-index: 1;
  position: relative;
  padding-top: 100px;
  border-inline: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container {
    padding: 10px 10px 0px 10px;
  }
}
section.howwework .container.howwework__container .howwework__content .howwework__content-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 246px;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content .howwework__content-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
section.howwework .container.howwework__container .howwework__content .howwework__content-head.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content .howwework__content-head.grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
section.howwework .container.howwework__container .howwework__content--span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}
section.howwework .container.howwework__container .howwework__content--span img {
  width: 24px;
  height: 24px;
}
section.howwework .container.howwework__container .howwework__content--span span {
  color: rgba(2, 6, 9, 0.8);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}
section.howwework .container.howwework__container .howwework__content--span .howwework__dsc {
  color: #020609;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-transform: capitalize;
  opacity: 0.8;
  max-width: 328px;
  width: 100%;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content--span .howwework__dsc {
    max-width: 100%;
  }
}
section.howwework .container.howwework__container .howwework__content--title {
  color: #020609;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -2.08px;
  max-width: 600px;
  width: 100%;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content--title {
    font-size: 32px;
    margin-top: 12px;
  }
}
section.howwework .container.howwework__container .howwework__content--title.center {
  text-align: center;
  width: 100%;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content--title.center {
    text-align: left;
  }
}
section.howwework .container.howwework__container .howwework__content--icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding-top: 16px;
  margin-bottom: auto;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content--icon {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
section.howwework .container.howwework__container .howwework__content--icon img:nth-child(1) {
  width: 48px;
  height: 24px;
}
section.howwework .container.howwework__container .howwework__content--icon img:nth-child(2) {
  width: 196px;
  height: 16px;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content--icon img:nth-child(2) {
    display: none;
  }
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body {
  display: flex;
  flex-direction: row;
  margin-top: 100px;
  justify-content: flex-start;
  gap: 130px;
  position: relative;
}
@media (max-width: 1280px) {
  section.howwework .container.howwework__container .howwework__content .howwework__content-body {
    justify-content: space-between;
  }
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content .howwework__content-body {
    margin-top: 40px;
  }
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__img-progress {
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__img-progress {
    display: none;
    margin-top: 80px;
  }
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__img-progress .howwework__img-box {
  position: sticky;
  top: 100px;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__img-progress .howwework__img-box {
    display: none;
    margin-top: 80px;
  }
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__img-progress .howwework__img-box img {
  width: 100%;
  max-width: 557px;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__img-progress .howwework__img-box .howwework__img-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__img-progress .howwework__img-box .howwework__img-text span {
  color: #020609;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.72px;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box {
  display: grid;
  grid-template-columns: 0.1fr 0.3fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (max-width: 842px) {
  section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
  section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__numb {
    order: 2;
    margin-top: 7px;
  }
  section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__line {
    order: 1;
  }
  section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__text {
    order: 3;
  }
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__numb {
  color: #020609;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.72px;
  display: flex;
  justify-content: center;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__line .line-box__square {
  width: 18px;
  height: 18px;
  background: #F4F6F6;
  position: relative;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__line .dot1 {
  background: #458781;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__line .line-box__wrap {
  position: relative;
  height: 100%;
  width: 3px;
  background-color: #F4F6F6;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__line .line-box__wrap .line-box__dash {
  width: 3px;
  height: 0%;
  background: #458781;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 80px;
  max-width: 335px;
  width: 100%;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__text .tagline-box_text {
  color: #FFF;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.72px;
  border-radius: 100px;
  background: #458781;
  display: flex;
  padding: 7px 14px 8px 12px;
  justify-content: center;
  align-items: center;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__text .tagline-title {
  color: #020609;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.12px;
}
section.howwework .container.howwework__container .howwework__content .howwework__content-body .howwework__line-progress .line-progress__box .line-box__text .tagline__dsc {
  color: #020609;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  opacity: 0.8;
  max-width: 300px;
  width: 100%;
}

section.howwework__img-bottom {
  width: 100%;
  position: relative;
  background-image: url("assets/images/howwework-img-btm.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 160px;
  color: #FFFFFF;
}
@media (max-width: 842px) {
  section.howwework__img-bottom {
    flex-direction: column;
    height: auto;
    gap: 20px;
    background-size: cover;
  }
}
section.howwework__img-bottom .howwework__img-bottom--box {
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 160px;
  color: #FFFFFF;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 130px;
  padding-inline: 40px;
  width: 100%;
  max-width: 1440px;
}
@media (max-width: 842px) {
  section.howwework__img-bottom .howwework__img-bottom--box {
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-inline: 20px;
  }
}
section.howwework__img-bottom .howwework__img-bottom--box .img-bottom__dsc {
  color: #FFF;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  max-width: 901px;
}
@media (max-width: 842px) {
  section.howwework__img-bottom .howwework__img-bottom--box .img-bottom__dsc {
    font-size: 16px;
    max-width: 100%;
  }
}
section.howwework__img-bottom .howwework__img-bottom--box .services-page__content--span {
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 800px;
}
@media (max-width: 842px) {
  section.howwework__img-bottom .howwework__img-bottom--box .services-page__content--span {
    width: 100%;
  }
}

.howwehelp .howwehelp__body {
  margin-top: 10px !important;
}
@media (max-width: 1280px) {
  .howwehelp .howwehelp__body {
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
}
.howwehelp .howwehelp__body .howwehelp__head {
  display: flex;
  flex-direction: column !important;
  gap: 200px;
  align-items: flex-start !important;
  max-width: 328px;
}
@media (max-width: 842px) {
  .howwehelp .howwehelp__body .howwehelp__head {
    gap: 40px !important;
    align-items: flex-start !important;
    margin-right: auto;
  }
}
@media (max-width: 1280px) {
  .howwehelp .howwehelp__body .howwehelp__head {
    gap: 40px !important;
  }
}
.howwehelp .howwehelp__body .howwehelp__head span {
  color: #020609;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 67.6px */
  letter-spacing: -2.08px;
}
@media (max-width: 842px) {
  .howwehelp .howwehelp__body .howwehelp__head span {
    font-size: 40px;
  }
}
.howwehelp .container {
  padding-top: 100px !important;
}
.howwehelp .oranament-line .line.oranament-bg-bottom {
  top: 600px !important;
}
@media (max-width: 1280px) {
  .howwehelp .oranament-line .line.oranament-bg-bottom {
    top: 900px !important;
  }
}

.contact-page {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 130px;
  background: #F4F6F6;
  padding: 80px 40px 100px 40px;
}
@media (max-width: 842px) {
  .contact-page {
    padding: 40px 10px 40px 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 1280px) {
  .contact-page {
    gap: 40px;
    margin-top: 10px;
  }
}

.form_title {
  color: #020609;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.6px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 80px;
}
@media (max-width: 842px) {
  .contact-form {
    margin-top: 40px;
  }
}
.contact-form .input-group {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  margin-bottom: 48px;
}
@media (max-width: 842px) {
  .contact-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1280px) {
  .contact-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.contact-form label {
  font-weight: 500;
  font-size: 14px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dcdcdc;
  padding: 10px 0;
  font-size: 15px;
  font-family: "inter", sans-serif;
  background: transparent;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #000;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-note {
  color: rgba(2, 6, 9, 0.6);
  text-align: justify;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-top: 24px;
  margin-bottom: 48px;
  max-width: 632px;
}

.send-btn {
  padding: 14px 28px;
  background: #000;
  color: white;
  font-size: 14px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.25s;
}

.contact-right .contact-content {
  margin-block: 48px;
}
.contact-right .contact-content .contact-content-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.contact-right .contact-content .contact-content-title span {
  color: #020609;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}
.contact-right .contact-content .contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 64px;
  grid-row-gap: 40px;
}
@media (max-width: 842px) {
  .contact-right .contact-content .contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.contact-right .contact-content .contact-details .contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-right .contact-content .contact-details .contact-item .label {
  color: rgba(2, 6, 9, 0.6);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}
.contact-right .contact-content .contact-details .contact-item .val {
  color: #020609;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}

.top {
  margin-top: 0px !important;
}

.office-deatails {
  grid-template-columns: 1fr !important;
}

#contact .howwework__container {
  padding-bottom: 120px;
}
#contact .oranament-line .line.oranament-bg-bottom {
  top: 1000px !important;
}