.hero-wrapper{
    background: #000;
    color: #fff;
}
.hero-sec{
    width: 83%;
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    height: 55vh;
    padding: 3rem 0;
}
.hero-sec .hero-right{
    width: 53%;
}
.hero-sec .hero-right p{
    font-size: 19px;
    font-weight: 500;
}
.hero-sec .hero-right h3{
    font-size: 2rem;
    font-weight: 700;
}
.hero-sec .hero-left{
    width: 38%;
}
.hero-sec .hero-left h1{
    font-size: 3rem;
    font-weight: 900;
}

@media (max-width: 989px) {
    .hero-sec .hero-left h1 {
        font-size: 2rem;
    }
    .hero-sec .hero-right p {
        font-size: 17px;
    }
    .hero-sec .hero-right h3 {
        font-size: 1.7rem;
    }
}
@media (max-width: 779px) {
    .hero-sec {
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero-sec .hero-left {
        width: 100%;
        text-align: center;
    }
    .hero-sec .hero-right {
        width: 100%;
    }
}