.banner-mgt{
    background-image: url("../images/bg/event.webp");
    background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        padding: 170px 0 130px 0;
        position: relative;
        z-index: 1;
        animation: shrink 15s infinite alternate;
        @media(max-width:1400px){
            animation: none;
        }
        &::after{
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            z-index: -1;
            background: rgba(0, 0, 0, 0.56);
        }
        .rts-banner-one{
            position: relative;
            z-index: 1;
            overflow: hidden;
            &::after{
                display: none;
            }
        
            .banner-one-wrapper{
                text-align: center;
                span.b_one-pre{
                    letter-spacing: 0px;
                    font-weight: 600;
                    font-size: 14px;
                    line-height: 24px;
                    font-family: var(--font-secondary);
                    color: var(--color-white);
                    text-transform: uppercase;
                    opacity: 1;
                    transition-delay: 1s;
                    display: block;
                    animation: fadeInUp 1.5s;
                }
                .banner-shape-area{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-top: 40px;
                    margin-bottom: 10px;
                    opacity: 1;
                    transition-delay: 1s;
                    animation: fadeInUp 2s;
                    .shape{
                        height: 10px;
                        width: 10px;
                        line-height: 10px;
                        transform: rotate(45deg);
                        margin: 0 6px;
                        background: var(--color-primary);
                        display: block;
                    }
                }
                .title-banner{
                    margin-top: 60px;
                    font-weight: 400;
                    font-size: 50px;
                    line-height: 1.2;
                    color: #fff;
                    margin-bottom: 50px;
                    font-family: var(--font-third);
                    opacity: 1;
                    transition-delay: 1s;
                    @media #{$smlg-device} {
                        font-size: 49px;
                        line-height: 70px;
                    }
                    @media #{$md-layout} {
                        font-size: 42px;
                        line-height: 56px;
                    }
                    @media #{$sm-layout} {
                        font-size: 42px;
                        line-height: 56px;
                    }
                    @media #{$large-mobile} {
                        font-size: 30px;
                        line-height: 45px;
                    }
                }
                .button-area-banner{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 40px;
                    transition-delay: 2s;
                    opacity: 1;
                    @media #{$large-mobile} {
                        flex-direction: row;
                        justify-content: center;
                        align-items: flex-start;
                    }
                    .rts-btn.btn-primary:hover{
                        border-color: #FFFFFF;
                    }
                    .btn-seconday{
                        border-color: #FFFFFF;
                        &:hover{
                            border-color: var(--color-primary);
                        }
                    }
                }
            }
        }
    }
  }