@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Bold.ttf') ;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy',sans-serif;}

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: red; */
    padding: 20px;
}

#left-top-right {
    /* background-color: pink; */
    justify-self: right;
    padding: 10px;
    text-align: right;
}
#left-top-right i{
    display: none;
}
#left-top-right h4{
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 500;
}
#left-top-right h5{
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

#left-center {
    /* background-color: crimson; */
    grid-column: 1/3;
    padding: 40px;
}

#left-bottom {
    /* background-color: violet; */
    grid-column: 1/3;
    padding: 40px;
}

#right {
    grid-row: 1/4;
    grid-column: 3;
    padding: 40px;
    padding-right: 5vw;

}
#right video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
}
#left-center h1{
    font-size: 6vw;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 5.5vw;
    
}
#left-center h1:nth-child(2n){
    text-align: center;

    
}
#left-bottom p{
    width: 70%;
    font-size: 13px;
    font-weight: 500;
}
#square{
    background-color: black;
    height: 20px;
    transform: rotate(45deg);
    width: 20px;
}
#arrow{
    position: absolute;
    top: 50%;
    left: 52%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: orangered;
    padding: 30px;
    color: white;
    border-radius: 50%;
    transform: translate(-50%,-50%);


}
#arrow i{
    font-size: 20px;
    font-weight: 100;
}
@media (max-width:600px) {
    #left-top-right i{
        display: initial;
        font-size: 26px;
    }
    #main {
      
        grid-template-columns:  50% 50%;
        grid-template-rows: 60px 34% 8%;
    }
    #right {
        grid-row: 4;
        grid-column: 1 / 4;
        padding: 20px;
    
    }



    #left-top-left {
        /* background-color: red; */
        padding: 20px;
    }
    
    #left-top-right {
        /* background-color: pink; */
        justify-self: right;
        padding: 10px;
        text-align: right;
    }
    #left-top-right h4{
        display: none;
        margin-bottom: 50px;
        font-size: 20px;
        font-weight: 500;
    }
    #left-top-right h5{
        display: none;
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }
    
    #left-center {
        /* background-color: crimson; */
        /* padding: 20px; */
    }
    
    #left-bottom {
        /* background-color: violet; */
        grid-column: 1/3;
        padding: 0px 40px;
    }
    #right video{
        height: 42vh;
        width: 100%;
        object-fit: cover;
        border-radius: 3px;
    }
    #left-center h1{
        font-size: 12vw;
        text-transform: uppercase;
        font-weight: 500;
        line-height: 12vw;
        
    } 
    #left-center h1:nth-child(2n){
        text-align: right;
    
        
    }
    #left-bottom p{
        width: 90%;
        font-size: 10px;
        font-weight: 500;
        padding: 5px;
    }
    #square{

        height: 20px;
        width: 20px;
    }
    #arrow{
        position: absolute;
        top: 52%;
        left: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: orangered;
        padding: 10px;
        color: white;
        border-radius: 50%;
        transform: translate(-50%,-50%) rotate(90deg);
    
    
    }
    #arrow i{
        font-size: 20px;
    } 
}
