/*==================================================
                    FOOTER
==================================================*/

.footer{

    background:var(--primary);
    color:#fff;

    padding:80px 8% 25px;

}

/*==================================================
                    CONTAINER
==================================================*/

.footer-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.6fr 1fr 1fr 1.2fr;

    gap:50px;

}

/*==================================================
                    ABOUT
==================================================*/

.footer-about{

    display:flex;

    flex-direction:column;

}

/* Logo */

.footer-logo-box{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    margin-bottom:25px;

}

.footer-logo{

    display:block;

    width:250px;

    margin-bottom:18px;

}

.footer-logo img{

width:100%;

height:auto;

display:block;

background-color: white;

padding: 5px 8px 7px;
}

/* Brand */

.footer-brand{

    font-size:34px;

    font-weight:700;

    color:#fff;

    margin-bottom:8px;

    line-height:1.2;

}

.footer-tagline{

    font-size:15px;

    color:rgba(255,255,255,.75);

    margin-bottom:22px;

    line-height:1.6;

}

/* Description */

.footer-description{

    color:rgba(255,255,255,.80);

    line-height:1.9;

    font-size:15px;

    margin-bottom:30px;

}

/*==================================================
                SOCIAL ICONS
==================================================*/

.footer-social{

    display:flex;

    gap:14px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:.35s;
    text-decoration: none;

}

.footer-social a:hover{

    background:var(--secondary);

    transform:translateY(-6px);

}

/*==================================================
                    HEADINGS
==================================================*/

.footer h3{

    font-size:24px;

    font-weight:600;

    margin-bottom:25px;

    position:relative;

}

.footer h3::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:50px;

    height:3px;

    background:var(--secondary);

    border-radius:20px;

}

/*==================================================
                    LINKS
==================================================*/

.footer-links ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:rgba(255,255,255,.80);

    text-decoration:none;

    transition:.3s;

    display:inline-flex;

    align-items:center;

}

.footer-links a::before{

    content:"›";

    margin-right:8px;

    color:var(--secondary);

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    transform:translateX(8px);

}

.footer-links a:hover::before{

    color:#fff;

}

/*==================================================
                CONTACT INFO
==================================================*/

.footer-contact-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

}

.footer-contact-item i{

    color:var(--secondary);

    font-size:18px;

    margin-top:4px;

}

.footer-contact-item a{

    color:rgba(255,255,255,.80);

    text-decoration:none;

    line-height:1.7;

    transition:.3s;

}

.footer-contact-item a:hover{

    color:#fff;

}

/*==================================================
                BUTTONS
==================================================*/

.footer-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-top:30px;

}

.footer-buttons a{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:14px 20px;

    border-radius:8px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.btn-primary{

    background:var(--secondary);

    color:#fff;

}

.btn-primary:hover{

    background:#fff;

    color:var(--primary);

}

.btn-outline{

    border:2px solid rgba(255,255,255,.25);

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================================
                FOOTER BOTTOM
==================================================*/

.footer-bottom{

    margin-top:60px;

    padding-top:22px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.75);

    font-size:14px;

}

.footer-bottom a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:var(--secondary);

}

.admin-link{

    color:var(--secondary);

}

.dev-link{

    font-weight:600;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px){

.footer-container{

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

}

/* Tablet */

@media(max-width:768px){

.footer{

    padding:60px 25px 25px;

}

.footer-container{

    grid-template-columns:1fr;

    gap:45px;

    text-align:center;

}

.footer-logo-box{

    align-items:center;

}

.footer-logo{

    width:220px;

}

.footer-brand{

    font-size:30px;

}

.footer-tagline{

    font-size:14px;

}

.footer-description{

    max-width:500px;

    margin:auto auto 30px;

}

.footer h3::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-links a{

    justify-content:center;

}

.footer-contact-item{

    justify-content:center;

    text-align:left;

}

.footer-social{

    justify-content:center;

}

.footer-buttons{

    max-width:320px;

    margin:30px auto 0;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

}

/* Mobile */

@media(max-width:480px){

.footer{

    padding:50px 20px 20px;

}

.footer-logo{

    width:190px;

}

.footer-brand{

    font-size:26px;

}

.footer h3{

    font-size:22px;

}

.footer-description{

    font-size:14px;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-contact-item{

    flex-direction:column;

    align-items:center;

    text-align:center;

    gap:8px;

}

.footer-contact-item i{

    margin:0;

}

.footer-buttons{

    width:100%;

}

.footer-buttons a{

    width:100%;

}

.footer-bottom p{

    font-size:13px;

}

}