:root {
    --primary-color: 227, 25, 54;
    --dark-color: 0, 0, 0;
    --light-color: 34, 34, 34;
    --white-color: 255, 255, 255;
    --font-family: Roboto, sans-serif;
    --anim: 0.4s ease;
}

.container {
    max-width: 1220px;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

svg {
    fill: currentColor;
}

a, button {
    color: inherit;
}

h1,h2,h3,h4,h5,h6 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

h1, .h1 {
    font-size: 42px;
    line-height: 42px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}

h1 span, .h1 span {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    display: block;
    line-height: 14px;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3, .h3 {
    text-align: center;
    font-size: 17px;
    line-height: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

h3 span, .h3 span {
    font-weight: normal;
    text-transform: none;
    font-size: 15px;
    font-weight: 300;
    line-height: 16px;
    display: block;
    margin-top: 10px;
    letter-spacing: 0.5px
}
.header {
    background: rgb(var(--dark-color));
    padding-top: 35px;
}
.header-phones {
    display: flex;
    flex-direction: column;
    color: rgb(var(--primary-color));
    line-height: 27px;
    /* flex: 1 0 auto; */
}

.header-phones__item span {
    color: rgb(var(--white-color));
    font-size: 21px;
    letter-spacing: 1px;
}

.header-phones__item {
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
}
.hero-item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.hero-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
    /* min-height: 500px; */
}
.hero-item__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-item__content {
    color: rgb(var(--white-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 55%;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-item__title {
    font-size: 42px;
    text-align: center;
    font-weight: 300;
    line-height: 42px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-item__description {
    width: 50%;
    text-align: center;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.button {
    width: 260px;
    height: 60px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    line-height: 60px;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2;
    letter-spacing: 0.5px;
    background: rgb(var(--primary-color));
    position: relative;
}
.icon-next {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    background: url('/assets/img/icon-next.png') 0px 0px no-repeat;
}

.fon-top_black::before {
    border-left: 4000px solid #000;
    border-bottom: 380px solid transparent;
    width: 0;
    height: 0;
    content: "";
    display: block;
    top: 0;
    right: 0;
    position: absolute;
    z-index: 9;
}

.fon-top_white::before {
    border-left: 4000px solid #fff;
    border-bottom: 380px solid transparent;
    width: 0;
    height: 0;
    content: "";
    display: block;
    top: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.fon-bottom_middle_white::after {
    border-left: 4000px solid transparent;
    border-bottom: 380px solid #fff;
    width: 0;
    height: 0;
    content: "";
    display: block;
    bottom: 0;
    left: 50%;
    position: absolute;
    z-index: 1;
}

.fon-bottom_middle_black::after {
    border-left: 4000px solid transparent;
    border-bottom: 380px solid #000;
    width: 0;
    height: 0;
    content: "";
    display: block;
    bottom: 0;
    left: 50%;
    position: absolute;
    z-index: 1;
}

.fon-bottom_white::after {
    border-left: 4000px solid transparent;
    border-bottom: 380px solid #fff;
    width: 0;
    height: 0;
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.fon-bottom_black::after {
    border-left: 4000px solid transparent;
    border-bottom: 380px solid #000;
    width: 0;
    height: 0;
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}
.advantages {
    padding: 40px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advantages-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.advantages-item__content {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 18px;
}
.advantages-item__content span{
    font-weight: 400;
    text-transform: none;
}
.clients {
    padding: 40px 0 23px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-feedback {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.footer-feedback__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.footer-feedback__content {
    display: flex;
    justify-content: end;
    position: relative;
    margin-top: 110px;
    gap: 40px;
    color: rgb(var(--white-color));
    align-items: center;
}

.footer-fedback__caption {
    line-height: 18px;
    font-size: 15px;
}

.footer-fedback__title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    line-height: 30px;
    margin-right: 30px;
}

.footer-fedback__title span {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}
footer {
    background: rgb(var(--dark-color));
    color: rgb(var(--white-color));
    padding: 50px 0;
}

.footer-item__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-contacts {
    font-weight: 300;
    line-height: 18px;
    margin-bottom: 15px;
}

.footer-contacts__phone {
    text-decoration: none;
    margin-left: 4px;
}

.footer-copy {
    font-weight: bold;
    line-height: 18px;
}

.footer-text {
    line-height: 18px;
}
.footer-menu {
    list-style: none;
    padding: unset;
    line-height: 18px;
}
.hero-inner {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-inner__content {
    padding-top: 70px;
    position: relative;
}
.docs {
    padding: 40px 0 34px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.docs-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.docs-item__title {
    font-weight: 700;
    line-height: 18px;
}

.docs-item__link {
    color: rgb(var(--primary-color));
    text-decoration: none;
    font-weight: 400;
}
.office {
    position: relative;
    overflow: hidden;
    height: 600px;
    display: flex;
}

.office-item {
    /* flex: 1 0 auto; */
    width: 50%;
}
.office-item--right {
    background: rgb(var(--dark-color));
    color: rgb(var(--white-color));
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.office-content {
    text-align: center;
    width: 70%;
}

.office-caption {
    text-align: start;
    font-size: 15px;
    font-weight: 300;
}

.office-title {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 600;
}
.route {
    height: 400px;
    overflow: hidden;
    display: flex;
}

.route-left {
    /* flex: 1 0 auto; */
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.route-right {
    /* flex: 1 0 auto; */
    width: 50%;
}

.route__image {
    display: block;
    width: 100%;
    height: 100%;
}

.route__image img {
    width: 100%;
}

.route__title {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}

.route__caption {
    font-size: 15px;
    font-weight: 300;
    width: 66%;
}
.store {
    position: relative;
    overflow: hidden;
    height: 600px;
    display: flex;
}

.store-left {
    /* flex: 1 0 auto; */
    width: 50%;
    background: rgb(var(--dark-color));
    color: rgb(var(--white-color));
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.store-right {
    /* flex: 1 0 auto; */
    width: 50%;
}

.store__caption {
    font-size: 15px;
    font-weight: 300;
    width: 66%;
}

.store__title {
    font-size: 17px;
    font-weight: 600;
}
.hero-inner--about {
    height: 450px;
    color: rgb(var(--white-color));
}
.black-fon {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(var(--dark-color));
}
.about-one {
    position: relative;
    overflow: hidden;
    display: flex;
    height: 600px;
}

.about-one__left {
    flex: 1 0 auto;
    width: 50%;
}

.about-one__right {
    /* flex: 1 0 auto; */
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.about-one__left img {
    width: 100%;
}

.about-one__caption {
    width: 66%;
    font-size: 15px;
    font-weight: 300;
}

.about-one__title {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}
.about-two {
    position: relative;
    color: rgb(var(--white-color));
    display: flex;
    height: 400px;
}

.about-two__item {
    position: relative;
    /* flex: 1 0 auto; */
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-two__caption {
    width: 66%;
    font-size: 15px;
    line-height: 16px;
}

.about-two__title {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
.about-three {
    display: flex;
    gap: 2px;
}
.about-three__item .black-fon {
    z-index: 9;
    background: rgb(0 0 0 / 40%);
}
.about-three__item {
    position: relative;
    width: calc(25% - 1px);
    height: 300px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-three__item:hover > .black-fon {
    display: none;
}
.about-three__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-three__content {
    position: relative;
    color: rgb(var(--white-color));
    z-index: 9;
}

.about-three__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-three__caption {
    font-size: 15px;
    font-weight: 300;
}
.menu-list {
    list-style: none;
    padding: unset;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    /* line-height: 1; */
    text-transform: uppercase;
    /* max-width: 80%; */
}

.header-menu {
    color: rgb(var(--white-color));
    /* flex: 1 1 auto; */
    margin: 0 auto;
    max-width: 50%;
}

.menu-item__link {
    text-decoration: none;
    padding: 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu-item__link .menu-icon {
    margin-top: -4px;
}
.menu-item--current > .menu-item__link {
    color: rgb(var(--primary-color));
}
.menu-item__link:hover {
    color: rgb(var(--primary-color));
}

.manufacturer {
    display: flex;
    flex-wrap: wrap;
}

.manufacturer-item {
    width: 50%;
    position: relative;
}

.manufacturer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manufacturer-item.manufacturer-item--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(var(--white-color));
}

.manufacturer-item__title {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.manufacturer-item__caption {
    position: relative;
    width: 70%;
    font-size: 15px;
    font-weight: 300;
    line-height: 16px;
}
.product {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    width: 50%;
    position: relative;
}
.product-item.product-item--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(var(--white-color));
}

.product-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-item__title {
    position: relative;
    padding: 0 30px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.product-item__caption {
    position: relative;
    font-size: 15px;
    font-weight: 300;
    max-width: 60%;
}
.product-buy {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-buy__title {
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-buy__caption {
    text-transform: uppercase;
}
.product-gallery {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-auto-rows: 300px;
    /* gap: 1px; */
    background: black;
}

.product-gallery__item.product-gallery__item--first {
    grid-row: span 2;
    grid-column: span 2;
}

.product-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-gallery__item {
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}
.products-list {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-auto-rows: 300px;
    background: black;
}

.products-list__item {
    position: relative;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
}
.products-list__item.products-list__item--first {
    grid-row: span 2;
    grid-column: span 2;
}

.products-list__item .black-fon {
    z-index: 9;
    background: rgb(0 0 0 / 40%);
}

.products-list__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-list__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    color: rgb(var(--white-color));
    /* text-transform: uppercase; */
    text-align: center;
}
.products-list__title {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.products-list__item--first .products-list__title {
    font-size: 42px;
    font-weight: 300;
}

.products-list__caption {
    font-size: 15px;
    font-weight: 300;
}
.products-list__item--first .products-list__caption {
    text-transform: uppercase;
    font-weight: 400;
}
.products-list__item:hover .black-fon {
    display: none;
}
.footer-menu__item-link {
    text-decoration: none;
}

.footer-menu__item-link:hover {
    color: rgb(var(--primary-color));
}
.footer-menu__item span {
    color: rgb(var(--primary-color));
}
.project-gallery {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-gallery__title {
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-gallery__caption {
    text-transform: uppercase;
}
.category-list__item {
    /* width: 16.66%; */
    height: 150px;
    background: black;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    color: rgb(var(--white-color));
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 auto;
    /* width: 150px; */
}
.main_category {
    display: grid;
    grid-template-columns: repeat(6, 16.6%);
    grid-auto-rows: 150px;
}
.category-list__item.category-list__item--odd {
    background: rgb(var(--light-color));
}
.category-list__item .icon-next {
    bottom: 12px!important;
    right: 10px!important;
    top: unset;
}
.category-list__title {
    padding-bottom: 30px;
    padding-left: 24px;
    width: 100%;
}

.category-list__item:hover {
    background: white;
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--dark-color));
}
.project-main {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-main__title {
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-main__caption {
    text-transform: uppercase;
}
button.burger {
    color: white;
    background: #363636;
    padding: 15px 40px;
    border: none;
    border-radius: 7px;
    font-size: 15px;
}
.route__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.button.button--modal {
    border: none;
    color: white;
    margin: 0 auto;
    display: block;
    width: unset;
    height: unset;
    line-height: unset;
    padding: 16px 28px;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
}

.form-privacy input {
    margin-top: -1px;
}

.form-message.alert {
    display: none;
}
@media (max-width: 1199px) {
    .footer-feedback__content {
        justify-content: center;
    }
    .footer-fedback__caption {
        display: none;
    }
    .hero-item__title, .hero-inner__title {
        font-size: 36px;
    }
    
    .project-main__title {
        font-size: 36px;
    }
    
    .products-list__item--first .products-list__title {
        font-size: 36px;
    }
    
    .products-list__item--first .products-list__caption {
        font-size: 14px;
    }
    
    .footer-fedback__title {
        font-size: 36px;
    }
}
@media (max-width: 991px) {
    .header-phones.header-phones--feedback {
        display: none;
    }
    .footer-item__title, .footer-menu__item, .footer-contacts__item, .footer-copy, .footer-text {
        text-align: center;
    }
    .products-list {
        grid-template-columns: 50% 50%;
        grid-auto-rows: 190px;
    }
    
    .products-list__item.products-list__item--first {
        grid-column: span 1;
    }
    .project-main__title {
        text-align: center;
        font-size: 30px;
    }
    .main_category {
        grid-template-columns: repeat(3, 33.3%);
    }
    .hero-item__title, .hero-inner__title {
        font-size: 30px;
        line-height: 1.2;
    }
    .hero-item__content {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .office {
        height: 380px;
    }
    .route__title, .office-title, .store__title {
        font-size: 15px;
        font-weight: 400;
        width: 66%;
    }
    
    .route__caption, .office-caption, .store__caption  {
        font-size: 13px;
    }
    .product-item__caption {
        max-width: unset;
        padding: 0 30px;
    }
    .docs {justify-content: center;}
    .products-list__title {
        font-size: 15px;
        font-weight: 400;
    }
    .products-list__caption {
        font-size: 14px;
    }
    .footer-feedback__content {
        flex-direction: column;
    }
    
    .footer-fedback__title {
        font-size: 28px;
        margin: unset;
    }
    
    .footer-fedback__title span {
        font-size: 12px;
    }
    .clients {
        justify-content: center;
    }
    .project-main__title {
        font-size: 24px;
    }
    .advantages-item {
        flex: 1 0 auto;
        width: 166px;
        justify-content: center;
    }
    .button {
        width: 200px;
        height: 50px;
        line-height: 50px;
        text-align: start;
        padding-left: 28px;
    }
    
    .icon-next {
        top: 14px;
        right: 18px;
    }
    .hero-item__content {
        padding-top: 60px;
    }
    .hero-item {height: 380px;}

    .hero-item__title, .hero-inner__title {
        font-size: 28px;
    }
    
    .hero-item__description {
        font-size: 12px;
    }
    
    .main_category {
        grid-auto-rows: 95px;
    }
    
    .category-list__item {
        height: 95px;
    }
    
    .products-list__item--first .products-list__title {
        font-size: 28px;
    }
    
    .products-list__item--first .products-list__caption {
        font-size: 12px;
    }
    .product-item__title {
        font-size: 15px;
        text-align: center;
        font-weight: 400;
    }
    
    .product-item.product-item--content {
        padding: 30px 0;
    }
    .manufacturer-item.manufacturer-item--content {
        padding: 30px;
    }
    
    .manufacturer-item__caption {
        width: unset;
        font-size: 12px;
    }
    
    .manufacturer-item__title {
        font-size: 15px;
        font-weight: 400;
    }
    .about-three {
        flex-wrap: wrap;
    }
    
    .about-three__item {
        width: calc(50% - 1px);
    }
    .about-two__title {
        font-size: 15px;
        font-weight: 400;
    }
    
    .about-two__caption {
        font-size: 12px;
    }
    
    .about-two {
        height: auto;
    }
    
    .about-two__item {
        padding: 30px 0;
    }
    .about-one__title {
        font-size: 15px;
        font-weight: 400;
        width: 66%;
    }
    .about-one__caption {
        font-size: 12px;
    }
    
    .about-one {
        height: auto;
    }
    
    .about-one__right {
        padding: 40px 0;
    }
}
@media (max-width: 575px) {
    .hero-inner {
        height: 285px;
    }
    .main_category {
        grid-template-columns: repeat(2, 50%);
    }
    .header-phones {
        flex: 1 0 auto;
    }
    .header-phones__item span {
        font-size: 12px;
    }
    .burger {
        padding: 12px 16px!important;
    }
    .header {
        padding-top: 16px;
    }
    .header-phones {
        line-height: 1.3;
    }
    .header-phones__item {
        font-size: 12px;
    }
    .hero-item__title, .hero-inner__title {
        font-size: 24px;
    }
    
    .category-list__item {
        height: 79px;
    }
    
    .main_category {
        grid-auto-rows: 79px;
    }
    
    .category-list__title {
        padding-bottom: 15px;
    }
    .hero-item__description {
        margin-bottom: 20px;
    }
    
    .hero-item__content {
        padding-top: 40px;
    }
    .products-list__item--first .products-list__title {
        font-size: 18px;
    }
    .product-gallery {
        grid-template-columns: 50% 50%;
        grid-auto-rows: 190px;
    }
    
    .product-gallery__item.product-gallery__item--first {
        grid-column: span 1;
    }
    
    .product-item.product-item--content {
        padding: 30px 0;
    }
    
    .product-item__title {
        font-size: 14px;
    }
    
    .product-item__caption {
        font-size: 12px;
    }
    .products-list {
        grid-auto-rows: 149px;
    }
}