/*=====================================
        ABOUT US PAGE
======================================*/

.service-box,
.vision-box,
.team-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s ease;
    height:100%;
    text-align:center;
    margin-bottom:30px;
}

.service-box:hover,
.vision-box:hover,
.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}


/*=====================================
        ICONS
======================================*/

.service-box i{
    color:#c9242b;
    font-size:52px;
    margin-bottom:18px;
}

.service-box h4{
    color:#030a41;
    margin-bottom:15px;
    font-size:22px;
}

.service-box p{
    color:#666;
    line-height:28px;
}


/*=====================================
        VISION / MISSION
======================================*/

.vision-box{
    text-align:left;
    border-top:4px solid #c9242b;
}

.vision-box h2{
    color:#030a41;
    margin-bottom:20px;
    font-size:30px;
}

.vision-box p{
    line-height:30px;
    color:#555;
}


/*=====================================
        COMPANY PROFILE IMAGE
======================================*/

.full-img{
    width:100%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}


/*=====================================
        TEAM
======================================*/

.team-card{
    overflow:hidden;
}

.team-card img{
    width:160px;
    height:160px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:20px;
    border:5px solid #f3f3f3;
}

.team-card h4{
    color:#030a41;
    margin-bottom:6px;
}

.team-card p{
    color:#c9242b;
    font-weight:600;
}

.team-card:hover img{
    transform:scale(1.05);
    transition:.35s;
}


/*=====================================
        STATISTICS
======================================*/

.background-primary h2{
    font-weight:700;
}

.background-primary p{
    letter-spacing:.5px;
}


/*=====================================
        SECTION TITLES
======================================*/

.section h2{
    color:#030a41;
}

.break-small{
    margin-bottom:35px;
}


/*=====================================
        CTA
======================================*/

.button-white{
    display:inline-block;
    background:#fff;
    color:#030a41 !important;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.button-white:hover{
    background:#c9242b;
    color:#fff !important;
}


/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:768px){

.service-box,
.team-card,
.vision-box{
    margin-bottom:25px;
}

.team-card img{
    display:block;
    width:160px;
    height:160px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #f3f3f3;
    margin:0 auto 20px auto;
}

.section{
    padding-top:45px;
    padding-bottom:45px;
}

}