main{
    & .container{
        max-width:1100px;
    }
}
.heroBanner{
    background: linear-gradient(135deg, var(--primaryColor), var(--secondaryColor));
    border-radius: 24px;
    display: grid;
    grid-template-columns: 9fr 3fr;
    column-gap: 32px;
    position: relative;
    z-index: 0;
    height: 100%;
    overflow: hidden;
    box-shadow:var(--boxShadow);
    & .heroBannerContent{
        padding:48px 32px;
        height:500px;
        display:flex;
        align-items: center;
        flex-wrap:wrap;
        & .leftContent{
            max-width:600px;
            & .cmpmBtn {
                color: var(--fullWhite);
                font-family: var(--headingFont);
                background:none;
                text-decoration: none;
                font-weight: 700;
                margin-top: 32px;
                display: block;
                width: fit-content;
                border: 3px solid var(--fullWhite);
                padding: 12px 24px;
                border-radius: 40px;
                transition:var(--transition);
                &:hover{
                    background: var(--fullWhite);
                    color: var(--secondaryColor);
                }
            }
        }
        & p{
            color:var(--fullWhite);
            font-size:18px;
            line-height:26px;
        }
        & h1{
            color: var(--fullWhite);
            font-size: 34px;
            font-weight: 700;
            line-height: 48px;
            margin-bottom: 24px;
            -webkit-text-fill-color: unset;
            max-width: 320px;
        }
    }
    & aside{
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: absolute;
        column-gap: 32px;
        padding-right: 32px;
        max-width: 350px;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        overflow: hidden;
        z-index: 0;
        & .scrollReelOne, .scrollReelTwo{
            position:relative;
            & img{
                width:100%;
                height:auto;
                border-radius:16px;
                box-shadow:var(--boxShadow);
                background:var(--fullWhite);
                margin-bottom:8px;
                transition:var(--transition);
                opacity:0.85;
                &:hover{
                    opacity:1 !important;
                    cursor:pointer;
                }
            }
            &:hover{
                & img{
                    /* opacity:0.9; */
                }
            }
        }
    }    
}