@charset "UTF-8";
:root {
  --color-black: #1B1B1B;
  --color-blue: #46B8F5;
  --color-yellow: #FFB800;
}

.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;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background: linear-gradient(107.36deg, #F9F7FD 8.08%, #F3F5FB 103.77%);
  min-height: 100vh;
  height: 100%;
  color: #000;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
}

.wrapper {
  margin-top: 17px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1279px) {
  .wrapper {
    margin-bottom: 50px;
  }
}

.is-hidden {
  display: none !important;
}

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

.btn__link {
  background-color: rgba(70, 184, 245, 0.06);
  color: var(--color-blue);
  padding: 7px 17px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  letter-spacing: 1px;
}
.btn__link:hover, .btn__link:focus, .btn__link:active {
  background-color: var(--color-blue);
  color: #fff;
}

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

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1170px;
  width: 100%;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.header {
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 15px 0;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__form {
  display: flex;
  flex-direction: column;
  /*&-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;

    &+label {
      display: inline-flex;
      align-items: center;
      user-select: none;
      font-size: 13px;
      line-height: 33px;
      color: rgba(0, 0, 0, 0.7);

      &::before {
        content: '';
        display: inline-block;
        width: 19px;
        height: 19px;
        flex-shrink: 0;
        flex-grow: 0;
        border: 1px solid rgba(0, 0, 0, 0.2);
        margin-right: 14px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 50% 50%;
      }
    }

    &:checked+label {
      &::before {
        background: url(../../img/checkox_cheked.svg);
        background-size: 9px 9px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
      }
    }
  }*/
}
.header__form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.header__form-label {
  font-size: 16px;
  line-height: 33px;
}
.header__form-input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 10px;
  height: 46px;
  line-height: 46px;
  font-size: 14px;
  max-width: 418px;
}
.header__form-licenzeblock {
  margin-top: 11px;
}
.header__form .btn__link {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.main__menu {
  display: flex;
}
.main__menu-item:not(:last-child) {
  margin-right: 42px;
}
.main__menu-link {
  color: #414757;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.main__menu-link:hover, .main__menu-link:focus {
  color: var(--color-blue);
  transition: all 0.2s;
  text-decoration: underline;
}
.main__menu-adaptive {
  background-image: url(../img/burger__menu.svg);
  width: 17px;
  height: 27px;
  display: block;
}
@media screen and (min-width: 768px) {
  .main__menu-adaptive {
    display: none;
  }
}

.logo {
  background-image: url(../img/main_logo.svg);
  width: 124px;
  height: 49px;
  display: block;
}

.header__form-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.header__form-checkbox + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header__form-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.header__form-checkbox:checked + label::before {
  background: url(../img/checkox_cheked.svg);
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

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

.field__checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.field__checkbox span {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 13px;
}

.field__checkbox span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.field__checkbox input:checked + span::before {
  background: url(../img/checkox_cheked.svg);
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.header__form-field .field__item:last-child .field__title {
  display: none;
}

.header__form .submit {
  margin-bottom: -24px;
}

.footer {
  background-color: #FAFBFF;
  padding: 31px 0;
  margin-top: auto;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .footer .container {
    flex-direction: column;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  text-align: right;
  padding-top: 25px;
}
@media screen and (max-width: 1279px) {
  .footer__info {
    text-align: left;
  }
}
.footer__info-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
.footer__info-text:not(:last-child) {
  margin-bottom: 17px;
}
@media screen and (max-width: 1279px) {
  .footer__info-text {
    font-size: 12px;
  }
  .footer__info-text:not(:last-child) {
    margin-bottom: 10px;
  }
}
.footer__menu {
  padding-top: 10px;
}
.footer .main__menu-item:not(:last-child) {
  margin-right: 40px;
}

.catalog__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .catalog__list {
    justify-content: space-evenly;
  }
}
@media screen and (max-width: 767px) {
  .catalog__list {
    align-items: center;
    flex-direction: column;
  }
}
.catalog__item {
  max-width: 335px;
  margin-bottom: 35px;
}
@media screen and (min-width: 1280px) {
  .catalog__item {
    margin-bottom: 52px;
  }
  .catalog__item:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
.catalog__img {
  max-width: 335px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.catalog__subtitle {
  font-size: 18px;
  line-height: 31px;
  font-weight: 500;
  color: var(--color-black);
  margin-top: 29px;
  margin-bottom: 0;
  padding: 0 15px;
  text-align: center;
  max-height: 93px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1439px) {
  .catalog__subtitle {
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
    max-height: 80px;
  }
}

.brands__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .brands__list {
    justify-content: space-evenly;
  }
}
@media screen and (max-width: 767px) {
  .brands__list {
    align-items: center;
    flex-direction: column;
  }
}
.brands__item {
  max-width: 500px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1280px) {
  .brands__item {
    margin-bottom: 99px;
  }
  .brands__item:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
.brands__img {
  max-width: 500px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news__block {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .news__block {
    flex-direction: column;
    align-items: center;
  }
}
.news__block-category:not(:last-child) {
  margin-bottom: 33px;
}
.news__block-link {
  padding: 7px 17px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: auto;
  letter-spacing: 1px;
  margin-left: -15px;
}
@media screen and (max-width: 1279px) {
  .news__block-link {
    margin: 20px 0 0;
  }
}
.news__block-img {
  max-width: 350px;
  max-height: 324px;
  flex-shrink: 0;
  width: 100%;
  margin-right: 36px;
}
@media screen and (max-width: 1279px) {
  .news__block-img {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.news__block-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news__block-info {
  background-color: #fff;
  padding: 35px 57px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1279px) {
  .news__block-info {
    padding: 20px;
    padding-bottom: 50px;
  }
}
.news__block-info--category {
  min-height: auto;
}
.news__block-info--main {
  min-height: auto;
  background-color: #F4F5FB;
}
.news__block-info--main .btn__link {
  margin-top: 20px;
}
.news__block-title {
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 37px;
  color: #000;
}
@media screen and (max-width: 1279px) {
  .news__block-title {
    font-size: 16px;
    line-height: 30px;
  }
}
.news__block-date {
  font-size: 14px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(0, 0, 0, 0.5);
}
.news__block-text p {
  font-size: 16px;
  line-height: 33px;
  margin: 0;
}
.news__block-text p:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 1279px) {
  .news__block-text p {
    font-size: 15px;
    line-height: 28px;
  }
}

h1 {
  font-size: 21px;
  line-height: 54.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 48px 0;
}
h1 span {
  color: var(--color-yellow);
}

.main__page {
  background: #fff;
}

.navigation__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.navigation__block-title {
  font-size: 21px;
  line-height: 54.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.main__header {
  background-image: url(../img/header__bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  min-height: 666px;
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 1279px) {
  .main__header {
    min-height: 500px;
    background-position: 60% 50%;
  }
}
.main__header-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 48.5px;
  letter-spacing: 6px;
  margin-bottom: 42px;
  text-transform: uppercase;
}
@media screen and (max-width: 1279px) {
  .main__header-title {
    font-size: 43px;
    letter-spacing: 3px;
    line-height: 50px;
    margin-bottom: 20px;
  }
}
.main__header-title span {
  color: var(--color-yellow);
}
.main__header-text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1279px) {
  .main__header-text {
    font-size: 16px;
    line-height: 24px;
  }
}
.main__header-block {
  margin-top: 155px;
}
@media screen and (max-width: 1279px) {
  .main__header-block {
    margin-top: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .main__header .btn__link {
    margin-left: -17px;
  }
}

.main__about {
  margin-bottom: 113px;
}
.main__about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .main__about .container {
    flex-direction: column;
    align-items: center;
  }
}
.main__about-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main__about-image {
  border: 1px solid #EFF9FF;
}
.main__about h1 {
  max-width: 440px;
  line-height: 45.5px;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .main__about h1 {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}
.main__about-text {
  margin: 0 0 36px 0;
  font-size: 16px;
  line-height: 33px;
  max-width: 440px;
}
@media screen and (max-width: 767px) {
  .main__about-text {
    text-align: center;
    line-height: 24px;
  }
}
.main__about .button__mobail {
  margin-top: 30px;
}

.main__catalog {
  margin-bottom: 113px;
}
.main__catalog .navigation__block {
  margin-bottom: 15px;
}

.main__brands {
  margin-bottom: 110px;
}
.main__brands-block {
  background: linear-gradient(107.36deg, #F9F7FD 8.08%, #F3F5FB 103.77%);
  padding: 40px;
  padding-bottom: 50px;
}
.main__brands-list {
  display: flex;
  justify-content: space-between;
  padding: 35px 0 55px;
}
@media screen and (max-width: 767px) {
  .main__brands-list {
    flex-direction: column;
    align-items: center;
  }
}
.main__brands-item {
  max-width: 242px;
  height: 83px;
  width: 100%;
}
.main__brands-item:not(:last-child) {
  margin-right: 33px;
}
@media screen and (max-width: 767px) {
  .main__brands-item {
    margin-right: 0;
  }
  .main__brands-item:not(:last-child) {
    margin-bottom: 15px;
    margin-right: 0;
  }
}
.main__brands-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.button__desktop {
  margin-left: -17px;
}
@media screen and (max-width: 767px) {
  .button__desktop {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .button__mobail {
    display: none;
  }
}

/*стили для наложения*/
.body-overlay {
  position: absolute;
  z-index: 10;
  height: 100%;
  width: 100%;
  min-height: 666px;
  top: 0;
  left: 0;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}
.body-overlay.menu-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s 0s, visibility 0s 0s;
}

/*Стили для адаптивного меню*/
.a-form {
  position: fixed;
  height: 100%;
  overflow: auto;
  z-index: 999;
  width: 50%;
  min-height: 666px;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: none;
  padding: 100px 150px;
  transform: translateX(100%);
  transition: transform 0.4s 0s, box-shadow 0.4s 0s;
  /*Кнопка закрыть*/
}
@media screen and (max-width: 1279px) {
  .a-form {
    padding: 6px 30px;
    width: 100%;
    min-height: 100vh;
    position: fixed;
  }
}
@media screen and (min-width: 1280px) {
  .a-form .logo {
    display: none;
  }
}
.a-form.menu-open {
  transform: translateX(0%);
}
.a-form__title {
  color: var(--color-blue);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 37px;
  letter-spacing: 1.3px;
}
@media screen and (max-width: 1279px) {
  .a-form__title span {
    display: none;
  }
}
.a-form .close-trigger {
  background-image: url(../img/close_icon.svg);
  background-size: 100% 100%;
  width: 12px;
  height: 12px;
  cursor: pointer;
  position: absolute;
  top: 26px;
  right: 26px;
}

/*стили для наложения*/
.body-overlay__menu {
  position: fixed;
  z-index: 10;
  height: 100%;
  width: 100%;
  min-height: 666px;
  top: 0;
  left: 0;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}
.body-overlay__menu.menu-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s 0s, visibility 0s 0s;
}

/*Стили для адаптивного меню*/
.adaptive {
  position: absolute;
  overflow: auto;
  z-index: 998;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  left: 0;
  top: 0;
  background: #fff;
  box-shadow: none;
  transform: translateY(-100%);
  /*Кнопка закрыть*/
}
.adaptive.menu-open {
  transform: translateY(0%);
}
.adaptive__title {
  color: var(--color-blue);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 37px;
  letter-spacing: 1.3px;
  padding: 15px 15px 0;
  margin-bottom: 54px;
}
.adaptive .close-adaptive {
  background-image: url(../img/close_icon.svg);
  background-size: 100% 100%;
  width: 14px;
  height: 14px;
  cursor: pointer;
  position: absolute;
  top: 32px;
  right: 16px;
}
.adaptive .main__menu {
  flex-direction: column;
}
.adaptive .main__menu-item {
  margin: 0;
}
.adaptive .main__menu-link {
  font-size: 16px;
  line-height: 52px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  padding: 0 30px;
  width: 100%;
  display: block;
}
.adaptive .main__menu-link--active {
  background-color: #F4FBFE;
}
.adaptive .main__menu-link--callback {
  font-weight: 700;
  color: var(--color-blue);
}

.error__field input {
  color: #C12828;
}
.error__field p.error {
  margin: 0;
  color: #C12828;
  font-size: 14px;
}
/*# sourceMappingURL=main.css.map */
