.home_main{
    .home{
         height: 100vh;
         width: 100%;
         border-bottom: 1px solid rgb(102, 102, 102);
        .home_content{
           height: 100vh;
           display: flex;
           align-items: center;
           .content_wrap{
            padding-top: 50px;
              h4{
                font-size: 20px;
                color: $white;
                font-weight: 500;
              }
              h5{
                font-size: 50px;
                color: $white;
                font-weight: 500;
                font-family: $font-3;
                line-height: 70px;
              }
              h6{
                font-size: 26px;
                color: $white;
                font-weight: 500;
                font-family: $font-3;
                line-height: 40px;
              }
              p{
                font-size: 15px;
                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: $primaryColor;
                            border: 1px solid $primaryColor;
                            color: $white;
                        }
                    }
                    .active{
                        background-color: $primaryColor;
                        border: 1px solid $primaryColor;
                        color: $white;
                        &:hover{
                            background-color: transparent;
                            border: 1px solid #fff;
                            color: $white;
                        }
                    }
                }
              }
           }
           .banner_profile{
            height: 530px;
            width: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            margin: 0 auto;
            position: relative;
            &::after{
              position: absolute;
              content: '';
              bottom: -20px;
              right: -25px;
              height: 96%;
              width: 90%;
              background-color: $primaryColor;
              border-radius: 30px;
              z-index: -1;
              transform: rotate(15deg);
            }
            img{
              height: 100%;
              width: 100%;
              object-fit: cover;
              border-radius: 20px;
              z-index: 1;
            }
           }
        }
    }
}