/* #region reset */
*,
::after,
::before {
  box-sizing: border-box;
}

img,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
p,
ul,
body {
  margin: 0;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}

input,
button,
a,
div {
  outline: none;
  border: none;
  caret-color: inherit;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  color: inherit;
  text-align: inherit;
  background: transparent;
}

  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--black);
    transition: background-color 5000s ease-in-out 5000s;
    box-shadow: inset 0 0 20px 20px var(--black);
    caret-color: inherit;
  }

button {
  cursor: pointer;
}

fieldset {
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
}

/* #endregion reset */

/* #region vars */
body {
  --font-main: "Inter", sans-serif;
  --font-accent: "Sofia Sans", sans-serif;
  --green: #0a4a00;
  --orange: #ea8c35;
  --grey: #e4e3e2;
  --dark: #222222;
  --mobile-nav-btn-color: var(--dark);
  --header-text-color: var(--dark);
  --container-padding: 16px;
  --transition: 0.3s ease;
  --container-width: 480px;
}

.burger-showed body {
  overflow: hidden;
}

@media (min-width: 768px) {
  body {
    --container-width: 768px;
  }
}

@media (min-width: 1024px) {
  body {
    --container-width: 1024px;
  }
}

@media (min-width: 1440px) {
  body {
    --container-width: 1440px;
    --container-padding: 32px;
  }
}

.header-white {
  --header-text-color: #fff;
}
/* #endregion */

/* #region base */
body {
  font-family: var(--font-main);
  background: #fff;
}

.main {
  overflow: hidden;
}

.container {
  max-width: var(--container-width);
  padding: 0 var(--container-padding);
  width: 100%;
  height: 100%;
  margin: auto;
}

.hover-zoom {
  transition: transform var(--transition);
}

@media (any-hover: hover) {
  .hover-zoom:hover {
    transform: scale(1.1);
  }
}

.d-n {
  display: none !important;
}

@media (max-width: 1023px) {
  .d-l {
    display: none;
  }
}

@media (min-width: 1024px) {
  .d-s {
    display: none;
  }
}

@media (min-width: 1440px) {
}
/* #endregion */

/* #region  icons*/
.icon {
  flex-shrink: 0;
  display: block;
}

  .icon.logo {
    width: 158px;
    height: 23px;
  }

@media (min-width: 768px) {
  .icon.logo {
    width: 166px;
    height: 24px;
  }
}

@media (min-width: 1024px) {
}

@media (min-width: 1440px) {
}
/* #endregion */

/* #region  header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 16px 0;
  width: 100%;
  z-index: 3;
}

.header__logo {
  position: relative;
  display: block;
  z-index: 2;
}

.header__body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__menu {
  position: fixed;
  border-radius: 0px 0px 40px 40px;
  background: var(--grey, #e4e3e2);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform var(--transition);
  transform: translateY(-100%);
  display: flex;
  align-items: center;
}

@media (min-height: 650px) {
  .header__menu {
    bottom: 10vh;
  }
}

@media (min-height: 750px) {
  .header__menu {
    bottom: 15vh;
  }
}

.burger-showed .header__menu {
  transform: translateX(0%);
}

.header-list {
  width: 100%;
  display: flex;
  margin: auto;
  flex-direction: column;
  gap: 0px;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
}

.header-li a {
  color: var(--Dark-skies, #222);
  display: block;
  padding: 12px 0;
  text-align: left;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.header-li.active {
  margin: 52px 0;
}

  .header-li.active a {
    text-align: right;
    width: fit-content;
    border-radius: 30px;
    background: var(--dark, #222);
    color: #fff;
    padding: 12px 24px;
    margin-left: auto;
  }

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;
  --width: 40px;
  --height: 30px;
  --line-height: 4px;
  --spacing: 6px;
  --color: var(--mobile-nav-btn-color);
  --radius: 4px;
  height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  width: var(--width);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

  .nav-icon::before,
  .nav-icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: var(--width);
    height: var(--line-height);
    border-radius: var(--radius);
    background-color: var(--color);
    transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  }

  .nav-icon::before {
    /* top: calc(var(--line-height) * -2); */
    top: calc(-1 * (var(--line-height) + var(--spacing)));
  }

  .nav-icon::after {
    /* top: calc(var(--line-height) * 2); */
    top: calc(var(--line-height) + var(--spacing));
  }

.burger-showed .nav-icon {
  background-color: transparent;
}

  .burger-showed .nav-icon::before,
  .burger-showed .nav-icon::after {
    top: 0;
    transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  }

  .burger-showed .nav-icon::before {
    transform: rotate(45deg);
  }

  .burger-showed .nav-icon::after {
    transform: rotate(-45deg);
  }
/* Layout */
.mobile-nav-btn {
  z-index: 999;
}

@media (min-width: 1024px) {
  .mobile-nav-btn {
    display: none;
  }
}

.header__burger-btn-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (min-width: 768px) {
  .header {
    padding: 24px 0;
  }

    .header .container {
      padding: 0 24px;
    }
}

@media (min-width: 1024px) {
  .header {
    padding: 32px 0;
  }

    .header .container {
      padding: 0 32px;
    }

  .header__body {
    align-items: center;
  }

  .header__menu {
    position: static;
    transform: none;
    background: none;
    margin-left: auto;
  }

  .header-li.active {
    margin: 0;
  }

  .header-list {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    padding: 0;
  }

  .header-li a {
    color: var(--header-text-color);
  }
}

@media (min-width: 1440px) {
  .header-list {
    gap: 24px;
  }

  .header-li a {
    font-size: 16px;
  }
}
/* #endregion */

/* #region hero */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  background: #000;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 0px;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__title {
  position: relative;
  padding: 0 0 50px 0;
  z-index: 1
}

.gero__desc {
  position: relative;
  z-index: 3
}

.hero__animation-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  font-size: 0;
  pointer-events: none;
  touch-action: none;
}

  .hero__animation-item img {
    width: 100%;
    height: 100%;
    font-size: 0;
  }

.hero__animation-item-1 {
  z-index: 2;
}

.hero__animation-item-2 {
  z-index: 1;
}

.hero__animation-item-3 {
  z-index: 0;
}

.hero__animation-item-4 {
  width: 100%;
  height: 30%;
  background: #000;
  position: absolute;
  bottom: -20%;
  left: 0;
  z-index: 1;
}

.team-hero {
  background-image: url(/img/team/1-s.png);
}

.projects-hero {
  background-image: url(/img/projects/1-s.png);
}

.page__label {
  border-radius: 24px;
  background: var(--Midday-Sun, #ea8c35);
  display: flex;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  color: var(--All-Black, #000);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
}

.about-company-hero {
  background-image: url(/img/about/1-s.png);
}

.page__title {
  color: var(--All-White, #fff);
  text-align: center;
  text-shadow: 0px 11.342px 35.646px rgba(0, 0, 0, 0.16);
  font-family: var(--font-accent);
  font-size: 38px;
  font-style: normal;
  font-weight: 1000;
  line-height: 42px; /* 110.526% */
  text-transform: uppercase;
}

.gero__desc {
  color: var(--All-White, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 125% */
  position: absolute;
  bottom: 42px;
}

@media (min-width: 768px) {

  .hero {
  }

  .team-hero {
    background-image: url(/assets/img/team/1-m.png);
  }

  .projects-hero {
    background-image: url(/assets/img/projects/1-m.png);
  }

  .about-company-hero {
    background-image: url(/assets/img/about/1-m.png);
  }

  .page__label {
    font-size: 14px;
    line-height: 18px;
  }

  .page__title {
    text-align: center;
    text-shadow: 0px 18.147px 57.033px rgba(0, 0, 0, 0.16);
    font-size: 84px;
    line-height: 88px; /* 104.762% */
  }

  .gero__desc {
    font-size: 20px;
    bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    padding: 0 0 150px 0;
  }

  .team-hero {
    background-image: url(/assets/img/team/1-l.png);
  }

  .projects-hero {
    background-image: url(/assets/img/projects/1-l.png);
  }

  .about-company-hero {
    background-image: url(/assets/img/about/1-l.png);
  }

  .page__title {
    text-shadow: 0px 14px 44px rgba(0, 0, 0, 0.16);
    font-size: 80px;
    line-height: 110px; /* 103.774% */
  }

  .gero__desc {
    font-size: 24px;
    bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .page__title {
    font-size: 90px;
  }
}

@media (min-width: 1440px) {
  .page__title {
    font-size: 106px;
  }
}
/* #endregion */

/* #region home-desc */
.home-desc {
  height: 550px;
  position: relative;
  z-index: 0;
  background-color: #010101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
}

.home-desc__canvas {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.home-desc__video {
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: -2;
  width: 100%;
}

.home-desc__body {
  position: relative;
  width: 328px;
}

  .home-desc__body::after {
    content: "";
    display: block;
    width: 111px;
    height: 108px;
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    background: var(--orange);
    border-radius: 50%;
    z-index: -1;
  }

.home-desc__text {
  color: var(--All-White, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 125% */
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(47px);
  -webkit-backdrop-filter: blur(47px);
  padding: 24px;
}

.home-desk-decor-item {
    position: absolute;
    width: 100%;
    bottom: -3px;
    left: 0;
    height: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

@media (min-width: 768px) {
  .home-desc {
    height: 620px;
  }

  .home-desc__body {
    width: 598px;
  }

  .home-desc__text {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 1024px) {
  .home-desc__text {
    padding: 25px 70px;
  }

  .home-desc {
    height: 80vh;
    margin-top: 0vh;
    padding-top: 0vh;
    padding-bottom: 150px;
    /*    background-size: 100% 100%;*/
  }

  .home-desc__body {
    width: 710px;
  }

  .home-desc__video {
    bottom: -50px;
  }
    .home-desk-decor-item {
        bottom: -50px;
        left: 0;
        height: 50px;
    }
}

@media (min-width: 1440px) {
  .home-desc {
    height: 90vh;
  }

  .home-desc__body {
    width: 910px;
  }

  .home-desc__video {
    bottom: -75px;
  }
    .home-desk-decor-item {
        bottom: -75px;
        height: 60px;
    }
}

@media (min-width: 1920px) {
  .home-desc__video {
    bottom: -100px;
  }
    .home-desk-decor-item {
        bottom: -100px;
        height: 75px;
    }
}

/* #endregion */

/* #region btn */

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 30px;
}

.btn-dark {
  color: #fff;
  background: var(--dark);
}

/* #endregion btn */

/* #region form-control */

.form-control {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 30px;
  border: 1px solid var(--grey);
}

  .form-control,
  .form-control::placeholder {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    line-height: 20px;
  }

    .form-control::placeholder {
      opacity: 0.4;
    }

    .form-control.error {
      border-color: red;
    }

.form-control__error-text {
  position: absolute;
  left: 30px;
  bottom: -19px;
  display: none;
  color: red;
  font-size: 14px;
  opacity: 0.9;
}

.form-control.error ~ .form-control__error-text {
  display: block;
}

/* #endregion form-control */

/* #region contacts */

.contact-form {
  padding-top: 100px;
  padding-bottom: 64px;
  text-align: center;
}

.contacts-map__container {
  position: relative;
}

.contact-form .page__label {
  display: inline-flex;
}

.contact-form .page__title {
  margin-bottom: 44px;
  color: var(--dark);
}

.contact-form .form-control {
  text-align: left;
}

.contact-form form > *:not(:last-child) {
  position: relative;
  margin-bottom: 24px;
}

.contacts-map__map {
  width: 100%;
  height: 558px;
  border-radius: 24px;
  border: 1px solid var(--grey);
}

.contacts-map__info {
  position: absolute;
  left: var(--container-padding);
  bottom: -87px;
  padding: 16px;
  max-width: calc(100% - (var(--container-padding) * 2));
  border-radius: 24px;
  color: var(--grey);
  font-size: 14px;
  background-color: var(--dark);
}

  .contacts-map__info > *:not(:last-child) {
    margin-bottom: 8px;
  }

  .contacts-map__info a {
    text-decoration: underline;
  }

@media (max-width: 767px) {
  .contacts-map {
    padding-bottom: 110px;
  }
}

@media (min-width: 768px) {
  .contact-form {
    padding-top: 120px;
    padding-bottom: 72px;
  }

    .contact-form form {
      max-width: 476px;
      margin: 0 auto;
    }

  .contacts-map__map {
    height: 714px;
  }

  .contacts-map__info {
    top: 16px;
    right: 32px;
    left: unset;
    bottom: unset;
    max-width: 313px;
    padding: 32px;
    font-size: 16px;
  }

    .contacts-map__info > *:not(:last-child) {
      margin-bottom: 10px;
    }
}

@media (min-width: 1440px) {
  .contact-form {
    padding-bottom: 93px;
  }

    .contact-form form {
      max-width: 446px;
    }

  .contacts-map__info {
    top: 32px;
    right: 64px;
    max-width: 446px;
  }

    .contacts-map__info > *:not(:last-child) {
      margin-bottom: 20px;
    }
}

/* #endregion contacts */

/* #region energy */
.energy {
  padding: 64px 0 96px 0;
}

.text-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.text-block-title {
  color: var(--Dark-skies, #222);
  font-family: var(--font-accent);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px; /* 141.667% */
  text-transform: uppercase;
  margin-bottom: 44px;
}

.text-block-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--Dark-skies, #222);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}

@media (min-width: 768px) {
  .energy {
    padding: 94px 0 124px 0;
  }

  .energy__content {
    padding: 0 73px;
  }

  .text-block-wrapper {
    gap: 64px;
  }

  .text-block-title {
    font-size: 44px;
    font-style: normal;
    font-weight: 300;
    line-height: 54px;
  }

  .text-block-desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
}

@media (min-width: 1024px) {
  .text-block-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .text-block-text {
    max-width: 446px;
  }

  .text-block-right {
    padding-top: 170px;
  }
}

@media (min-width: 1440px) {
  .energy {
    padding: 144px 0 144px 0;
  }

  .energy__content {
    padding: 0 116px;
  }
}
/* #endregion */

/* #region invest */

.invest__content {
  border-radius: 24px;
  background: var(--Dark-skies, #222);
  padding: 24px 16px;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invest__img-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

.invest__title {
  color: var(--Moon-Grey, #e4e3e2);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px; /* 141.667% */
}

.invest__img {
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.invest__button-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

.invest__button {
  border-radius: 12px;
  background: var(--Midday-Sun, #ea8c35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  width: fit-content;
  color: var(--Dark-skies, #222);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.invest__bottom-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}

@media (min-width: 768px) {
  .invest__content {
    padding: 60px;
  }

  .invest__content,
  .invest__img-wrapper {
    gap: 44px;
  }

  .invest__button-wrapper {
    flex-direction: row;
    gap: 34px;
    align-items: center;
  }

  .invest__title {
    font-size: 54px;
    font-style: normal;
    font-weight: 300;
    line-height: 66px; /* 122.222% */
  }

  .invest__bottom-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
  }
}

@media (min-width: 1024px) {
  .invest__img-wrapper {
    flex-direction: row;
  }

  .invest__title {
    max-width: 775px;
  }

  .invest__button-wrapper {
    justify-content: space-between;
  }

  .invest__bottom-text {
    max-width: 401px;
  }
}

@media (min-width: 1440px) {
  .invest__content {
    padding: 64px;
  }

  .invest__title {
    max-width: 775px;
    font-size: 64px;
  }
}
/* #endregion */

/* #region footer */
.footer {
  padding: 64px 0 32px 0;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 92px;
  color: var(--Dark-skies, #222);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

  .footer__link, .footer__content p {
    text-transform: uppercase;
  }

@media (min-width: 768px) {
  .footer {
    padding: 126px 0 64px 0;
  }

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }

    .footer__content p {
      max-width: 300px;
      text-align: right;
    }
}

@media (min-width: 1024px) {
}

@media (min-width: 1440px) {
  .footer {
    padding: 124px 0 32px 0;
  }

  .footer__content p {
    max-width: unset;
  }
}
/* #endregion */

/* #region about */

.about-list {
  position: relative;
  margin-top: -30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 96px;
}

  .about-list .text-block-text {
    max-width: 476px;
  }

  .about-list .about-list__item:first-child .text-block-text {
    padding: 0 24px;
  }

.about_text-block-image {
  display: flex;
  align-items: end;
  gap: 12px;
}

.about__text-block-title {
  margin-bottom: 0;
}

.about__text-block-desc p.active {
  border-radius: 24px;
  background: var(--Dark-skies, #222);
  padding: 16px 24px;
  margin: -0 -24px;
  color: var(--Moon-Grey, #e4e3e2);
}

.about__text-block-desc p:first-of-type {
  font-size: 16px;
}

.about_text-block-image img {
  border-radius: 24px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about__text-block-desc p:first-of-type {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }

  .about_text-block-image {
    display: flex;
    align-items: end;
    gap: 73px;
  }

  .about__text-block-title {
    max-width: 150px;
  }

  .about-list {
    padding: 0 69px;
    gap: 100px;
    padding-bottom: 124px;
  }

  .about_text-block-image img {
    border-radius: 40px;
  }
}

@media (min-width: 1024px) {
  .about__text-block-title {
    max-width: unset;
  }

  .about__text-block-desc p.active {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }

  .about__text-block-desc p:first-of-type {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }

  .about__text-block-desc .about__text-block-title {
    margin-bottom: 20px;
  }

  .about_text-block-image img {
    width: 100%;
  }

  .about__text-block-wrapper {
    align-items: start;
  }

  .about__text-block-right,
  .about-list .about-list__item:first-child .text-block-text {
    padding-top: 100px;
  }

  .about-list .about-list__item:nth-child(2) .about__text-block-wrapper {
    flex-direction: row-reverse;
  }

  .about-list .about-list__item:nth-child(2) .about__text-block-right {
    padding-top: 0;
  }

  .about-list .about-list__item:nth-child(2) .about__text-block-left {
    padding-top: 100px;
  }
}

@media (min-width: 1440px) {
  .about-list .about-list__item:nth-child(2) .about__text-block-right {
    padding-top: 0;
  }

  .about-list .about-list__item:nth-child(2) .about__text-block-left {
    padding-top: 200px;
  }

  .about-list {
    margin-top: -65px;
    padding: 0 115px;
    gap: 124px;
    padding-bottom: 124px;
  }

  .about_text-block-image img {
    width: unset;
  }

  .about__text-block-desc p.active {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }

  .about__text-block-desc p:first-of-type {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
  }

  .about__text-block-right,
  .about-list .about-list__item:first-child .text-block-text {
    padding-top: 200px;
  }
}
/* #endregion */

/* #region work */

.work__content {
  border-radius: 24px;
  background: var(--Forest-Green, #0a4a00);
  padding: 16px 24px;
  color: var(--grey);
  font-style: normal;
}

.work__image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}

.work-img {
  display: flex;
  justify-content: center;
}

  .work-img img {
    border-radius: 24px;
    overflow: hidden;
  }

.work__image-wrapper p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px; /* 155.556% */
}

.work-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}

@media (min-width: 768px) {
  .work__content {
    padding: 60px;
  }

  .work__image-wrapper {
    margin-bottom: 44px;
    gap: 44px;
  }

  .work-img img {
    border-radius: 60px;
  }

  .work__image-wrapper p {
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px; /* 112.5% */
  }

  .work-desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
}

@media (min-width: 1024px) {
  .work__content {
    border-radius: 40px;
  }

  .work__image-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

    .work__image-wrapper p {
      max-width: 498px;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px; /* 142.857% */
    }

  .work-desc {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px; /* 112.5% */
  }
}

@media (min-width: 1440px) {
  .work-desc {
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px; /* 112.5% */
    max-width: 867px;
  }
}
/* #endregion */

/* #region team */
.about-team .text-block-wrapper {
  gap: 24px;
}

.about-team .text-block-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 125% */
  margin-bottom: 4px;
  text-transform: capitalize;
}

.text-block-label {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.5);
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  margin-bottom: 12px;
}

.about-team .text-block-desc {
  gap: 0px;
}

.text-block-collapsed-text {
  overflow: hidden;
  transition: height var(--transition);
  margin-bottom: 16px;
}

  .text-block-collapsed-text.truncated {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    transition: height var(--transition);
    -webkit-box-orient: vertical;
  }

.about-team .about-list .about-list__item:first-child .text-block-text {
  padding: 0;
}

.text-block-button {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  display: flex;
  gap: 5px;
  align-items: center;
}

  .text-block-button::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M1 6L5 2L9 6' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
    transition: transform var(--transition);
    transform: rotateX(180deg);
  }

.open .text-block-button::after {
  transform: rotateX(0deg);
}

.text-block-button span:first-child {
  display: none;
}

.open .text-block-button span:first-child {
  display: block
}

.open .text-block-button span:last-of-type {
  display: none
}

@media (min-width: 768px) {
  .about-team .text-block-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
  }

  .about-team .about__text-block-desc .text-block-label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .about-team .text-block-wrapper {
    flex-direction: row;
    align-items: start;
  }

  .about-team
  .about-list
  .about-list__item:nth-child(even)
  .about__text-block-wrapper {
    flex-direction: row-reverse;
  }

  .about-team .about-list .about-list__item:nth-child(even) .about__text-block-right {
    padding-top: 100px;
  }

  .about-team .about-list .about-list__item:nth-child(even) .about__text-block-left {
    padding-top: 0;
  }

  .about-team .about-list .about-list__item:nth-child(odd) .about__text-block-right {
    padding-top: 100px;
  }
}

@media (min-width: 1024px) {
  .about-team .about-list .about-list__item:nth-child(even) .about__text-block-right {
    padding-top: 0;
  }

  .about-team .about-list .about-list__item:nth-child(even) .about__text-block-left {
    padding-top: 0;
  }

  .about-team .about-list .about-list__item:nth-child(odd) .about__text-block-right {
    padding-top: 0;
  }

  .about-team .text-block-wrapper {
    align-items: center;
  }
}

@media (max-width: 1439px) {
  .about-team .text-block-wrapper {
    gap: 50px;
  }

  .about-team .about-list .about-list__item:nth-child(even) .about__text-block-right {
    max-width: 400px;
  }

  .about-team .about-list .about-list__item:nth-child(odd) .about__text-block-right {
    max-width: 400px;
  }
}

@media (min-width: 1440px) {
}
/* #endregion */

/* #region reset */

.about-company-lists__content {
  padding: 44px 0 96px 0px;
}

.about-company-lists__list-wrapper {
  border-radius: 24px;
  border: 1px solid var(--Moon-Grey, #e4e3e2);
  background: #f4f4f3;
}

.about-company-lists__title {
  border-radius: 24px 24px 0px 0px;
  background: var(--All-White, #fff);
  color: var(--Dark-skies, #222);
  font-family: var(--font-accent);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px; /* 141.667% */
  text-align: center;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 16px 12px;
}

  .about-company-lists__title span {
    border-radius: 24px;
    background: var(--Moon-Grey, #e4e3e2);
    padding: 2px 8px;
    color: var(--Dark-skies, #222);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
  }

.about-company__list-item {
  overflow: hidden;
  transition: height var(--transition);
  padding: 20px;
  border-top: 1px solid var(--grey);
}

.about-company__list-item__title {
  width: calc(100% + 32px);
  padding: 16px;
  margin: -16px;
  margin-bottom: 56px;
}

  .about-company__list-item__title span {
    display: block;
    border-radius: 30px;
    border: 1px solid var(--Dark-skies, #222);
    color: var(--Dark-skies, #222);
    padding: 5px 6px;
    width: fit-content;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
  }

.about-company__list-item__body {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}

.about-company__list-item__text {
  color: var(--Dark-skies, #222);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

  .about-company__list-item__text p.active {
    border-radius: 24px;
    border: 1px solid var(--Moon-Grey, #e4e3e2);
    background: rgba(228, 227, 226, 0.4);
    display: flex;
    padding: 12px;
    margin: 0 -12px;
  }

.about-company__list-item__img {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .about-company-lists__content {
    padding: 96px 0 124px 0px;
  }

  .about-company__list-item {
    padding: 16px 32px;
  }

  .about-company__list-item__body {
    gap: 32px;
  }

  .about-company__list-item__text {
    font-size: 20px;
    font-weight: 300;
    line-height: 24px; /* 120% */
    gap: 24px;
  }

  .about-company__list-item__title {
    width: calc(100% + 64px);
    padding: 16px 32px;
    margin: -16px -32px;
    margin-bottom: 56px;
  }
}

@media (min-width: 1024px) {
  .about-company-lists__content {
    padding: 124px 80px 124px 80px;
  }

  .about-company__list-item {
    padding: 16px 32px 32px;
  }

  .about-company__list-item__body {
    gap: 20px;
    flex-direction: row;
    align-items: center;
  }

  .about-company__list-item__text {
    flex-basis: 50%;
  }

  .about-company__list-item__img {
    flex-basis: 50%;
    justify-content: end;
  }

    .about-company__list-item__img img {
      width: 100%;
      height: auto;
    }

  .about-company-lists__title {
    padding: 16px 32px;
    justify-content: start;
    color: var(--Dark-skies, #222);
    font-size: 44px;
    font-style: normal;
    font-weight: 300;
    line-height: 54px; /* 122.727% */
  }

    .about-company-lists__title span {
      color: var(--Dark-skies, #222);
      text-align: center;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 18px; /* 128.571% */
      margin-top: 10px;
      margin-left: 12px;
    }
}

@media (min-width: 1440px) {
  .about-company-lists__content {
    padding: 124px 116px 124px 116px;
  }
}
/* #endregion */

/* #region reset */

.terms {
  padding: 141px 0 64px 0;
}

.terms__container {
  max-width: 1060px;
}

.terms-list {
  max-width: 760px;
  margin: auto;
}

.terms__page-label {
  width: fit-content;
  margin: auto;
  color: var(--All-Black, #000);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
}

.terms__title {
  text-align: center;
  color: var(--Dark-skies, #222);
  text-align: center;
  font-family: var(--font-accent);
  font-size: 38px;
  font-style: normal;
  font-weight: 1000;
  line-height: 42px; /* 110.526% */
  text-transform: uppercase;
  margin-bottom: 85px;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.terms-li-title {
  color: var(--Primary-Black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
}

.terms-paragraph,
.terms-p-li {
  color: var(--Primary-Black, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 128.571% */
}

.terms-p-li {
  display: flex;
  align-items: start;
  gap: 10px;
  padding-left: 10px;
}

  .terms-p-li::before {
    flex-shrink: 0;
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 50%;
    margin-top: 6px;
  }

@media (min-width: 768px) {
  .terms {
    padding: 182px 0 94px 0;
  }

  .terms__container {
  }

  .terms__page-label {
    font-size: 14px;
  }

  .terms__title {
    font-size: 84px;
    line-height: 88px;
    margin-bottom: 124px;
  }

  .terms-list {
    gap: 44px;
  }

  .terms-li {
  }

  .terms-li-title {
    font-size: 24px;
    line-height: 32px;
  }

  .terms-paragraph,
  .terms-p-li {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
  }
}

@media (min-width: 1024px) {
  .terms__container {
  }

  .terms__page-label {
  }

  .terms__title {
    font-size: 106px;
    font-style: normal;
    font-weight: 1000;
    line-height: 110px;
  }

  .terms-list {
  }

  .terms-li {
  }

  .terms-li-title {
  }

  .terms-paragraph,
  .terms-p-li {
  }
}

@media (min-width: 1440px) {
}
/* #endregion */

/* #region language-block*/
.icon.arrow-down {
  width: 10px;
  height: 5px;
}

.icon.check {
  width: 16px;
  height: 16px;
}

.languages__body {
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 12px;
  transition: var(--transition);
  line-height: 18px;
  background: #000;
}

.header__languages {
  margin-left: auto;
  margin-right: 16px;
}

.languages__selected-lang {
  padding: 16px 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 700;
  color: var(--grey);
}

  .languages__selected-lang .icon {
    transition: var(--transition);
  }

.languages__body.open .languages__selected-lang .icon {
  transform: rotate(-180deg);
}

.languages__lang-list {
  position: absolute;
  top: 58px;
  right: 0;
  padding: 24px 0px;
  background: #ffffff;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2;
}

.languages__body.open .languages__lang-list {
  opacity: 1;
  visibility: visible;
}

.languages__lang-list-inner {
  width: 164px;
}

.languages__lang a {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  transition: var(--transition);
  width: 100%;
}

@media (any-hover: hover) {
  .languages__lang a:hover {
    background: #eaeae3;
  }
}

.languages__selected-lang {
  padding: 10px 20px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .languages__selected-lang {
    padding: 14px 20px;
    cursor: pointer;
  }

  .header__languages {
    margin-left: 12px;
    margin-right: 0;
  }

  .languages__body {
    border-radius: 30px;
  }
}

@media (min-width: 1440px) {
  .header__languages {
    margin-left: 16px;
  }
}

/* #endregion */
