.landing_h1{
    color: #1043C7;
}
.about_landing{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.about_landing_second{
    justify-content: space-around;
}
.adv_div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    height: 460px;
    width: 400px;
    background: #F3FBFF;
    transition: .4s;
}
.adv_div:hover{
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}
.adv_div img{
    height: 200px;
    width: 200px;
}
.adv_div h4{
    font-size: 20px;
    font-weight: 700;
}
.adv_div p{
    max-width: 240px;
    text-align: center;
}
#numbers{
    margin-top: 100px;
    padding: 80px 0;
    background: #1043C7;
    text-align: center;
}
#numbers h2{
    max-width: 500px;
    color: #fff;
}
.number-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.number_div{
    margin-bottom: 40px;
}
.number_div h5{
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-bottom: 15px;
}
.number_div p{
    color: #fff;
    max-width: 300px;
}
#video{
    display: flex;
    height: 800px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-image: url('/static/img/landing/video.jpg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.video_triangle{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    height: 110px;
    width: 110px;
}
.video_triangle img{    
    padding-left: 10px;
    transition: .4s;
    cursor: pointer;
}
.video_triangle img:hover{
    transform: scale(1.2);
}
@media(max-width: 990px){
    .about_landing{
        flex-direction: column;
    }
    .adv_div{
        margin-bottom: 30px;
        max-width: 400px;
        width: 100%;
    }
    .py-6{
        padding-top: 0 !important;
        padding-bottom: 0 !important; 
    }
    .desk_text h2{
        font-size: 20px !important;
    }
    .columns:last-child {
        margin-bottom: 0rem !important;
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }
    #numbers{
        margin-top: 50px;
    }
}
@media(max-width: 460px){
    #video{
        height: 300px;
    }
}