/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Allow percentage-based heights */
html,
body {
  height: 100%;
  transition: all 0.3s ease-in-out;
}

/* Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Remove default link styling */
a {
  text-decoration: none;
  color: inherit;
}

/* Make media easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Prevent text overflow */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}




/* SPECS */

body {
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1284px;
  margin: 0 auto;
  padding: 0 16px;
}

.m-auto {
  margin: 0 auto;
}

.jcc {
  justify-content: center;
}

.H2 {
  color: #011C2A;
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
}

.H3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #011C2A;
}

.H4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #011C2A;
}

.body {
  color: #64777C;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.btn {
  color: #ffffff;
  background-color: #004C62;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: #046886;
}

.ghost__btn {
  color: #64777C;
  background-color: #004d6200;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #DCE3E5;
}

.ghost__btn:hover {
  background-color: #ffffff;
  border: 1px solid #004C62;
  color: #011C2A;
}

.df {
  display: flex;
}

.br16 {
  border-radius: 16px;
}

.aic {
  align-items: center;
}

.ait {
  align-items: flex-start;
}

.tac {
  text-align: center;
}

.w100 {
  width: 100% !important;
  max-width: 100% !important;
}

.tal {
  text-align: left;
}

.jcsb {
  justify-content: space-between;
}

.mb8 {
  margin-bottom: 8px;
}

.mb12 {
  margin-bottom: 12px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb64 {
  margin-bottom: 64px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb120 {
  margin-bottom: 120px;
}

.h_color {
  color: #011C2A;
}

/* HEADER */


.language{
  position:relative;
}

.title__long {
  max-width: 780px !important;
}

.body__long {
  max-width: 810px !important;
}

.short_w {
  max-width: 728px;
}

.pr__list {
  padding-left: 24px;
}

.pr__item {
  margin-bottom: 12px;
}



/* dropdown */

.language__dropdown{
  position:absolute;
  top:120%;
  right:0;

  background:white;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);

  min-width:160px;

  opacity:0;
  transform:translateY(-8px);
  pointer-events:none;

  transition:all .25s ease;
}

/* open state */

.language.active .language__dropdown{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* items */

.language__item{
  display:block;
  padding:10px 16px;
  color:#333;
  text-decoration:none;
}

.language__item:hover{
  background:#f5f7f9;
}

/* arrow animation */

.language__arrow{
  transition:transform .25s ease;
}

.language.active .language__arrow{
  transform:rotate(180deg);
}

.navs {
  background-color: #ffffff;
}

.header {
  background: linear-gradient(to bottom, #F4F9FA 0%, #ffffff 100%);
  position: relative;
  z-index: 1;
}

.header__bg {
  position: absolute;
  top: 415px;
  z-index: -1;
}

.navs__global-wrapper {
  padding: 18px 0;
}

.navs__logo-group {
  gap: 32px;
}

.navs__wrapper {
  gap: 53px;
}

.language__wrapper {
  gap: 8px;
  margin-right: 24px;
  cursor: pointer;
}

.navs__item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #64777C;
  transition: all 0.2s ease-in-out;
}

.navs__item:hover {
  font-weight: 500;
  color: #011C2A;
}

/* HERO SECTION */

.hero__title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 44px;
  color: #011C2A;
  max-width: 652px;
}

.hero__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #64777C;
  max-width: 652px;
  margin: 0 auto 32px;
}

.hero__btn-group {
  gap: 16px;
}

.hero__img {
  border-radius: 16px;
}

/* ABOUT */

.about__wrapper {
  border-radius: 16px;
  background-color: #F4F9FA;
  background-image: url(/assets/images/mountain.png);
  padding: 80px 85px;
}

.label {
  padding: 4px 12px;
  border-radius: 100px;
  background-color: #E9F4F7;
  color: #004C62;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  width: fit-content
}

.about__title {
  color: #011C2A;
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
}

.about__text {
  color: #64777C;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  max-width: 970px;
  margin: 0 auto 32px;
}


/* VISION */

.visio__txt {
  max-width: 599px;
}

.vision__wrapper {
  gap: 80px;
}

.item__text {
  max-width: 321px;
}

.item__link {
  color: #004C62;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  transition: all 0.3s ease-in-out;
}

.item__link::after {
  content: "";
  width: 18px;
  height: 18px;

  background: url("/assets/icons/arrow-right.svg") no-repeat center;
  background-size: contain;

  transition: transform 0.3s ease;
}

.item__link:hover::after {
  transform: translateX(4px);
}

/* TEAM */

.team__txt {
  max-width: 436px;
}


.team__wrapper{
  gap: 85px;
  align-items: flex-start;
}

.team__grid{
  display: grid;
  grid-template-columns: repeat(2, 365px);
  gap: 32px;
}

.team-card{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}



.team-card__overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 20px;

  color: white;

  background: linear-gradient(
      to top,
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.1),
      rgba(0,0,0,0)
  );
}

.team-card__overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;

  padding:24px;

  color:white;

  backdrop-filter:blur(18px);

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );

  transition:all .35s ease;
}

.team-card__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.team-card__name{
  font-size:22px;
  font-weight:600;
}


.team-card__role{
  margin-top:8px;
  font-weight:500;
  opacity:.9;
}

.team-card__desc{
  margin-top:14px;

  font-size:14px;
  line-height:1.6;

  opacity:0;
  max-height:0;
  overflow:hidden;

  transition:all .35s ease;
}

.team-card--active .team-card__desc{
  opacity:1;
  max-height:220px;
}

/* FOOTER */

.footer {
  padding: 64px 0 48px;
  background-color: #F4F9FA;
}

.footer__navs {
  gap: 32px;
}

.footer__wrapper-top {
  padding-bottom: 64px;
  border-bottom: 1px solid #EAECF0;
}

.footer__link-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #3c484b;
  transition: all 0.3s ease;
}

.footer__link-item:hover {
  color: #011C2A;
}

.rights {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #64777C;
}

.footer__links {
  gap: 16px;
}

.footer__links-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #64777C;
  transition: all 0.3s ease;
}

.footer__links-item:hover {
  color: #011C2A;
}

.footer__title {
  font-weight: 600;
}



/* ABOUT US PAGE */

/* WHY */

.why__content {
  flex-direction: column;
  max-width: 555px;
  gap: 48px;
}

.content-item__wrapper {
  align-items: start;
  gap: 16px;
}

.content__text-wrapper {
  padding-top: 12px;
}

/* PRODUCT PAGE */


.roadmap__scroll {
  overflow-x: auto;
  overflow-y: visible;
  padding-left: calc((100vw - 1284px)/2);
}

.roadmap__inner{
  padding: 20px 0;
}

.roadmap__track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.roadmap__card {
  width: 420px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid #DCE3E5;
  padding: 20px;
  max-height: 433px;
}

.roadmap__card img {
  display: block;
  margin-bottom: 24px;
}


.roadmap__scroll::-webkit-scrollbar{
  display:none;
}

.ls__s {
  letter-spacing: -1%;
}
.ls__xs {
  letter-spacing: -2%;
}

/* FEATURES */

.features__wrapper {
  gap: 32px;
}

/* SOLUTION */

.solution__text {
  max-width: 436px;
}

.image__content-item__text {
  max-width: 366px;
}

/* FORM */

.contact__wrapper{
  display:flex;
  gap:74px;
  justify-content: space-between;
}


.contact__content {
  width: 50%;
}

.contact__text{
  max-width: 700px;
  line-height:1.6;
}

/* FORM */

.contact__form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact__row{
  display:flex;
  gap:20px;
}

.form__group{
  display:flex;
  flex-direction:column;
  gap:8px;
  width:100%;
}

.form__group label{
  font-size:14px;
  color:#4a5c66;
}

.form__group input,
.form__group textarea{
  border:1px solid #d6dee2;
  border-radius:10px;
  padding:14px 16px;
  font-family:inherit;
  font-size:14px;
}

.form__group textarea{
  min-height:120px;
  resize:vertical;
}

.form__group input:focus,
.form__group textarea:focus{
  outline:none;
  border-color:#0e5c6e;
}

/* CHECKBOX */

.contact__checkbox{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color: #64777C;
}

.contact__checkbox a{
  text-decoration:underline;
}

/* BUTTON */

.contact__submit{
  width:100%;
  margin-top:10px;
}

/* IMAGE */

.contact__image img{
  width: 631px;;
  height:100%;
  object-fit:cover;
  border-radius:16px;
}

/* PRICE PAGE */

.fees__left-wrapper {
  background-color: #F4F9FA;
  width: 100%;
  height: 495px;
  border-radius: 12px;
  padding: 0 32px;
}

.fees__wrapper {
  gap: 24px;
}

.fees__img {
  margin-top: -40px;
}



.fees__title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  color: #004C62;
}

.label__sm {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #64777C;
}

.fees__desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #011C2A;
  margin-bottom: 40px;
}

.desc__custom {
  margin-bottom: 64px;
}

.checkbox__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.checbox-group {
  gap: 12px;
}

.fees__btn {
  display: block;
}

/* BENEFITS */

.first__number {
  font-size: 48px;
  font-weight: 300;
  color: #004C62;
  line-height: 48px;
}

.left__item {
  width: 100%;
  max-width: 436px;
}

/* STATS */

.stats__number {
  font-size: 60px;
  line-height: 72px;
  color: #004C62;
}

.stats__number {
  font-weight: 500;
}

.stats__flex {
  padding: auto 105px;
}

.opportunity__text {
  max-width: 898px;
}

.wrapper__pricing {
  background-position: center 50%;
}

/* CONTACT PAGE */

.boxes__wrapper {
  justify-content: center;
  gap: 32px;
  margin-top: -137px;
}

.boxes__item {
  width: 100%;
  max-width: 449px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #DCE3E5;
  padding: 32px 0;
}

.boxes__link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #004C62;
}

.image__height {
  max-height: 680px;
}


.map__wrapper {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.map__wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map__card {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);

  background: white;
  padding: 20px 24px;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  text-align: center;
}



/* LANGUAGE FIXES */

.solution__image-content-fix {
  max-width: 740px;
}

.gap32 {
  gap: 32px;
}

/* MOBILE MENU */

.burger{
  display:none;
  width:28px;
  height:20px;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  background:none;
  border:none;
}

.burger span{
  display:block;
  height:2px;
  width: 24px !important;
  width:100%;
  background:#004C62;
  border-radius:2px;
  transition:0.3s;
}

.burger.active span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2){
  opacity: 0;
}

.burger.active span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}


/* MEDIA QUERRIES */

/* Large desktops */
@media (max-width: 1400px) {
  .why__content {
    max-width: 490px;
  }
  .solution__wrapper {
    gap: 22px;
  }
  .H2 {
    font-size: 32px;
  }
  .H3 {
    font-size: 20px;
  }
}

/* Laptops */
@media (max-width: 1200px) {
  .burger{
    display:flex;
  }
  
  .navs__wrapper{
  position:fixed;
  top:80px;
  left:0;
  width:100%;
  background:white;
  flex-direction:column;
  align-items:flex-start;   /* ВАЖНО */
  padding:40px;
  gap:24px;
  transform:translateY(-150%);
  transition:0.4s;
}
  
  .navs__wrapper.active{
    transform:translateY(0);
  }
  
  .navs__btn-group .btn{
    display:none;
  }
  .navs__btn-group {
    gap: 16px !important;
  }

  .navs{
    z-index:1000;
    background:white;
  }

  .about__wrapper {
    padding: 64px 64px;
  }

  .vision__img {
    max-width: 45%;
  }

  .team__wrapper {
    flex-direction: column;
  }

  .team__txt {
    max-width: 80%;
  }
  .why__wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .why__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 920px;
  }
  .why__img {
    width: 100%;
    height: 600px;
  }
  .image__content-wrapper {
    gap: 24px;
  }
  .solution__wrapper {
    gap: 34px;
  }
  .contact__wrapper {
    gap: 48px;
  }
  .stats__number {
    font-size: 48px;
  }
}

/* Tablets landscape */
@media (max-width: 1024px) {
  .mb120 {
    margin-bottom: 100px;
  }
  .mb80 {
    margin-bottom: 64px;
  }
  .about__wrapper {
    padding: 32px;
  }
  .vision__wrapper {
    flex-direction: column;
  }
  .vision__img {
    max-width: 100%;
    width: 100%;
    height: 550px;
    object-fit: cover;
  }
  .vision__content .visio__txt {
    max-width: 100%;
    width: 100%;
  }
  .item__text {
    font-size: 15px;
    line-height: 22px;
  }
  .approach__items-wrapper {
    gap: 23px;
  }
  .team-card {
    max-width: 335px;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.footer__navs {
  flex-wrap: wrap;
}
.features__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.solution__wrapper {
  flex-direction: column;
}
.solution__text {
  width: 100%;
  max-width: 100%;
}
.checkbox__txt {
  font-size: 14px;
}
.fees__left-wrapper {
  height: 516px;
}
.benefits__wrappe {
  flex-direction: column;
  gap: 48px;
}
.wrapper__left {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.left__item {
  margin-bottom: 0;
}
.stats__number {
  font-size: 40px;
}
.boxes__wrapper {
  flex-direction: column;
}
}

/* Tablets portrait */
@media (max-width: 768px) {
  h1.hero__title {
    font-size: 32px;
  }
  .footer__wrapper-top {
    flex-direction: column;
    gap: 24px;
  }
  .content-item__wrapper {
    flex-direction: column;
  }
  .roadmap__card {
    width: 370px;
    max-height: 410px;
  }
  .contact__image {
    display: none;
  }
  .contact__content {
    width: 100%;
  }
  .fees__wrapper {
    flex-direction: column;
    gap: 64px;
  }
  .stats__number {
    font-size: 30px;
  }
  .stats__text {
    font-size: 14px;
  }
  .stats__flex {
    gap: 7px;
  }
  .about__wrapper {
    padding: 24px;
  }
  .header__bg {
    top: 455px;
  }
  .footer {
    padding-bottom: 24px;
  }
  .boxes__wrapper {
    margin-top: -60px;
  }
}

/* Large phones */
@media (max-width: 576px) {
  .header__bg {
    top: 570px;
  }
  .hero__img {
    height: 300px;
    object-fit: cover;
  }
  .about__title {
    font-size: 28px;
  }
  .mb120 {
    margin-bottom: 80px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .body {
    font-size: 14px;
  }
  .about__text {
    font-size: 14px;
  }
  .approach__items-wrapper {
    flex-direction: column;
  }
  .team__grid {
    display: flex;
    flex-direction: column;
  }
  .team-card {
    width: 100%;
    max-width: 100%;
  }

  .team-card img:nth-child(1) {
    width: 100%;
  }

  .team__grid {
    width: 100%;
    max-width: 100%;
  }

  .footer__wrapper-bot {
    flex-direction: column;
    gap: 16px;
  }
  .H2 {
    font-size: 28px;
  }
  .why__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
    align-self: center;
    justify-items: center;
    justify-self: center;
  }
  .content__icon {
    margin: 0 auto;
  }
  .why__img {
    object-fit: cover;
    height: 300px;
  }
  .features__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .image__content-wrapper {
    flex-direction: column;
  }
  .wrapper__left {
    display: flex;
    flex-direction: column;
  }
  .stats__flex {
    flex-direction: column;
  }
  .boxes__item {
    width: 90%;
  }

  .language__wrapper {
    margin-right: 4px !important;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .contact__row {
    display: flex;
    flex-direction: column;
  }
  .team__txt {
    max-width: 100%;
  }
}