@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Rubik:400&display=swap");
[class*=container] {
  max-width: rem(1290);
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 rem(divide(30, 2));
}

@font-face {
  font-family: FontsFree;
  font-display: swap;
  src: url("../fonts/FontsFree-Net-SFProDisplay-Heavy.woff2") format("woff2"), url("../fonts/FontsFree-Net-SFProDisplay-Heavy.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: FontsFree;
  font-display: swap;
  src: url("../fonts/FontsFree-Net-SFProDisplay-Regular.woff2") format("woff2"), url("../fonts/FontsFree-Net-SFProDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: FontsFree;
  font-display: swap;
  src: url("../fonts/FontsFree-Net-SFProDisplay-Semibold.woff2") format("woff2"), url("../fonts/FontsFree-Net-SFProDisplay-Semibold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: icomoon;
  font-display: swap;
  src: url("../fonts/icomoon.woff2") format("woff2"), url("../fonts/icomoon.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
[class^=_icon-]::before,
[class*=" _icon-"]::before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=_icon-]::before,
[class*=" _icon-"]::before {
  display: block;
}

._icon-phone:before {
  content: "\e900";
}

._icon-telegram:before {
  content: "\e901";
}

[class*=container] {
  max-width: 80.625rem;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
body {
  min-width: 20rem;
  overflow-x: hidden;
  margin: 0;
  font-weight: 700;
  font-family: "SF Pro Display", sans-serif;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
html.menu-open body {
  overflow-y: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

.page {
  flex: 1 1 auto;
}
.title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 1320px) {
  .title {
    font-size: calc(
        24px + 16 *
          ((100vw - 320px) / 1000)
      );
  }
}
.title span {
  color: #e92b2f;
}
.title a {
  color: #e92b2f;
  position: relative;
}
.title a::after {
  content: "";
  position: absolute;
  height: 5px;
  background-color: #e92b2f;
  width: 100%;
  bottom: -0.3125rem;
  left: 0;
  right: 0;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .title a:hover::after {
    right: -100%;
    left: 100%;
    width: 0;
  }
}

.red {
  color: red;
}

.btn {
  display: inline-block;
  padding: 0px 0px;
}
.btn._fm {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

._ibg-contain img {
  object-fit: contain;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.form {
  position: relative;
}
.form__input._error {
  box-shadow: 0 0 15px red;
  color: red;
}
.form__input._error::placeholder {
  color: red;
}
.form__error {
  position: absolute;
  left: 0;
  color: red;
  font-size: 0.875rem;
}

.header {
  background-color: #333;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 0.9375rem;
}
@media (max-width: 47.99875em) {
  .header__container {
    min-height: 3.125rem;
  }
}
.header__logo {
  position: relative;
  z-index: 5;
  max-width: 230px;
}
@media (max-width: 1320px) {
  .header__logo {
    max-width: calc(
        70px + 160 *
          ((100vw - 320px) / 1000)
      );
  }
}
.header__logo img {
  max-width: 100%;
}
.header__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
  gap: 80px;
}
@media (max-width: 1320px) {
  .header__info {
    gap: calc(
        15px + 65 *
          ((100vw - 320px) / 1000)
      );
  }
}
@media (max-width: 82.5em) {
  .header__info {
    gap: 30px;
  }
}
@media (max-width: 82.5em) and (max-width: 1320px) {
  .header__info {
    gap: calc(
        15px + 15 *
          ((100vw - 320px) / 1000)
      );
  }
}
@media (max-width: 61.99875em) {
  .header__info {
    gap: 15;
  }
}
.info-header__item-label {
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 61.99875em) {
  .info-header__item-label {
    font-size: 0.75rem;
    line-height: 1.1666666667;
  }
}
.info-header__item-text {
  font-weight: 400;
  line-height: 1.2142857143;
}
@media (max-width: 61.99875em) {
  .info-header__item-text {
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}

@media (max-width: 47.99875em) {
  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #0d0c0d;
    padding: 5.625rem 0.9375rem 1.875rem 0.9375rem;
    transition: left 0.3s ease 0s;
    z-index: 1;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 3.125rem;
    background-color: #333;
    z-index: 2;
    transition: left 0.3s ease 0s;
  }
  .menu-open .menu__body {
    left: 0;
  }
  .menu-open .menu__body::before {
    left: 0;
  }
}
@media (min-width: 47.99875em) {
  .menu__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.menu__item {
  text-align: right;
}
@media (max-width: 47.99875em) {
  .menu__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.menu__link {
  padding: 0.875rem 1.5rem 0.875rem 1.5rem;
  background-color: transparent;
  transition: all 0.3s ease 0s;
  font-weight: 700;
  line-height: 1.4285714286;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .menu__link:hover {
    background-color: #262527;
    color: #e92b2f;
  }
}
@media (max-width: 82.5em) {
  .menu__link {
    padding: 0.875rem;
  }
}
@media (max-width: 61.99875em) {
  .menu__link {
    padding: 0.3125rem;
  }
}
@media (max-width: 47.99875em) {
  .menu__link {
    font-size: 1.75rem;
  }
}
.icon-menu {
  border: none;
  background: transparent;
  display: none;
}
@media (max-width: 47.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
    pointer-events: none;
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu span {
    transform: scale(0);
  }
  .menu-open .icon-menu::before {
    transform: rotate(-45deg);
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu::after {
    transform: rotate(45deg);
    bottom: calc(50% - 0.0625rem);
  }
}

.home {
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1320px) {
  .home {
    padding-top: calc(
        60px + 60 *
          ((100vw - 320px) / 1000)
      );
  }
}
@media (max-width: 1320px) {
  .home {
    padding-bottom: calc(
        60px + 60 *
          ((100vw - 320px) / 1000)
      );
  }
}
.home__info-box {
  margin-bottom: 5rem;
}
.home__title:not(:last-child) {
  margin-bottom: 2rem;
}
.services__item {
  display: flex;
  gap: 1.5rem;
  max-width: 25.9375rem;
  min-height: 100%;
  background: rgba(60, 59, 59, 0.35);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(170, 194, 205, 0.5);
  border-radius: 15px;
  padding: 1.5rem;
}
.services__item-body {
  display: flex;
  flex-direction: column;
}
.services__item-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
}
.services__item-title:not(:last-child) {
  margin-bottom: 0.5rem;
}
.services__item-text {
  flex: 1 1 auto;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
}

.footer {
  background-color: #0d0c0d;
  padding: 1.5rem 0px 1rem 0px;
}
.footer__top {
  display: grid;
  column-gap: 217px;
  row-gap: 0.625rem;
  grid-template-columns: 1fr minmax(9.375rem, 28.75rem) 1fr;
  align-items: center;
}
@media (max-width: 1320px) {
  .footer__top {
    column-gap: calc(
        30px + 187 *
          ((100vw - 320px) / 1000)
      );
  }
}
.footer__top:not(:last-child) {
  margin-bottom: 0.9375rem;
}
@media (max-width: 47.99875em) {
  .footer__top {
    grid-template-columns: 1fr;
    align-self: center;
    align-items: center;
  }
}
.footer__logo {
  max-width: 230px;
}
@media (max-width: 1320px) {
  .footer__logo {
    max-width: calc(
        70px + 160 *
          ((100vw - 320px) / 1000)
      );
  }
}
.footer__menu-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 47.99875em) {
  .footer__menu-list {
    justify-content: center;
  }
}
.footer__menu-link {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  padding: 0 0.625rem;
}
@media (any-hover: hover) {
  .footer__menu-link:hover {
    text-decoration: none;
  }
}
.footer__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 47.99875em) {
  .footer__contacts {
    justify-content: center;
  }
}
.footer__contacts-label {
  white-space: nowrap;
  padding-right: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
}
.footer__copy {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 47.99875em) {
  .footer__copy {
    text-align: center;
  }
}

.box-contacts {
  display: flex;
  align-items: center;
}
.box-contacts__img:not(:last-child) {
  margin-right: 0.75rem;
}

/*Responsive*/
/* 992px - 1200px */
/* 768px - 992px */
/* 576px - 768px */
/* 320px - 576px */