 /* SOURCE CODE BY RAM AKA @Ramxcodes on Github Make Sure to Give a STAR ⭐ on the repo !!  */
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'montserrat';
}

html, body{
    height: 100%;
    width: 100%;
}

#main{
    height: 100%;
    width: 100%;
    background-color: #ededed;
    display: grid;
    grid-template-columns: 25% 25% 50%;
    grid-template-rows: 26% 56% 18%;
}

#left-top-left{
    /* background-color: crimson; */
    padding: 40px;
}

#square{
    height: 25px;
    width: 25px;
    rotate: 45deg;
    background-color: #000;
}



#left-top-right{
    /* background-color: rgb(56, 19, 83); */
    justify-self: right;
    padding: 40px;
    text-align: right;
}

#left-top-right h4{
    margin-bottom: 60px;
    font-size: 20px;
    font-weight: 500;
    
}

#left-top-right h5{
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
#left-top-right h6{
    display: none;
}

#right{
    /* background-color: blueviolet; */
    grid-column: 3;
    grid-row: 1 / 4;
    padding: 40px;
    padding-right: 150px;
}

#right video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    
    border-radius: 10%;
}

#left-bottom{
    /* background-color: chartreuse; */
    grid-column: 1/3;
    padding: 40px;
}

#left-bottom p{
    width: 70%;
    font-size: 18px;
    font-weight: 500;
    color: #666;
}


#left-center{
    /* background-color: royalblue; */
    grid-column: 1/3;
    padding: 40px;
}

#left-center h1{
    font-size: 7vw;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 6vw;
    font-family: Helvetica;
}

#left-center h1:nth-child(2n){
    text-align: center;
}

#arrow{
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5788e4;
    padding: 30px;
    border-radius: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
}

#arrow i{
    font-size: 40px;
    font-weight: 100;
}

footer.center-align {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

footer.center-align p {
    display: inline-block;
    margin: 0;
    /* background-color: red; */
}




    @media (max-width:600px) {
        #main{
                grid-template-columns: 50% 50%;
                grid-template-rows: 60px 34% 8%;
            }
        #left-top-left{
                padding: 20px;
            }

        #square{
                height: 15px;
                width: 15px;
            }
            #left-top-right{
                padding: 20px;
                text-align: right;
            }

        #left-top-right h4{
                display: none;
            }

        #left-top-right h5{
                display: none;
            }

        #left-top-right h6{
                display: initial;
                font-size: 20px;
            }
            

        #left-bottom {
                padding: 5px 20px;
            }
            
        #left-bottom p{
                width: 90%;
                font-size: 10px;

            }
        #left-center{
                padding: 10px 20px;
            }

        #left-center h1{
                font-size: 16vw;
                line-height: 14vw;
            }
            
            
            #left-center h1:nth-child(2n){
                text-align: right;
            }

        #arrow{
                top: 51%;
                left: 40%;
                padding: 10px;
                transform: translate(-50%, -50%);
                rotate: 90deg;
            }

        #arrow i{
                font-size: 20px;
            }

        #right{
                grid-column: 1 / 4;
                grid-row: 4;
                padding: 20px;
                padding-right: 20px;
            }

        #right video {
                height: 42vh;

            }
    }
