/* :root {
    --font-nunito: "Nunito", sans-serif;
    --font-numans: "Numans", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;
    --text-body: #333;
    --primary-color: #831B24;
    --white: #fff;
    --light-gray: #F8F8F8;
    --light-yellow: rgba(227, 196, 131, 0.20);
    --black-alternate: #1C1C1C;
    --black: #000;
    --transition: all 400ms ease-in-out;
} */

.home_banner{
    background-color: var(--black-alternate);
    position: relative;
    overflow: hidden;
}
.home_banner .home_banner_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.home_banner .home_banner_img img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.home_banner .home_banner_img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(270deg, rgba(28, 28, 28, 0.00) 18.2%, #1C1C1C 99.82%);
}


.home_banner_content{
    position: relative;
    z-index: 11;
    max-width: 730px;
    padding: 109px 0 166px;
}
.home_banner_content .small-label:not(:last-child){
    margin-bottom: 13px;
}
.home_banner_content .small-label{
    display: flex;
    align-items: center;
}
.home_banner_content .small-label::before{
    content: "";
    display: inline-flex;
    width: 89px;
    height: 1px;
    margin-right: 12px;
    background-color: var(--white);
}
.home_banner_content .small-label span{
    border-radius: 100px;
    color: #FFF;
    font-family: var(--font-nunito);
    padding: 4px 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}

.home_banner_content h1{

}

.home_banner_content p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    /* max-width: 550px; */
}
.home_banner_content .btn-wrap{
    margin-top: 32px;
    display: flex;
    align-items: center;
}
.home_banner_content .btn-wrap a:not(:last-child){
    margin-right: 28px;
}

.home_banner_content .btn-wrap a.btn{
    min-height: 57px;
    color: #FDFDFD;
    font-family: var(--font-numans);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
    text-transform: capitalize;
}
.home_banner_content .cta-call{
    display: flex;
    align-items: center;
}
.home_banner_content .cta-call:hover{
    opacity: 0.8;
}
.home_banner_content .cta-call .icon-wrap{
    width: 49px;
    height: 49px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    position: relative;
    border-radius: 50%;
    margin-right: 22px;
}
.home_banner_content .cta-call .icon-wrap img{
    position: relative;
    z-index: 2;
    width: 26px;
    height: 26px;
}
.home_banner_content .cta-call .icon-wrap::before{
    content: "";
    position: absolute;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    top: -8px;
    left: -8px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}
.home_banner_content .cta-call .text_content{
    flex-grow: 1;
    font-family: var(--font-numans);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 122.222% */
}
.home_banner_content .cta-call .text_content span{
    display: flex;
    font-family: var(--font-nunito);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
    text-transform: capitalize;
    margin-bottom: 7px;
}

.home_banner_content *:not(.btn){
    color: var(--white);
}

@media only screen and (max-width: 991px) {
    .home_banner_content {
        padding: 70px 0;
    }

}

@media only screen and (max-width: 767px) {
    .home_banner_content {
        max-width: 100%;
        padding: 40px 0;
    }
    .home_banner_content h1{
        font-size: 44px;
        line-height: normal;
    }
    .home_banner .home_banner_img::before {
        background: linear-gradient(270deg, rgba(28, 28, 28, 0.00) 0%, rgba(28, 28, 28, 0.7) 30%);
    }

}
@media only screen and (max-width: 575px) {
    .home_banner_content .btn-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .home_banner_content .cta-call{
        margin-top: 20px;
    }
    .home_banner_content .small-label::before{
        width: 40px;
    }

}