.home_main{
    .home{
         background-repeat: no-repeat;
         background-position: center;
         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: linear-gradient(to right, #9708fdd5 0%, hsla(0, 0%, 100%, 0.603) 100%);
            z-index: -1;
         }
        .home_content{
           height: 100vh;
           display: flex;
           align-items: center;
           .content_wrap{
              h4{
                font-size: 24px;
                color: $white;
                font-weight: 500;
              }
              h5{
                font-size: 60px;
                color: $white;
                font-weight: 700;
                font-family: $font-1;
                line-height: 70px;
              }
              p{
                font-size: 16px;
                color: $white;
                font-weight: 400;
                line-height: 24px;
              }
              .ban_btn{
                margin-top: 60px;
                ul{
                    li{
                        display: inline-block;
                        margin-right: 30px;
                        height: 55px;
                        width: 160px;
                        border: 1px solid #fff;
                        text-align: center;
                        line-height: 55px;
                        font-size: 17px;
                        font-weight: 500;
                        color: $white;
                        cursor: pointer;
                        &:hover{
                            background-color: #8800e9;
                            border: 1px solid $primaryColor;
                        }
                    }
                    .active{
                        background-color: #8800e9;
                        border: 1px solid $primaryColor;
                        &:hover{
                            background-color: transparent;
                            border: 1px solid #fff;
                        }
                    }
                }
              }
           }
        }
    }
}