/* Обнуление стандартных стилей*/

*{
   padding: 0;
   margin: 0;
   border: 0;
}
*,*:before,*:after{
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
   height: 100%;
   width: 100%;
   font-size: 100%;
   line-height: 1;
   font-size: 14px;
   -ms-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family: inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding: 0;border: 0;}
a:visited{text-decoration: none;}
a {text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size: inherit;font-weight: 400;}

/* Установка стандардных стилей */

body{
   font-family: 'Inter', sans-serif;
   font-size: 17px;
   line-height: 140%;
   font-weight: 400;
   color: #000000;
}
.container{
   width: 1400px;
   margin: 0 auto;
}
h1, h2, h3, h4, h5{
   line-height: 120%;
}
h1{
   font-size: 72px;
   font-weight: 700;
}
h2{
   font-size: 42px;
   font-weight: 600;
}
h3{
   font-size: 26px;
   font-weight: 500;
}
h4{
   font-size: 24px;
   font-weight: 500;
}
h5{
   font-size: 20px;
   font-weight: 500;
}
h6{
   font-size: 13px;
   font-weight: 400;
   line-height: 140%;
}
a {
   text-transform: uppercase;
   font-size: 17px;
   font-weight: 500;
   line-height: 140%;
   color: #000000;
}

/* Главный экран */

.header{
   height: 900px;
   background: url('../img/pictures/background.png') top / cover no-repeat;
   background-color: #A5A5A5;
   padding-top: 40px;
   margin-bottom: 150px;
   position: relative;
   z-index: 0;
}
.header__wrap{
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 40px;
   z-index: 10;
}
.header__address{
   width: 300px;
   font-size: 14px;
   font-weight: 500;
   color: #909090;
}
.header__logo{
   display: block;
   width: 300px;
   height: 40px;
   background: url('../img/icons/header-logo.svg') center / contain no-repeat;
}
.header__call{
   width: 300px;
   text-align: right;
}
.header__call:hover{
   color: #DFA100;
   transition: all 0.2s ease;
}
.header__hamburger{
   display: none;
}
.header__nav-ham{
   display: none;
}
.header__nav{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
}
.current-menu-item > a{
   color:#DFA100;
}
li.menu-item > a{
   text-transform: inherit;
}
li.menu-item > a:hover{
   color: #DFA100;
   transition: all 0.3s ease;
}
.header__link{
   text-transform: inherit;
}
.header__link_active{
   color: #DFA100;
}
.header__link:hover{
   color: #DFA100;
   transition: all 0.3s ease;
}
.header__hero{
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   margin-top: 170px;
}
.header__title{
   max-width: 700px;
   margin-bottom: 40px;
}
.header__button{
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px 70px;
   background-color: #FFD100;
   position: relative;
   transition: all 0.3s ease-in;
}
.header__button::before{
   content: '';
   background-color: rgba(255, 255, 255, 0.2);
   display: block;
   width: 0%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   transition: all 0.2s ease-in;
}
.header__button:hover::before{
   width: 100%;
}

/* О нас */

.about{
   margin-bottom: 120px;
}
.about__flex-wrap{
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.about__content{
   max-width: 574px;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.about__title{
   margin-bottom: 40px;
}
.about__text{
   margin-bottom: 17px;
}
.about__text:last-child{
   margin-bottom: 0;
}
.about__photo{
   display: block;
   margin-right: -100px;
   width: 792px;
   height: 500px;
   object-fit: cover;
   object-position: left center;
}

/* Преимущества */

.benefits{
   margin-bottom: 120px;
}
.benefits__list{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}
.benefits__item{
   width: 280px;
   display: flex;
   flex-direction: column;
   align-items: center;
}
.benefits__icon{
   display: block;
   width: 110px;
   height: 110px;
   margin-bottom: 20px;
   object-fit: cover;
}
.benefits__title{
   width: auto;
   text-align: center;
}

/* Почему мы */

.why{
   margin-bottom: 150px;
}
.why__flex-wrap{
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.why__photo{
   display: block;
   margin-left: -100px;
   width: 792px;
   height: 500px;
   object-fit: cover;
   object-position: left center;
}
.why__content{
   max-width: 574px;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.why__title{
   margin-bottom: 40px;
}
.why__text_1{
   margin-bottom: 17px;
}
.why__text_2{
   margin-bottom: 50px;
}
.why__numbers{
   display: flex;
   align-items: flex-start;
}
.why__numbers-column{
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.why__numbers-column{
   margin-right: 30px;
}
.why__numbers-item{
   display: flex;
   align-items: center;
}
.why__numbers-item_1{
   margin-bottom: 30px;
}
.why__number{
   margin-right: 16px;
}

/* Ассортимент */

.assortment{
   margin-bottom: 150px;
}
.assortment__title{
   margin-bottom: 80px;
}
.assortment__list{
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.assortment__item{
   display: flex;
   flex-direction: column;
   align-items: center;
}
.assortment__photo{
   display: block;
   width: 260px;
   height: 260px;
   margin-bottom: 20px;
   object-fit: cover;
}
.assortment__button{
   display: flex;
   align-items: center;
   justify-content: center;
   width: 260px;
   height: 60px;
   font-size: 15px;
   text-transform: inherit;
   border: 1px solid #000000;
   transition: all 0.3s ease;
}
.assortment__button:hover{
   background-color: #000000;
   color: #FFFFFF;
}

/* Фотографии производства */

.photos{
   margin-bottom: 150px;
}
.photos__title{
   margin-bottom: 80px;
}
.photos__list{
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: flex-start;
}
.photos__item{
   display: block;
   width: 456px;
   height: 320px;
   object-fit: cover;
   object-position: center;
}

/* Футер */

.footer{
   background-color: #000000;
   color: #FFFFFF;
   padding: 100px 0px;
}
.footer__wrap{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}
.footer__column{
   width: 338px;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.footer__logo{
   display: block;
   width: 128px;
   height: 40px;
   background: url('../img/icons/footer-logo.svg') center / contain no-repeat;
   margin-bottom: 40px;
}
.footer__address{
   font-size: 14px;
   color: #909090;
}
.footer__column{
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.footer__title{
   color: #909090;
   margin-bottom: 30px;
}
.footer__links{
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.footer__link{
   font-size: 17px;
   margin-bottom: 16px;
   color: #FFFFFF;
   text-transform: inherit;
   transition: all 0.3s ease;
}
.footer__link:hover{
   color: #FFD100;
}
.footer__link:last-child{
   margin-bottom: 0;
}

/* Страница каталога */

.header_catalog{
   height: 184px;
   background: none;
   padding: 40px 0px;
   margin-bottom: 90px;
}
.catalog-section{
   margin-bottom: 150px;
}
.catalog-wrap{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}
.sort{
   width: 338px;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.sort-opened {
   display: none;
}
.sort__menu{
   display: none;
}
.sort__title{
   font-size: 26px;
   line-height: 120%;
   text-transform: inherit;
   margin-bottom: 40px;
   transition: all 0.3s ease;
}
.sort__title_active{
   color: #DFA100;
}
.sort__title:hover{
   color: #DFA100;
}
.sort__list {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.sort__link{
   font-size: 17px;
   text-transform: inherit;
   margin-bottom: 20px;
   transition: all 0.3s ease;
}
.sort__link:hover{
   color: #DFA100;
}
.sort__link:last-child{
   margin-bottom: 0;
}
.sort__quantity{
   display: inline-block;
   font-size: 17px;
   font-weight: 400;
   color: #909090;
}
.catalog{
   width: 1046px;
}
.catalog__section{
   display: flex;
   flex-direction: column;
   margin-bottom: 50px;
}
.catalog__title{
   margin-bottom: 40px;
}
.catalog__list{
   width: 1046px;
   display: flex;
   flex-direction: row;
   align-items: flex-start;
   flex-wrap: wrap;
}
.catalog__item{
   width: 161px;
   margin-bottom: 30px;
   margin-right: 16px;
   text-transform: inherit;
}
.catalog__item:nth-child(6n){
   margin-right: 0;
}
.catalog__item-photo{
   display: block;
   width: 161px;
   height: 161px;
   object-fit: contain;
   object-position: center;
   margin-bottom: 10px;
}
.catalog__item-title{
   max-width: 161px;
}
.catalog__pagination{
   display: flex;
   align-items: center;
   align-self: flex-end;
   margin-top: 20px;
}
.catalog__pagination-link{
   font-size: 17px;
   line-height: 140%;
   font-weight: 500;
   padding: 12px 15px;
   color: #909090;
   border: 1px solid #909090;
   margin-right: 10px;
   transition: all 0.3s ease;
}
.catalog__pagination-link:hover{
   color: #000000;
   border: 1px solid #000000;
}
.catalog__pagination-link:last-child{
   margin-right: 0;
}
.catalog__pagination-link_active{
   color: #000000;
   border: 1px solid #000000;
}

/* Страница товара */

.product__wrap{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   margin-bottom: 150px;
}
.product__photo{
   display: block;
   width: 620px;
   height: 620px;
   object-fit: contain;
   object-position: center;
}
.product__photo_mobile{
   display: none;
}
.product__content{
   display: flex;
   width: 574px;
   flex-direction: column;
   align-items: flex-start;
}
.product__breadcrumps{
   display: flex;
   align-items: center;
   margin-bottom: 15px;
}
.product__breadcrumps-item, .product__breadcrumps-divider{
   font-size: 17px;
   line-height: 140%;
   font-weight: 400;
   text-transform: inherit;
   color: #DFA100;
   transition: all 0.3s ease;
}
.product__breadcrumps-item:hover{
   color: #000000;
}
.product__breadcrumps-divider{
   color: #000000;
   margin: 0 8px;
}
.product__title{
   margin-bottom: 12px;
   max-width: 456px;
}
.product__vendor-wrap{
   display: flex;
   align-items: center;
   margin-bottom: 30px;
}
.product__vendor{
   display: inline-block;
   color: #909090;
   margin-right: 5px;
}
.product__vendor-num{
   display: inline-block;
   color: #909090;
}
.product__text{
   max-width: 456px;
   margin-bottom: 40px;
}
.product__characteristics-title{
   margin-bottom: 30px;
}
.product__characteristics-wrap{
   display: flex;
   flex-direction: column;
   width: 456px;
}
.product__characteristics-row{
   width: 456px;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}
.product__characteristics-name{
   color: #909090;
   margin-bottom: 20px;
}