.hero { 
    padding-top: 80px;
    position: relative;
}

.hero::after{ 
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 48px;
    background: url(../images/decor-icon.svg) repeat-x;
    bottom: 106px;
}

.hero-container { 
    display: flex;
    align-items: center;
    gap: 28px;
}



.hero h1 { 
    margin-bottom: 40px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 62px;
    line-height: 115%;
    text-transform: uppercase;
    color: #2c332f;
}

.hero h1 strong { 
    color :#3596ed;
    font-weight: 600;
}


.hero .text { 
    margin-bottom: 140px;
}
.hero-info .text {
    margin-bottom: 140px;
    max-width: 440px;    
}

.hero-img { 
    position: relative;
    display: flex;
}

.hero-chose { 
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%);
    max-width: 161px;
    text-align: center;
    padding: 22px;
    background: rgb(255 255 255 / 0.9);
    border: 1px solid #535755;
}

.section { 
    margin-bottom: 140px;
}

.news-container{ 
    display: flex;
    gap: 28px;
}

.news-article { 
    display: flex;
    flex-direction: column;
    max-width: 284px;
    background: #fff;
    border: 1px solid #d3cbd9;
    overflow: hidden;
}

.news-article img { 
    display: block;
}

.news-info{ 
    padding: 20px 20px 0px;
    margin-bottom: 12px;
}

.news-date { 
    display: inline-block;
    margin-bottom: 8px;
}

.news-article footer  {
    padding: 0 20px 20px ;
    margin-top: auto;
}


.news-link { 
    display: inline-flex;
    align-items: center;
    gap:8px ;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #3596ed;
}


.news-link::after { 
    content: "";
    display:inline-block;
    width: 21px;
    height: 8px;
    background: url(../images/arow-right-icon.svg);
    transition: transform 0.2s;


}

.news-link:hover::after { 
    transform: translateX(5px);
}
