.full-banner {
    position: relative;
    height: 100vh;
    max-height: calc(100vh - 108px);
    margin-bottom: 120px;
    overflow: hidden;
}
.full-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-banner_content {
    position: absolute;
    bottom: 125px;
    left: 50%;
    width: calc(100% - 32px);
    max-width: 840px;
    transform: translate(-50%);
    text-align: center;
    color: var(--color-white);
}
.full-banner_subtitle {
    margin-bottom: 12px;
}
.full-banner_title {
    margin-bottom: 32px;
    text-transform: uppercase;
}
.full-banner_btn {
    text-transform: uppercase;
}

/* Products Featured */
.products-featured {
    margin-bottom: 120px;
}
.products-featured + .products-featured{
    margin-top: -120px;
}
.products-featured_grid {

}
.products-featured_grid .product-item {
    max-width: 305px;
}

.products-featured_products {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.products-featured_products-content {
    width: 100%;
    max-width: 710px;
}
.products-featured_left {
    /* margin-left: auto; */
    padding: 25px 40px 90px 40px;
}
.products-featured_right {
    /* margin-right: auto; */
    padding: 80px 40px 35px 40px;
}
.products-featured_title {
    text-align: center;
    font-size: 64px;
    font-weight: 600;
    line-height: 80px; /* 125% */
    text-transform: uppercase;
}
.products-featured_products-grid {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 710px;
    margin-top: 64px;
    gap: 24px;
}

.products-featured_image {
    overflow: hidden;
    max-height: 820px;
}
.products-featured_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.products-featured_btns {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

/* Images Grid */
.images-gird {
    gap: 24px;
    margin-bottom: 40px;
}
.images-gird_item {
    display: block;
}
.images-gird_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Home Info Block */
.home-info {
    margin-bottom: 120px;
    padding: 56px 0;
    background: var(--color-main-2);
    color: var(--color-white);
}
.home-info_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.home-info_content svg,
.home-info_content img {
    display: block;
    max-height: 50px;
}
.home-info_text {
    width: 100%;
    max-width: 886px;
    text-align: center;
}

/* Products Sale */
.product-sale {
    margin-top: 120px;
    margin-bottom: 120px;
}
.product-sale_title {
    margin-bottom: 80px;
    text-align: center;
    color: var(--color-main-2);
}
.product-sale_products {
    gap: 24px;
}
.product-sale_btns {
    display: flex;
    justify-content: center;
    margin-top: 65px;
}

/* Full Banner 2 */
.full-banner-2 {
    position: relative;
    max-height: 100vh;
    margin-bottom: 120px;
    overflow: hidden;
}
.full-banner-2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-banner-2_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 886px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
}
.full-banner-2_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 145%;
}
.full-banner-2_btn {
    margin-top: 44px;
    text-transform: uppercase;
}

/* Home Blog */
.blog-module {
    margin: 120px 0;
}
.blog-module_title {
    color: var(--color-main-2);
    text-align: center;
}
.blog-module_grid {
    gap: 24px 45px;
}
.blog-module_btns {
    display: flex;
    justify-content: center;
    margin-top: 65px;
}

/* Responsive */
@media (max-width: 1150px) {
    .full-banner {
        margin-bottom: 80px;
    }

    .products-featured_right {
        padding: 32px 24px 44px 24px;
    }
    .products-featured_btns {
        margin-top: 24px;
    }

    .products-featured_products-content {
        padding: 32px 24px 44px 24px;
    }
    .products-featured_products-grid {
        max-width: 100%;
        margin-top: 32px;
        gap: 8px;
    }
    .products-featured_title {
        font-size: 36px;
        font-weight: 600;
        line-height: 44px;
    }
}

@media (max-width: 992px) {
    .full-banner_content {
        max-width: 600px;
    }
    .full-banner_subtitle {
        margin-bottom: 6px;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
    }
    .full-banner_title {
        margin-bottom: 16px;
        font-size: 32px;
        font-weight: 600;
        line-height: 38px;
    }

    .images-gird {
        gap: 8px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .products-featured_grid:nth-child(1) {
        display: flex;
        flex-direction: column-reverse;
    }
    .products-featured_products-content {
        max-width: 100%;
    }

    .products-featured {
        margin-bottom: 36px;
    }
    .products-featured + .products-featured{
        margin-top: -36px;
    }
    .products-featured_products-content {
        padding: 32px 0 44px 0;
    }

    .home-info {
        margin-bottom: 80px;
        padding: 24px 0;
    }
    .home-info_text {
        font-size: 14px;
    }

    .product-sale {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .product-sale_title {
        margin-bottom: 32px;
        font-size: 36px;
        font-weight: 600;
        line-height: 44px;
    }
    .product-sale_products {
        margin: 0 -16px;
        gap: 32px 8px;
    }
    .product-sale_btns {
        margin-top: 24px;
    }

    .full-banner-2 {
        margin-bottom: 80px;
    }
    .full-banner-2_text {
        font-size: 14px;
        font-weight: 400;
        line-height: 145%;
    }
    .full-banner-2_btn {
        margin-top: 24px;
    }

    .blog-module {
        margin: 80px 0;
    }
    .blog-module_title {
        margin-bottom: 32px;
        font-size: 36px;
        font-weight: 600;
        line-height: 44px;
    }
    .blog-module_grid {
        gap: 56px 0;
    }
    .blog-module_btns {
        margin-top: 24px;
    }
}