

/* ============ БАЗОВЫЕ СТИЛИ (для всех размеров) ============ */
.header-block{
    height: 35px;
    background: #efebe3;
}

.hero_logo_wrapper{
    height: 50px;
    align-self: flex-start;
    
}
.hero_logo_wrapper img {
    height: 100%;

}


section.page_cover{
    background: #efebe3;
}

h1.hero_title{
	text-transform: uppercase;
	font-weight: 500;
    font-size: 55px;
    
    /* font-size: calc(24px + (55 - 24) * ((100vw - 320px) / (1200 - 320))); */
    /* font-size: calc(100vh); */

    /* word-break: break-word; 
    overflow-wrap: break-word; 
    hyphens: auto;  */
	
}

.hero_text {
	font-weight: 300;
    font-size: 22px;
    /* font-size: calc(14px + (22 - 14) * ((100vw - 320px) / (1200 - 320))); */
}

.hero{
    width: 100%;
    background: #efebe3;
    padding: 0 5%;
    display: flex;
    flex-direction: row;
    
    /* gap: 40px; */
    justify-content: space-between;
    padding-bottom: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    box-sizing: border-box;
    overflow: hidden;
}

.hero_aside_left{
    width: 70%;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}



.bottom_align{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-end;
}

@media (max-width:700px) {
    .hero_aside_left{
        width: 100%;
    }

    .hero_aside_right{
        width: 0px;
    }
}

.hero_aside_right{
    width: 30%;
    display: flex;
    flex-direction: column;
}

.hero_image_wrapper{
    height: 400px;
    width: 100%;
}

.hero_image_wrapper img{
    height: 100%;
}


.button-dwl{
    /* border: 1px solid black; */
    border-radius: 3px;
    padding: 1px;
    color: #1b2023;
    background:#fdd936 ;
    font-weight: 500;

}

.hero_image_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}



