*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
         width: 100%;
         height: 100%;
}

#main{
    height: 100%;
    width: 100%;
    background-color: #ededed;
    display: grid;
    grid-template-columns: 25% 25% 50%;
    grid-template-rows:26% 55% 19% ;
}

#left-top-left{
   /* background-color: aqua; */
    padding: 30px;


}

#right{
  /* background-color: cornflowerblue; */
    grid-column: 3;
    grid-row: 1 / 4;
    padding: 40px;
    padding-right: 150px;
}
#right video{
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit:cover;
  
}



 
#left-top-right{
    width: 100%;
   /* background-color: blueviolet; */
    justify-self: right;
    padding: 10px;
    text-align: right; 
}
#left-top-right h5{
   color: #333;
    font-size: 15px;
    font-weight: 500;

}

#left-top-right h4{
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 525;





}

#left-center{
    /* background-color: brown; */
    grid-column:1 / 3 ;
   padding: 17px;
}

#left-center h1{
    font-size: 5vw;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 100px;
    line-height: 80px;
    font-family: work sans;

}

#left-center h1:nth-child(2n){
text-align: center;
font-family: work sans;
padding-left: 150px;

}


#left-buttom{
 
    grid-column:1 / 3 ;
    padding: 17px;
}
#left-buttom{
        width: 100%;
        font-size: 14px;
        font-weight: 450;
        color: #333;
     
}


#square{
    background-color: black;
    height: 13px;
    width: 13px;
    rotate: 45deg;

}
#arrow{
position: absolute;
top: 45%;
left: 50%;
display: flex;
align-items: center;
justify-content: center;
background-color: orange;
padding: 20px;
color: #fff;
border-radius: 50px;
transform: translate(-50% -50%);

}
#arrow i{
font-size: 25px;
font-weight: 100;
}

@media (max-width:600px) {
    #main {
        grid-template-columns: 50% 50%;
        grid-template-rows: 60px 34% 8%;
    }

    #left-top-left {
        /* background-color: crimson; */
        padding: 20px;
    }

    #square {
        height: 15px;
        width: 15px;
    }

    #left-top-right {

        padding: 20px;
        text-align: right;

    }
    #left-top-right h6{
        display: initial;
        font-size: 20px;
    }
    #left-top-right h4 {
        display: none;

    }

    #left-top-right h5 {
        display: none;

    }


    #left-center {

        padding:10px 20px;
    }

    #left-center h1 {
        font-size: 17vw;
        line-height: 14vw;
    }

    #left-center h1:nth-child(2n) {
        text-align: right;
    }

    #left-bottom {
        padding: 5px 20px;
    }

    #left-bottom p {
        width: 90%;
        font-size: 10px;
    }

  

    #arrow {

        top: 54%;
        left: 50%;

        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;
    }

}