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

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

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

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

.about_wrapper-desc {
    width: 54.1%;
    text-align: left;
}

.about_wrapper-desc h2 {
    width: 84%;
}

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

@media (max-width: 1200px) {
    .hero_wrapper-desc {
    width: 55%;
}
}

@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_img {
        width: 78px;
    }
}

