/*==================================================
    SS ONE
    FOOTER.CSS
==================================================*/

/*==============================
CONTACT
==============================*/

.contact{

    padding:110px 0;

    background:#ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.contact-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.contact-icon{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:linear-gradient(135deg,var(--primary),#3d6ea7);

    color:#fff;

    font-size:30px;

}

.contact-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.contact-card p{

    line-height:1.8;

}

/*==============================
ABOUT
==============================*/

.about{

    padding:110px 0;

    background:#f8fbff;

}

.about-box{

    max-width:900px;

    margin:auto;

    background:#fff;

    border-radius:24px;

    padding:60px;

    text-align:center;

    border:1px solid #edf2f7;

    box-shadow:0 20px 50px rgba(0,0,0,.05);

}

.about-box h2{

    margin-bottom:25px;

}

.about-box p{

    font-size:18px;

    line-height:1.9;

}

/*==============================
FOOTER
==============================*/

footer{

    background:#17375E;

    color:#fff;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-logo{

    font-size:34px;

    font-weight:900;

    margin-bottom:20px;

}

.footer-logo span{

    color:var(--secondary);

}

.footer-text{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    max-width:420px;

}

.footer-title{

    font-size:20px;

    margin-bottom:22px;

}

.footer-links{

    list-style:none;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    transition:.30s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.10);

    padding-top:25px;

    text-align:center;

    color:rgba(255,255,255,.60);

    font-size:14px;

}

.footer-logo{

    height:125px;
    width:auto;
    display:block;

}