.hero-banner-section {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    min-height: 702px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 0;
}

.hero-banner-section:before {
    content: "";
    display: block;
    background: linear-gradient(90deg, #000 0%, rgba(94, 94, 94, 0.00) 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.hero-banner-content {
    max-width: 748px;
    width: 100%;
}
.hero-banner-content p {
    color: #ffffff;
}
.two-btn {
    display: flex;
    align-items: center;
}

.two-btn a:first-child {
    margin-right: 20px;
}
.hero-banner-content .default_btn:hover {
    border: 2px solid #FFF;
    color: #ffffff;
}

.hero-banner-content .default_btn.border_cta {
    border: 2px solid #FFF;
    color: #ffffff;
}

.hero-banner-content .default_btn.border_cta:hover {
    background-color: #46C2AC;
    border: 2px solid #46C2AC;
}

@media only screen and (max-width: 991px){
    body.menu-open .hero-banner-section:before {
        background: linear-gradient(90deg, #000 0%, rgba(94, 94, 94, 0.00) 300%);
    }
    .menu-open section.hero-banner-section {
        z-index: -1;
    }
}

@media only screen and (max-width:575px){
    .two-btn {
        display: block;
    }
    .two-btn .default_btn {
        display: block;
        width: fit-content;
    }
    .two-btn a:first-child {
        margin-right: 0;
        margin-bottom: 20px;
    }
}