@charset "UTF-8";
:root {
  --font-family: "Commissioner", "Oswald", sans-serif;
  --content-width: 1500px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --dark-color:#27292E;
  --bg-color: #1E2025;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Commissioner";
  src: url("../fonts/../fonts/Commissioner-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Commissioner";
  src: url("../fonts/../fonts/Commissioner-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Commissioner";
  src: url("../fonts/../fonts/Commissioner-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Commissioner";
  src: url("../fonts/../fonts/Commissioner-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/../fonts/Oswald-ExtraLight.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/../fonts/Oswald-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

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

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header {
  position: fixed;
  width: 100%;
  height: 147px;
  z-index: 100;
  top: 0;
  left: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__container {
  position: relative;
  padding: 10px;
}
.header__nav {
  background: #0F0F0E;
}
.header__logo {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  height: 120px;
}
@media (max-width: 991px) {
  .header__logo {
    width: 70px;
    height: 90px !important;
  }
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }
}
.header__text {
  margin: 0;
  max-width: 197px;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -3%;
  vertical-align: middle;
  color: #fff;
}
@media (max-width: 1250px) {
  .header__text {
    max-width: 130px;
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 992px) {
  .header__text {
    max-width: 300px;
  }
}
.header__phone-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.header__phone {
  margin: 0;
  font-family: Commissioner;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.header__phone:hover {
  color: #D34342;
}
@media (max-width: 992px) {
  .header__phone {
    font-size: 20px;
  }
}
.header__btn {
  width: 300px;
  height: 50px;
  border-radius: 20px;
  background: #D34342;
  font-family: Commissioner;
  font-weight: 500;
  font-size: 22px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.header__btn:hover {
  color: #0F0F0E;
  background-color: #fff;
}
@media (max-width: 992px) {
  .header__btn {
    display: none;
  }
}
.header .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.menu__icon {
  display: none;
}
@media (max-width: 992px) {
  .menu__icon {
    display: block;
    position: absolute;
    top: 30px;
    right: 10px;
    width: 30px;
    height: 18px;
    z-index: 101;
    cursor: pointer;
  }
  .menu__icon span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .menu__icon span:first-child {
    top: 0;
  }
  .menu__icon span:last-child {
    top: auto;
    bottom: 0;
  }
  .menu__icon.active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  .menu__icon.active span:first-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .menu__icon.active span:last-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}
@media (max-width: 768px) {
  .menu__icon {
    top: 25px;
  }
}
@media (max-width: 991px) {
  .menu__body {
    position: absolute;
    top: -20px;
    right: -100%;
    height: 100vh;
    width: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
.menu__body.active {
  right: 0;
}
.menu__list {
  list-style-type: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 30px;
    gap: 0;
    height: 100%;
    width: 100%;
    background-image: url("../img/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: auto;
  }
}
.menu__link {
  font-family: Commissioner;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -3%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.menu__link:hover {
  color: #D34342;
}
@media (max-width: 991px) {
  .menu__link {
    display: block;
    font-size: 30px;
    line-height: 70px;
  }
}

.graph-modal__close {
  background-repeat: no-repeat;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  width: auto;
  height: auto;
  right: 20px;
  top: 20px;
  color: #718096;
  background-image: none;
}

.popup {
  max-width: 700px;
}

.modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__subtitle {
  margin: 0;
  padding: 20px 0px;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: center;
  color: #718096;
}

.modal__input {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  border-radius: 30px;
  border: 3px solid rgba(243, 115, 43, 0.6);
  outline: none;
  padding-left: 20px;
  width: 486px;
  height: 50px;
  margin-bottom: 10px;
  color: #718096;
}
.modal__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #718096;
}
.modal__input::-moz-placeholder {
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #718096;
}
.modal__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #718096;
}
.modal__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #718096;
}
.modal__input::placeholder {
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #718096;
}

.modal__agree {
  margin: 0;
  text-align: center;
  padding: 10px 0px 30px 0px;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  color: #718096;
}

.modal__link {
  color: #F3732B !important;
}

.modal-btn {
  width: 345px;
  height: 60px;
  border-radius: 20px;
  background: #F3732B;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  font-family: Rubik;
  font-weight: 500;
  font-size: 26px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

.agree-checkbox {
  margin: 0 auto;
  max-width: 500px;
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  text-align: center;
}

.agree-checkbox__label {
  padding-left: 20px;
  cursor: pointer;
}

.agree-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.agree-checkbox__custom {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 10px;
  margin-top: 2px; /* Добавлено для выравнивания с текстом */
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0; /* Запрещаем уменьшение */
}

.agree-checkbox__input:checked + .agree-checkbox__custom {
  background-color: #F3732B;
  border-color: #F3732B;
}

.agree-checkbox__input:checked + .agree-checkbox__custom::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.agree-checkbox a {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap; /* Запрещаем перенос ссылки */
}

.agree-checkbox a:hover {
  text-decoration: none;
}

@media (max-width: 576px) {
  .modal__input {
    width: 300px;
  }
  .modal__subtitle {
    font-size: 20px;
    line-height: 20px;
  }
  .modal__agree {
    margin: 0 auto;
    max-width: 300px;
    text-align: center;
    padding: 10px 0px 20px 0px;
    font-family: Commissioner;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    color: #718096;
  }
  .modal-btn {
    width: 300px;
    height: 50px;
    border-radius: 20px;
    background: #F3732B;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
    font-family: Rubik;
    font-weight: 500;
    font-size: 26px;
    line-height: 121%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
  }
}
@media (max-width: 370px) {
  .modal__input {
    width: 250px;
  }
  .modal-btn {
    width: 250px;
  }
}
.hero__container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 800px;
}
.hero__title {
  margin: 0;
  margin-left: auto;
  max-width: 847px;
  padding-top: 268px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 64px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
}
.hero__title span {
  color: #D34342;
}
.hero__subtitle {
  margin: 0;
  font-family: Commissioner;
  font-weight: 300;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: -2%;
  text-align: right;
  vertical-align: middle;
  color: #fff;
  margin-bottom: 30px;
}
.hero__promotion {
  margin: 0;
  font-family: Commissioner;
  font-weight: 300;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: -2%;
  text-align: right;
  vertical-align: middle;
  color: #fff;
}
.hero__promotion span {
  text-transform: uppercase;
  color: #D34342;
}
.hero__btn {
  margin-left: auto;
  width: 358px;
  height: 50px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-family: Commissioner;
  font-weight: 500;
  font-size: 22px;
  line-height: 121%;
  letter-spacing: -1%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 85px;
  color: #0F0F0E;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.hero__btn:hover {
  color: #fff;
  background-color: #D34342;
}
.hero__text {
  font-family: Commissioner;
  font-weight: 500;
  font-size: 16px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  color: #fff;
}
.hero__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 30px;
}
.hero__counter {
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 10px;
}
.hero__count-box {
  max-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.hero__count-box-center {
  margin-top: 30px;
}
.hero__counter-value {
  margin: 0;
  font-family: Commissioner;
  font-weight: 500;
  font-size: 80px;
  line-height: 90%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
}
.hero__counter-value::after {
  content: "+";
}
.hero__count-text {
  margin: 0;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 20px;
  line-height: 175%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
.hero__decor-fierst {
  position: absolute;
  top: 30px;
  left: 250px;
  -o-object-fit: contain;
  object-fit: contain;
}
.hero__decor-second {
  position: absolute;
  top: 35px;
  right: 250px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1350px) {
  .hero__container {
    min-height: 850px;
  }
  .hero__decor-fierst {
    display: none;
  }
  .hero__decor-second {
    display: none;
  }
  .hero__count-box-center {
    margin-top: 0;
  }
  .hero__counter-value {
    font-size: 43px;
    line-height: 90%;
  }
  .hero__count-text {
    font-size: 14px;
    line-height: 85%;
  }
}
@media (max-width: 992px) {
  .hero__title {
    max-width: 647px;
    font-size: 45px;
    line-height: 121%;
  }
  .hero__subtitle {
    font-size: 18px;
  }
  .hero__promotion {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    max-width: 400px;
    padding-top: 350px;
    font-size: 30px;
    line-height: 121%;
  }
  .hero__subtitle {
    font-size: 16px;
    line-height: 120%;
  }
  .hero__counter-value {
    font-size: 30px;
    line-height: 90%;
  }
  .hero__count-text {
    font-size: 12px;
    line-height: 85%;
    padding-right: 10px;
  }
  .hero__btn {
    width: 260px;
    height: 40px;
    border-radius: 20px;
    background: #fff;
    font-size: 16px;
    line-height: 121%;
    letter-spacing: -1%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 100px;
  }
  .hero__counter {
    padding-bottom: 70px;
  }
}
@media (max-width: 374px) {
  .hero__counter {
    max-width: 300px;
    padding-bottom: 70px;
  }
}
.services__container {
  margin: 0 auto;
  max-width: 1320px;
  padding-top: 67px;
  position: relative;
}
.services__title {
  margin: 0;
  padding-left: 150px;
  font-family: Oswald;
  font-weight: 300;
  font-size: 30px;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: left;
  vertical-align: middle;
  position: absolute;
  top: 65px;
  left: 50px;
}
.services__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 130px;
  height: 3px;
  background: #0F0F0E;
}
.services__subtitle {
  position: absolute;
  top: 114px;
  left: -10px;
  margin: 0;
  max-width: 662px;
  text-align: right;
  font-family: Oswald;
  font-weight: 300;
  font-size: 60px;
  line-height: 150%;
  letter-spacing: -2%;
  vertical-align: middle;
}
.services .tabs__nav {
  position: absolute;
  top: 327px;
  left: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.services .tabs__nav-btn {
  width: 350px;
  height: 60px;
  background: #fff;
  border-radius: 20px;
  color: #0F0F0E;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-family: Commissioner;
  font-weight: 500;
  font-size: 25px;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
}
.services .tabs__nav-btn--active {
  background: #D34342 !important;
  color: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.services .tabs__list {
  max-width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.services .tabs__item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 646px;
  height: 450px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.services .tabs__item-inner {
  position: relative;
  padding: 58px 32px 30px 32px;
  border-radius: 15px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 14, 14, 0.7)), color-stop(55%, rgba(14, 14, 14, 0.6)), to(rgba(14, 14, 14, 0.2)));
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.7) 0%, rgba(14, 14, 14, 0.6) 55%, rgba(14, 14, 14, 0.2) 100%);
}
.services .tabs__title {
  margin: 0;
  font-family: Commissioner;
  font-weight: 600;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
}
.services .tabs__subtitle {
  margin: 0;
  font-family: Commissioner;
  font-weight: 300;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #fff;
  margin-bottom: 30px;
}
.services .tabs__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 375px;
  height: 58px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
  cursor: pointer;
  font-family: Commissioner;
  font-weight: 500;
  font-size: 22px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: #fff;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.services .tabs__btn:hover {
  color: #fff;
  background-color: #D34342;
}

@media (max-width: 1370px) {
  .services__container {
    padding-top: 0px;
  }
  .tabs__list {
    margin: 0 auto !important;
    max-width: 900px !important;
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .tabs__item {
    width: 900px !important;
    height: 350px !important;
  }
  .services__title {
    top: 25px;
    left: 32%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .services__subtitle {
    text-align: left !important;
    font-weight: 300;
    font-size: 45px;
    line-height: 120%;
    top: 70px;
    left: 42%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .tabs__nav {
    position: absolute;
    top: 250px !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
}
@media (max-width: 991px) {
  .services {
    margin-top: -70px;
  }
  .tabs__list {
    margin: 0 auto !important;
    max-width: 520px !important;
  }
  .tabs__item {
    width: 500px !important;
    height: 270px !important;
  }
  .services__title {
    font-size: 18px !important;
    padding-left: 0px;
    top: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .services__title::before {
    display: none;
  }
  .services__subtitle {
    text-align: left !important;
    font-weight: 300;
    font-size: 25px;
    line-height: 120%;
    top: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .tabs__nav {
    position: absolute;
    top: 150px !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .tabs__nav-btn {
    width: 200px !important;
    height: 38px !important;
    font-size: 14px !important;
    line-height: 100% !important;
  }
  .tabs__title {
    font-size: 30px !important;
    line-height: 110%;
  }
  .tabs__subtitle {
    font-size: 18px !important;
    line-height: 120% !important;
  }
  .tabs__item-inner {
    padding: 30px 20px !important;
  }
  .tabs__btn {
    width: 250px !important;
    height: 38px !important;
    font-size: 14px !important;
    line-height: 100% !important;
  }
}
@media (max-width: 576px) {
  .tabs__list {
    max-width: 380px !important;
  }
  .tabs__item {
    width: 380px !important;
    height: 240px !important;
  }
  .services__subtitle {
    font-size: 20px;
    line-height: 120%;
  }
  .tabs__nav {
    position: absolute;
    gap: 5px !important;
    top: 130px !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .tabs__nav-btn {
    width: 200px !important;
    height: 38px !important;
    font-size: 14px !important;
    line-height: 100% !important;
  }
  .tabs__title {
    font-size: 20px !important;
    line-height: 110%;
    margin-bottom: 10px !important;
  }
  .tabs__subtitle {
    font-weight: 600;
    font-size: 16px !important;
    line-height: 120% !important;
  }
  .tabs__item-inner {
    padding: 20px 20px !important;
  }
  .tabs__btn {
    width: 200px !important;
    height: 38px !important;
    font-size: 14px !important;
    line-height: 100% !important;
    left: 20px !important;
    bottom: 20px !important;
  }
}
@media (max-width: 405px) {
  .tabs__list {
    max-width: 320px !important;
  }
  .tabs__item {
    width: 320px !important;
    height: 220px !important;
  }
  .services__subtitle {
    font-size: 18px;
    line-height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .tabs__nav {
    position: absolute;
    gap: 5px !important;
    top: 130px !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .tabs__nav-btn {
    width: 180px !important;
    height: 30px !important;
    font-size: 14px !important;
    line-height: 100% !important;
  }
  .tabs__title {
    font-size: 20px !important;
    line-height: 110%;
  }
  .tabs__subtitle {
    font-size: 16px !important;
    line-height: 100% !important;
  }
  .tabs__item-inner {
    padding: 20px 10px !important;
  }
  .tabs__btn {
    width: 180px !important;
    height: 30px !important;
    font-size: 14px !important;
    line-height: 100% !important;
    left: 10px !important;
    bottom: 10px !important;
  }
}
.hero-services__title {
  margin: 0;
  padding-top: 200px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 65px;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
}
.hero-services__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.hero-services__left {
  position: relative;
}
.hero-services__list {
  color: #A80D0F;
}
.hero-services__item {
  margin-bottom: 20px;
}
.hero-services__right {
  padding: 20px;
  min-width: 340px;
  height: 675px;
  background: -webkit-gradient(linear, right top, left top, from(#0E0E0E), to(rgba(14, 14, 14, 0.9)));
  background: linear-gradient(270deg, #0E0E0E 0%, rgba(14, 14, 14, 0.9) 100%);
  opacity: 0.9;
  float: right;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.hero-services__descr {
  margin: 0;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: justify;
  vertical-align: middle;
  color: #0E0E0E;
}
.hero-services__descr span {
  font-size: 20px;
  font-style: italic;
}
.hero-services__card-title {
  margin: 0;
  font-family: Oswald;
  font-weight: 400;
  font-size: 45px;
  line-height: 100%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #fff;
  margin-bottom: 10px;
}
.hero-services__img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
  width: 315px;
  height: 315px;
  margin-left: 50px;
  margin-bottom: 30px;
}
.hero-services__name {
  margin: 0;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 23px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.hero-services__text {
  margin: 0;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  margin-bottom: 30px;
}
.hero-services__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 300px;
  height: 60px;
  background: #D34342;
  border-radius: 20px;
  font-family: Commissioner;
  font-weight: 500;
  font-size: 25px;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

@media (max-width: 1024px) {
  .hero-services__inner {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 220px;
  }
  .hero-services__title {
    padding-top: 150px;
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 30px;
  }
  .hero-services__descr {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .hero-services__right {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0px;
    padding: 20px;
    width: 140px;
    height: 200px;
  }
  .hero-services__card-title {
    margin: 0;
    font-family: Oswald;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .hero-services__img {
    width: 50px;
    height: 50px;
    margin-left: 0px;
    margin-bottom: 5px;
  }
  .hero-services__name {
    margin: 0;
    font-size: 16px;
    line-height: 120%;
  }
  .hero-services__text {
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 5px;
  }
  .hero-services__link {
    width: 150px;
    height: 30px;
    background: #D34342;
    border-radius: 20px;
    font-family: Commissioner;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
  }
}
.works__title {
  margin: 0;
  padding: 60px 0px 5px 0px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 65px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
}
.works__subtitle {
  margin: 0;
  padding: 0px 0px 40px 0px;
  font-family: Oswald;
  font-weight: 300;
  font-size: 45px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  color: #0F0F0E;
}
.works__list {
  margin: 0 auto;
  max-width: 1260px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.works__item {
  width: 400px;
  height: 420px;
  border-radius: 20px;
}
.works__img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.works__box {
  position: relative;
  margin-top: -5px;
  padding: 0px 20px;
  height: 120px;
  background: rgba(15, 15, 14, 0.1019607843);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.works__name {
  margin: 0;
  padding-top: 10px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #0F0F0E;
}
.works__price {
  margin: 0;
  font-family: Oswald;
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #0F0F0E;
}
.works__btn {
  position: absolute;
  padding: 0px 20px;
  top: 20px;
  right: 20px;
  width: 181px;
  height: 71px;
  border-radius: 20px;
  background: #FFFFFF;
  font-family: Commissioner;
  font-weight: 500;
  font-size: 16px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #0F0F0E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

@media (max-width: 991px) {
  .works__title {
    font-size: 45px;
    line-height: 55px;
  }
  .works__subtitle {
    font-size: 30px;
  }
}
@media (max-width: 567px) {
  .works__title {
    font-size: 30px;
    line-height: 35px;
  }
  .works__subtitle {
    font-size: 20px;
  }
  .works__btn {
    top: 20px;
    right: 10px;
    width: 161px;
    height: 61px;
  }
}
.advantages {
  padding: 50px 0px;
}
.advantages__title {
  margin: 0;
  padding: 30px 0px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 65px;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}
.advantages__img {
  display: block;
  margin: 0 auto;
}
.advantages__img-helmet {
  width: 190px !important;
  height: 196px;
}
.advantages__descr {
  margin: 0;
  max-width: 250px;
  font-family: Commissioner;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
  padding: 10px 0px;
}
.advantages__descr-center {
  padding: 5px 0px;
  font-size: 18px;
  line-height: 100%;
}
.advantages__text {
  margin: 0;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #0F0F0E;
}
.advantages__text span {
  display: block;
  text-transform: uppercase;
  margin: 3px 0px;
  color: #D34342;
}
.advantages .parent {
  display: -ms-grid;
  display: grid;
  margin: 0 auto;
  max-width: 1330px;
  height: 820px;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[4];
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.advantages .div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/4/2;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(15, 15, 14, 0.0509803922);
  padding: 20px;
}
.advantages .div2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(15, 15, 14, 0.0509803922);
  padding: 20px;
}
.advantages .div3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/4/4;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(15, 15, 14, 0.0509803922);
  padding: 20px;
}
.advantages .div4 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 1/4/3/5;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(15, 15, 14, 0.0509803922);
  padding: 20px;
}
.advantages .div5 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 4/1/5/2;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(15, 15, 14, 0.0509803922);
  padding: 20px;
}
.advantages .div6 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/5/3;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(15, 15, 14, 0.0509803922);
  padding: 20px;
}
.advantages .div7 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 4/3/5/4;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(15, 15, 14, 0.0509803922);
  padding: 20px;
}
.advantages .div8 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 3/4/5/5;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(15, 15, 14, 0.0509803922);
  padding: 20px;
}

@media (max-width: 1370px) {
  .advantages__title {
    font-size: 50px;
    line-height: 150%;
  }
  .advantages__text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .advantages__title {
    font-size: 40px;
    line-height: 120%;
  }
  .advantages__img {
    display: none;
  }
  .parent {
    max-width: 700px;
    height: auto !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .parent div {
    width: 100%;
  }
  .advantages__descr {
    max-width: none;
  }
  .advantages__text {
    max-width: 800px;
  }
}
@media (max-width: 576px) {
  .advantages__title {
    font-size: 30px;
  }
}
.price {
  padding: 50px 0px 30px 0px;
  /* When input gains focus, add a blue border below it */
  /* Set shadow on just the table head */
  /* Add some space around table heading. Align text to right and transform to uppercase */
  /* Add padding on each cell */
  /* Create alternating color(blue) across the rows. Set blue on all even ones (2, 4, 6 ...) */
}
.price__title {
  margin: 0;
  padding: 30px 0px 0px 0px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 65px;
  line-height: 150%;
  letter-spacing: -2%;
  text-align: left;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
}
.price__list {
  margin: 0 auto;
  width: 1300px;
  border: 3px solid rgba(15, 15, 14, 0.2);
  border-radius: 20px;
  padding: 0;
}
.price__list-top {
  border-top-right-radius: 20px !important;
  border-top-left-radius: 20px;
  height: 80px;
  background: rgba(211, 67, 66, 0.3019607843);
}
.price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.price #searchInput {
  max-width: 500px;
  padding-bottom: 10px;
  border: none;
  outline: none;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.price #searchInput::-webkit-input-placeholder {
  font-size: 20px;
}
.price #searchInput::-moz-placeholder {
  font-size: 20px;
}
.price #searchInput:-ms-input-placeholder {
  font-size: 20px;
}
.price #searchInput::-ms-input-placeholder {
  font-size: 20px;
}
.price #searchInput::placeholder {
  font-size: 20px;
}
.price #searchInput:focus {
  border-bottom: 2px solid gray;
}
.price .app {
  margin: 0 auto;
  max-width: 1300px;
}
.price table {
  border-radius: 20px;
  border-collapse: collapse;
  width: 100%;
}
.price thead {
  padding-top: 5px;
  border-radius: 20px;
  background: rgba(211, 67, 66, 0.3019607843);
}
.price th {
  padding: 1rem 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
.price td {
  font-family: Commissioner;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #0F0F0E;
  padding: 0.5rem 3rem;
  font-size: 1rem;
}
.price tr:nth-child(even) {
  background-color: #D9D9D9;
}

@media (max-width: 1370px) {
  .price__title {
    font-size: 50px;
    line-height: 150%;
  }
}
@media (max-width: 991px) {
  .price {
    padding: 0px 0px 20px 0px;
  }
  .price__title {
    font-size: 30px;
    line-height: 150%;
    margin-bottom: 10px;
  }
  #searchInput {
    margin-left: 0px !important;
  }
  th {
    padding: 0.3rem 1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    font-size: 12px !important;
  }
  td {
    font-family: Commissioner;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 100%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #0F0F0E;
    padding: 0.1rem 1rem !important;
    font-size: 1rem;
  }
}
.send {
  position: relative;
  padding-top: 30px;
}
.send__container {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(rgba(15, 15, 14, 0.6)));
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(15, 15, 14, 0.6) 100%);
}
.send__inner {
  margin: 0 auto;
  max-width: 1301px;
  min-height: 635px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  padding-bottom: 20px;
}
.send__left {
  max-width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.send__title {
  margin: 0;
  padding-top: 72px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 65px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
}
.send__subtitle {
  margin: 0;
  max-width: 578px;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  color: #0F0F0E;
  margin-left: 100px;
  margin-bottom: 10px;
}
.send__text {
  margin: 0;
  font-family: Montserrat;
  font-size: 34px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--light-color);
  padding-bottom: 20px;
}
.send__inp {
  border: 3px solid rgba(243, 115, 43, 0.6);
  padding-left: 32px;
  border-radius: 10px;
  width: 100%;
  height: 66px;
  margin-bottom: 10px;
}
.send__inp::-webkit-input-placeholder {
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  color: rgba(26, 32, 44, 0.3019607843);
}
.send__inp::-moz-placeholder {
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  color: rgba(26, 32, 44, 0.3019607843);
}
.send__inp:-ms-input-placeholder {
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  color: rgba(26, 32, 44, 0.3019607843);
}
.send__inp::-ms-input-placeholder {
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  color: rgba(26, 32, 44, 0.3019607843);
}
.send__inp::placeholder {
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  color: rgba(26, 32, 44, 0.3019607843);
}
.send__btn {
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  border-radius: 20px;
  margin-top: 10px;
  width: 345px;
  height: 60px;
  background: #F3732B;
  font-family: Rubik;
  line-height: 121%;
  font-weight: 500;
  font-size: 26px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.send__btn:hover {
  color: #0F0F0E;
  background-color: #fff;
}
.send__agree {
  margin-left: 80px;
  max-width: 400px;
  font-family: Rubik;
  font-weight: 400;
  font-size: 14px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: center;
}
.send__link {
  color: #F3732B;
}
.send__text-bottom {
  margin: 0;
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #0F0F0E;
  margin-bottom: 10px;
}
.send__box {
  max-width: 500px;
  margin-left: 100px;
}
.send .control-file {
  width: 100%;
  position: relative;
  margin: 0;
  text-align: center;
}
.send #fileFF {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.send .input__file-icon-wrapper {
  height: 60px;
  width: 60px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 1px solid #fff;
}
.send .input__file-button-text {
  line-height: 1;
  margin-top: 1px;
}
.send .input__file-button {
  border: 3px solid rgba(243, 115, 43, 0.6);
  padding: 0px 20px;
  border-radius: 10px;
  width: 100%;
  height: 66px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  color: rgba(26, 32, 44, 0.3019607843);
  cursor: pointer;
  margin-bottom: 10px;
}
.send .social {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 216px;
}
.send .social__text {
  margin: 0;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}
.send .agree-checkbox {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}
.send .agree-checkbox__label {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; /* Изменено с center для лучшего переноса текста */
  cursor: pointer;
}
.send .agree-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.send .agree-checkbox__custom {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 10px;
  margin-top: 2px; /* Добавлено для выравнивания с текстом */
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0; /* Запрещаем уменьшение */
}
.send .agree-checkbox__input:checked + .agree-checkbox__custom {
  background-color: #F3732B;
  border-color: #F3732B;
}
.send .agree-checkbox__input:checked + .agree-checkbox__custom::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.send .agree-checkbox a {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap; /* Запрещаем перенос ссылки */
}
.send .agree-checkbox a:hover {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .send__left {
    max-width: 500px;
  }
  .send__title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
  }
  .send__subtitle {
    font-size: 16px;
    line-height: 20px;
    margin-left: 10px;
  }
  .send__agree {
    margin-left: 10px;
  }
  .send__box {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .send {
    margin-top: 0px;
  }
}
@media (max-width: 576px) {
  .send__box {
    max-width: 400px;
  }
  .send__inner {
    background-image: none !important;
  }
}
.about__inner {
  margin: 0 auto;
  max-width: 1330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.about__title {
  margin: 0;
  padding: 50px 0px 54px 0px;
  text-align: center;
  font-family: Oswald;
  font-weight: 500;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
}
.about__descr {
  margin: 0;
  max-width: 614px;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: right;
  vertical-align: middle;
}
.about__img {
  width: 662px;
  height: 604px;
  border-radius: 32px;
}

@media (max-width: 1375px) {
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .about__descr {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .about__title {
    margin: 0;
    padding: 20px 0px 24px 0px;
    font-size: 50px;
  }
  .about__descr {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .about__img {
    border-radius: 10px;
    width: 380px;
    height: 300px;
  }
}
.galery {
  padding-bottom: 50px;
}
.galery__hidden {
  display: none;
}
.galery .gallery {
  display: -ms-grid;
  display: grid;
  max-width: 1500px;
  margin: 0 auto;
  min-height: 687px;
  grid-template-columns: repeat(auto-fit, min-max(200px, 1fr));
  grid-template-rows: repeat(auto-fit, min-height(100px, 1fr));
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}
.galery__title {
  margin: 0;
  padding: 80px 0px 50px 0px;
  font-family: Oswald;
  text-align: center;
  font-weight: 500;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
}
.galery__img {
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.galery__img-1 {
  -o-object-fit: cover;
  object-fit: cover;
  width: 252px;
  height: 336px;
}
.galery__img-2 {
  -o-object-fit: cover !important;
  object-fit: cover !important;
  width: 382px;
  height: 336px;
}
.galery__img-3 {
  -o-object-fit: cover !important;
  object-fit: cover !important;
  max-width: 538;
  min-height: 450px;
}
.galery__img-6 {
  -o-object-fit: cover !important;
  object-fit: cover !important;
  width: 382px;
  height: 335px !important;
}
.galery__img-7 {
  -o-object-fit: cover !important;
  object-fit: cover !important;
  width: 278px;
  height: 227px !important;
}
.galery__img-8 {
  -o-object-fit: cover !important;
  object-fit: cover !important;
  width: 235px;
  height: 227px !important;
}
.galery__img-9 {
  -o-object-fit: cover !important;
  object-fit: cover !important;
  width: 252px;
  height: 336px !important;
}
.galery__item1 {
  -o-object-fit: cover;
  object-fit: cover;
  width: 252px;
  height: 336px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/4/2;
}
.galery__item2 {
  width: 382px;
  height: 336px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 1/2/4/4;
}
.galery__item3 {
  width: 538;
  height: 450px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 4;
  -ms-grid-column-span: 3;
  grid-area: 1/4/5/7;
}
.galery__item4 {
  width: 252px;
  height: 336px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-area: 1/7/4/8;
}
.galery__item5 {
  width: 252px;
  height: 336px;
  -ms-grid-row: 4;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 4/1/7/2;
}
.galery__item6 {
  width: 382px;
  height: 335px;
  -ms-grid-row: 4;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 4/2/7/4;
}
.galery__item7 {
  width: 278px;
  height: 227px;
  -ms-grid-row: 5;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-area: 5/4/7/6;
}
.galery__item8 {
  width: 235px;
  height: 226px;
  -ms-grid-row: 5;
  -ms-grid-row-span: 2;
  -ms-grid-column: 6;
  -ms-grid-column-span: 1;
  grid-area: 5/6/7/7;
}
.galery__item9 {
  width: 252px;
  height: 336px;
  -ms-grid-row: 4;
  -ms-grid-row-span: 3;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-area: 4/7/7/8;
}

.slider-img {
  width: 380px;
  height: 280px;
  border-radius: 14px;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.slider {
  margin: 0 auto;
  width: 1160px;
  height: 360px;
  overflow: hidden;
  position: relative;
}

.slider-slide {
  border: none !important;
}

.swiper-pagination-bullet {
  background-color: #A80D0F;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 1500px) {
  .galery__hidden {
    display: block;
  }
  .gallery {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .slider {
    width: 800px !important;
  }
}
@media (max-width: 991px) {
  .galery__title {
    margin: 0;
    padding: 40px 0px;
    font-size: 50px;
  }
}
@media (max-width: 800px) {
  .slider {
    margin: 0 auto !important;
    width: 400px !important;
    height: 355px !important;
  }
  .slider-slide {
    border: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 400px !important;
  }
  .slider-img {
    width: 400px !important;
  }
}
@media (max-width: 576px) {
  .galery__item3 {
    width: 538;
    height: 336px;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
    grid-area: 1/4/5/7;
  }
  .galery__img-2 {
    -o-object-fit: cover !important;
    object-fit: cover !important;
    width: 100% !important;
    height: 336px;
  }
  .galery__img-3 {
    max-width: 100%;
    min-height: auto;
  }
  .galery__title {
    padding: 40px 0px;
    font-size: 40px;
  }
}
@media (max-width: 430px) {
  .slider {
    width: 350px !important;
    height: 345px !important;
  }
  .slider-img {
    width: 350px !important;
  }
  .slider-slide {
    border: none !important;
    width: 350px !important;
  }
}
.feedback {
  padding-bottom: 50px;
}
.feedback__title {
  margin: 0;
  padding: 40px 0px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
}
.feedback .swiper {
  width: 1500px;
  height: 350px;
}
.feedback .swiper-slide {
  width: 540px;
  height: 315px;
  border: 1px solid rgba(14, 14, 14, 0.4);
  border-radius: 20px;
  position: relative;
}
.feedback .swiper-inner {
  padding: 20px;
}
.feedback .swiper-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.feedback .swiper-name {
  margin: 0;
  font-family: Commissioner;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
}
.feedback .swiper-stars {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.feedback .slider-star {
  display: inline-block;
}
.feedback .slider-icon {
  display: block;
  width: 16.48px;
  height: 15.75px;
  fill: #D34342;
}
.feedback .swiper-text {
  margin: 0;
  font-family: Commissioner;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -2%;
}
.feedback .swiper-descr {
  margin: 0;
  font-family: Commissioner;
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  margin-bottom: 20px;
}
.feedback .swiper-link-box {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.feedback .swiper-link {
  font-family: Commissioner;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #000;
  position: relative;
}
.feedback .swiper-link::after {
  position: absolute;
  top: -5px;
  right: -50px;
  content: url("../img/Arrow.svg");
  width: 40px;
  height: 10px;
}
.feedback .swiper-img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 150px;
  height: 50px;
}

@media (max-width: 992px) {
  .feedback__title {
    padding: 30px 0px;
    font-size: 50px;
    line-height: 120%;
  }
  .swiper {
    width: 900px !important;
  }
  .swiper-slide {
    width: 540px;
    height: 330px !important;
    border: 1px solid rgba(14, 14, 14, 0.4);
    border-radius: 20px;
    position: relative;
  }
}
@media (max-width: 567px) {
  .feedback__title {
    padding: 20px 0px;
    font-size: 30px;
    line-height: 120%;
  }
  .swiper {
    width: 380px !important;
    height: 350px !important;
  }
  .swiper-slide {
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    width: 340px !important;
    height: 320px !important;
    border: 1px solid rgba(14, 14, 14, 0.4);
    border-radius: 10px !important;
    position: relative;
  }
  .swiper-name {
    margin: 0;
    font-family: Commissioner;
    font-weight: 300;
    font-size: 14px !important;
    line-height: 120%;
    letter-spacing: -2%;
    vertical-align: middle;
  }
  .swiper-text {
    margin: 0;
    font-family: Commissioner;
    font-weight: 300;
    font-size: 12px !important;
    line-height: 120%;
    letter-spacing: -2%;
  }
  .swiper-descr {
    margin: 0;
    font-family: Commissioner;
    font-weight: 300;
    font-size: 16px !important;
    line-height: 120%;
    letter-spacing: -2%;
    vertical-align: middle;
    margin-bottom: 20px;
  }
}
.calculation__container {
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.calculation__inner {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 14, 14, 0.7)), color-stop(55%, rgba(14, 14, 14, 0.6)), to(rgba(14, 14, 14, 0.2)));
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.7) 0%, rgba(14, 14, 14, 0.6) 55%, rgba(14, 14, 14, 0.2) 100%);
  min-height: 420px;
  padding: 70px 15px;
}
.calculation__title {
  margin: 0 auto;
  max-width: 1000px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 55px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 70px;
}
.calculation__btn {
  display: block;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 503px;
  height: 88px;
  border-radius: 20px;
  background: #D34342;
  font-family: Oswald;
  font-weight: 500;
  font-size: 30px;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  color: #fff;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.calculation__btn:hover {
  color: #0F0F0E;
  background-color: #fff;
}

@media (max-width: 991px) {
  .calculation__btn {
    width: 400px;
    height: 60px;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
  }
}
@media (max-width: 576px) {
  .calculation__inner {
    min-height: 350px;
    padding: 40px 15px;
  }
  .calculation__title {
    font-family: Oswald;
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fff;
  }
  .calculation__btn {
    width: 300px;
    height: 60px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
  }
}
.materials {
  padding-bottom: 50px;
}
.materials__title {
  margin: 0;
  padding: 60px 0px 30px 0px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #0F0F0E;
}
.materials__list {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.materials__descr {
  margin: 0;
  max-width: 420px;
  gap: 75px;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #0F0F0E;
}
.materials__percent {
  margin: 0;
  font-family: Commissioner;
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #D34342;
}
.materials__text {
  margin: 0;
  max-width: 217px;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 25px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: left;
  vertical-align: middle;
  color: #0F0F0E;
}
.materials .wrap {
  max-width: 100%;
  margin: auto;
  padding: 0px;
}
.materials .items-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 20px;
}
.materials .items-wrap:before,
.materials .items-wrap:after {
  content: "";
  height: 100%;
  top: 0;
  width: 10%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.materials .items-wrap:before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.materials .items-wrap:after {
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.materials .items {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  min-width: 100%;
}
.materials .item {
  background: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 300px;
  height: 100px;
  counter-increment: item;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  margin: 10px 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.materials .item:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.materials .marquee {
  -webkit-animation: scroll 20s linear infinite;
  animation: scroll 20s linear infinite;
}
.materials .reverce {
  animation-direction: reverse;
}
.materials .items-wrap:hover .marquee {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.materials .perfscan {
  margin: 20px 0;
  text-align: center;
  bottom: 0;
  background: #fff;
  padding: 5px;
}
.materials .perfscan hr {
  border: solid #999;
  border-width: 1px 0 0 0;
  max-width: 50%;
  margin: 0 auto 20px;
}
.materials .perfscan a {
  color: #000;
  font-weight: bold;
}
@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
    transform: translateX(calc(-100% - 20px));
  }
}
@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
    transform: translateX(calc(-100% - 20px));
  }
}

@media (max-width: 991px) {
  .materials__list {
    max-width: 300px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0px;
  }
}
@media (max-width: 576px) {
  .materials {
    padding-bottom: 0px;
  }
  .materials__title {
    padding: 30px 0px 30px 0px;
    font-size: 30px;
  }
  .materials__percent {
    text-align: center;
    font-size: 40px;
  }
  .materials__descr {
    font-size: 20px;
    max-width: none;
  }
  .materials__text {
    text-align: center;
    font-size: 20px;
  }
  .item {
    width: 200px !important;
    height: 50px;
  }
}
.contacts__container {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(15, 15, 14, 0.6);
}
.contacts__left {
  padding: 100px 10px 10px 50px;
  width: 100%;
  max-width: 500px;
}
.contacts__title {
  margin: 0 0 30px 0;
  font-family: Oswald;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -2%;
  color: #fff;
}
.contacts__phone {
  display: block;
  font-family: Oswald;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -2%;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contacts__phone:hover {
  color: rgba(15, 15, 14, 0.8980392157);
}
.contacts__worktime {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.contacts__worktime-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.contacts__worktime-title {
  font-family: Oswald;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
.contacts__worktime-hours {
  font-family: Oswald;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-icon {
  font-size: 28px;
  color: rgba(15, 15, 14, 0.8980392157);
  margin-top: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.requisites {
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.requisites__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.requisites__header:hover {
  background: rgba(255, 255, 255, 0.15);
}
.requisites__icon {
  font-size: 24px;
  color: rgba(15, 15, 14, 0.8980392157);
}
.requisites__title {
  margin: 0;
  font-family: Oswald;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.requisites__arrow {
  font-size: 20px;
  color: rgba(15, 15, 14, 0.8980392157);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.requisites__content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.requisites__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 10px;
}
.requisites__item:last-child {
  border-bottom: none;
}
.requisites__item strong {
  font-family: Oswald;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
.requisites__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-family: Oswald;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  min-width: 140px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.requisites__label .material-icons {
  padding-top: 5px;
  font-size: 18px;
  color: rgba(15, 15, 14, 0.8980392157);
  opacity: 0.8;
}
.requisites__value {
  font-family: Oswald;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  word-break: break-word;
}
.requisites.active .requisites__content {
  max-height: 500px;
  padding: 20px;
}
.requisites.active .requisites__arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (max-width: 1024px) {
  .contacts__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .contacts__left {
    padding: 50px 20px;
    max-width: none;
  }
  .contacts__map {
    width: 100%;
    height: 400px;
  }
  .requisites {
    margin-top: 30px;
  }
  .requisites__label {
    min-width: 120px;
  }
}
@media (max-width: 576px) {
  .contacts__title {
    font-size: 30px;
  }
  .contacts__phone {
    font-size: 20px;
  }
  .contacts__map {
    width: 100%;
    height: 250px;
  }
  .contact-item {
    gap: 12px;
  }
  .contact-icon {
    font-size: 24px;
  }
  .requisites__header {
    padding: 15px;
  }
  .requisites__title {
    font-size: 18px;
  }
  .requisites__label,
  .requisites__value {
    font-size: 14px;
  }
  .requisites__label {
    min-width: 110px;
    gap: 6px;
  }
  .requisites__label .material-icons {
    font-size: 16px;
  }
  .contacts__worktime-title {
    font-size: 16px;
  }
  .contacts__worktime-hours {
    font-size: 14px;
  }
}
.gallery-roof .slider-img {
  width: 380px;
  height: 280px;
  border-radius: 14px;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
.gallery-roof .slider {
  margin: 0 auto;
  width: 1160px;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.gallery-roof .slider-slide {
  border: none !important;
}
.gallery-roof .swiper-pagination-bullet {
  background-color: #A80D0F;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .slider {
    width: 800px !important;
  }
}
@media (max-width: 800px) {
  .slider {
    margin: 0 auto !important;
    width: 400px !important;
    height: 355px !important;
  }
  .slider-slide {
    border: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 400px !important;
  }
  .slider-img {
    width: 400px !important;
  }
}
@media (max-width: 430px) {
  .slider {
    width: 350px !important;
    height: 345px !important;
  }
  .slider-img {
    width: 350px !important;
  }
  .slider-slide {
    border: none !important;
    width: 350px !important;
  }
}
.footer__container {
  background: rgba(15, 15, 14, 0.8980392157);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0px;
}
.footer__logo {
  width: 100px;
  height: 120px;
}
.footer__btn {
  width: 260px;
  height: 59px;
  background: #D34342;
  border-radius: 15px;
  font-family: Oswald;
  font-weight: 500;
  font-size: 25px;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 21px;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.footer__btn:hover {
  color: #0F0F0E;
  background-color: #fff;
}
.footer__link {
  margin: 0;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
}
.footer__adress {
  font-family: Commissioner;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.footer__adress:hover {
  color: #D34342;
}
.footer__link-title {
  font-family: Commissioner;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
}
.footer__phone {
  color: #fff;
  font-family: Rubik;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.footer__phone:hover {
  color: #D34342;
}
.footer__text {
  display: block;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
.footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

@media (max-width: 576px) {
  .footer__container {
    padding-bottom: 50px;
  }
}/*# sourceMappingURL=main.css.map */
