@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
body._lock {
  overflow: hidden;
}

header {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

main {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .block {
    padding-top: 80px;
    margin-top: -80px;
  }
}
@media (min-width: 1280px) {
  .block {
    padding-top: 120px;
    margin-top: -120px;
  }
}

.aun-button {
  display: inline-block;
  padding: 18px 60px;
  background-color: #7693a5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: 600ms;
}
.aun-button:hover {
  background-color: #537489;
  border-radius: 57px;
}

.header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.header__container {
  padding: 20px 0px;
  background-color: #ffffff;
}
.header__block {
  height: 80px;
}
.header__block-container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  height: 100%;
}
.header__langs {
  display: flex;
  gap: 16px;
}
.header__langs span {
  width: 1px;
  background-color: rgba(40, 40, 40, 0.5);
}
.header__langs a:hover {
  color: #537489;
}
.header__langs .header__lang {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: #282828;
  text-decoration: none;
}
.header__langs .header__lang_current {
  border-bottom: 1px solid #537489;
  color: #537489;
}
.header__logo {
  position: relative;
  z-index: 2;
  top: -100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.header__logo img {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}
.header__nav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 20px;
}
.header__nav span {
  width: 1px;
  background: rgba(40, 40, 40, 0.5);
  height: 30px;
}
.header__nav .nav__link {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #282828;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.header__nav .nav__link:hover {
  border-bottom-color: #537489;
  color: #537489;
}
.header__content {
  margin-top: 100px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.header__content-title {
  font-family: "Inter", sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}
.header__content-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #ffffff;
  text-align: center;
  margin: 0px 50px 40px;
}
.header__content-button {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.header-sticky {
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 1;
  background-color: #ffffff;
  display: none;
  transition: background-color 0.1s linear 0s;
}
.header-sticky.show {
  display: block;
  z-index: 5;
}
.header-sticky._active {
  background-color: #e8f0f4;
}
.header-sticky._active .header__container {
  background-color: #e8f0f4;
}
.header-sticky._active .header__langs {
  display: none;
}
.header-sticky._active .header__nav {
  margin: 0px;
}
.header-sticky .header__container {
  padding: 30px 0px;
}
.header-sticky .header__block {
  height: 60px;
  margin-bottom: 0px;
}
.header-sticky .header__block-container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  height: 100%;
}
.header-sticky .header__nav {
  margin-left: calc(50% - 35vw);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 20px;
  height: 60px;
}
.header-sticky .header__nav .nav__link.color {
  border-bottom-color: #537489;
  color: #537489;
}
.header-sticky .header__nav span {
  height: 30px;
}
.header-sticky .header__nav .header__logo {
  position: static;
  margin: 0 40px;
}

.header-file {
  display: block;
  position: static;
  min-height: fit-content !important;
}

.main .about {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}
.main .about-container {
  display: grid;
  gap: 10px;
}
.main .about__content-title {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  color: #282828;
}
.main .about__content-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #282828;
}
.main .about span {
  position: absolute;
  left: 0px;
  top: 0px;
  content: url("../imgs/webp/contact.webp");
}
.main .about__img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.main .services {
  background-color: #e8f0f4;
}
.main .services__title {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  color: #282828;
}
.main .services__cards {
  display: grid;
}
.main .services__cards .card {
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.main .services__cards .card__number {
  display: inline-block;
  background-color: #537489;
  border-radius: 50px;
  padding: 6px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: #e8f0f4;
}
.main .services__cards .card__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: #282828;
}
.main .services__cards .card__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #282828;
}
.main .services__cards .card__img {
  -webkit-align-self: flex-end;
  align-self: flex-end;
  width: 100%;
  object-fit: cover;
}
.main .advantages {
  background-color: #537489;
}
.main .advantages__title {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  color: #ffffff;
}
.main .advantages__cards {
  display: flex;
  justify-content: space-between;
}
.main .advantages__cards-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 40px;
}
.main .advantages__cards span {
  background-color: #ffffff;
}
.main .advantages__cards .card__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: #ffffff;
}
.main .advantages__cards .card__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #ffffff;
}
.main .products {
  background-color: #e8f0f4;
}
.main .products__title {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  color: #282828;
}
.main .products__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.main .products__cards .card {
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
  -webkit-align-items: center;
  align-items: center;
}
.main .products__cards .card__number {
  display: inline-block;
  background-color: #537489;
  border-radius: 50px;
  padding: 6px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: #e8f0f4;
}
.main .products__cards .card__title {
  border-left: 2px solid #537489;
  padding-left: 6px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  color: #282828;
}
.main .products__cards .card__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #282828;
}
.main .products__cards .card__img {
  width: auto;
  object-fit: cover;
  height: 260px;
}
.main .contacts {
  background-color: #ffffff;
  position: relative;
}
.main .contacts__img {
  object-position: right;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
}
.main .contacts-container {
  display: grid;
  gap: 10px;
}
.main .contacts__content {
  grid-column-start: 1;
}
.main .contacts__title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
  color: #282828;
}
.main .contacts span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.5);
}
.main .contacts__block {
  display: -webkit-flex;
  display: flex;
}
.main .contacts__contact {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 115%;
  color: #282828;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.main .contacts__contact:hover, .main .contacts__contact:focus {
  border-bottom-color: #537489;
  color: #537489;
}

.file {
  background-color: #e8f0f4;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.file-container {
  padding: 220px 0;
  max-width: 1214px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
.file__title {
  font-family: "Inter", sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
  color: #282828;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.file__text {
  max-width: 740px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #282828;
  margin-bottom: 60px;
}
.file__button a {
  display: flex;
  align-items: center;
}
.file__button a::before {
  content: url("../imgs/svg/download.svg");
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 10px;
}

.footer {
  background-color: #282828;
}
.footer-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  gap: 30px;
}
.footer__text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  color: #ffffff;
}
.footer__text-link {
  color: inherit;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer__text-link:hover {
  border-bottom-color: #ffffff;
}
.footer__text:nth-last-child(n+2) {
  margin-bottom: 16px;
}
.footer .underline {
  display: block;
  height: 1px;
  margin: 30px 0px;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer__underblock {
  display: -webkit-flex;
  display: flex;
}
.footer__files {
  display: -webkit-flex;
  display: flex;
}
.footer__copyright {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #ffffff;
}
.footer__file {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
}

/****menu*****/
@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
  .header__button {
    display: none;
  }
  .header__langs-main._none {
    display: none;
  }
  .header .menu__icon {
    display: block;
    z-index: 5;
    position: absolute;
    width: 24px;
    height: 16px;
    cursor: pointer;
    right: 0;
  }
  .header .menu__icon span, .header .menu__icon::before, .header .menu__icon::after {
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #282828;
  }
  .header .menu__icon::after, .header .menu__icon::before {
    content: "";
  }
  .header .menu__icon::before {
    top: 0;
  }
  .header .menu__icon::after {
    bottom: 0;
  }
  .header .menu__icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .header .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .header .menu__icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .header .menu__icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .header .menu__icon._active span, .header .menu__icon._active::before, .header .menu__icon._active::after {
    height: 5%;
  }
  .header .menu__body {
    position: fixed;
    z-index: 1;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #e8f0f4;
    overflow: auto;
    transition: left 0.3s ease 0s;
  }
  .header .menu__body._active {
    left: 0;
    padding: 30px 34px;
    display: block;
    transition: left 0.3s ease 0s;
  }
  .header .menu__body._active::before {
    background-color: #e8f0f4;
    z-index: 1;
    left: 0;
  }
  .header .menu__body::before {
    transition: left 0.3s ease 0s;
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: -100%;
    height: 70px;
  }
  .header .menu__body .menu__nav {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    width: 173px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  .header .menu__body .menu__nav span {
    display: block;
    margin: 20px 0px;
    height: 1px;
    width: 91px;
    background: rgba(40, 40, 40, 0.5);
  }
  .header .menu__body .menu__nav .nav__link {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #282828;
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  .header .menu__body .menu__nav .nav__link:hover {
    border-bottom-color: #537489;
    color: #537489;
  }
  .header .menu__body .menu__nav .menu__button {
    margin-top: 80px;
  }
  .header .menu__body .menu__nav .menu__button .aun-button {
    padding: 16px 50px;
    font-size: 14px;
  }
  .header-sticky {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header .menu__icon {
    display: none;
  }
  .header .menu__body {
    display: none;
  }
  .header-sticky .menu__icon.menu__icon-sticky {
    display: none;
  }
  .header-sticky .header__nav span,
  .header-sticky .header__nav .nav__link {
    display: block;
  }
}
/***********/
@media (min-width: 320px) {
  .wrapper {
    padding: 0px 20px;
  }
  .header-sticky .header__container {
    padding: 24px 0px;
  }
  .header-sticky .header__block {
    height: 38px;
  }
  .header-sticky .header__nav {
    height: 38px;
    -webkit-flex: 1 1 0;
    flex: 1 1 0;
    margin-right: 60px;
    margin-left: 0px;
  }
  .header-sticky .header__nav span {
    display: none;
  }
  .header-sticky .header__nav .nav__link {
    display: none;
  }
  .header-sticky .header__nav .header__logo {
    margin: 0px 0px;
  }
  .header-sticky .menu__icon {
    display: block;
    z-index: 5;
    position: absolute;
    width: 24px;
    height: 16px;
    cursor: pointer;
    right: 0;
  }
  .header-sticky .menu__icon span, .header-sticky .menu__icon::before, .header-sticky .menu__icon::after {
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #282828;
  }
  .header-sticky .menu__icon::after, .header-sticky .menu__icon::before {
    content: "";
  }
  .header-sticky .menu__icon::before {
    top: 0;
  }
  .header-sticky .menu__icon::after {
    bottom: 0;
  }
  .header-sticky .menu__icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .header-sticky .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .header-sticky .menu__icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .header-sticky .menu__icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .header-sticky .menu__icon._active span, .header-sticky .menu__icon._active::before, .header-sticky .menu__icon._active::after {
    height: 5%;
  }
  .header {
    min-height: 760px;
  }
  .header__block {
    height: 40px;
  }
  .header__langs {
    gap: 10px;
  }
  .header__langs .header__lang {
    font-size: 14px;
  }
  .header__logo {
    margin-left: 10px;
  }
  .header__logo img {
    height: 23px;
  }
  .header__content {
    margin-top: 160px;
    padding: 0px 10px;
  }
  .header__content-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .header__content-subtitle {
    font-size: 14px;
    margin: 0px 0px 30px;
  }
  .main .about__content {
    padding: 520px 0px 80px;
  }
  .main .about__content span {
    content: url("../imgs/webp/about.png");
    top: 0px;
    left: -15%;
    height: 450px;
  }
  .main .about__content-container {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 40px 0px 80px;
  }
  .main .about__content-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .main .about__content-subtitle {
    font-size: 14px;
  }
  .main .about__img {
    height: 450px;
    width: 100%;
  }
  .main .services__container {
    padding: 80px 0px;
  }
  .main .services__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .main .services__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .main .services__cards .card {
    padding: 30px 24px;
  }
  .main .services__cards .card__number {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .main .services__cards .card__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .main .services__cards .card__text {
    font-size: 14px;
  }
  .main .services__cards .card__img {
    height: 120px;
  }
  .main .advantages__container {
    padding: 80px 0px;
  }
  .main .advantages__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .main .advantages__cards {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
  .main .advantages__cards-container {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .main .advantages__cards span {
    height: 1px;
    width: 100%;
  }
  .main .advantages__cards .card {
    max-width: 100%;
  }
  .main .advantages__cards .card__img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  .main .advantages__cards .card__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .main .advantages__cards .card__text {
    font-size: 14px;
  }
  .main .products__container {
    padding: 80px 0px;
  }
  .main .products__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .main .products__cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .main .products__cards .card {
    padding: 30px 24px;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .main .products__cards .card__number {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .main .products__cards .card__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .main .products__cards .card__text {
    font-size: 14px;
  }
  .main .products__cards .card__img {
    width: 100%;
    height: auto;
  }
  .main .contacts {
    padding: 80px 0px;
  }
  .main .contacts__img {
    height: 400px;
    width: 100%;
    object-fit: cover;
  }
  .main .contacts-container {
    padding-top: 400px;
    grid-template-columns: repeat(2, 1fr);
  }
  .main .contacts__content {
    padding-right: 0px;
    grid-column-end: 3;
  }
  .main .contacts__title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .main .contacts__block {
    margin-top: 30px;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .main .contacts__contact {
    font-size: 16px;
  }
  .file-container {
    padding: 168px 20px 193px;
    max-width: 1214px;
  }
  .file__title {
    font-family: "Inter", sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 120%;
    color: #282828;
    margin-bottom: 24px;
  }
  .file__text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #282828;
    margin-bottom: 40px;
  }
  .file__button a {
    font-size: 14px;
    padding: 16px 50px;
  }
  .footer {
    padding: 40px 0px;
  }
  .footer-container {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .footer__text {
    font-size: 12px;
  }
  .footer__text:nth-last-child(n+2) {
    margin-bottom: 12px;
  }
  .footer__text-img {
    display: block;
    width: 30px;
  }
  .footer__text-img img {
    width: 100%;
  }
  .footer__underblock {
    -webkit-flex-direction: column-reverse;
  }
  .footer__copyright {
    font-size: 12px;
  }
  .footer__files {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .footer__file {
    font-size: 12px;
  }
}
@media (min-width: 361px) {
  .header__content-title {
    font-size: 26px;
  }
  .main .about__content {
    padding-top: 530px;
  }
  .main .about__content span {
    height: 500px;
    left: -50%;
  }
}
@media (min-width: 600px) {
  .main .about__content span {
    left: 0%;
  }
  .main .services__container {
    padding: 100px 0px;
  }
  .main .services__title {
    font-size: 28px;
  }
  .main .services__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .main .services__cards .card__title {
    font-size: 18px;
  }
  .main .products__container {
    padding: 100px 0px;
  }
  .main .products__title {
    font-size: 28px;
  }
  .main .products__cards .card__title {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .wrapper {
    padding: 0px 29px;
  }
  .header {
    min-height: 800px;
  }
  .header__block {
    height: 60px;
  }
  .header__logo img {
    height: 30px;
  }
  .header__content {
    max-width: 540px;
  }
  .header__content_it {
    padding: 0px 0px;
  }
  .header__content-title {
    font-size: 40px;
    margin: 0px 10px 16px;
  }
  .header__content-subtitle {
    font-size: 16px;
  }
  .main .about__img {
    height: 500px;
  }
  .main .about__content {
    padding: 570px 0px 100px;
  }
  .main .about__content-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .main .about__content-subtitle {
    font-size: 16px;
  }
  .main .advantages__container {
    padding: 100px 0px 120px;
  }
  .main .advantages__title {
    font-size: 28px;
  }
  .main .advantages__cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .main .advantages__cards-container {
    flex-direction: row;
  }
  .main .advantages__cards span {
    height: 100%;
    width: 1px;
  }
  .main .advantages__cards span.second {
    flex: 0 0 100%;
    height: 1px;
    width: 100%;
  }
  .main .advantages__cards .card {
    flex: 1 1 320px;
  }
  .main .advantages__cards .card__img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  .main .advantages__cards .card__title {
    font-size: 16px;
  }
  .main .advantages__cards .card__text {
    font-size: 14px;
  }
  .main .products__cards .card {
    flex-direction: row;
  }
  .main .products__cards .card__img {
    width: auto;
    height: 140px;
  }
  .main .contacts__img {
    height: 500px;
  }
  .main .contacts-container {
    padding-top: 500px;
    grid-template-columns: repeat(6, 1fr);
  }
  .main .contacts__content {
    padding-right: 0px;
    grid-column-end: 7;
  }
  .main .contacts__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .main .contacts__block {
    margin-top: 40px;
    flex-direction: row;
    gap: 40px;
  }
  .main .contacts__contact {
    font-size: 20px;
  }
  .file-container {
    padding: 220px 37px 230px;
  }
  .file__title {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    color: #282828;
    margin-bottom: 30px;
  }
  .file__text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #282828;
    margin-bottom: 50px;
  }
  .file__button a {
    font-size: 14px;
    padding: 16px 50px;
  }
  .footer-container {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .footer__text {
    font-size: 16px;
  }
  .footer__text:nth-last-child(n+2) {
    margin-bottom: 16px;
  }
  .footer__text-img {
    float: right;
  }
  .footer__text_tel {
    text-align: end;
  }
  .footer__files {
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .wrapper {
    padding: 0px 37px;
  }
  .header-sticky .header__container {
    padding: 24px 0px;
  }
  .header-sticky .header__block {
    height: 38px;
  }
  .header-sticky .header__nav {
    margin-left: calc(50% - 35vw);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 12px;
    height: 38px;
  }
  .header-sticky .header__nav span {
    height: 24px;
  }
  .header-sticky .header__nav .header__logo {
    position: static;
    margin: 0 10px;
  }
  .header-sticky .header__nav .nav__link {
    font-size: 16px;
  }
  .header-sticky .header__button .aun-button {
    font-size: 14px;
    padding: 16px 15px;
  }
  .header-sticky .header__nav span,
  .header-sticky .header__nav .nav__link {
    display: block;
  }
  .header {
    min-height: 960px;
  }
  .header__block {
    margin-bottom: 24px;
  }
  .header__langs {
    gap: 16px;
  }
  .header__langs .header__lang {
    font-size: 18px;
  }
  .header__nav .nav__link {
    font-size: 18px;
  }
  .header__content {
    max-width: 730px;
  }
  .header__content-title {
    font-size: 60px;
    margin: 0px 0px 24px;
  }
  .header__content-subtitle {
    font-size: 18px;
    margin: 0px 65px 40px;
  }
  .main .about-container {
    padding: 180px 0px 200px;
    grid-template-columns: repeat(12, 1fr);
  }
  .main .about__content {
    padding: 0px;
    grid-column-start: 7;
    grid-column-end: 13;
  }
  .main .about__content span {
    left: -15%;
    top: 0;
    height: auto;
    width: 42%;
    bottom: 0px;
  }
  .main .about__content-container {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 100px 0px;
  }
  .main .about__content-title {
    font-size: 28px;
  }
  .main .about__content-subtitle {
    font-size: 16px;
  }
  .main .about__img {
    width: 42%;
    height: 100%;
  }
  .main .services__container {
    padding: 100px 0px 120px;
  }
  .main .services__cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .main .advantages__cards {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 25px;
  }
  .main .advantages__cards-container {
    -webkit-flex-direction: row;
    flex-direction: row;
    gap: 25px;
    -webkit-flex: 1 1 50%;
    flex: 1 1 50%;
  }
  .main .advantages__cards span {
    height: 100%;
    width: 1px;
  }
  .main .advantages__cards span.second {
    flex: 0 0 auto;
    height: auto;
    width: 1px;
  }
  .main .advantages__cards .card {
    display: block;
    flex: 1 1 0;
  }
  .main .advantages__cards .card__title {
    font-size: 18px;
  }
  .main .products__container {
    padding: 100px 0px 120px;
  }
  .main .products__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .main .contacts {
    padding: 140px 0px;
  }
  .main .contacts__img {
    width: 35%;
  }
  .main .contacts-container {
    padding-top: 0px;
    min-height: 220px;
    grid-template-columns: repeat(12, 1fr);
  }
  .main .contacts__content {
    margin: auto 0px;
    padding-right: 70px;
    grid-column-end: 9;
  }
  .file-container {
    padding: 180px 0px 210px;
    max-width: 600px;
  }
  .file__title {
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 120%;
    color: #282828;
    margin-bottom: 30px;
  }
  .file__text {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #282828;
    margin-bottom: 50px;
  }
  .file__button a {
    font-size: 16px;
    padding: 18px 60px;
  }
  .footer {
    padding: 60px 0px;
  }
  .footer__text {
    font-size: 20px;
  }
  .footer__text-img {
    width: 40px;
  }
}
@media (min-width: 1280px) {
  .wrapper {
    padding: 0px 45px;
  }
  .header-sticky .header__container {
    padding: 30px 0px;
  }
  .header-sticky .header__block {
    height: auto;
  }
  .header-sticky .header__langs {
    -webkit-align-self: flex-end;
    align-self: flex-end;
  }
  .header-sticky .header__nav {
    margin-left: calc(50% - 40vw);
    -webkit-align-self: flex-end;
    align-items: flex-end;
    gap: 16px;
    height: 60px;
  }
  .header-sticky .header__nav span {
    height: 27px;
  }
  .header-sticky .header__nav .header__logo {
    margin: 0 14px;
  }
  .header-sticky .header__nav .nav__link {
    font-size: 18px;
  }
  .header-sticky .header__button .aun-button {
    font-size: 16px;
    padding: 18px 60px;
  }
  .header__block {
    height: 80px;
  }
  .header__logo {
    margin-left: 0px;
  }
  .header__logo img {
    height: 44px;
    top: 55%;
  }
  .header__langs .header__lang {
    font-size: 20px;
  }
  .header__nav .nav__link {
    font-size: 20px;
  }
  .header__content {
    max-width: 900px;
  }
  .header__content-title {
    font-size: 70px;
  }
  .header__content-subtitle {
    font-size: 20px;
    margin: 0px 50px 40px;
  }
  .main .about__content-container {
    padding: 180px 0px 200px;
  }
  .main .about__content-title {
    font-size: 32px;
  }
  .main .about__content-subtitle {
    font-size: 18px;
  }
  .main .services__container {
    padding: 140px 0px 160px;
  }
  .main .services__title {
    font-size: 32px;
  }
  .main .services__cards .card__number {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .main .services__cards .card__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .main .services__cards .card__text {
    font-size: 16px;
  }
  .main .services__cards .card__img {
    height: 140px;
  }
  .main .advantages__container {
    padding: 140px 0px 160px;
  }
  .main .advantages__title {
    font-size: 32px;
    margin-bottom: 60px;
  }
  .main .advantages__cards .card__img {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
  }
  .main .advantages__cards .card__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .main .advantages__cards .card__text {
    font-size: 16px;
  }
  .main .products__container {
    padding: 140px 0px 160px;
  }
  .main .products__title {
    font-size: 32px;
  }
  .main .products__cards .card__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .main .products__cards .card__text {
    font-size: 16px;
  }
  .main .products__cards .card__img {
    height: 260px;
  }
  .main .contacts__img {
    height: 100%;
  }
  .main .contacts-container {
    min-height: 420px;
  }
  .main .contacts__title {
    font-size: 28px;
  }
  .main .contacts__block {
    gap: 80px;
  }
  .main .contacts__contact {
    font-size: 24px;
  }
  .file-container {
    padding: 180px 0px 180px;
    max-width: 740px;
  }
  .file__title {
    font-family: "Inter", sans-serif;
    font-size: 70px;
    font-weight: 500;
    line-height: 120%;
    color: #282828;
    margin-bottom: 40px;
  }
  .file__text {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: #282828;
    margin-bottom: 60px;
  }
  .footer__underblock {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .footer__files-container .underline {
    display: none;
  }
}
@media (min-width: 1440px) {
  .wrapper {
    padding: 0px 65px;
  }
  .header-sticky .header__nav {
    gap: 20px;
  }
  .header-sticky .header__nav span {
    height: 30px;
  }
  .header-sticky .header__nav .header__logo {
    margin: 0 20px;
  }
  .header-sticky .header__nav .nav__link {
    font-size: 20px;
  }
  .main .about__content-title {
    font-size: 42px;
  }
  .main .about__content-subtitle {
    font-size: 20px;
  }
  .main .services__title {
    font-size: 42px;
    margin-bottom: 60px;
  }
  .main .services__cards .card {
    padding: 40px 30px;
  }
  .main .services__cards .card__title {
    font-size: 24px;
  }
  .main .advantages__title {
    font-size: 42px;
    max-width: 510px;
  }
  .main .advantages__cards {
    gap: 30px;
  }
  .main .advantages__cards-container {
    gap: 30px;
  }
  .main .advantages__cards .card__title {
    font-size: 24px;
  }
  .main .advantages__cards .card__text {
    font-size: 16px;
  }
  .main .products__title {
    font-size: 42px;
    margin-bottom: 60px;
  }
  .main .products__cards .card__title {
    font-size: 24px;
  }
  .main .contacts__title {
    font-size: 36px;
  }
  .main .contacts__contact {
    font-size: 28px;
  }
  .file-container {
    padding: 222px 0px 222px;
    max-width: 1214px;
  }
  .file__text {
    max-width: 740px;
  }
  .footer__copyright {
    font-size: 14px;
  }
  .footer__file {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .wrapper {
    padding: 0px 185px;
  }
  .header-sticky .header__nav {
    margin-left: calc(50% - 35vw);
  }
  .header-sticky .header__nav .header__logo {
    margin: 0 40px;
  }
  .header__content {
    margin-top: 200px;
  }
  .main .about__content span {
    left: 0px;
  }
  .main .services__cards .card {
    padding: 50px 40px;
  }
  .main .advantages__title {
    font-size: 42px;
    max-width: 510px;
  }
  .main .advantages__cards {
    gap: 40px;
  }
  .main .advantages__cards-container {
    gap: 40px;
  }
  .main .contacts__img {
    width: 36%;
  }
  .main .contacts-container {
    min-height: 520px;
  }
  .main .contacts__content {
    padding-right: 120px;
  }
  .footer__files {
    gap: 40px;
  }
}/*# sourceMappingURL=style.css.map */