@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  src: url("../../fonts/montserrat-400.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  src: url("../../fonts/montserrat-500.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  src: url("../../fonts/montserrat-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  src: url("../../fonts/montserrat-700.woff2") format("woff2");
}
:root {
  --section-offset: 57px;
}

@media (max-width: 992px) {
  :root {
    --section-offset: 50px;
  }
}
@media (max-width: 576px) {
  :root {
    --section-offset: 40px;
  }
}
* {
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

html {
  border: none !important;
  scrollbar-color: #FF0000 #ffffff;
  scrollbar-width: thin;
}
html.blocked {
  overflow: hidden;
}

body {
  font-family: Montserrat;
}
body.singlepage {
  padding-top: 120px;
}

html, body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #FF0000;
}

html.solutions-page ::-webkit-scrollbar {
  display: none;
}

html.solutions-page {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.container {
  width: 100%;
  max-width: 1590px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.scroll-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #FF0000;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.scroll-top:hover {
  background-color: #ce0000;
}
.scroll-top svg {
  width: 60%;
}

.btn {
  transition: color 0.3s ease;
}
.btn:hover {
  color: #FF0000;
}

.btn-primary {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: 1px solid #000;
  border-radius: 61px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.36px;
  padding: 21px 34px 21px 42px;
  color: #000;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}
.btn-primary:hover {
  color: #FF0000;
  border-color: #FF0000;
}
.btn-primary svg {
  width: 46px;
  margin-left: 10px;
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 50px 0;
  z-index: 3;
}
.header_singlepage {
  background: #353535;
}
.header a {
  color: #fff;
  text-decoration: none;
}
.header__line {
  display: flex;
  align-items: center;
}
.header__logo {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
}
.header__logo span {
  color: #FF0000;
}
.header__menu {
  flex-grow: 1;
}
.header__menu > ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  max-width: 715px;
  margin: 0 auto;
}
.header__menu-item {
  font-size: 20px;
  font-weight: 500;
}
.header__menu-item a {
  padding: 5px;
  transition: color 0.3s ease;
}
.header__menu-item a:hover {
  color: #FF0000;
}
.header__menu-item.active a {
  color: #FF0000;
}
.header__burger {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 0px 4px 1px rgba(255, 255, 255, 0.25);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
  margin-left: auto;
}
.header__burger span {
  display: block;
  height: 2px;
  width: 18px;
  border-radius: 30px;
  background: #000;
}
.header__burger span:nth-child(2) {
  margin: 4px 0;
}

.header__close {
  display: none;
  width: 30px;
  height: 30px;
  background: url("../images/icons/times.svg") no-repeat center/contain;
  position: absolute;
  top: 38px;
  right: 20px;
}

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  min-height: 100vh;
  padding: 155px 0;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.hero_home:before {
  background: rgba(0, 0, 0, 0.3);
}
.hero_projects {
  align-items: center;
}
.hero_404 {
  align-items: center;
  text-align: center;
}
.hero_404 .hero__content {
  max-width: none;
}
.hero_404 .hero__title {
  font-size: 90px;
}
.hero_about {
  padding: 130px 0;
}
.hero_about .hero__content {
  max-width: 1200px;
}
.hero__content {
  max-width: 1000px;
}
.hero__subtitle {
  font-size: 35px;
  font-weight: 600;
  line-height: 137.143%;
  letter-spacing: 0.7px;
  margin-bottom: 34px;
}
.hero__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 133.3%;
  letter-spacing: 1.2px;
  margin-bottom: 0;
  margin-top: 0;
}
.hero__description {
  margin-top: 4px;
  font-size: 28px;
  font-weight: 500;
  line-height: 171.429%;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  margin-top: 99px;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  letter-spacing: -0.36px;
}
.hero__btn svg {
  width: 25px;
  height: 16px;
  display: block;
  margin-left: 10px;
}
.hero__btn:hover {
  color: #FF0000;
}

.hero__list {
  margin-top: 64px;
}
.hero__list ul {
  list-style: none;
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  padding-left: 0;
  margin: 0;
}
.hero__list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero__list a:hover {
  color: #FF0000;
}
.hero__list li {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
}
.hero__list li:before {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  background: #fff;
  margin-right: 20px;
}

.section {
  padding: var(--section-offset) 0;
}
.section-title {
  margin: 0 0 95px 0;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.39px;
  text-align: center;
  position: relative;
}
.section-title span {
  background: #fff;
  padding: 0 53px;
  position: relative;
  z-index: 2;
}
.section-title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  height: 1px;
  background: #000;
}
.section-description {
  margin-top: 0;
  margin-bottom: 100px;
  font-size: 46px;
  font-weight: 500;
  line-height: 130.435%;
  letter-spacing: 0.92px;
}

.target {
  padding-top: calc(var(--section-offset) * 2);
}
.target__description {
  max-width: 1322px;
}

.target-items {
  display: flex;
  gap: 8px;
}

.target-item {
  min-height: 40vw;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  width: 25%;
  position: relative;
  background: #000;
}
.target-item .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.5s ease;
}
.target-item:hover .image {
  opacity: 1;
}
.target-item .num {
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.36px;
  display: flex;
  align-items: center;
}
.target-item .num:before {
  content: "";
  width: 35px;
  height: 2px;
  background: #FF0000;
  margin-right: 6px;
  display: block;
}
.target-item .title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  margin: auto 0;
}

.asset__row {
  display: flex;
  align-items: center;
}
.asset__image {
  max-width: 625px;
  -o-object-fit: cover;
     object-fit: cover;
}
.asset__image-wrap {
  position: relative;
  margin-right: 153px;
  line-height: 0;
  flex-shrink: 0;
}
.asset__image-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.asset__image-wrap .asset__btn {
  display: none;
}
.asset__content {
  font-size: 24px;
  line-height: 250%;
}
.asset__btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 43px;
}
.asset__btn {
  font-size: 26px;
  font-weight: 600;
  line-height: 153.846%;
  color: #000;
  text-decoration: none;
  display: inline-block;
}
.asset__btn svg {
  display: block;
  margin-top: 5px;
}

.footer {
  padding-top: 64px;
  padding-bottom: 90px;
}
.footer._dark {
  background: #000;
  color: #fff;
}
.footer._dark a {
  color: #fff;
  border-color: #fff;
}
.footer._dark a:hover {
  color: #FF0000;
  border-color: #FF0000;
}
.footer__btn {
  flex-shrink: 0;
}
.footer__top {
  display: flex;
  margin-bottom: 72px;
}
.footer__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.45px;
  max-width: 670px;
  margin: 0;
}
.footer__menu {
  flex-grow: 1;
}
.footer__menu > ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-top: 20px;
  padding: 0;
  margin-left: 142px;
}
.footer__menu > ul a {
  color: #333;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.36px;
  padding: 5px;
  transition: color 0.3s ease;
}
.footer__menu > ul a:hover {
  color: #FF0000;
}
.footer__menu > ul .active a {
  color: #FF0000;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__contact {
  font-size: 24px;
  line-height: 166.667%;
  margin-bottom: 9px;
  margin-top: 0;
}
.footer__contact a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}
.footer__contact a:hover {
  color: #FF0000;
}
.footer__contact-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 166.667%;
  margin-bottom: 13px;
  margin-top: 0;
}
.footer__contact-col {
  margin-left: 111px;
  text-align: right;
  min-width: 230px;
}
.footer__contact-wrap {
  display: flex;
  justify-content: flex-end;
}

.projects {
  padding-top: calc(var(--section-offset) * 2);
}

.projects-item {
  display: flex;
}
.projects-item:not(:last-child) {
  margin-bottom: 116px;
}
.projects-item__image {
  width: 100%;
  max-width: 630px;
  margin-right: 150px;
  flex-shrink: 0;
}
.projects-item__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects-item__title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 34px;
  margin-top: 0;
}
.projects-item__description {
  font-size: 24px;
  line-height: 60px;
}

.visual {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 95px 0;
  min-height: 100vh;
  margin-top: var(--section-offset);
}
.visual__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: 1.2px;
  margin: 0;
}

.solutions {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 170px 0 50px 0;
  position: relative;
}
.solutions .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
.solutions__window {
  height: 100%;
  overflow-y: auto;
  position: relative;
}
.solutions__window .track {
  transition: transform 0.3s ease;
  will-change: transform;
}
.solutions:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.solution {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 100px;
}
.solution:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #FF0000;
}
.solution__num {
  font-size: 22px;
  line-height: 218.182%;
  letter-spacing: -0.33px;
  margin: 0 0 27px 0;
  text-transform: uppercase;
}
.solution__title {
  font-size: 46px;
  font-weight: 500;
  line-height: 130.435%;
  letter-spacing: 0.92px;
  margin: 0 0 20px 0;
}
.solution__description {
  font-size: 24px;
  line-height: 250%;
  letter-spacing: -0.36px;
  margin: 0;
}

.about {
  padding-top: calc(var(--section-offset) * 2);
}
.about-row {
  display: flex;
}
.about-row__description {
  width: 50%;
  padding-right: 50px;
  margin-bottom: 0;
}
.about-row__description._big {
  font-size: 72px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.44px;
}
.about-row__content {
  width: 50%;
  font-size: 24px;
  line-height: 200%;
}
.about-row__content strong {
  display: block;
}
.about-row__content p {
  margin-top: 0;
  margin-bottom: 0;
}
.about-row__content p:not(:last-child) {
  margin-bottom: 54px;
}

.team-item p {
  margin-top: 0;
}
.team-item__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 29px;
}
.team-item__name {
  font-size: 24px;
  font-weight: 600;
  line-height: 166.667%;
  letter-spacing: -0.36px;
  margin-bottom: 8px;
}
.team-item__post {
  font-size: 24px;
  line-height: 166.667%;
  letter-spacing: -0.36px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
}
.team-item__content {
  font-size: 18px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.27px;
}

.sponsorship__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sponsorship__image {
  max-width: 630px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 50px;
}
.sponsorship__description {
  font-size: 24px;
  font-weight: 400;
  line-height: 200%;
  max-width: 760px;
  margin: 0;
}

.contact__content {
  line-height: 200%;
}
.contact-form {
  margin-top: 58px;
}

.form-row {
  display: flex;
  gap: 20px;
}
.form-control {
  width: 100%;
  margin-bottom: 31px;
}
.form-control label {
  display: block;
  font-size: 24px;
  margin-bottom: 13px;
  line-height: 166.667%;
  font-weight: 500;
}
.form-control label b, .form-control label a {
  text-decoration: none;
  color: #000;
}
.form-control label a {
  transition: color 0.3s ease;
}
.form-control label a:hover {
  color: #FF0000;
}
.form-control input, .form-control textarea {
  border-radius: 3px;
  border: 1px solid #000;
  background: #FFF;
  width: 100%;
  padding: 14px;
  font-size: 22px;
}
.form-control textarea {
  min-height: 156px;
  resize: vertical;
}
.form-checkbox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.form-checkbox input {
  padding: 0;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-right: 20px;
}
.form-checkbox label {
  margin: 0;
  font-weight: 400;
}
.form-checkbox label b, .form-checkbox label a {
  font-weight: 500;
}
.form-btn-wrap {
  display: flex;
  justify-content: flex-end;
}

.content-title {
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
  margin-bottom: 56px;
}

.content {
  font-size: 24px;
  line-height: 200%;
}

@media (max-width: 1700px) {
  .container {
    max-width: 1320px;
  }

  .footer__contact-col {
    min-width: auto;
    margin-left: 50px;
  }

  .projects-item__image {
    margin-right: 100px;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }

  .section-description {
    font-size: 40px;
  }

  .target-item .title {
    font-size: 24px;
  }

  .asset__image {
    max-width: 425px;
  }
  .asset__image-wrap {
    margin-right: 50px;
  }
  .asset__content {
    font-size: 20px;
  }
  .asset__btn {
    font-size: 22px;
  }

  .btn-primary {
    font-size: 20px;
  }

  .footer__title {
    font-size: 24px;
    max-width: 470px;
  }
  .footer__menu > ul {
    margin-left: 60px;
  }
  .footer__menu > ul a {
    font-size: 20px;
  }
  .footer__contact {
    font-size: 20px;
  }
  .footer__contact-title {
    font-size: 20px;
  }

  .about-row__content {
    font-size: 20px;
  }
  .about-row__description._big {
    font-size: 46px;
  }

  .team-item__name {
    font-size: 20px;
  }
  .team-item__post {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sponsorship__image {
    max-width: 500px;
  }
  .sponsorship__description {
    font-size: 20px;
  }

  .form-control label {
    font-size: 20px;
  }
  .form-control input, .form-control textarea {
    font-size: 18px;
  }
  .form-checkbox input {
    width: 25px;
    height: 25px;
  }

  .projects-item:not(:last-child) {
    margin-bottom: 80px;
  }
  .projects-item__description {
    font-size: 20px;
    line-height: 200%;
  }
  .projects-item__image {
    max-width: 480px;
    margin-right: 70px;
  }

  .visual {
    min-height: 70vh;
  }
  .visual__title {
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .header__menu > ul {
    padding-left: 85px;
  }

  .hero__subtitle {
    font-size: 24px;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__description {
    font-size: 22px;
  }
  .hero__btn {
    font-size: 20px;
  }
  .hero__list ul {
    font-size: 20px;
  }

  .team-item__content {
    font-size: 16px;
  }

  .content-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .content {
    font-size: 20px;
  }

  .solution__description {
    font-size: 22px;
  }
  .solution__num {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .section-title {
    margin-bottom: 50px;
  }
  .section-description {
    font-size: 33px;
  }

  .header__logo {
    font-size: 28px;
  }

  .header__menu-item {
    font-size: 18px;
  }

  .target-items {
    flex-wrap: wrap;
    gap: 10px;
  }

  .target-item {
    width: calc(50% - 5px);
    position: relative;
  }
  .target-item .title {
    font-size: 24px;
  }
  .target-item .num {
    font-size: 18px;
  }
  .target-item .image {
    opacity: 1;
  }
  .target-item:before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
  }
  .target-item .num, .target-item .title {
    position: relative;
    z-index: 3;
  }

  .asset__row {
    flex-direction: column-reverse;
  }
  .asset__content p {
    margin-top: 0;
  }
  .asset__btn-wrap .asset__btn {
    display: none;
  }
  .asset__image-wrap {
    margin: 0;
  }
  .asset__image-wrap .asset__btn {
    display: inline-block;
    position: absolute;
    top: 24px;
    right: 14px;
    z-index: 3;
  }
  .asset__image-wrap .asset__btn svg {
    width: 164px;
    margin: 0;
  }

  .footer__btn {
    margin-bottom: 53px;
  }
  .footer__menu {
    display: none;
  }
  .footer__bottom {
    flex-wrap: wrap;
  }
  .footer__contact-col {
    margin-left: 0;
  }
  .footer__contact-wrap {
    gap: 30px;
  }

  .projects-item {
    flex-direction: column;
    align-items: center;
  }
  .projects-item__image {
    margin-bottom: 50px;
    margin-right: 0;
  }

  .visual__title {
    font-size: 35px;
  }

  .about-row {
    flex-direction: column;
  }
  .about-row__description {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .about-row__content {
    width: 100%;
  }
  .about-row__content p:not(:last-child) {
    margin-bottom: 30px;
  }

  .sponsorship__row {
    flex-direction: column;
  }
  .sponsorship__image {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .solutions {
    padding: 130px 0 30px 0;
  }

  .solution__description {
    font-size: 20px;
    line-height: 225%;
  }
  .solution__num {
    font-size: 18px;
  }
  .solution__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section-title span {
    padding: 0 30px;
  }
  .section-description {
    margin-bottom: 70px;
  }

  .header {
    padding: 30px 0;
  }
  .header__burger {
    display: flex;
  }
  .header__close {
    display: block;
  }

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

  .header__menu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: #353535;
    padding-top: 116px;
  }
  .header__menu.active {
    display: block;
  }
  .header__menu > ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
  }
  .header__menu-item {
    margin-bottom: 34px;
  }
  .header__menu-item a {
    padding: 15px;
  }

  .asset__image {
    width: 100%;
    max-width: none;
  }
  .asset__image-wrap {
    width: 100%;
  }
  .asset__image-wrap .asset__btn svg {
    width: 150px;
  }

  .target-item {
    min-height: 60vw;
  }

  .footer__contact-wrap {
    flex-wrap: wrap;
  }
  .footer__contact-col {
    width: 100%;
    text-align: left;
  }

  .about-row__content {
    font-size: 18px;
  }

  .sponsorship__description {
    font-size: 18px;
    line-height: 225%;
  }

  .form-control label, .modal__content .form-control label {
    font-size: 18px;
  }
  .form-control input, .form-control textarea, .modal__content .form-control input, .modal__content .form-control textarea {
    padding: 8px;
    font-size: 16px;
  }

  .content {
    font-size: 18px;
  }

  .solution {
    margin-bottom: 50px;
  }
  .solution__description {
    font-size: 18px;
  }
  .solution__num {
    font-size: 16px;
  }
  .solution__title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .section-title {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .section-title span {
    padding: 0 15px;
  }
  .section-description {
    font-size: 22px;
    line-height: 163.636%;
    letter-spacing: 0.44px;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .header__logo {
    font-size: 20px;
  }

  .header__close {
    top: 30px;
    background: url("../images/icons/times.svg") no-repeat center/80%;
  }

  .header__burger {
    width: 30px;
    height: 30px;
  }
  .header__burger span {
    width: 12px;
  }
  .header__burger span:nth-child(2) {
    margin: 2px 0;
  }

  .hero {
    padding: 67px 0;
    align-items: center;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .hero__title {
    font-size: 28px;
    line-height: 171.429%;
  }
  .hero__description {
    font-size: 16px;
    line-height: 175%;
    margin-top: 30px;
  }
  .hero__btn {
    font-size: 16px;
    margin: 85px 0 0 0;
  }
  .hero__list {
    margin-top: 30px;
  }
  .hero__list ul {
    font-size: 18px;
    line-height: 35px;
  }
  .hero__list ul li:before {
    width: 50px;
  }
  .hero_about {
    background-position: 74% center;
  }

  .target-item {
    min-height: 240px;
    padding: 20px;
  }
  .target-item .title {
    font-size: 16px;
    line-height: 150%;
  }
  .target-item .num {
    font-size: 15px;
  }
  .target-item .num:before {
    width: 13px;
  }

  .asset__content {
    font-size: 16px;
    line-height: 225%;
  }

  .asset__btn {
    font-size: 20px;
  }
  .asset__btn svg {
    width: 147px;
    margin: 0;
  }

  .footer {
    padding: 40px 0;
  }
  .footer__title {
    font-size: 22px;
    line-height: 163.636%;
  }
  .footer__btn {
    width: 100%;
    font-size: 16px;
  }
  .footer__btn svg {
    margin-left: auto;
  }
  .footer__contact {
    font-size: 16px;
  }
  .footer__contact-title {
    font-size: 16px;
  }
  .footer__top {
    margin-bottom: 53px;
  }

  .projects-item:not(:last-child) {
    margin-bottom: 60px;
  }
  .projects-item__image {
    margin-bottom: 30px;
  }
  .projects-item__title {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .projects-item__description {
    font-size: 16px;
  }
  .projects-item__description p:last-child {
    margin-bottom: 0;
  }

  .visual {
    padding: 35px 0;
  }
  .visual__title {
    font-size: 22px;
    line-height: 163.636%;
  }

  .about-row__content {
    font-size: 16px;
  }
  .about-row__description._big {
    font-size: 24px;
  }

  .sponsorship__description {
    font-size: 16px;
  }
  .sponsorship__image {
    width: 100%;
    margin-bottom: 24px;
  }

  .contact__content strong {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .form-row, .modal__content .form-row {
    flex-wrap: wrap;
    gap: 0;
  }
  .form-control, .modal__content .form-control {
    margin-bottom: 22px;
  }
  .form-control label, .modal__content .form-control label {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 250%;
  }
  .form-checkbox input, .modal__content .form-checkbox input {
    margin-right: 15px;
  }
  .form-checkbox label, .modal__content .form-checkbox label {
    font-size: 15px;
    line-height: 200%;
    margin: 0;
  }
  .form-checkbox label b, .form-checkbox label a, .modal__content .form-checkbox label b, .modal__content .form-checkbox label a {
    font-weight: 700;
  }

  .btn-primary, .modal__content .btn-primary {
    font-size: 16px;
    padding: 18px 30px 18px 26px;
  }

  .form-btn-wrap .btn-primary {
    width: 100%;
    margin-top: 26px;
  }
  .form-btn-wrap .btn-primary svg {
    margin-left: auto;
  }

  .content-title {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .content {
    font-size: 16px;
    line-height: 225%;
  }

  .solution {
    margin-bottom: 33px;
  }
  .solution__description {
    font-size: 16px;
  }
  .solution__num {
    font-size: 14px;
  }
  .solution__title {
    font-size: 22px;
  }

  body.singlepage {
    padding-top: 80px;
  }
}
