.banner-image img{
    width:100%;
    height: clamp(250px, 60vw, calc(100vh - 90px));
    object-fit: cover;
}

.home-title {
    display: inline-block;
    min-width: 180px;
    padding: 6px 8px;
    text-align: center;
    color: #333;
    font-weight: bold;
    margin-bottom: 16px;
}

.home-title.grey {
    background: var(--second-color);
    color: #fff;
}

.home-title.gold {
    background: var(--primary-color);
    color: #fff;
}


.home-section-1{
    position: relative;
    margin-top: 2rem;
    margin-bottom:2rem;
}
.home-section-1:after {
    content:"";
    position: absolute;
    top: 0;
    left: calc(50% - 7px);
    width: 7px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #BEA575);
}
@media (max-width: 992px) {
    .home-section-1:after{
        display:none;
    }
}

.home-section-1 .block-grid-col{
    padding-top:3rem;
    padding-bottom:2rem;

}
.home-section-1 .block-grid-col .block-grid-col{
    padding-top:unset;
}

.home-short-cuts{
    margin: 2rem 3rem;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
}
@media (max-width: 576px) {
    .home-short-cuts{
        grid-template-columns: repeat(2, 1fr);
    }
}


.home-short-cuts .image-link-item{
    text-align: center;
}
.home-short-cuts .image-link-img{
    margin-bottom:8px;
    transition: all 0.3s ease;
}
.home-short-cuts .image-link-item:hover .image-link-img{
    transform: translateY(-10px);
}

.home-short-cuts .image-link-title
{
    display: block;
    color: #705410;
    font-weight: bold;
    font-size: 1rem;
}

.home-section-1 > .block-grid-row > .block-grid-col:nth-child(2){
    padding-left: 2rem;
}
@media (max-width: 992px) {
    .home-section-1 > .block-grid-row > .block-grid-col:nth-child(2){
        padding-left: 0;
    }
}

.home-new-title{
    margin-bottom: 15%;
}

.home-news-media{
    position: absolute;
    display: block;
    top: -2rem;
    right: 0;
    width:110%;
}
.home-news-media:before,
.home-news-media:after {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    background: linear-gradient(to right, var(--second-color), #909CA7);
    z-index: -1;
}
.home-news-media:before
{
    top: -1.25rem;
    width: 80%;
    height: 2rem;
}
.home-news-media:after {
    top: 90%;
    width: 8rem;
    height: 80%;
}




/* ===============  Section 2  ================== */

.home-section-2{
    padding-top: 2rem;
    padding-bottom:2rem;
}

.home-products{
    display:flex;
    flex-wrap: wrap;
    column-gap:5rem;
    margin-top:2rem;
}

.home-products > .image-link-item{
    flex:1;
    text-align: center;
    position: relative;
}

.home-products img{
    width:100%;
    max-width: 260px;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.home-products .image-link-title{
    font-weight: bold;
    margin: 16px 0 32px;
    color:var(--second-color-darken);
}

.home-products .image-link-item:hover .image-link-title{
    color:var(--primary-color);
}

.home-products .image-link-item:nth-child(1):after{
    content:"";
    position: absolute;
    z-index: -1;
    display:block;
    width: 50%;
    height: 100%;
    top: -20%;
    right: -20%;
    background: url(/media/hgcghpjl/7f114d4a26bc41598b24cb0ed6e8ae1b.webp) center center no-repeat;
    background-size: contain;
}


.home-products .image-link-item:nth-child(3):after{
    content:"";
    position: absolute;
    z-index: -1;
    width: 10%;
    height: 120%;
    top: -5%;
    left: -15%;
    background: linear-gradient(to right, #BEA575, transparent);
}

@media (max-width: 992px) {
    .home-products > .image-link-item{
        flex:1 1 100%;
    }
    .home-products .image-link-item:after{
        display:none !important;
    }
    .home-products img{
        max-width: 600px;
        aspect-ratio: 16/10;
    }
}
