.home{
    background-image: url(../images/banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: -1; 
    }
    .home_content{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;

         .content_wrap{
             text-align: center;
            h5{
                font-size: 20px;
                color: $white;
                font-weight: 500;
                text-transform: uppercase;
            }
            h4{
                font-size: 45px;
                color: $white;
                font-weight: 600;
                line-height: 55px;
            }
            p{
                font-size: 15px;
                color: $white;
                font-weight: 400;
                padding:0 300px;
                text-align: center;
            }
            .home_btn{
                margin-top: 45px;
                a{
                    padding: 12px 35px;
                    border: 1px solid $primaryColor;
                    border-radius: 5px;
                    font-size: 15px;
                    color: $white;
                    background-color: $primaryColor;
                    &:hover{
                        background-color: transparent;
                        border: 1px solid $white;
                        
                    }
                    
                }
            }
         }
    }
}