*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
}

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

#main{
    background-color: rgb(255, 255, 255);
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 20% 30% 50%;
    grid-template-rows: 26% 55% 19%;
}

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

#square{
    height: 18px;
    width: 18px;
    rotate: 45deg;
    background-color: black;
}

#left-top-right{
    /* background-color: yellow; */
    justify-self: right;
    padding: 40px;
    text-align: right;
}
#left-top-right h4{
    margin-bottom: 34px;
    font-size: 18px;
    font-weight: 500;
}
#left-top-right h5{
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
#left-top-right h6{
    display: none;
}

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

#left-center h1{
    font-size: 13vh;
    text-transform: uppercase;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 12vh;
}

#left-center h1:nth-child(2n)
{
/* background-color: aliceblue; */
text-align: center;
}

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

#left-bottom p{
    width: 60%;
    font-size: 14px;
    font-weight:500;
    color: #666;
}
#right{
    /* background-color: cadetblue; */
    grid-column: 3;
    grid-row: 1/5;
    padding: 40px;
    padding-right: 160px;
}

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

#arrow{
    position: absolute;
    top: 50%;
    left: 52%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 102, 0);
    padding: 2vh;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    font-weight: 100;
    transform: translate(-38%,-50%);
}

@media (max-width:700px) {
  
    #main{
        grid-template-columns: 50% 50%;
        grid-template-rows: 50px 38% 13%;
    }
    
    #left-top-left{
        padding:25px 23px;
    }
    
    #square{
        height: 14px;
        width: 14px;
    }
    #left-top-right{
        padding:25px 20px;
    }

    #left-top-right h4{
        display: none;
    }
    #left-top-right h5{
        display: none;
    }
    #left-top-right h6{
        font-size: 20px;
        display: initial;
    }
    #left-center{
        padding: 23px;
    }
    
    #left-center h1{
        font-size: 8vh;
        line-height: 7vh;
    }
    
    #left-center h1:nth-child(2n)
    {
    text-align: right;
    }
    
    #left-bottom{
        padding: 5px;
    }
    
    #left-bottom p{
        width: 90%;
        font-size: 13px;
        padding-left: 23px;
    }
    #right{
        grid-column: 1/3;
        grid-row: 4;
        height: 45vh;
        padding:20px 50px;
    }
        
    #arrow{
        top: 59%;
        left: 50%;
        padding: 5px;
        font-size: 24px;
        transform: translate(-50%,-50%) rotate(90deg);
    }
}

@media (max-width:413px){
    #left-center h1>span
    {
    display: none;
    }
}
@media (max-width:988px){
    #left-center h1>span
    {
    display: none;
    }
}

@media (max-height:663px){
    #arrow{
        top: 63%;
    }
}
