/* .hero-sec {
    position: relative;
    height: 100vh;
}   */
.h-100 {
    height: 100% !important;
}
.h-76 {
    height: 76vh ;
}
@media (max-width: 991px) {
    .h-76 {height: 100%}
}

.has-radius {
    border-radius: 50px;
}
.hero-sec .split-sec {
    height: 100%;
    position: relative;
    padding: 125px 0;
}
.hero-sec .hero-content {
    position: relative;
    background-color: #000000BF;
    padding: 52px 35px;
    z-index: 2;
    transition: all ease-in-out 0.7s;
}
.hero-sec .split-sec.left-sec::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/left-sec.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.hero-sec .right-sec::after, .hero-sec .left-sec::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    transition: all ease-in-out 0.7s;
}

.hero-sec .split-sec.right-sec::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/right-sec.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.hero-sec .hero-content .btn.btn-primary {
    border-radius: 50px;
    color: #000;
}
.hero-sec .left-sec .hero-content {
    margin-right: 25px;
    text-align: end;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    color: #fff;
}

.hero-sec .right-sec .hero-content {
    left: auto;
    right: 0;
    margin-left: 25px;
    border-bottom-left-radius: 100px;
    border-top-left-radius: 100px;
}

.hero-sec .right-sec:hover::after, .hero-sec .left-sec:hover::after {
    opacity: 0.5;
    transition: all ease-in-out 0.7s;
}

.hero-sec .right-sec:hover .hero-content, .hero-sec .left-sec:hover .hero-content {
    background-color: #E9CE66;
    opacity: 0.85;
    transition: all ease-in-out 0.7s;
}

.hero-sec .right-sec:hover .hero-content h1,
.hero-sec .right-sec:hover .hero-content p,
.hero-sec .left-sec:hover .hero-content h1,
.hero-sec .right-sec:hover .hero-content .over,
.hero-sec .left-sec:hover .hero-content .over,
.hero-sec .left-sec:hover .hero-content p {
    color: #000 !important;
    transition: all ease-in-out 0.7s;

}

.hero-sec .right-sec:hover .btn-primary, .hero-sec .left-sec:hover .btn-primary {
    color: #fff;
    background-color: #000;
    transition: all ease-in-out 0.7s;
}
@media only screen and (min-width: 768px) {
    .hero-sec .left-sec .hero-content {
        margin-right: 100px;
    }
    .hero-sec .right-sec .hero-content {
        margin-left: 100px;
    }
    .hero-sec .hero-content {
        padding: 52px;
    }
}
@media only screen and (min-width: 992px) {
    .hero-sec {
        position: relative;
        /* height: 100vh; */
    }  


    .hero-sec .right-sec {
        border-left: 1.5px solid #E9CE66;
    }
    .hero-sec .split-sec {
        padding: 0;
    }

    .hero-sec .hero-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #000000BF;
        z-index: 2;
        transition: all ease-in-out 0.7s;
    }

}