*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

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

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

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

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

#left-top-right{
    /* background-color: rgb(100, 100, 189); */
    justify-self: right;
    text-align: right;
    padding: 30px;
}

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

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

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

#left-centre h1{
    font-size: 5vw;
    line-height: 5vw;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}

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

#left-bottom{
    /* background-color: rgb(116, 30, 197); */
    grid-column: 1 / 3;
    padding: 40px;
}

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

#right{
    /* background-color: rgb(227, 168, 96); */
    grid-column: 3;
    grid-row: 1/4;
    padding: 30px;
    padding-right: 150px;
}

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

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

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



