@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
html, body{
    font-size: 14px;
    font-family: "Almarai", sans-serif;
    padding: 0;
    margin: 0;
}
.under_wraps{
    position: relative;
    height: 100vh;
    text-align: center;
}
.under_wraps::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
}
.under_wraps video{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.under_wraps .inner_text{
    position: relative;
    z-index: 10;
    color: white;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 10px;
    height: 100%;
    /*  */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.under_wraps .logo{
    display: block;
}
.under_wraps .logo img{
    margin-bottom: 30px;
}
h2{
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 14px;
}
h3{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 25px;
}
.flex_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-top: 80px; */
    width: 100%;
}
.flex_info a{
    flex: 0 0 calc(100% / 3.2);
    display: flex;
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.2s ease-in-out;
}
.flex_info a.active{
    background-color: red;
    color: white;
}
.flex_info a i{
    font-size: 40px;
    display: block;
    margin-bottom: 14px;
}
.flex_info a p{
    font-size: 16px;
}
.flex_info a:hover{
    background-color: red;
    color: white;
}
.copy{
    display: block;
    font-size: 14px;
    font-weight: 500;
}

@media(max-width:992px){
    .flex_info a p {
        font-size: 14px;
        font-weight: 500;
    }
    .flex_info a i {
        font-size: 35px;
        display: block;
        margin-bottom: 10px;
    }
    .flex_info a{
        min-height: 140px;
    }
    h2 {
        font-size: 35px;
    }
    h3 {
        font-size: 20px;
    }
    .under_wraps .logo img {
        margin-bottom: 20px;
        width: 100%;
        height: 130px;
    }
}
@media(max-width:767px){
.flex_info{
    /* flex-direction: column; */
    flex-wrap: wrap;
}
.flex_info a{
    flex: 0 0 92%;
    margin-left: auto;
    margin-right: auto;
}
.flex_info a{
    min-height: 110px;
    margin-bottom: 30px;
}
h2 {
    font-size: 22px;
}
h3 {
    font-size: 15px;
}
.under_wraps .logo img {
    margin-bottom: 20px;
    width: 100%;
    height: 110px;
}
}