/*----глобальные стили----*/
    html, body {
      margin: 0;
      padding: 0;
    }

    html{
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body{
      font-family: 'Open Sans', sans-serif;
      background: #FFFFFF;
      min-height: 100%;
      display: grid;
      grid-template-rows: auto 1fr auto;
      position: relative;
      overflow-x: hidden;
    }

    ul,li {
      margin: 0px;
      padding: 0px;
      
    }

    h1,h2,h3,h4,p{
      margin: 0px;
      font-weight: normal;
    }

    .wrapper{
      font-family: 'Open Sans', sans-serif;
      background: #FFFFFF;
      min-height: 100%;
      display: grid !important;
      grid-template-rows: auto 1fr auto;
      position: relative;
      width: 100%;
    }

    .upper{
      text-transform: uppercase;
    }

/*----шрифты----*/

@font-face {
  font-family: "Ubuntu-700";
  src: 
    url("Ubuntu-Bold.woff2") format("woff2"),
    url("Ubuntu-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
  font-family: "Ubuntu-600";
  src: 
  url("Ubuntu-SemiBold.woff2") format("woff2"),
    url("Ubuntu-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
  font-family: "Ubuntu-500";
  src: 
    url("Ubuntu-Medium.woff2") format("woff2"),
    url("Ubuntu-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
  font-family: "Ubuntu-400";
  src: 
   url("Ubuntu-Regular.woff2") format("woff2"),
    url("Ubuntu-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
  font-family: "Ubuntu-300";
  src: 
    url("Ubuntu-Light.woff2") format("woff2"),
    url("Ubuntu-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* насколько вверх прыгает */
    }
}

/*----------!!!------------ГЛАВНАЯ СТРАНИЦА----------!!!-----------------*/

/*----------------------СТИЛИ---------------------------*/

.main__container{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.full__container{
  max-width: 8000px;
  width: 100%;
  position: relative;
}


/*----------------------ШАПКА ---------------------------*/

.header_content_uppart{
  padding-top: 15px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_content_uppart_info{
  max-width: 230px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.header_content_uppart_info h3{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  color: #000000;
  margin-bottom: 12px;
}

.header_content_uppart_info p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.625rem;
  text-decoration: none;
  color: #000000;
  margin-bottom: 12px;
}

.header_content_uppart_phone{
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.header_content_uppart_phone a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
}

.header_content_uppart_messengers{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header_content_uppart_messengers p{
   font-family: "Ubuntu-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  margin-bottom: 13px;
}

.header_content_uppart_messengers_container{
  display: flex;
  column-gap: 20px;
  align-items: center;
}


.header_content_uppart_button {
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.188rem;
  text-decoration: none;
  color: #FFFFFF;
  border: 0;
  border-radius: 50px;
  background: #ff3b3b;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  cursor: pointer;
}

.header_content_downpart{
  background: rgba(242,242,242,0.70);
}

.header_content_downpart_navmenu_list{
  display: flex;
  align-items: center;
  column-gap: 34px;
  list-style-type: none;
  justify-content: center;
  
}

.header_content_downpart_navmenu_list_item a{
  display: flex;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  text-transform: uppercase;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}

.header_content_downpart_line{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  height: 2px;
  background: #fecd57;
}






.list_item_wrap {
    position: relative;
}

.dropdown_menu {
    display: none; /* по умолчанию скрыто */
    position: absolute;
    top: 69px;
    left: -43%;
    background-color: #fff; /* цвет фона меню */
    z-index: 999999999;
    width: 258px;
    padding: 20px;
    flex-direction: column;
    row-gap: 11px;
    box-shadow: 0 0 7px 0 rgba(0,0,0,.2);

}

.dropdown_menu a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
  padding: 0;
  text-transform: inherit;
}

.list_item_wrap.hovered .dropdown_menu {
    display: flex; /* показывать при наведении */
}



.dropdown_menu::after, .dropdown_menu::before {
  content: "";
    position: absolute;
    top: -10px; /* поднимаем над меню */
    left: 20px; /* или по центру, зависит от расположения */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff; /* цвет треугольника */
    margin-left: 120px;
}

.header_content_downpart_navmenu_list > .list_item_wrap:nth-child(5) > .dropdown_menu{
  left: -109px;
}








/* Фон страницы при открытом модальном окне */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    overflow-y: scroll;
  }

  /* активное состояние для плавного появления */
  .modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* Сам модальный блок с анимацией */
  .modal {
    background-color: #fff;
    position: relative;
    max-width: 560px;
    width: 100%;
    transform: translateY(-30px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Когда показываем модальное окно, добавляем класс show */
  .modal.show {
    opacity: 1;
    transform: translateY(0);
  }

  #closeBtn_buy {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: 0;
    padding-right: 20px;
    padding-top: 20px;
    cursor: pointer;
  }

  .modal_buy{
    background: rgba(255, 255, 255, 1);
    position: absolute;
    top: 8%;
    display: flex;
    flex-direction: column;
  }

  .modal_buy_content{
    display: flex;
    flex-direction: column;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .modal_buy_content h3{
    font-family: "Ubuntu-700", sans-serif;
    font-size: 2.25rem;
    text-decoration: none;
    color: #000000;
    line-height: 1.23;
    margin-bottom: 11px;
    text-align: center;
  }

  .modal_buy_content p{
    font-family: "Ubuntu-400", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
    line-height: 1.55;
    text-align: center;
  }

  .modal_buy_form{
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    margin-top: 24px;
  }

  .modal_buy_form input{
    font-family: "Ubuntu-400", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
    line-height: 1.33;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 40px);
    outline: none;
  }

 .modal_buy_form button{
    font-family: "Ubuntu-700", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #ffffff;
    border: 0;
    background: #000000;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 5px;
    margin-bottom: 20px;
  }

.modal_title{
  max-width: 470px;
}










/*----------------------ПЕРВАЯ СЕКЦИЯ---------------------------*/

.firstsec_mainpage{
  padding-top: 100px;

}

.firstsec_mainpage_content{
  display: flex;
  column-gap: 30px;
  justify-content: space-around;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.firstsec_mainpage_content_leftpart{
  display: flex;
  flex-direction: column;
}

.firstsec_mainpage_content_leftpart p{
  padding-left: 34px;
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  margin-bottom: 20px;
}

.firstsec_mainpage_content_leftpart_title{
  display: flex;
  column-gap: 21px;
}

.firstsec_mainpage_content_leftpart_title h1{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 3.25rem;
  text-decoration: none;
  color: #000000;
  max-width: 432px;
}


.firstsec_mainpage_content_leftpart_vertline{
  height: 131px;
  background: #fecd57;
  width: 14px;
}

.firstsec_mainpage_content_rightpart{
  display: flex;
  column-gap: 20px;
  align-items: center;
}

.firstsec_mainpage_content_rightpart h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.938rem;
  text-decoration: none;
  color: #000000;
  margin-bottom: 34px;
}

.firstsec_mainpage_content_rightpart p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.188rem;
  text-decoration: none;
  color: #000000;
  margin-bottom: 25px;
  padding-left: 10px;
}

.firstsec_mainpage_content_rightpart p:last-child{
  margin-bottom: 0px;
}

.firstsec_mainpage_content_btn{
  margin: 0 auto;
  margin-top: 50px;
  max-width: 378px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fecd57;
  border-radius: 50px;
  border: 0;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
}

.firstsec_mainpage_content_promo_list{
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.firstsec_mainpage_content_promo_list_item{
  display: flex;
  flex-direction: column;
  max-width: 282px;
}

.firstsec_mainpage_content_promo_list_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.875rem;
  text-decoration: none;
  color: #000000;
}

.firstsec_mainpage_content_promo_list_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.875rem;
  text-decoration: none;
  color: #000000;
  margin-top: 10px;
}

.firstsec_mainpage_content_promo_list_item:nth-child(2) > h3:nth-child(1) {
  color: #f2ce00;
}

.firstsec_mainpage_content_promo_list_item:nth-child(2) > p:nth-child(2) {
  font-size: 1.25rem;
  line-height: 31px;
}

.firstsec_mainpage_content_promo_list_item:nth-child(3) {
  max-width: unset;
}

.firstsec_mainpage_content_promo_list_item:nth-child(3) > img:nth-child(1) {
  margin-top: -60px;
}



/*----------------------СЕКЦИЯ ПРЕИМУЩЕСТВА---------------------------*/

.advantagessec_mainpage{
  background: #fecd57;
  padding-top: 75px;
  padding-bottom: 75px;
}

.advantagessec_mainpage_content_list{
  display: flex;
  column-gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.advantagessec_mainpage_content_list_item{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.advantagessec_mainpage_content_list_item img{
  margin-bottom: 41px;
}

.advantagessec_mainpage_content_list_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.688rem;
  text-decoration: none;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
  max-width: 300px;
}

.advantagessec_mainpage_content_list_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.063rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  max-width: 320px;
}

.advantagessec_mainpage_content_list_item img{
  width: fit-content;
}


/*----------------------СЕКЦИЯ ПРОДУКЦИЯ---------------------------*/

.productionsec_mainpage{
  padding-top: 60px;

}

.productionsec_mainpage_content h3{
  margin-bottom: 80px;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
}

.productionsec_mainpage_content_list{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 90px;
}

.productionsec_mainpage_content_list_item{
  display: flex;
  flex-direction: column;
}

.productionsec_mainpage_content_list_item_header{
  display: flex;
  background: #fecd57;
  position: relative;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 25px;
  padding-right: 25px;
  justify-content: center;
  align-items: center;
  margin-bottom: 47px;
}

.productionsec_mainpage_content_list_item_header img{
  position: absolute;
  left: -30px;
  top: -3px;
}

.productionsec_mainpage_content_list_item_header a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
}

.productionsec_mainpage_content_list_item_links{
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.productionsec_mainpage_content_list_item_links a{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
}

.productionsec_mainpage_content_list_item:nth-child(3){
  max-width: 526px;
  width: 100%;
  position: relative;
  justify-content: flex-end;
  align-items: end;
}

.productionsec_mainpage_content_list_item:nth-child(3) img{
  position: absolute;
  left: -40px;
  top: 23%;
  width: fit-content;
}

.productionsec_mainpage_content_list_item_content{
  display: flex;
  column-gap: 39px;
  background: #fecd57;
  padding-left: 35px;
  padding-right: 99px;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
  padding-top: 94px;
  padding-bottom: 94px;
  max-width: 262px;
}

.productionsec_mainpage_content_list_item_content_vertline{
  width: 13px;
  height: 229px;
  background: #ffffff;
}

.productionsec_mainpage_content_list_item_content_links{
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.productionsec_mainpage_content_list_item_content_links a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  max-width: 210px;
}

.full_container_yellow{
  background: #fecd57;
}

.productionsec_mainpage_advantages{
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.productionsec_mainpage_advantages_item{
  max-width: 208px;
  width: 100%;
}

.productionsec_mainpage_advantages_item p{
  font-family: "Ubuntu-500", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  line-height: 1.55;
}

.productionsec_mainpage_cards{
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px;
  align-items: flex-start;
}

.productionsec_mainpage_cards_item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  width: 100%;
}

.productionsec_mainpage_cards_item img{
  width: fit-content;
  margin-bottom: 41px;
}

.productionsec_mainpage_cards_item h3{
  margin-bottom: 29px;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.875rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
}

.productionsec_mainpage_cards_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  text-align: center;
  max-width: 280px;
}


/*----------------------СЕКЦИЯ СХЕМА РАБОТЫ---------------------------*/

.schemesec_mainpage{
 
}

.schemesec_mainpage_content{
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 20px;
  padding-right: 20px;
}

.schemesec_mainpage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  margin-bottom: 90px;
}

.schemesec_mainpage_content_list{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.schemesec_mainpage_content_list_item{
  max-width: 260px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.schemesec_mainpage_content_list_item img{
  margin-bottom: 27px;
}

.schemesec_mainpage_content_list_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.375rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.35;
}

.schemesec_mainpage_content_list_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.938rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.55;
}

.schemesec_mainpage_content_list_item img:last-child{
  position: absolute;
  top: 50px;
  left: 76%;
}

.schemesec_mainpage_content_cards{
  margin-top: 75px;
  margin-bottom: 75px;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px;
}

.schemesec_mainpage_content_cards_item{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 360px;
  width: 100%;
}

.schemesec_mainpage_content_cards_item img{
  margin-bottom: 41px;
  width: fit-content;
}

.schemesec_mainpage_content_cards_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.875rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  line-height: 1.17;
  margin-bottom: 29px;
}

.schemesec_mainpage_content_cards_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  line-height: 1.55;
  max-width: 320px;
}


/*----------------------СЕКЦИЯ УЗНАЙТЕ СТОИМОСТЬ---------------------------*/

.getpricesec_mainpage{
  background: url(../img/getpricesec_mainpage_background.jpg);
 
  
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;

}

.getpricesec_mainpage_content{
  padding-top: 128px;
  padding-bottom: 102px;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
}

.getpricesec_mainpage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.375rem;
  text-decoration: none;
  color: #212121;
  margin-bottom: 45px;
}

.getpricesec_mainpage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.375rem;
  text-decoration: none;
  color: #afafaf;
  max-width: 720px;
  line-height: 1.55;
}

.getpricesec_mainpage_content a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0242e;
  border-radius: 50px;
  max-width: 265px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 80px;
}



/*----------------------СЕКЦИЯ НАВИГ КАРТЫ---------------------------*/

.navcardssec_mainpage_content{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 90px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 90px;
}

.navcardssec_mainpage_content_item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  width: 100%;
  text-decoration: none;
}

.navcardssec_mainpage_content_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2rem;
  text-decoration: none;
  color: #000000;
  margin-top: 30px;
  text-align: center;
}

.navcardssec_mainpage_content_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-top: 13px;
  text-align: center;
  max-width: 270px;
}



/*----------------------СЕКЦИЯ ОДИН ЗВОНОК---------------------------*/

.full_container_onecallsec_mainpage{
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}


.onecallsec_mainpage{
  background: url(../img/onecall_mainpage_background.jpg);
  
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;

}



.onecallsec_mainpage_content{
  padding-top: 128px;
  padding-bottom: 102px;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.onecallsec_mainpage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 3rem;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.23;
  max-width: 680px;
  text-align: center;
}

.onecallsec_mainpage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #fff;
  max-width: 600px;
  line-height: 1.5;
  text-align: center;
}

.onecallsec_mainpage_content a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0242e;
  border-radius: 50px;
  max-width: 279px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 75px;
}

.onecallsec_mainpage_content img{
  position: absolute;
  bottom: 80px;
  left: 32%;
}


/*----------------------СЕКЦИЯ КОНТАКТЫ---------------------------*/

.contactssec_mainpage{
  margin-top: 105px;
}

.contactssec_mainpage_content_video{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  column-gap: 40px;
  row-gap: 105px;
}

.contactssec_mainpage_content_video_item{
  max-width: 560px;
  width: 100%;
}

.contactssec_mainpage_content_video_item p{
  padding-top: 20px;
   font-family: "Ubuntu-400", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

.socialnetworks{
  margin-top: 106px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 115px;
}

.socialnetworks h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
}

.socialnetworks p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  max-width: 450px;
  text-align: center;
  margin-top: 21px;
}

.socialnetworks_messengers{
  margin-top: 105px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
  width: 100%;
  max-width: 736px;
}

.socialnetworks_messengers_item{
  font-family: "Ubuntu-500", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.55;
  padding-top: 16px;
  padding-bottom: 16px;
  max-width: 760px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  padding-left: 12px;
  padding-right: 12px;
}

.socialnetworks_messengers_item p{
  font-family: "Ubuntu-500", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.socialnetworks_messengers a:nth-child(1){
  background: #1d98dc;
}

.socialnetworks_messengers a:nth-child(2){
  background: #cc181e;
}

.socialnetworks_messengers a:nth-child(3){
  background: #27d061;
}



/*----------------------СЕКЦИЯ ОТПРАВЬТЕ ЗАЯВКУ МАСТЕРУ---------------------------*/

.requestsec_mainpage{
  padding-top: 60px;
  background: #fecd57;
  padding-bottom: 60px;
}

.requestsec_mainpage_content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.requestsec_mainpage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
}

.requestsec_mainpage_content_form{
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  width: 100%;
  margin-top: 75px;
  margin-bottom: 30px;
  column-gap: 20px;
}

.requestsec_mainpage_content_form input{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.33;
  max-width: 306px;
  width: 100%;
  border-radius: 50px;
  border: 1px solid #d4ac28;
  background: #ffffff; 
  padding-left: 21px;
  padding-right: 21px;
  padding-top: 19px;
  padding-bottom: 19px;
  outline: none;
}

.requestsec_mainpage_content_form button{
  max-width: 218px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 50px;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  border: 0;
  background: #000000;
  text-transform: uppercase;
  cursor: pointer;
}

.requestsec_mainpage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.938rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

.requestsec_mainpage_content_form button:hover {
  background: #ff3b3b;
}




/*----------------------СЕКЦИЯ ФУТЕР---------------------------*/


footer{
  background: #1f1f1f;
}

.footer_content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.footer_content_navmenu_list{
  display: flex;
  align-items: center;
  column-gap: 34px;
  list-style-type: none;
  justify-content: center;
  
}

.footer_content_navmenu_list_item > a:nth-child(1){
  display: flex;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}

.footer_content_copyrights{
  padding-top: 55px;
  padding-bottom: 85px;
  text-align: center;
}

.footer_content_copyrights p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.7;
}

.footer_content_copyrights a{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #2692d1;
}

.footer_content_navmenu_list > .list_item_wrap:nth-child(5) > .dropdown_menu{
  left: -109px;
}

.footer_content_navmenu_list > .list_item_wrap:nth-child(4) > .dropdown_menu{
  height: 130px;
  overflow-y: scroll;
}








/*----------------------СТРАНИЦА КАТАЛОГ---------------------------*/

.firstsec_catalogpage{
  padding-top: 0;
  margin-top: -2px;
  z-index: 2;
}

.firstsec_catalogpage > .full_container > video{
  width: 100vw;
  height: 400px;
}

.getpricesec_catalogpage_content{
  padding-left: 20px;
  padding-right: 20px;
}

.getpricesec_catalogpage_content h3{
  margin-bottom: 0;
}

.catalogsec_catalogpage{
  padding-top: 135px;
  padding-bottom: 135px;
}

.catalogsec_catalogpage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.catalogsec_catalogpage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
  max-width: 565px;
  margin: 0 auto;
  line-height: 1.5;
}

.catalogsec_catalogpage_content_list{
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 90px;
  padding-left: 20px;
  padding-right: 20px;
}

.catalogsec_catalogpage_content_list_item{
  display: flex;
  flex-direction: column;
  max-width: 360px;
  width: 100%;
}

.catalogsec_catalogpage_content_list_item > a:nth-child(1){
  height: 360px;
}

.catalogsec_catalogpage_content_list_item > a:nth-child(1) > img{
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.catalogsec_catalogpage_content_list_item p{
  margin: 0;
  margin-top: 20px;
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.938rem;
  text-decoration: none;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-align: left;
}

.catalogsec_catalogpage_content_list_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.375rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
  text-align: left;
  margin-bottom: 0;
  margin-top: 8px;
}

.catalogsec_catalogpage_content_list_item_footer{
  margin-top: 37px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 8px;
}

.catalogsec_catalogpage_content_list_item_footer a{
  display: flex;
  max-width: 142px;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #2e2626;
  background: transparent;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
}

.catalogsec_catalogpage_content_list_item_footer a:nth-child(2):hover{
  background: #fecd57;
}

.catalogsec_catalogpage_content_list_item_footer a:nth-child(1){
  background: #fecd57;
  border: 0;
}

.catalogsec_catalogpage_content_list_item a > img:nth-child(2){
  display: none;
}



.catalogsec_catalogpage_content_list_item a:hover > img:nth-child(1){
  display: none;
}


.catalogsec_catalogpage_content_list_item a:hover > img:nth-child(2){
  display: block;
}


.catalogsec_catalogpage > .full_container > .main__container{
  display: flex;
  flex-direction: column;
  row-gap: 270px;
}

.catalogsec_catalogpage_content_materialslist{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 90px;
  column-gap: 95px;
  row-gap: 75px;
  padding-left: 30px;
  padding-right: 30px;
}

.catalogsec_catalogpage_content_materialslist_item{
  max-width: 330px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.catalogsec_catalogpage_content_materialslist_item a{
  text-decoration: none;
}

.catalogsec_catalogpage_content_materialslist_item a > p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.063rem;
  text-decoration: none;
  color: #000000;
  line-height: 26px;
  text-align: center;
}

.catalogsec_catalogpage_content_materialslist_item a > img{
  width: 100%;
  height: 247px;
  object-fit: cover;
}

.catalogsec_catalogpage_content_materialslist_item a:nth-child(2){
  border-radius: 30px;
  background-color: #fecd57;
  padding-top: 17px;
  padding-bottom: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin: 0 auto;
  margin-top: 12px;
}

.catalogsec_catalogpage_advantages{
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #fecd57;
}

.catalogsec_catalogpage_advantages_list{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
}

.catalogsec_catalogpage_advantages_list_item{
  max-width: 315px;
  width: 100%;
}

.catalogsec_catalogpage_advantages_list_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.688rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.17;
  text-align: center;
  margin-bottom: 29px;
}

.catalogsec_catalogpage_advantages_list_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.063rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.4;
  text-align: center;
}

.choicesec_catalogpage_content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 137px;
  padding-left: 20px;
  padding-right: 20px;
}

.choicesec_catalogpage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 3rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
  margin-bottom: 18px;
}

.choicesec_catalogpage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.75rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
  margin-bottom: 50px;
}

.choicesec_catalogpage_content b{
  font-family: "Ubuntu-700", sans-serif;
}

.choicesec_catalogpage_content_title{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.5;
  text-align: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 225px !important;
}

.choicesec_catalogpage_content_findarea{
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
   font-family: "Ubuntu-400", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  color: hsla(0,0%,51%,.7);
  line-height: 1.55;
  border: 1px solid hsla(0,0%,51%,.5);
  margin-bottom: 135px;
}




/*----------------------СТРАНИЦА КОНСТРУКТОР---------------------------*/


.firstsec_constructorpage_content{
  width: 100vw;
  height: 1200px;
}


/*----------------------СТРАНИЦА АКЦИИ---------------------------*/

.firstsec_promopage{
  background: url(../img/firstsec_promopage_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 0;
  margin-top: -2px;
  z-index: 2;

  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}


.firstsec_promopage > .full_container{
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));

}

.firstsec_promopage_content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 131px;
  padding-bottom: 44px;
}

.firstsec_promopage_content b{
   font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.firstsec_promopage_content h1{
  margin-top: 85px;
  margin-bottom: 44px;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 4.5rem;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1.17px;
}

.firstsec_promopage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 92px;
}

.firstsec_promopage_content svg{
  padding-top: 10px;
  padding-bottom: 10px;
  animation: moveUpDown 2s ease-in-out infinite; /* длительность 2 сек, вращение бесконечно */
}

.promoitems_promopage_content_list{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 40px;
  margin-top: 135px;
  margin-bottom: 150px;
  padding-left: 20px;
  padding-right: 20px;
}

.promoitems_promopage_content_list_item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  width: 100%;
  text-decoration: none;
  position: relative;
}

.promoitems_promopage_content_list_item img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.promoitems_promopage_content_list_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
  margin-top: 20px;
  margin-bottom: 10px;
}

.promoitems_promopage_content_list_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

.promoitems_promopage_content_list_item_price{
  display: flex;
  margin-top: 17px;
}

.promoitems_promopage_content_list_item_price p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
  display: flex;
  column-gap: 7px;
}

.promoitems_promopage_content_list_item_price b{
  font-weight: normal;
  text-decoration: line-through;
  display: flex;
}

.promoitems_promopage_content_list_item_sale{
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
}

.ourworks_promopage h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  margin-bottom: 135px;
  text-align: center;
}

.ourworks_promopage{
  margin-bottom: 150px;
}

.ourworks_promopage_content{
  position: relative;
}

.ourworks_promopage_content_slider{
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  
}

.ourworks_promopage_content_slider_arrows{
  position: absolute;
  top: 60%;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.ourworks_promopage_content_slider_arrows_arrowleft{
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(232, 232, 232);
  border-radius: 50%;
  position: absolute;
  left: 30px;
  top: 50%;
}

.ourworks_promopage_content_slider_arrows_arrowleft img{
  transform: rotate(180deg);
}

.ourworks_promopage_content_slider_arrows_arrowright{
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(232, 232, 232);
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
}

.slick-dots {
  bottom: -35px !important;
}

.slick-dots li {
  margin: 0 !important;
}

.slick-dots li button::before {
  content: '' !important;
  width: 8px !important;
  height: 8px !important;
  background: #000 !important;
  border-radius: 50% !important;
}






/*----------------------СТРАНИЦА ПОРТФОЛИО---------------------------*/

.firstsec_portfoliopage{
  margin-top: 135px;
  margin-bottom: 70px;
}


.firstsec_portfoliopage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
  margin-bottom: 44px;
}

.firstsec_portfoliopage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.5;
  text-align: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 160px;
}




/*----------------------СТРАНИЦА ОТЗЫВЫ---------------------------*/

.firstsec_reviewspage{
  margin-top: 135px;
  margin-bottom: 90px;
}

.firstsec_reviewspage_content_header h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
  margin-bottom: 44px;
}

.firstsec_reviewspage_content_header p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.5;
  text-align: center;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 160px;
}

.firstsec_reviewspage_content_main{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 80px;
}

.firstsec_reviewspage_content_main_rightpart{
  display: flex;
  flex-direction: column;
}

.firstsec_reviewspage_content_main_rightpart h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.375rem;
  text-decoration: none;
  color: #000000;
  line-height: 34px;
  margin-bottom: 37px;
}

.firstsec_reviewspage_content_main_rightpart b{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #b0b0b0;
  line-height: 31px;
  margin-bottom: 27px;
}

.firstsec_reviewspage_content_main_rightpart p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.063rem;
  text-decoration: none;
  color: #000000;
  line-height: 26px;
  max-width: 490px;
}

.gallery_reviewspage_content{
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.gallery_reviewspage_content img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}




/*----------------------СТРАНИЦА БЛОГ---------------------------*/


.firstsec_blogpage{
  margin-top: 60px;
  margin-bottom: 135px;
}

.firstsec_blogpage_content_header h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
  margin-bottom: 15px;
}

.firstsec_blogpage_content_header p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  text-align: center;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}

.firstsec_blogpage_content_main{
  padding-left: 20px;
  padding-right: 20px;
}

.firstsec_blogpage_content_main_findarea{
  width: calc(100% - 2px);
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
   font-family: "Ubuntu-400", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  color: hsla(0,0%,51%,.7);
  line-height: 1.55;
  border: 1px solid hsla(0,0%,51%,.5);
}


/*----------------------СТРАНИЦА ДОСТАВКА И ОПЛАТА---------------------------*/

.firstsec_deliverypage{
  background: url(../img/firstsec_deliverypage_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 0;
  margin-top: -2px;
  z-index: 2;

  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.firstsec_deliverypage_content{
  padding-top: 130px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;

}

.firstsec_deliverypage_content h1{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 3.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
}

.firstsec_deliverypage_content h2{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.375rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  max-width: 750px;
  margin-top: 38px;
}

.firstsec_deliverypage_content p{
  font-size: 1.125rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-top: 20px;
}

.firstsec_deliverypage_content_buttons{
  display: flex;
  column-gap: 20px;
  margin-top: 100px;
}

.firstsec_deliverypage_content_buttons a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0242e;
  border-radius: 50px;
  max-width: 237px;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
}

.firstsec_deliverypage_content_buttons a:nth-child(2){
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
  max-width: 250px;
}

.mainsec_deliverypage_content{
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 20px;
  padding-right: 20px;
}

.mainsec_deliverypage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 47px;
}

.mainsec_deliverypage_content_item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mainsec_deliverypage_content_item img{
  padding-right: 250px;
  max-width: 225px;
}

.mainsec_deliverypage_content_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 31px;
  max-width: 420px;
}

.mainsec_deliverypage_content_item:last-child{
  margin-top: 150px;
  justify-content: flex-start;
  column-gap: 150px;
}



/*----------------------СТРАНИЦА КОНТАКТЫ---------------------------*/

.firstsec_contactspage_content_header{
  padding-top: 150px;
  padding-bottom: 95px;
}


.firstsec_contactspage_content_header h2{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
  margin-bottom: 44px;
}

.firstsec_contactspage_content_header p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.5;
  text-align: center;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
}

.firstsec_contactspage_content_main{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 200px;
  margin-bottom: 100px;
}

.firstsec_contactspage_content_main_title{
  display: flex;
  flex-direction: column;
}

.firstsec_contactspage_content_main_title_phones{
  display: flex;
  flex-direction: column;
}

.firstsec_contactspage_content_main_title_phones a{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.45;
}

.firstsec_contactspage_content_main_title_mail{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.45;
  margin-top: 53px;
  margin-bottom: 48px;
}

.firstsec_contactspage_content_main_title p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-bottom: 25px;
}

.firstsec_contactspage_content_main_title_messengers a{
  text-decoration: none;
}

.firstsec_contactspage_content_main_form{
  display: flex;
  flex-direction: column;
}

.firstsec_contactspage_content_main_form_container{
  max-width: 460px;
  width: 100%;
}

.firstsec_contactspage_content_main_form input{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.33;
  padding-top: 18px;
  padding-bottom: 18px;
  outline: none;
  border: 1px solid #c7c7c7;
  width: calc(100% - 44px);
  margin-bottom: 25px;
  padding-left: 21px;
  padding-right: 21px;
}

.firstsec_contactspage_content_main_form textarea{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.33;
  padding-top: 18px;
  padding-bottom: 18px;
  outline: none;
  border: 1px solid #c7c7c7;
  width: calc(100% - 44px);
  margin-bottom: 25px;
  padding-left: 21px;
  padding-right: 21px;
  resize: none;
  height: 102px;
}

.firstsec_contactspage_content_main_form textarea:nth-child(3)::placeholder {
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #7D7D7D;
  line-height: 1.33;
}

.firstsec_contactspage_content_main_form button {
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  background: #fecd57;
  max-width: 205px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  cursor: pointer;
}

.firstsec_contactspage_content_main_form p {
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.938rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-top: 23px;
}

.firstsec_contactspage_content_main_form a {
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.938rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}








/*----------------------СТРАНИЦА КАРТОЧКА ТОВАРА---------------------------*/


.firstsec_itempage {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* iframe как фон */
.video-background-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none; /* отключить взаимодействие, чтобы клик проходил сквозь */
  z-index: 0; /* позади контента */
  object-fit: cover; /* чтобы видео заполнило блок (работает не во всех браузерах) */
}

/* Контент поверх видео */
.full_container_firstsec_itempage {
  position: relative; 
  z-index: 1; /* поверх видео */
  display: flex;
  flex-direction: column;
  justify-content: center; /* вертикальное центрирование */
  align-items: center; /* горизонтальное центрирование */
  height: 100%;
}

.firstsec_itempage_content{
  padding-top: 130px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}

.firstsec_itempage_content h1 {
  font-family: "Ubuntu-700", sans-serif;
  font-size: 3.25rem;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.23;
  max-width: 44vw;
}

.firstsec_itempage_content p {
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.375rem;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.55;
  margin-top: 46px;
  max-width: 350px;
}

.firstsec_itempage_content_buttons{
  display: flex;
  column-gap: 20px;
  margin-top: 103px;
}

.firstsec_itempage_content_buttons a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0242e;
  border-radius: 50px;
  max-width: 237px;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
}

.firstsec_itempage_content_buttons a:nth-child(2){
  background: transparent;
  border: 2px solid #ffffff;
  max-width: 250px;
}


.secondsec_itempage_content {
  padding-top: 0;
  padding-bottom: 0;
}

.secondsec_itempage_content > .firstsec_mainpage_content_promo_list {
  margin-top: 65px;
}

.catalogsec_itemspage_content{
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  column-gap: 95px;
  row-gap: 75px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 85px;
}

.catalogsec_itemspage_content_item{
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.catalogsec_itemspage_content_item a{
  text-decoration: none;
}

.catalogsec_itemspage_content_item a > img{
  width: 100%;
  height: 247px;
  object-fit: cover;
}

.catalogsec_itemspage_content_item a:nth-child(2){
  border-radius: 30px;
  background-color: #fecd57;
  padding-top: 17px;
  padding-bottom: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin: 0 auto;
  margin-top: 25px;
}

.secondsec_itempage_images{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.secondsec_itempage_images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  padding-top: 30px;
}

#secondsec_itempage_images > a > img:nth-child(1) {
  width: 100%;
  object-fit: cover;
}

.onecallsec_itempage {
  background: url(../img/onecall_itempage_background.jpg);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-attachment: scroll;
    background-size: auto;
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.onecallsec_itempage_content h3{
  font-size: 2rem;
  max-width: 720px;
}

.onecallsec_itempage_content p{
  font-size: 1.5rem;
}

.onecallsec_itempage_content a {
  max-width: 220px;
}

.full_container_advantagessec_itempage{
  background-color: #f5f5f5;
}




.iteminfo_itempage_content h3{
  padding-top: 135px;
  padding-bottom: 148px;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  max-width: 730px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.iteminfo_itempage_content_video{
  max-width: 760px;
  width: 100%;
  height: 426px;
  object-fit: cover;
  margin: 0 auto;
  display: flex;
  margin-bottom: 135px;
}

.iteminfo_itempage_content_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 130px;
  padding-left: 20px;
  padding-right: 20px;
}

.iteminfo_itempage_content_list_item h4{
   font-family: "Ubuntu-700", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

.iteminfo_itempage_content_list_item ul > li{
   font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

.iteminfo_itempage_content_list_item p{
   font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

.iteminfo_itempage_content_list_item a{
   font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #2692d1;
  line-height: 1.55;
  text-decoration: underline;
}

.iteminfo_itempage_content_list_item{
  display: flex;
  flex-direction: column;
}

.iteminfo_itempage_content_list_item {
row-gap: 30px;
}

.iteminfo_itempage_content_gallery{
  padding-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: flex;
  column-gap: 20px;
}

.iteminfo_itempage_content_gallery a{
  width: 100%;
  height: 313px;
  display: flex;
}

.iteminfo_itempage_content_gallery a > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schemesec_itempage_content_cards{
  padding-top: 75px;
  margin-top: 0;
  padding-bottom: 75px;
  margin-bottom: 0;
}

.gallery_itempage h3{
  padding-top: 135px;
  padding-bottom: 170px;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
}


.typesitem_itempage{
  background: #efefef;
  padding-top: 135px;
  padding-bottom: 135px;
}

.typesitem_itempage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  text-align: center;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 102px;
}

.typesitem_itempage_content_list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
}

.typesitem_itempage_content_list_item{
  max-width: 560px;
  width: 100%;
  background: #ffffff;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.typesitem_itempage_content_list_item img{
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.typesitem_itempage_content_list_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
  padding: 0;
  margin: 0;
  margin-bottom: 13px;
  text-align: left;
}

.typesitem_itempage_content_list_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-top: 20px;
}

.typesitem_itempage_content_list_item p:first-child{
  margin-top: 0px;
}


.typesitem_itempage_content_list_item p:last-child{
  margin-top: 12px;
}

.typesitem_itempage_content_list_item h4{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-top: 27px;
  margin-bottom: 25px;
}

.typesitem_itempage_content_list_item ul > li{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

.typesitem_itempage_content_list_item ul > li > li{
  padding-left: 14px;
}

.typesitem_itempage_content_list_item_container_title{
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 29px;
}

.typesitem_itempage_content_list_item_container_title > ul {
  padding-left: 14px;
}

.typesitem_itempage_content_list_item_buttons{
  display: flex;
  column-gap: 8px;
  align-items: center;
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.typesitem_itempage_content_list_item_buttons a{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #000000;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #ffffff;
  line-height: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
  max-width: 138px;
  width: 100%;
}

.typesitem_itempage_content_list_item_buttons a:nth-child(2){
  color: #000000;
  max-width: 183px;
  width: 100%;
  background: transparent;
  border: 1px solid #000000;
}

.secondsec_itempage_content_info{
  display: flex;
  flex-direction: column;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.secondsec_itempage_content_info p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-bottom: 40px;
}

.advantagestest_itempage{
  margin-top: 70px;
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
}

.advantagestest_itempage_content{
  max-width: 700px;
  width: 100%;
}

.advantagestest_itempage_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-bottom: 39px;
}

.advantagestest_itempage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-bottom: 39px;
}
















.ourworks_promopage_content_slider_item{
  max-height: 550px;
  width: 100%;
  height: 100%
  object-fit: cover;
}

/* Фиксированная круглая кнопка */
.call-btn {
    position: fixed;
    left: 20px;
    bottom: 50px;
    width: 60px;
    height: 60px;
    background: #f71336;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    animation: rotate 1.5s infinite ease-in-out, pulse 1.8s infinite ease-in-out;
    z-index: 9999;
}

/* Иконки */
.call-btn .icon {
    position: absolute;
    transition: opacity .3s ease, transform .3s ease;
}

.icon.close {
    opacity: 0;
    transform: scale(0.5);
}

/* Анимация качения */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
    100% { transform: rotate(0deg); }
}

/* Пульсация кнопки */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Активное состояние – переключение иконок */
.call-btn.activecallButton .icon.phone {
    opacity: 0;
    transform: scale(0.5);
    
}

.call-btn.activecallButton .icon.close {
    opacity: 1;
    transform: scale(1);
    height: 16px;
}

.call-btn.activecallButton  {
    background: #fff;
    animation: none;
}



/* --- ВСПЛЫВАЮЩЕЕ ОКНО --- */
.callpopup {
    position: fixed;
    left: 20px;
    bottom: 125px;
    text-align: center;
    max-width: 290px;
    width: 100%;
    background: white;
    padding-top: 30px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.4);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease;
    z-index: 9998;
}

/* Появление */
.callpopup.opencallButton {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.callpopup_content{
  display: flex;
  flex-direction: column;
  max-width: 273px;
  width: 100%;
  margin: 0 auto;
}

.callpopup_content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
  margin-bottom: 25px;
}

.callpopup_content_form input{
   font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.33;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100% - 40px);
  outline: none;
  border: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}

.callpopup_content_form button{
   font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.33;
  margin-bottom: 30px;
  background-color: #f51340;
  text-transform: uppercase;
  width: 100%;
  border: 0;
  outline: none;
  padding-top: 13px;
  padding-bottom: 13px;

}

.callpopup_content p{
   font-family: "Ubuntu-400", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

.callpopup_content p:nth-child(4){
  margin-top: 5px;
  margin-bottom: 20px;
}

.callpopup_content p:last-child{
  font-size: 0.938rem;
}


@media screen and (max-width: 576px) and (min-width: 320px){
  .callpopup {
    position: fixed;
    left: 20px;
    bottom: 125px;
    text-align: center;
    max-width: 290px;
    width: calc(100vw - 110px);
  }

  .callpopup_content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .callpopup_content p {
    font-size: 1rem;
  }

  .callpopup_content p:last-child {
    font-size: 0.75rem;
  }

  .callpopup_content p:nth-child(4) {
    margin-bottom: 15px;
  }


}


/* === МОДАЛКА === */
.promo-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.promo-modal.active {
    display: flex;
}

.promo-modal-inner {
    background: #fff;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Верхняя панель */
.promo-modal-top {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.promo-more, 
.promo-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Контент по центру */
.promo-modal-content {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.promo-modal-content img {
    width: 560px;
    height: 560px;
    object-fit: cover;
    cursor: zoom-in;
}

.promo-modal-text {
    max-width: 560px;
}

/* === ЗУМ === */
.zoom-overlay {
    display: none;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.zoom-overlay.active {
    display: flex;
}

#zoomImg {
    width: 80vw;
    height: 85vh;
    object-fit: cover;
    cursor: zoom-out;
}


.promo-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease, background .35s ease;
}

.promo-modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* === Контейнер модалки === */
.promo-modal-inner {
    background: #fff;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}

/* Анимация появления контента */
.promo-modal.active .promo-modal-inner {
    transform: scale(1);
    opacity: 1;
}

.promo-more::before {
  content: '← ';
  white-space: pre;
}

.promo-more {
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  opacity: 0.8;
}

.promo-modal-content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
}

.promo-modal-content_price{
  margin-top: 18px;
  margin-bottom: 20px;
  display: flex;
  column-gap: 5px;
} 

.promo-modal-content_price p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
} 

.promo-modal-content_price b{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #bdbdbd;
  line-height: 1.35;
  text-decoration: line-through;
  font-weight: normal;
} 

.promo-modal-content a{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.35;
  background-color: #000000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 130px;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.promo-modal-content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  
}



@media screen and (max-width: 1199px) and (min-width: 577px){
  .promo-modal-content img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  cursor: zoom-in;
}

.promo-modal-content {
  padding-left: 20px;
  padding-right: 20px;
}

}


@media screen and (max-width: 576px) and (min-width: 320px){
  .promo-modal-content img {
  width: 300px;
  height: 260px;
  object-fit: cover;
  cursor: zoom-in;
}

.promo-modal-content {
  padding-left: 20px;
  padding-right: 20px;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}

.promo-modal-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#promoModalText > p:nth-child(4) {
  text-align: center;
}
}












/*==============СТРАНИЦА О НАС================*/

.garant_deliverypage{
  width: 100vw;
}

.garant_deliverypage_content{
  position: relative;
  height: 500px;
  overflow: hidden;
}

.garant_deliverypage_content h3{
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  font-family: "Ubuntu-700", sans-serif;
  font-size: 6.5rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.55;
  text-align: center;
  white-space: nowrap;
	z-index: 9999;
}

.aboutussec_aboutuspage{
  padding-top: 70px;
  padding-bottom: 70px;
}

.aboutussec_aboutuspage_content{
  display: flex;
  flex-direction: column;
  row-gap: 30px;

}

.aboutussec_aboutuspage_content p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.aboutussec_aboutuspage_content b{
  font-family: "Ubuntu-700", sans-serif;
}

.aboutussec_aboutuspage_content_gallery{
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
}

.aboutussec_aboutuspage_content_gallery img{
  max-width: 360px;
  object-fit: cover;
}

.schemesec_aboutuspage_content_cards{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}

.schemesec_aboutuspage_content_cards img{
  display: none;
}

.schemesec_aboutuspage_content_cards > .schemesec_mainpage_content_cards_item{
  padding-top: 135px;
  padding-bottom: 90px;
  max-width: 580px;
}

.schemesec_aboutuspage_content_cards > .schemesec_mainpage_content_cards_item h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.625rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.23;
  max-width: unset;
  margin-bottom: 0;
}

.schemesec_aboutuspage_content_cards > .schemesec_mainpage_content_cards_item p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.5;
  margin-top: 40px;
  max-width: unset;
}



.onecallsec_mainpage.one {
  background: url(/wp-content/uploads/2025/12/aboutus_form_back.webp);
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.onecallsec_aboutuspage h3 {
  max-width: 770px;
}

.onecallsec_aboutuspage a {
  max-width: 308px;
  width: 100%;
}

@media screen and (max-width: 1199px) and (min-width: 320px){

  .garant_deliverypage {
    width: 100vw;
  }

  .garant_deliverypage_content h3 {
    font-size: 4.5rem;
  }

  .aboutussec_aboutuspage_content_gallery img {
    max-width: 30vw;
  }

  .aboutussec_aboutuspage_content_gallery {
    padding-left: 20px;
    padding-right: 20px;
  }



}


@media screen and (max-width: 768px) and (min-width: 320px){

  .garant_deliverypage_content h3 {
    font-size: 2.125rem;
  }

  .aboutussec_aboutuspage_content_gallery img {
    max-width: 320px;
    margin: 0 auto;
  }

  .garant_deliverypage_content {
    height: 300px;
  }

  .aboutussec_aboutuspage_content_gallery {
    margin-top: 60px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 0;
  }

  .aboutussec_aboutuspage_content {
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100vw - 40px);
  }

  .aboutussec_aboutuspage_content p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .schemesec_aboutuspage_content_cards > .schemesec_mainpage_content_cards_item {
    padding-top: 90px;
  }

.schemesec_aboutuspage_content_cards > .schemesec_mainpage_content_cards_item h3 {
  font-size: 1.875rem;
}

.schemesec_aboutuspage_content_cards > .schemesec_mainpage_content_cards_item p {
  font-size: 1.25rem;
}

.schemesec_aboutuspage_content_cards > .schemesec_mainpage_content_cards_item:nth-child(2) > p:nth-child(3) > br:nth-child(1) {
  display: none;
}



}

@media screen and (max-width: 576px) and (min-width: 320px) {
  .aboutussec_aboutuspage_content_gallery img {
    width: calc(100vw - 40px);
  }

}


/*==============МОДАЛКИ================*/


.promo-modal-content button{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.35;
  background-color: #000000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 130px;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 30px;
  border: 0;
  cursor: pointer;
}

/* ТУСКЛАЯ ПОДЛОЖКА */
.feedback-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 10000000000;
    overflow-y: scroll;
}

.feedback-modal.active {
    opacity: 1;
    pointer-events: all;
}

/* КОНТЕЙНЕР МОДАЛКИ */
.feedback-modal .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 560px;
    width: 100%;
    transition: transform .3s ease;
    position: relative;

    background-color: #fff;
    box-sizing: border-box;
    margin: 65px auto;
    max-width: 560px;
    min-height: 300px;
    overflow: auto;
    padding: 40px;
    width: 100%;
}

/* АНИМАЦИЯ ОТКРЫТИЯ */
.fade-in {
    animation: modalFadeIn .3s forwards;
}

.scale-in {
    animation: modalScaleIn .3s forwards;
}

/* АНИМАЦИЯ ЗАКРЫТИЯ */
.fade-out {
    animation: modalFadeOut .3s forwards;
}

.scale-out {
    animation: modalScaleOut .3s forwards;
}

/* КНОПКА ЗАКРЫТИЯ */
.feedback-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* KEYFRAMES */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes modalScaleIn {
    from { transform: scale(0.7); }
    to { transform: scale(1); }
}

@keyframes modalScaleOut {
    from { transform: scale(1); }
    to { transform: scale(0.7); }
}

.close-btnz{
  border: 0;
  background: transparent;
  position: absolute;
  right: 25px;
  top: 40px;
  outline: none;
  cursor: pointer;
}


.modal-content h3{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.35;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}





.basket_list > .item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.basket_list > .item > .item-img {
    width: 70px;
    height: 70px;
    border-radius: 7px;
    object-fit: cover;
    background-position: 50%;
}

.basket_list > .item > .item-info {
    flex: 1;
    flex-direction: row;
    display: flex;
    align-items: center;
    
    justify-content: space-between;
}

.basket_list > .item > .item-info > .item-title {
    font-family: "Ubuntu-700", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
    line-height: 1.35;
    max-width: 154px;
    min-width: 154px;
}

.item-qty {
    display: flex;
    align-items: center;
    gap: 8px;

}

.item-price{
    font-family: "Ubuntu-400", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
    line-height: 1.55;
    white-space: nowrap;
}

/* Круглые кнопки */
.qty-btn {
    width: 16px;
    height: 16px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    background: transparent; /* серый */
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    opacity: .4;
    line-height: 1.55;
    padding-bottom: 2px;
}

.qty-btn:hover {
    opacity: 1;
}

/* Убираем стрелки у input[type=number] */
.qty-input {
    width: 20px;
    text-align: center;
    font-family: "Ubuntu-400", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
    line-height: 1.35;
    -moz-appearance: textfield;
    outline: none;
    border: 0;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.delete-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #000000;
    opacity: 0.4;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.delete-btn:hover {
    opacity: 1;
}

.basket_list_total{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  width: 100%;
  text-align: right;
}

.feedback-modal_form{
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.feedback-modal_form p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  padding-bottom: 5px;
}

.feedback-modal_form input{
  outline: none;
  border: 1px solid #000000;
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.33;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
}

.bodynosscroll{
  overflow: hidden;
}

.feedback-modal_form button{
  font-family: "Ubuntu-700", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  background-color: #ff2b2b;
  padding-top: 21px;
  padding-bottom: 21px;
  outline: none;
  border: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
}

@media screen and (max-width: 768px) and (min-width: 320px) {

  .feedback-modal {
    align-items: unset;
  }

  .feedback-modal .modal-content {
    margin: 0;
  }

  .basket_list > .item > .item-info {
    align-items: flex-start;
    flex-direction: column;
  }

  .basket_list > .item {
    align-items: center;
  }

  .delete-btn {
    position: ;
    right: 0;
    top: 15px;
  }

  .feedback-modal .modal-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feedback-modal_form {
    margin-top: 35px;
  }



}

.feedback-modal_message{
  background: #62c584;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 20px;
}

.feedback-modal_message p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.45;
  text-align: center;
}

.feedback-modal_message{
  display: none;
}

.feedback-modal_message_toggle{
  display: flex;
}

.basket_content_toggle{
  display: none;
}

.basketfixed{
  display: none;
  position: fixed;
  right: 50px;
  top: 100px;
  column-gap: 20px;
  align-items: center;
  z-index: 10000000000000;

}

.basketfixed_total{
  opacity: 0;
  background: #292929;
  border-radius: 3px;
  font-family: "Ubuntu-400", sans-serif;
  font-size: 0.938rem;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.45;
  padding: 9px 13px;
  cursor: pointer;
}

.basketfixed:hover .basketfixed_total {
  cursor: pointer;
  animation: modalFadeIn 1s;
  opacity: 1;
  pointer-events: auto;
}

.basketfixed_btn{
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 18px 20px 22px;
  background-color: hsla(0,0%,100%,.8);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
  border: 0;
  outline: none;
  cursor: pointer;
}

.basketfixed_btn:hover{
  transition: transform .2s ease-in-out,-webkit-transform .2s ease-in-out;
  transform: scale(1.1);
}

.basketfixed_btn svg{
  stroke: #000;
}

.basketfixed_btn_count{
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: red;
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  position: absolute;
  right: -3px;
  bottom: -3px;
}


.item_stat{
  display: flex;
}


@media screen and (max-width: 768px) and (min-width: 320px) {
  .basketfixed_btn{
  width: 60px;
  height: 60px;
  position: relative;
}

.basketfixed_btn svg {
  height: 34px;
  position: absolute;
  left: 14px;
  top: 12px;
}

.basketfixed{
  right: 20px;
  top: 100px;
}

.basketfixed_btn_count{
  width: 24px;
  height: 24px;
  font-size: 1rem;
}


}



.firstsec_itempage_content h1.has-bg {
	color: #000000;
}

.firstsec_itempage_content p.has-bg {
	color: #000000;
}

.firstsec_itempage_content_buttons a.has-bg:nth-child(2) {
    color: #000;
    border: 2px solid #000;
}

.firstsec_itempage_content p.has-bg {
	max-width: 420px;	
}

.hero-title.hero-subtitles.has-bg {
	font-size: 38px;
	font-family: 'Ubuntu-700';
	margin-top: 46px;
}













/*=========!!!=======================ПРАВКИ СТРАНИЦ УСЛУГ=============================!!!===========*/



/*========================РУЛОННЫЕ ШТОРЫ С ЭЛЕКТРОПРИВОДОМ========================*/

.secondsec_itempage_images > a > img:nth-child(1) {
  width: 100%;
}

.firstsec_deliverypage_content p {
  font-size: 1.875rem;
}

.productionsec_mainpage_cards_item h3 {
  max-width: 320px;
}

.firstsec_deliverypage_content p {
  font-size: 1.25rem;
}

.firstsec_deliverypage_content p {
  margin-top: 0;
}

.productionsec_mainpage_cards_item p{
	font-size: 1rem;
	line-height: 1.55;
}

.iteminfo_itempage_content_gallery a {
  height: 338px;
}

.typesitem_itempage_content_list {
	column-gap: 0;
  justify-items: center;
}

.onecallsec_mainpage_content a {
  text-transform: uppercase;
}

.secondsec_itempage_content_info{
	font-size: 1.25rem;
}

.firstsec_mainpage_content_promo_list > .firstsec_mainpage_content_promo_list_item p{
	font-size: 1.875rem;
}

/*========================РУЛОННЫЕ ШТОРЫ НА ПЛАСТИКОВЫЕ ОКНА========================*/

.firstsec_itempage_content > h3:nth-child(2) {
	font-family: "Ubuntu-700", sans-serif;
	font-size: 2.125rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
	margin-top: 40px;
}

.firstsec_itempage .full_container {
  height: auto;
  max-height: unset;
}

.firstsec_itempage_content p {
  max-width: 430px;
}

.firstsec_itempage {
	height: auto;
	max-height: unset;
}

.iteminfo_itempage > .full_container > .main__container:nth-child(n+2) > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
  grid-template-columns: 1fr 1fr;
  padding-top: 45px;
  padding-bottom: 45px;
}



/*========================РУЛОННЫЕ ШТОРЫ СНИЗУ-ВВЕРХ========================*/

.firstsec_itempage_content h1 {
  max-width: 40vw;
}

.intro__subtitle > h3:nth-child(1) {
  font-family: "Ubuntu-700", sans-serif;
  font-size: 2.125rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
  margin-top: 40px;
}


.catalog-single-image {
  margin-top: 75px;
  margin-bottom: 75px;
}

.postid-836 > .wrapper > .iteminfo_itempage:nth-child(6) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list{
	display: flex;
	flex-direction: column;
	padding-top: 65px;
	padding-bottom: 65px;
	max-width: 760px;
	margin: 0 auto;
}

.postid-836 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content > h3 {
	padding-bottom: 110px;
	max-width: 960px;
}

.postid-836 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content {
	display: grid;
  	grid-template-columns: 1fr 1fr;
  	justify-content: center;
  	align-items: center;
	padding-top: 120px;
	padding-bottom: 105px;
	row-gap: 165px;
}

.postid-836 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .catalog-dual-video {
	grid-column: 1 / -1;
}

.postid-836 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
	display: flex;
	flex-direction: column;
}

.postid-836 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > h3 {
	font-size: 2.25rem;
	text-align: left;
	padding: 0;
}

.schemesec_mainpage_content_cards_item img {
  max-width: 150px;
}

.postid-836 > .wrapper > .catalog-extra-media {
	margin-top: 20px;
}

.postid-836 > .wrapper > .catalog-extra-media > .full_container > .iteminfo_itempage_content_gallery {
	padding-top: 0px;
}

.catalog-extra-media {
  margin-top: 20px;
}

.postid-836 > .wrapper > .secondsec_itempage:nth-child(15) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: unset;
	column-gap: 40px;
	padding-top: 45px;
	padding-bottom: 30px;
}

.postid-836 > .wrapper > .secondsec_itempage:nth-child(15) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > p:nth-child(1) {
	grid-column: 1;
	font-family: "Ubuntu-400", sans-serif;
	font-size: 2rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
	margin-bottom: 0;
}

.postid-836 > .wrapper > .secondsec_itempage:nth-child(15) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > ul:nth-child(3) {
	grid-column: 2;
	padding-left: 20px;
	margin-top: -50px;
}

.postid-836 > .wrapper > .secondsec_itempage:nth-child(15) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > ul:nth-child(3) > li {
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.25rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
}



/*========================РУЛОННЫЕ ШТОРЫ ОТКРЫТЫЕ========================*/

.postid-833 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
  	grid-template-columns: 1fr 1fr;
	padding-top: 65px;
	padding-bottom: 65px;
}

.postid-833 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
  	display: flex;
}

.postid-833 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item {
	width: 100%;
  	max-width: 960px;
  	margin: 0 auto;
}

.postid-833 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table{
	display: flex;
	flex-direction: column;
	padding-bottom: 120px;
}

.postid-833 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item{
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 1px solid #d9d9d9;
}

.postid-833 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item:nth-child(2n){
	background: #eeeeee;
}

.postid-833 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item h4{
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.125rem;
	text-decoration: none;
	color: #4d4c4c;
	line-height: 1.55;
}

.postid-833 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item p{
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.125rem;
	text-decoration: none;
	color: #4d4c4c;
	line-height: 1.55;
}

.postid-833 > .wrapper > .secondsec_itempage:nth-child(12) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: unset;
	column-gap: 40px;
	padding-top: 45px;
	padding-bottom: 30px;
}

.postid-833 > .wrapper > .secondsec_itempage:nth-child(12) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > p:nth-child(1) {
	grid-column: 1;
	font-family: "Ubuntu-400", sans-serif;
	font-size: 2rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
	margin-bottom: 0;
}

.postid-833 > .wrapper > .secondsec_itempage:nth-child(12) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > ul:nth-child(3) {
	grid-column: 2;
	padding-left: 20px;
	margin-top: -50px;
}

.postid-833 > .wrapper > .secondsec_itempage:nth-child(12) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > ul:nth-child(3) > li {
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.25rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
}


/*========================РУЛОННЫЕ ШТОРЫ КАССЕТНЫЕ========================*/

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(6) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item:nth-child(4) {
	flex-direction: row;
	grid-column: 1 / -1;
	justify-content: flex-start;
	column-gap: 90px;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(6) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item:nth-child(4) > p:nth-child(1) {
	font-family: "Ubuntu-700", sans-serif;
  	font-size: 3rem;
  	text-decoration: none;
  	color: #000000;
  	line-height: 1.23;
	max-width: 560px;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
	grid-template-columns: 1fr 1fr;
	padding-top: 65px;
	padding-bottom: 65px;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item {
	width: 100%;
  	max-width: 960px;
  	margin: 0 auto;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table{
	display: flex;
	flex-direction: column;
	padding-bottom: 120px;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item{
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 1px solid #d9d9d9;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item:nth-child(2n){
	background: #eeeeee;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item h4{
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.125rem;
	text-decoration: none;
	color: #4d4c4c;
	line-height: 1.55;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item p{
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.125rem;
	text-decoration: none;
	color: #4d4c4c;
	line-height: 1.55;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .iteminfo_itempage_content_gallery{
	max-width: 1200px;
	margin: 0 auto;
	width: calc(100vw - 40px);
}

.postid-834 > .wrapper > .secondsec_itempage:nth-child(14) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: unset;
	column-gap: 40px;
	padding-top: 45px;
	padding-bottom: 30px;
}

.postid-834 > .wrapper > .secondsec_itempage:nth-child(14) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > p:nth-child(1) {
	grid-column: 1;
	font-family: "Ubuntu-400", sans-serif;
	font-size: 2rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
	margin-bottom: 0;
}

.postid-834 > .wrapper > .secondsec_itempage:nth-child(14) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > ul:nth-child(3) {
	grid-column: 2;
	padding-left: 20px;
	margin-top: -50px;
}

.postid-834 > .wrapper > .secondsec_itempage:nth-child(14) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info > ul:nth-child(3) > li {
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.25rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(10) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
  display: flex;
  flex-direction: column;
}

.postid-834 > .wrapper > .typesitem_itempage:nth-child(11) > .full_container > .main__container > .typesitem_itempage_content > .typesitem_itempage_content_list > .typesitem_itempage_content_list_item  > .typesitem_itempage_content_list_item_container img {
  object-position: center;
  object-fit: contain;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .iteminfo_itempage_content_gallery > a {
  height: 360px;
  max-width: 360px;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .iteminfo_itempage_content_gallery {
  column-gap: 40px;
	justify-content: center;
}

.postid-834 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content h3:nth-child(1){
	padding-bottom: 100px;
}




/*========================РУЛОННЫЕ ШТОРЫ ЗЕБРА========================*/

.postid-841 > .wrapper > .secondsec_itempage:nth-child(6) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info{
	margin-top: 65px;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
  	display: flex;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item {
	width: 100%;
  	max-width: 960px;
  	margin: 0 auto;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table{
	display: flex;
	flex-direction: column;
	padding-bottom: 120px;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item{
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 1px solid #d9d9d9;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item:nth-child(2n){
	background: #eeeeee;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item h4{
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.125rem;
	text-decoration: none;
	color: #4d4c4c;
	line-height: 1.55;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item p{
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.125rem;
	text-decoration: none;
	color: #4d4c4c;
	line-height: 1.55;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container:nth-child(2) > iframe{
	max-width: 960px;
  	margin: 0 auto;
	margin-bottom: 90px;
}

.postid-841 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container:nth-child(2) {
	display: flex;
	justify-content: center;
	align-items: center;
}




/*========================РУЛОННЫЕ ШТОРЫ МИНИ========================*/



.postid-838 > .wrapper > .secondsec_itempage:nth-child(6) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info{
	margin-top: 65px;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content h3:nth-child(1){
	max-width: 960px;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list{
	grid-template-columns: 1fr 1fr;
}


.postid-838 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
  	display: flex;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item {
	width: 100%;
  	max-width: 960px;
  	margin: 0 auto;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table{
	display: flex;
	flex-direction: column;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item{
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 1px solid #d9d9d9;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item:nth-child(2n){
	background: #eeeeee;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item h4{
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.125rem;
	text-decoration: none;
	color: #4d4c4c;
	line-height: 1.55;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > .iteminfo_itempage_content_list_item_table > .iteminfo_itempage_content_list_item_table_item p{
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.125rem;
	text-decoration: none;
	color: #4d4c4c;
	line-height: 1.55;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content h3:nth-child(1){
	max-width: 960px;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list{
	grid-template-columns: 1fr 1fr;
}

.postid-838 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content {
	margin-bottom: 50px;
}


/*========================СВЕТОФИЛЬТРЫ========================*/

.postid-835 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content  {
  align-items: flex-start;
  column-gap: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 120px;
  padding-bottom: 80px;
}

.postid-835 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content  h3:nth-child(1){
  padding-top: 0;
	padding-bottom: 0;
	font-size: 2.25rem;
	max-width: 510px;
	width: 100%;
	margin: 0;
	text-align: left;
}

.postid-835 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list{
  display: flex;
}


/*========================СВЕТОНЕПРОНИЦАЕМЫЕ========================*/

.postid-843 > .wrapper > .iteminfo_itempage:nth-child(6) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
	display: flex;
  padding-top: 65px;
	max-width: 760px;
	width: 100%;
	margin: 0 auto;
}

.postid-843 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content h3:nth-child(1) {
	max-width: 960px;
}

.postid-843 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
	grid-template-columns: 1fr 1fr;
}


/*========================ЖАЛЮЗИ ПЛИССЕ========================*/

.postid-1214 > .wrapper > .secondsec_itempage:nth-child(3) > .full_container > .main__container > .secondsec_itempage_content {
	display: flex;
  	flex-direction: column;
}

.postid-1214 > .wrapper > .secondsec_itempage:nth-child(3) > .full_container > .main__container > .secondsec_itempage_content > .firstsec_mainpage_content_promo_list {
	order: 1;
}

.postid-1214 > .wrapper > .secondsec_itempage:nth-child(3) > .full_container > .main__container > .secondsec_itempage_content > .catalogsec_itemspage_content {
	order: 3;
	justify-content: center;
}

.postid-1214 > .wrapper > .secondsec_itempage:nth-child(3) > .full_container > .main__container > .secondsec_itempage_content > .productionsec_mainpage_cards {
	order: 2;
}

.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content {
	display: flex;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 90px;
  column-gap: 40px;
}

.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content {
	display: flex;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 90px;
  column-gap: 40px;
}

.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content h3:nth-child(1) {
	padding-top: 0;
	padding-bottom: 0;
	font-size: 2.25rem;
	text-align: left;
	max-width: 560px;
}

.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content > iframe {
	height: 315px;
	margin-bottom: 0;
	max-width: 560px;
}

.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
	display: flex;
}


.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list> .iteminfo_itempage_content_list_item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: unset;
	column-gap: 40px;
	padding-top: 45px;
	padding-bottom: 45px;
}

.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > p:nth-child(1) {
	grid-column: 1;
	font-family: "Ubuntu-400", sans-serif;
	font-size: 2rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
	margin-bottom: 0;
}

.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > ul:nth-child(3) {
	grid-column: 2;
	padding-left: 20px;
	margin-top: -50px;
}

.postid-1214 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > ul:nth-child(3) > li {
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.25rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
}

/*========================ЖАЛЮЗИ ВЕРТИКАЛЬНЫЕ========================*/

.postid-1220 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
	padding-top: 65px;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.postid-1220 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item p {
	margin-bottom: 30px;
}

.postid-1220 > .wrapper > .iteminfo_itempage:nth-child(9) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item ul {
	padding-left: 20px;
	margin-bottom: 30px;
}




.postid-1220 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list {
	display: flex;
}


.postid-1220 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list> .iteminfo_itempage_content_list_item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: unset;
	column-gap: 40px;
	padding-top: 45px;
	padding-bottom: 45px;
}

.postid-1220 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > p:nth-child(1) {
	grid-column: 1;
	font-family: "Ubuntu-400", sans-serif;
	font-size: 2rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
	margin-bottom: 0;
}

.postid-1220 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > ul:nth-child(3) {
	grid-column: 2;
	padding-left: 20px;
	margin-top: -50px;
}

.postid-1220 > .wrapper > .iteminfo_itempage:nth-child(12) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item > ul:nth-child(3) > li {
	font-family: "Ubuntu-400", sans-serif;
	font-size: 1.25rem;
	text-decoration: none;
	color: #000000;
	line-height: 1.55;
}

/*========================ЖАЛЮЗИ ГОРИЗОНТАЛЬНЫЕ========================*/

.postid-1229 > .wrapper > .iteminfo_itempage:nth-child(6) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item ul{
	padding-left: 20px;
}

.postid-1229 > .wrapper > .iteminfo_itempage:nth-child(8) > .full_container > .main__container > .iteminfo_itempage_content h3:nth-child(1){
	padding-bottom: 105px;
}

.iteminfo_itempage_content_list_cardsnew{
  display: flex;
  flex-direction: column;
  row-gap: 120px;
	padding-bottom: 150px;
}

.iteminfo_itempage_content_list_cardsnew_item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 40px;
}

.iteminfo_itempage_content_list_cardsnew_item img{
  max-width: 460px;
  height: 340px;
  object-fit: cover;
}

.iteminfo_itempage_content_list_cardsnew_item_title{
  display: flex;
  flex-direction: column;
}

.iteminfo_itempage_content_list_cardsnew_item_title h4{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.625rem;
  color: #000000;
  line-height: 1.23;
  margin-bottom: 24px;
}

.iteminfo_itempage_content_list_cardsnew_item_title p{
  font-family: "Ubuntu-400", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  color: #000000;
  line-height: 1.55;
}

/*========================ЖАЛЮЗИ РУЛОННЫЕ========================*/

.postid-1240 > .wrapper > .iteminfo_itempage:nth-child(6) > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item ul{
	padding-left: 20px;
}

/*========================ЖАЛЮЗИ ВЕНУС ИЗОЛАЙТ========================*/

.postid-1241 > .wrapper > .secondsec_itempage:nth-child(6) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info{
	margin-top: 65px;
}

.postid-1241 > .wrapper > .secondsec_itempage:nth-child(6) > .full_container > .main__container > .secondsec_itempage_content > .secondsec_itempage_content_info p:last-child{
	margin-bottom: 0;
}


.postid-1241 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container:nth-child(1) > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item:nth-child(1) {
	grid-column: 1 / -1;
	margin-bottom: 60px;
}

.catalog-venus-benefits{
	padding-bottom: 0;
}

.postid-1241 > .wrapper > .iteminfo_itempage:nth-child(7) > .full_container > .main__container:nth-child(2) > .iteminfo_itempage_content {
	margin-bottom: -50px;
}



.iteminfo_itempage_content_list_cardsnew_item_title h4 {
  font-family: "Ubuntu-700", sans-serif;
}

.iteminfo_itempage_content_list_cardsnew_item_title {
  max-width: 460px;
}

.iteminfo_itempage_content_list_cardsnew {
  max-width: 960px;
  margin: 0 auto;
}

.postid-832 > .wrapper > .iteminfo_itempage > .full_container > .main__container > .iteminfo_itempage_content > .iteminfo_itempage_content_list > .iteminfo_itempage_content_list_item {
  row-gap: 0;
}

.postid-841 .wrapper > .secondsec_itempage > .full_container > .main__container > .secondsec_itempage_content > .catalogsec_itemspage_content{
	justify-content: center;
	order: 3;
}

.postid-841 .wrapper > .secondsec_itempage > .full_container > .main__container > .secondsec_itempage_content {
	display: flex;
	flex-direction: column;
}


.postid-841 .wrapper > .secondsec_itempage > .full_container > .main__container > .secondsec_itempage_content > .productionsec_mainpage_cards {
	order: 2;
}

.postid-841 .wrapper > .secondsec_itempage > .full_container > .main__container > .secondsec_itempage_content > .firstsec_mainpage_content_promo_list {
	order: 1;
}










