.hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
}

.hero__article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 700px;
}

.hero_title {
    font-weight: 600;
    font-size: 36px;
    color: var(--main-black);
    margin-bottom: 12px;
}


.hero-titleHighlight {
    font-weight: 600;
    font-size: 36px;
    color: var(--main-blue);
}

.hero-titleHighlightKg {
    font-weight: 600;
    font-size: 36px;
    color: var(--main-blue);
}

.hero_titleKg {
    font-weight: 600;
    font-size: 36px;
    color: var(--main-black);
    margin-bottom: 12px;
}

.hero_description {
    color: #667085;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 32px;
}

.hero__connectButton {
    padding: 8px 15px;
    background-color: var(--main-blue);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.hero_btn_contact_text {
    text-wrap: nowrap;
}

.hero_connectText {
    font-size: 16px;
    font-weight: 400;
    color: var(--main-white);
}

.hero__imgs_block {
    position: relative;
    width: 456px;
    height: 480px;
}

.hero_image {
    width: 235px;
    height: 163px;
}

.hero-img1 {
    -webkit-transition: 1s ease;
    transition: 1s ease;
    position: absolute;
    top: 230px;
    right: 0;
    z-index: 1;
}
.hero-img2 {
    -webkit-transition: 1s ease;
    transition: 1s ease;
    width: 221px;
    height: 191px;
    position: absolute;
    top: 104px;
    left: 0;
    z-index: 2;
}
.hero-img3 {
    -webkit-transition: 1s ease;
    transition: 1s ease;
    position: absolute;
    bottom: -10px;
    right: 203px;
    z-index: 3;
}

.hero-img4 {
    -webkit-transition: 1s ease;
    transition: 1s ease;
    position: absolute;
    top: 0;
    right: 78px;
    z-index: 1;
}

.hero-img {
    display: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.hero__imgs_block:hover {
    .hero-img1 {
        -webkit-transition: 1.5s ease;
        transition: 1.5s ease;
        top: 346px;
        right: 226px;
        width: 260px;
        height: 200px;
    }
    .hero-img2 {
        -webkit-transition: 1s ease;
        transition: 1s ease;
        top: 87px;
        left: -197px;
        z-index: 1;
    }

    .hero-img3 {
        -webkit-transition: 1s ease;
        transition: 1s ease;
        bottom: 119px;
        right: 20px;
        width: 260px;
        height: 200px;
        z-index: 2;
    }
    .hero-img4 {
        -webkit-transition: 1s ease;
        transition: 1s ease;
        top: -33px;
        right: 165px;
        width: 260px;
        height: 200px;
        z-index: 2;
    }
}
















@media screen and (max-width: 1023px) {
    .hero {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 60px;
    }

    .hero__article {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: unset;
        text-align: center;
    }
    .hero__imgs_block {
        display: none;
    }

    .hero-img {
        display: block;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-bottom: 16px;
    }

        .hero-connectButtonContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

@media screen and (max-width: 500px) {
    .hero {
        margin-bottom: 40px;
    }
    .hero-img {
        width: 288px;
        height: 288px;
    }

   
}

@media screen and (max-width: 360px) {
    .hero-img {
        width: 134px;
        height: 164px;
    }

    .hero_title {
        font-size: 18px;
    } 
    .hero-titleHighlightKg {
        font-size: 18px;
    }
    .hero-titleHighlight {
        font-size: 18px;
        font-weight: 600;
    }

    .hero_description {
        font-size: 12px;
    }

    .hero_connectText {
        font-size: 14px;
    }

    .hero__connectButton {
        padding: 8px;
    }
}

