@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font: 16px/1.5 "Montserrat";
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #000;
}

.about {
  margin-top: 100px;
  margin-bottom: 100px;
}

.about__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about__item {
  padding: 20px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  margin: 20px;
  border-radius: 20px;
  text-align: center;
  font-weight: normal;
  width: 30%;
}

.about__item-img {
  text-align: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.buy {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.buy-box {
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 30%;
  text-align: center;
}

.buy-box__img {
  width: 200px;
  height: 200px;
  margin: 30px 0;
}

.buy-box__text {
  background: #156CEC;
  padding: 30px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #fff;
}

.contact-page__form {
  width: 40vw;
  margin: 0 auto;
  margin-bottom: 50px;
}

.contact-page__map {
  height: 500px;
  margin-bottom: 50px;
}

.main-page {
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  text-align: center;
  color: #fff;
}

.main-page__content {
  margin-top: 150px;
}

.main-page__title {
  margin-bottom: 50px;
  font-size: 8rem;
}

.main-page__text {
  font-size: 2rem;
}

.first-page {
  background: url("../img/first-page.png") center/cover;
}

.second-page {
  background: url("../img/second-page.png") center/cover;
}

.slider-container {
  max-width: 100vw;
  width: 100%;
  overflow: hidden;
}

.footer {
  background: #F0F4F8;
  color: #000;
  text-align: center;
  padding: 50px 0;
}

.mobile-footer {
  display: none;
}

.header-top {
  background: -webkit-gradient(linear, left top, right top, from(#1D5CB4), to(#156CEC));
  background: -o-linear-gradient(left, #1D5CB4 0%, #156CEC 100%);
  background: linear-gradient(90deg, #1D5CB4 0%, #156CEC 100%);
  color: #fff;
  padding: 15px;
  text-transform: uppercase;
}

.header-top__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-top a {
  color: #fff;
}

.header-bottom {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-bottom__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
}

.header-bottom__items-item + .header-bottom__items-item {
  margin-left: 15px;
}

.header-bottom__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ccc;
  color: #272727;
  border-radius: 10px;
  padding: 20px;
  font-size: 0.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-bottom__item-title {
  margin-bottom: 10px;
}

.header-bottom__item-text {
  font-weight: bold;
}

.header-bottom__item-img {
  background: #F0F4F8;
  margin-right: 20px;
  border-radius: 10px;
  padding: 10px;
}

.header-bottom__item + .header-bottom__item {
  margin-left: 15px;
}

.header-bottom__logo-img {
  width: 200px;
}

.menu-btn {
  display: none;
}

.product {
  margin-top: 100px;
}

.product__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product__item {
  padding: 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 15px;
  text-align: center;
  width: 50%;
  height: 50%;
  margin-bottom: 30px;
}

.product__item-photo {
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
}

.product__item:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  border: none;
}

.product__item + .product__item {
  margin-left: 10px;
}

.product__item-image {
  height: 100%;
}

.product__item-title {
  margin-bottom: 10px;
}

.product__item-text {
  text-transform: uppercase;
  font-size: 0.7rem;
}

.promo {
  background: #F0F4F8;
  margin-top: 100px;
  padding: 100px;
}

.promo__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.promo__content h2 {
  margin-right: 50px;
  color: #1D5CB4;
}

.single-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.single-product__photo {
  background: -o-linear-gradient(315deg, #FA6161 0%, #871414 100%);
  background: linear-gradient(135deg, #FA6161 0%, #871414 100%);
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  height: 300px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-product__photo img {
  width: 100%;
}

.single-product__content {
  width: 50vw;
}

.single-product__content-titles {
  margin-bottom: 20px;
}

.single-product__content-text {
  margin-bottom: 15px;
}

.poliestr-photo {
  height: 260px;
}

.slider {
  width: 50vw;
  margin: 0 auto;
}

.production-slider {
  width: 50vw;
  margin: 0 auto;
}

.single-item__div-1 {
  background: url("../img/production-1.jpg") no-repeat center/cover;
  height: 60vh;
}

.single-item__div-2 {
  background: url("../img/production-2.jpg") no-repeat center/cover;
  height: 60vh;
}

.single-item__div-3 {
  background: url("../img/production-3.jpg") no-repeat center/cover;
  height: 60vh;
}

.single-item__img {
  width: 100%;
}

.main {
  width: 100vw;
}

h2 {
  font-size: 2rem;
}

.title {
  margin: 50px 0;
  text-align: center;
}

.btn {
  background: -webkit-gradient(linear, left top, right top, from(#1D5CB4), to(#156CEC));
  background: -o-linear-gradient(left, #1D5CB4 0%, #156CEC 100%);
  background: linear-gradient(90deg, #1D5CB4 0%, #156CEC 100%);
  color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 18px;
}

.btn:hover {
  background: #003988;
}

@supports (-webkit-appearance:none) {
  .first-page {
    background-image: url("../img/first-page.webp");
  }

  .second-page {
    background-image: url("../img/second-page.webp");
  }

  .single-item__div-1 {
    background-image: url("../img/production-1.webp");
  }

  .single-item__div-2 {
    background-image: url("../img/production-2.webp");
  }

  .single-item__div-3 {
    background-image: url("../img/production-3.webp");
  }
}

@media (max-width: 1120px) {
  .product__items {
    width: 50%;
    display: block;
    margin: 0 auto;
  }

  .product__item {
    width: 100%;
    margin-bottom: 25px;
  }

  .product__item + .product__item {
    margin-left: 0px;
  }

@supports (-webkit-appearance:none) {

}
}

@media (max-width: 1110px) {
  .about__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 50%;
    margin: 0 auto;
  }

  .about__item {
    width: 100%;
    margin-bottom: 50px;
  }

@supports (-webkit-appearance:none) {

}
}

@media (max-width: 1040px) {
  .header-bottom__item-img {
    display: none;
  }

@supports (-webkit-appearance:none) {

}
}

@media (max-width: 992px) {
  .promo {
    padding: 50px;
  }

  .promo__content {
    display: block;
    text-align: center;
  }

  .promo__content-text {
    margin-bottom: 50px;
  }

  .promo__content h2 {
    margin-right: 0px;
  }

@supports (-webkit-appearance:none) {

}
}

@media (max-width: 965px) {
  .buy {
    display: block;
  }

  .buy-box {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .header-bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-bottom__item {
    padding: 10px;
  }

  .header-bottom__logo-img {
    width: 100px;
  }

  .single-product {
    display: block;
    margin: 0 auto;
    width: 50%;
  }

  .single-product__photo {
    margin: 0 auto;
  }

  .single-product__text {
    width: 100%;
  }

@supports (-webkit-appearance:none) {

}
}

@media (max-width: 576px) {
  .about__items {
    width: 80%;
  }

  .buy-box {
    width: 90%;
  }

  .contact-page__form {
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 25px;
  }

  .contact-page__map {
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 25px;
  }

  .main-page__title {
    font-size: 3rem;
  }

  .main-page__text {
    font-size: 1.6rem;
  }

  .footer {
    font-size: 12px;
  }

  .footer-item {
    margin-bottom: 20px;
  }

  .mobile-footer {
    display: block;
  }

  .header {
    background: -webkit-gradient(linear, left top, right top, from(#1D5CB4), to(#156CEC));
    background: -o-linear-gradient(left, #1D5CB4 0%, #156CEC 100%);
    background: linear-gradient(90deg, #1D5CB4 0%, #156CEC 100%);
    margin-bottom: 50px;
  }

  .header-top {
    background: #fff;
    padding: 0 15px 15px;
  }

  .header-top__nav-items {
    display: none;
  }

  .index {
    margin-bottom: 0px;
  }

  .menu.active {
    background: -webkit-gradient(linear, left top, right top, from(#1D5CB4), to(#156CEC));
    background: -o-linear-gradient(left, #1D5CB4 0%, #156CEC 100%);
    background: linear-gradient(90deg, #1D5CB4 0%, #156CEC 100%);
  }

  .menu.active .header-top__nav-items {
    display: block;
    text-align: center;
  }

  .menu.active .header-top__nav-item {
    margin-bottom: 20px;
    color: #fff;
  }

  .menu.active .header-top__nav-item a {
    color: #fff;
  }

  /* Гамбургер иконка */

  .menu-btn {
    display: block;
    width: 30px;
    height: 50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-left: 90vw;
  }

  .menu-btn span {
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .menu-btn span:nth-of-type(2) {
    top: calc(50% - 7px);
  }

  .menu-btn span:nth-of-type(3) {
    top: calc(50% + 7px);
  }

  /* Меняем гамбургер иконку, когда меню открыто */

  .menu-btn.active span:nth-of-type(1) {
    display: none;
  }

  .menu-btn.active span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -ms-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
  }

  .menu-btn.active span:nth-of-type(3) {
    top: 50%;
    -webkit-transform: translate(-50%, 0%) rotate(-45deg);
    -ms-transform: translate(-50%, 0%) rotate(-45deg);
    transform: translate(-50%, 0%) rotate(-45deg);
  }

  .header-bottom__items {
    display: block;
  }

  .header-bottom__item + .header-bottom__item {
    margin-left: 0px;
  }

  .header-bottom__item {
    border: none;
    padding: 5px;
  }

  .header-bottom__item-title {
    margin-bottom: 3px;
  }

  .header-bottom__logo-img {
    width: 150px;
  }

  .adress {
    display: none;
  }

  .product__items {
    width: 90%;
  }

  .promo {
    padding: 20px;
  }

  .promo h2 {
    font-size: 23px;
  }

  .single-product {
    width: 100%;
  }

  .single-product__photo {
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .single-product__content {
    width: 100%;
  }

  .single-product__content-titles {
    margin-bottom: 30px;
    text-align: center;
  }

  .single-product__content-text {
    margin-bottom: 15px;
  }

  .production-slider {
    width: 90vw;
  }

@supports (-webkit-appearance:none) {

}
}