

/* ==========================================
   YAIDEL FOOTER
========================================== */

.yaidel-footer{
    background:#202020 /*#071a2d*/;
    color:rgba(255,255,255,.72);
    padding:70px 24px 30px;
}

.yaidel-footer-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
}

.yaidel-footer-grid{
    display:grid;
    grid-template-columns:1.6fr repeat(3, 1fr);
    gap:60px;
}


/* ==========================================
   FOOTER BRAND
========================================== */

.yaidel-footer-brand{
    max-width:390px;
}

.yaidel-footer-logo{
    display:inline-flex;
    align-items:center;
    margin-bottom:22px;
}

.yaidel-footer-logo img{
    height:35px;
    width:auto;
    display:block;
}

.yaidel-footer-description{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.62);
}


/* ==========================================
   FOOTER COLUMNS
========================================== */

.yaidel-footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.yaidel-footer-column h4{
    margin:0 0 20px;
    color:#ffffff;
    font-size:15px;
    font-weight:700;
}

.yaidel-footer-column a{
    display:flex;
    align-items:center;
    gap:9px;
    margin-bottom:13px;
    color:rgba(255,255,255,.66);
    text-decoration:none;
    font-size:14px;
    line-height:1.5;
    transition:color .2s ease;
}

.yaidel-footer-column a:hover{
    color:#18c5cb;
}

.yaidel-footer-column i{
    width:16px;
    color:#18c5cb;
    text-align:center;
}

.yaidel-footer-location{
    display:flex;
    align-items:center;
    gap:9px;
    color:rgba(255,255,255,.66);
    font-size:14px;
    line-height:1.5;
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.yaidel-footer-bottom{
    margin-top:60px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.10);

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;

    font-size:13px;
    color:rgba(255,255,255,.50);
}

.yaidel-footer-bottom-links{
    display:flex;
    align-items:center;
    gap:24px;
}

.yaidel-footer-bottom-links a{
    color:rgba(255,255,255,.50);
    text-decoration:none;
    transition:color .2s ease;
}

.yaidel-footer-bottom-links a:hover{
    color:#ffffff;
}


/* ==========================================
   FOOTER RESPONSIVE
========================================== */

@media (max-width:1024px){

    .yaidel-footer-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:45px;
    }

}


@media (max-width:768px){

    .yaidel-footer{
        padding:55px 20px 25px;
    }

    .yaidel-footer-grid{
        grid-template-columns:1fr;
        gap:38px;
    }

    .yaidel-footer-brand{
        max-width:none;
    }

    .yaidel-footer-bottom{
        margin-top:45px;
        flex-direction:column;
        align-items:flex-start;
    }

}