.hero_wrapper {
    display: flex;
    justify-content: space-between;
}

.hero_wrapper-desc {
    width: 46%;
    text-align: left;
}

.hero_wrapper-img {
    align-self: center;
}

.about_wrapper {
    display: flex;
    justify-content: space-between;
}

.about_wrapper-desc {
    width: 54%;
}

.about_wrapper-img {
    align-self: center;
}

.feature_box-wrapper {
    display: flex;
}

.feature_box-wrapper_img {
    align-self: center;
}

@media (max-width: 1000px) {
    .grid-2 .feature-box {
        padding: 17px 17px;
    }
    
    .feature_box-wrapper_desc h3{
        font-size: 24px;
    }
    
    .feature_box-wrapper_desc p{
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .hero_wrapper {
        flex-direction: column;
    }
    
    .hero_wrapper-desc {
        width: 100%;
    }
    
    .about_wrapper {
        flex-direction: column-reverse;
    }
    
    .about_wrapper-desc {
        width: 100%;
    }
}

@media (max-width: 516px) {
    .feature_box-wrapper_desc h3 {
        font-size: 22px;
    }
    
        .feature_box-wrapper_desc p {
        font-size: 14px;
    }
}