body {
  font-family: sans-serif;
  /* font-family: 'Montserrat', sans-serif; was before */
  font-weight: 500;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.header__top {
  /* padding: 15px 0; */
  background: #FFF;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header__top-wrap {
  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__top-wrap .logo {
  width: 250px;
}
.header__top-wrap .logo img{
  height: 77px;
}

.header__top-wrap .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* width: 55%; */
}

.contacts__loc{
  padding-right: 60px;
  margin-top: 5px;
}

.contacts__loc a{
  font-size: 18px;
  color: #013157;
}

.contacts__loc img{
  width: 24px;
  filter: grayscale(100%);
  margin-right: 9px;
}

.header__top-wrap .contacts .contacts-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 40px;
  position: relative;
}

.header__top-wrap .contacts .contacts-phone a {
  display: inline-block;
  /* color: #013157; */
  color: #013157;

  text-decoration: none;
  font-size: 32px;
}

.header__top-wrap .contacts .contacts-phone a:hover {
  /* color: #161616; */
  color: #ff5b00;

  text-decoration: none;
}

.header__top-wrap .contacts .contacts-phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: url(../img/phone.svg) no-repeat;
}

.header__top-wrap .contacts .contacts-email a {
  display: inline-block;
  color: #161616;
  text-decoration: none;
  padding-left: 40px;
}

.header__top-wrap .contacts .contacts-email a:hover {
  color: #161616;
  text-decoration: none;
}

.header__top-wrap .contacts .contacts-service a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  background: #0075FF;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 11px 10px;
}

.header__top-wrap .contacts .contacts-service a:hover {
  color: #FFFFFF;
}

.header__top-wrap .contacts .contacts-feetback a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  background: #161616;
  border-radius: 8px;
  color: #FFFFFF;
  padding: 11px 12px;
}

.header__top-wrap .contacts .contacts-feetback a:hover {
  color: #FFFFFF;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 100;
  background: #161616;
  padding: 20px 0;
  margin-top: 88px;
  display: none;
}

.header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-wrap .catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: #0075FF;
  border-radius: 8px;
  padding: 0px 26px;
  margin-right: 20px;
}

.header__nav-wrap .catalog .catalog-btn {
  margin-right: 10px;
}

.header__nav-wrap .catalog .catalog-btn span {
  display: block;
  height: 2px;
  width: 17px;
  background-color: #fff;
  margin-bottom: 5px;
}

.header__nav-wrap .catalog .catalog-btn span:nth-child(3) {
  margin-bottom: 0;
}

.header__nav-wrap .catalog .catalog-name {
  padding: 10px 0;
  cursor: pointer;
}

.header__nav-wrap .catalog .catalog-name li span {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.header__nav-wrap .catalog .catalog-name:hover .catalog-list {
  display: block;
}

.header__nav-wrap .catalog .catalog-name .catalog-list {
  position: absolute;
  width: 100%;
  top: 44px;
  left: 0;
  background: #0075FF;
  padding: 20px;
  border-radius: 8px;
  display: none;
}

.header__nav-wrap .catalog .catalog-name .catalog-list li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.header__nav-menu {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__menu-item {
  padding: 0 30px;
}

.header__menu-link {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  width: 100%;
}

.header__menu-link:hover {
  text-decoration: none;
  color: #fff;
}

.header__close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.header__close span {
  display: block;
  height: 3px;
  width: 30px;
  background-color: #ffffff;
  margin-bottom: 5px;
}

.header__close span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
          transform: translateY(7px) rotate(-45deg);
}

.header__close span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__promo {
  background: black;
  /* background: #161616; */
  height: 530px;
}

.header__promo-title {
  font-size: 80px;
  line-height: 72px;
  text-align: center;
  color: #0075FF;
  font-weight: 700;
  padding: 132px 0 0 0;
}

.header__promo-subtitle {
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  padding-bottom: 40px;
}

.header__promo-descr {
  text-align: center;
  font-size: 20px;
  color: #fff;
  line-height: 24px;
  padding: 60px 0 40px 0;
  font-weight: 500;
}

.header__promo-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header__promo-img .item-img {
  width: 32%;
  height: 280px;
}

.header__promo-img .item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catalog {
  padding: 250px 0 100px 0;
  background: black;
  /* background: #202020; */
}

.catalog__title {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 70px;
}

.catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          align-items: center;
  margin-bottom: 45px;
  line-height: 1.3;
}

.catalog__item:last-child {
  margin-bottom: 0;
}

.catalog__item-img {
  width: 43%;
}

.catalog__item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catalog__item-img.item-img-big img {
  width: 123%;
}

.catalog__item-line {
  margin-top: 40px;
}

.catalog__item-line span {
  display: block;
  width: 100px;
  height: 1px;
  background: #fff;
}

.catalog__item-info {
  width: 43%;
}

.catalog__item-info .info-title {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  padding: 20px 0;
  line-height: 28px;
}

.catalog__item-info .info-descr {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.catalog__item-info .info-descr {
  padding-left: 20px;
}

.more {
  padding: 20px 0;
}

.more__title {
  font-size: 50px;
  font-weight: 600;
  color: #202020;
  text-align: center;
}

.more__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.more__item {
  width: 25%;
  height: 330px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.more__item-img {
  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;
  height: 80%;
}

.more__item-img img {
  width: 100%;
}
.more__item-img-spec1 img {
  width: 79%;
}
.more__item-img-spec2 img {
  width: 150%;
}

.more__item-descr {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  color: #415170;
  height: 20%;
  position: relative;
  text-align: center;
}

/* .more__item-descr::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 1px;
  background: #000000;
  top: 15px;
  left: -120px;
} */
.row{
  align-items: flex-end;
}
.feetback {
  padding: 100px 0;
  background: #202020;
}

.feetback h1 {
  color: rgba(255, 255, 255, 0.8);
}

.feetback p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.feetback__title {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 70px;
  line-height: 60px;
}

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

.feetback__box-info {
  width: 60%;
  font-size: 20px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.feetback__box-phone, .feetback__box a {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

.feetback__box a {
  text-decoration: none;
}

.works {
  padding: 40px 0 10px;
}

.works__title {
  font-size: 50px;
  font-weight: 600;
  color: #161616;
  padding-bottom: 70px;
  text-align: center;
}

.works__item {
  width: calc(100% - 10px);
}

.works__item img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
  color: #0075FF;
  font-size: 25px;
}

.about {
  background: #202020;
  padding: 20px 0;
}

.about__title {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 33px;
}

.about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__doc {
  width: 40%;
}

.about__doc img {
  width: 339px;
}

.about__info {
  /* width: 60%; */
}

.about__info p {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
}

.about__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 55px;
}

.about__info-list .about-item {
  width: 33.33%;
}

.about__info-list .about-item .about-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__info-list .about-item .about-item-descr {
  color: #fff;
  text-align: center;
  padding: 30px  20px 0 20px;
}

.footer {
  padding: 0px 0;
  background: #202020;
}

.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__box-left {
  width: 33%;
}

.footer__box-left .logo {
  width: 250px;
}

.footer__box-left .logo img {
  width: 100%;
}

.footer__box-left .copyright {
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  padding: 20px 0 16px 0;
}

.footer__box-left .text a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__box-nav {
  width: 25%;
}

.footer__box-nav .nav-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__box-nav .nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__box-nav .nav-wrap .nav-list li {
  padding: 4px 0;
}

.footer__box-nav .nav-wrap .nav-list li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.footer__box-contacts {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer__box-contacts-items{
text-align: center;
width: 33%;
}

.footer__box-contacts .contacts-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__box-contacts .contacts-phone a,
.footer__box-contacts .contacts-email a {
  display: block;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.footer__box-contacts .contacts-adress {
  font-size: 14px;
  color: #fff;
  padding: 6px 0;
}

.footer__box-contacts .contacts-time {
  font-size: 14px;
  color: #fff;
  padding: 10px 0;
}


.cart-wrapper{
  display: flex;
  justify-content: space-between;
}
.cart{
  color: white;
    display: flex;
    flex-direction: column;
    width: 25%;
    align-items: center;
    margin-bottom: 35px;
}
.cart img{
  margin-bottom: 25px;
}

.cart-title{
  font-weight: 700;
    font-size: 18px;
    margin-bottom: 0px;
}

.btn-consultation{
  width: 385px;
  height: 50px;
  background-color: #ff6a00;
  border-radius: 23px;
  position: relative;
  text-align: center;
  color: white;
  font-weight: 800;
  /* padding: 11px; */
  font-size: 21px;
  text-transform: uppercase;
  margin: 33px auto -28px;
  cursor: pointer;
  display: flex;
}
.btn-consultation:hover{
  background-color: #bc4e00;

}

.btn-consultation a{
  padding: 11px 40px;
  color: white;
  text-decoration: none;
}


@media screen and (max-width: 1200px) {
  /* .header__top-wrap .contacts { */
    /* width: 70%; */
  /* } */
  .header__menu-item {
    padding: 0 15px;
  }
  .header__nav-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__promo-title {
    font-size: 72px;
  }
}

@media screen and (max-width: 992px) {
  .header__nav-menu {
    position: absolute;
    top: 84px;
    left: -100%;
    width: 100%;
    height: 50vh;
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
    background: #202020;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    z-index: 1000;
  }
  .header__nav-menu li {
    width: 100%;
    border-bottom: 1px solid #000000;
  }
  .header__menu-item {
    height: calc(50vh  / 5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__menu-link {
    padding-left: 15px;
  }
  .header__menu-link:hover:after {
    width: 0%;
  }
  .header .top_active {
    left: 0;
  }
  .header__hamburger {
    display: block;
    z-index: 1100;
    cursor: pointer;
    width: 50px;
  }
  .header__hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #fff;
    margin-bottom: 9px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .header__hamburger span:nth-child(2) {
    width: 75%;
    margin-left: 25%;
  }
  .header__hamburger span:nth-child(3) {
    margin-bottom: 0;
  }
  .hamburger_active span {
    margin-bottom: -2px;
  }
  .hamburger_active span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
    width: 100%;
  }
  .hamburger_active span:nth-child(2) {
    display: none;
  }
  .hamburger_active span:nth-child(3) {
    -webkit-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
  }
  .header__promo {
    height: auto;
    /* padding-bottom: 45px; */
  }
  .header__top-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header__top-wrap .contacts {
    width: 100%;
  }
  .header__top {
    padding: 0px 0;
    position: static;
  }
  .header__nav {
    margin-top: 0;
  }
  /* .header__top-wrap .logo {
  } */
  .catalog__title,
  .more__title,
  .feetback__title,
  .works__title,
  .about__title {
    font-size: 40px;
  }
  .feetback__title {
    line-height: 40px;
  }
  .catalog,
  .more,
  .feetback,
  .works,
  .about {
    padding: 20px 0;
  }
  .catalog__item-info .info-title {
    font-size: 20px;
  }
  .catalog__item-line span {
    width: 70px;
  }
  .catalog__item-info .info-descr {
    font-size: 18px;
  }
  /* .catalog__item { */
    /* margin-bottom: 70px; */
  /* } */
  .more__item {
    width: 43%;
    height: auto;
  }
  .more__item-descr::before {
    display: none;
  }
  .more__item-descr {
    font-size: 22px;
    text-align: center;
  }
  .more__item-descr br {
    display: none;
  }
  .more__item-img img {
    width: 100%;
  }
  .about__doc img {
    width: 100%;
  }
  .about__info {
    padding-left: 10px;
  }
  .about__info p {
    font-size: 16px;
    line-height: 18px;
  }
  .about__doc {
    width: 30%;
  }
  .about__info {
    width: 70%;
  }
  .about__info-list .about-item .about-item-descr {
    padding: 10px 0;
    line-height: 18px;
  }
  .footer__box-left,
  .footer__box-nav,
  .footer__box-contacts {
    width: 50%;
  }
  .footer {
    padding: 0px 0;
  }
  .footer__box-contacts {
    padding-left: 0;
    padding-top: 0px;
  }
  .header__top-wrap .contacts .contacts-phone a {
    font-size: 21px;
  }
}

@media screen and (max-width: 768px) {
  .header__top-wrap .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__top-wrap .contacts .contacts-service {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .header__promo-title {
    padding-top: 20px;
    font-size: 60px;
  }
  .header__promo-subtitle {
    font-size: 40px;
    padding-bottom: 20px;
  }
  .header__promo-img .item-img {
    width: 48%;
    margin-bottom: 10px;
  }
  .catalog__item-line {
    display: none;
  }
  .catalog__item-img,
  .catalog__item-info {
    width: 45%;
  }
  .catalog__title,
  .more__title,
  .feetback__title,
  .works__title,
  .about__title {
    font-size: 32px;
  }
  .more__item-descr,
  .catalog__item-info .info-title {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
  }
  .feetback__box-phone {
    font-size: 22px;
  }
  .feetback__box-info {
    font-size: 16px;
  }
  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__info {
    width: 100%;
    padding: 10px 0 0 0;
  }
  .about__doc {
    width: 50%;
  }
  .footer__box-left,
  .footer__box-nav,
  .footer__box-contacts {
    width: 100%;
  }
  .footer__box-nav {
    padding-top: 40px;
  }
  .works__map iframe {
    height: 400px;
  }
  .catalog__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .catalog__item-img.item-img-big img {
    width: 100%;
  }
  .catalog__item-img {
    width: 100%;
  }
  .catalog__item-info {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {

  .btn-consultation{
    margin: 24px auto 0px;
  }
  .header__top-wrap .logo img{
    height: 66px;
  }
  .cart-wrapper{
    display: flex;
    justify-content: space-between;
  }
  .cart{
    color: white;
      display: flex;
      flex-direction: column;
      width: 33%;
      align-items: center;
      margin-bottom: 35px;
  }
  .cart img{
    margin-bottom: 25px;
    width: 95%;
  }
  
  .cart-title{
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0px;
    text-align: center;
  }
  .cart-subtitle{
    text-align: center;
  }


  .more{
    display: none;
  }
  .contacts__loc{
    display: none;
  }
  .btn-wrp{
    margin-top: 35px;
    display: flex;
    justify-content: space-around;
  }
  .catalog__item-mob-reverse{
    flex-direction: column-reverse;
  }
  .header__nav {
    position: fixed;
    top: 0;
    width: 100%;
  }
  .header__promo-title {
    font-size: 56px;
    line-height: 56px;
  }
  .header__promo-subtitle {
    font-size: 36px;
    line-height: 36px;
  }
  .header__promo-descr {
    padding: 30px 0;
  }
  .feetback__box-phone,
  .feetback__box-phone a {
    font-size: 20px;
  }

  .footer__box-contacts-items{
    width: auto;
    }

    .footer__box-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
}

@media screen and (max-width: 480px) {
  .header__promo-img-mob{
    display: none;
  }
  .header__promo-title {
    font-size: 37px;
    line-height: 46px;
  }
  .header__promo-subtitle {
    font-size: 28px;
  }
  .header__promo-img .item-img {
    width: 100%;
  }
  .catalog__item-info .info-descr {
    font-size: 16px;
  }
  .catalog__title,
  .more__title,
  .feetback__title,
  .works__title,
  .about__title {
    font-size: 30px;
    line-height: 30px;
  }
  .more__item {
    width: 100%;
  }
  .more__item-descr {
    height: auto;
    padding: 20px 0;
  }
  .feetback__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .feetback__box-info {
    width: 100%;
  }
  .feetback__title {
    padding-bottom: 40px;
  }
  .about__info-list .about-item .about-item-descr {
    font-size: 14px;
  }

  .btn-consultation{
    width: auto;
  }
  .btn-consultation a {
    font-size: 18px;
}
}

@media screen and (max-width: 360px) {
  .header__promo-title {
    font-size: 40px;
    line-height: 40px;
  }
  .header__promo-subtitle {
    font-size: 30px;
  }
  .catalog__title,
  .more__title,
  .feetback__title,
  .works__title,
  .about__title {
    font-size: 28px;
  }
}

@media screen and (max-width: 320px) {
  .about__info-list .about-item .about-item-descr {
    font-size: 13px;
  }
}
/*# sourceMappingURL=style.css.map */