.hero-sec{
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin: 3rem auto;
}
.hero-sec .hero-sec-left{
    width: 45%;
}
.hero-sec .hero-sec-left h1{
    font-size: 2.8rem;
    font-weight: 700;
}
.hero-sec .hero-sec-left h6{
    font-size: 22px;
    font-weight: 500;
}
.hero-sec .hero-sec-left p{
    font-size: 19px;
    font-weight: 400;
}
.hero-sec .hero-sec-right{
    width: 50%;
}
.branch-address{
    display: flex;
    align-items: flex-start;
}
.branch-address span{
    font-size: 19px;
    font-weight: 400;
}

@media (max-width: 763px) {
    .hero-sec {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .hero-sec .hero-sec-left {
        width: 100%;
    }
    .hero-sec .hero-sec-right {
        width: 100%;
    }
}