

.hero {
    width: 100%;
    height: 800px;
    background-image: url("/assets/icons/hero/blueBack.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
}

.hero_image_adaptive {
    display: none;
    width: 394px;
    height: 390px;
}
.hero_image_block {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 394px;
    height: 390px;
    overflow: hidden;
    padding-left: 34px;
}
.hero_image {
    width: 394px;
    height: 390px;
}

.hero_container {
    max-width: 1280px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;

}
.hero_title_block {
    max-width: 858px;
    width: 100%;
    display: flex;
    flex-direction: column;

}
.hero_title {
    font-size: 38px;
    font-weight: 900;
    line-height: 54px;
    text-align: left;
    color: #FFFFFF;
    /* text-wrap: nowrap */
}

.hero_description {
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    text-align: left;
    color: #D6D8DE;
}

.hero_btn_contact {
    width: 133px;
    height: 54px;
    border-radius: 76px;
    border: none;
    text-decoration: none;
    background-color: #FBFBFB;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #2D63E4;
}


@media screen and (max-width: 1210px) {

    .hero_image_block {
        transform: translate(0px, 0%);
    }
}

@media screen and (max-width: 1210px) {

    .hero {
        flex-direction: column;
        justify-content: center
    }
    .hero_image_adaptive {
        display: block;
    }

    .hero_image_block {
        display: none;
    }
    
}

@media screen and (max-width: 950px) {
    .hero_image_adaptive {
        width: 270px;
        height: 270px;
    }
    .hero_title_block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero_title {
        text-align: center;
    }
    .hero_description {
        text-align: center;
    }
}

@media screen and (max-width: 950px) {
    .hero_title {
        font-size: 32px;
    }
}

@media screen and (max-width: 580px) {
    .hero_btn_contact {
        width: 112px;
        height: 38px;
        font-size: 12px;
    }
    .hero_image_adaptive {
        width: 160px;
        height: 160px;
        margin-bottom: 26px;
    }
    .hero_title {
        font-size: 18px;
        line-height: 28px;
    }
    .hero_description {
        font-size: 12px;
        line-height: 14.52px;
    }
}