/*======================================================

                    FOOTER

======================================================*/

.footer{

    position:relative;

    overflow:hidden;

    background:#0d0d0f;

    color:#fff;

    padding:110px 0 0;

}

/*====================================
Desktop / Mobile
====================================*/

.desktop-footer{

    display:block;

}

.mobile-footer{

    display:none;

}

/*====================================
Container
====================================*/

.footer .container-custom{

    position:relative;

    z-index:2;

}

/*====================================
Desktop Grid
====================================*/

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;

    padding-bottom:70px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/*====================================
Mobile Grid
====================================*/

.mobile-footer{

    padding-bottom:40px;

}

.mobile-footer-logo{

    text-align:center;

}

.mobile-footer-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:35px;

}
/*======================================================

                LOGO

======================================================*/

.footer-logo{

    display:inline-flex;

    align-items:center;

    font-size:46px;

    font-weight:700;

    letter-spacing:.5px;

    color:#ffffff;

    transition:.35s;

}

.footer-logo:hover{

    color:#ffffff;

    transform:translateY(-2px);

}

.footer-logo span{

    color:#9a9a9a;

}

/*====================================
About
====================================*/

.footer-about{

    max-width:430px;

}

.footer-about p{

    margin:28px 0 34px;

    color:rgba(255,255,255,.68);

    font-size:16px;

    line-height:1.9;

}

/*====================================
Mobile About
====================================*/

.mobile-footer-logo{

    max-width:320px;

    margin:auto;

}

.mobile-footer-logo p{

    margin:20px auto 0;

    color:rgba(255,255,255,.68);

    font-size:15px;

    line-height:1.8;

}

/*====================================
Social Icons
====================================*/

.footer-social{

    display:flex;

    align-items:center;

    gap:16px;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.06);

    color:#ffffff;

    font-size:18px;

    transition:all .35s ease;

}

.footer-social a:hover{

    background:#ffffff;

    color:#111111;

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(255,255,255,.12);

}

/*====================================
Apple Glow
====================================*/

.footer::before{

    content:"";

    position:absolute;

    left:-220px;

    top:-220px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    filter:blur(70px);

    pointer-events:none;

}

.footer::after{

    content:"";

    position:absolute;

    right:-180px;

    bottom:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    filter:blur(70px);

    pointer-events:none;

}
/*======================================================

            FOOTER COLUMNS

======================================================*/

.footer-links{

    position:relative;

}

.footer-links h4{

    margin:0 0 26px;

    color:#ffffff;

    font-size:22px;

    font-weight:600;

    letter-spacing:.3px;

}

/*====================================
Lists
====================================*/

.footer-links ul{

    margin:0;

    padding:0;

}

.footer-links ul li{

    list-style:none;

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:16px;

    color:rgba(255,255,255,.68);

    font-size:15px;

    line-height:1.8;

    transition:all .35s ease;

}

/*====================================
Links
====================================*/

.footer-links ul li a{

    color:rgba(255,255,255,.68);

    transition:all .35s ease;

}

.footer-links ul li a:hover{

    color:#ffffff;

    padding-left:8px;

}

/*====================================
Icons
====================================*/

.footer-links ul li i{

    width:18px;

    min-width:18px;

    margin-top:4px;

    color:#ffffff;

    font-size:15px;

}

/*====================================
Hover

(Quick Links & Products)

====================================*/

.footer-links ul li:hover{

    color:#ffffff;

}

/*====================================
Divider

(Optional Apple Style)

====================================*/

.footer-links::after{

    content:"";

    position:absolute;

    left:0;

    top:42px;

    width:40px;

    height:2px;

    border-radius:30px;

    background:rgba(255,255,255,.18);

}

/*====================================
Mobile Footer Columns
====================================*/

.mobile-footer-grid{

    margin-top:38px;

}

.mobile-footer .footer-links h4{

    font-size:18px;

    margin-bottom:18px;

}

.mobile-footer .footer-links ul li{

    margin-bottom:12px;

    font-size:14px;

    line-height:1.6;

}

.mobile-footer .footer-links::after{

    width:28px;

}
/*======================================================

                FOOTER BOTTOM

======================================================*/

.footer-bottom{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    margin-top:60px;

    padding:28px 0;

    border-top:1px solid rgba(255,255,255,.08);

}

/*====================================
Copyright
====================================*/

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.55);

    font-size:15px;

    font-weight:400;

    letter-spacing:.3px;

}

/*====================================
Policy
====================================*/

.footer-policy{

    display:flex;

    align-items:center;

    gap:30px;

}

.footer-policy a{

    position:relative;

    color:rgba(255,255,255,.55);

    font-size:15px;

    transition:all .35s ease;

}

/*====================================
Hover
====================================*/

.footer-policy a:hover{

    color:#ffffff;

}

/* Apple underline animation */

.footer-policy a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:1px;

    background:#ffffff;

    transition:width .35s ease;

}

.footer-policy a:hover::after{

    width:100%;

}

/*====================================
Divider Dot
====================================*/

.footer-policy a:not(:last-child)::before{

    content:"";

    position:absolute;

    right:-16px;

    top:50%;

    width:4px;

    height:4px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    transform:translateY(-50%);

}
/*======================================================

                MOBILE RESPONSIVE

======================================================*/

@media (max-width:1200px){

.footer{

    padding:90px 0 0;

}

.footer-top{

    grid-template-columns:repeat(2,1fr);

    gap:45px;

}

.footer-about{

    max-width:100%;

}

.footer-bottom{

    margin-top:40px;

}

}

/*====================================
Tablet
====================================*/

@media (max-width:991px){

.footer{

    padding:70px 0 0;

}

.footer-top{

    grid-template-columns:1fr 1fr;

    gap:35px;

    padding-bottom:45px;

}

.footer-logo{

    font-size:40px;

}

.footer-about p{

    font-size:15px;

    line-height:1.8;

}

.footer-social a{

    width:46px;

    height:46px;

}

.footer-links h4{

    font-size:20px;

}

.footer-links ul li{

    font-size:15px;

    margin-bottom:12px;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

    gap:15px;

}

.footer-policy{

    justify-content:center;

}

}

/*====================================
Mobile
====================================*/

@media (max-width:768px){

.desktop-footer{

    display:none;

}

.mobile-footer{

    display:block;

}

.footer{

    padding:50px 0 0;

}

.mobile-footer-logo{

    text-align:center;

    margin-bottom:22px;

}

.footer-logo{

    font-size:34px;

}

.mobile-footer-logo p{

    max-width:260px;

    margin:12px auto 0;

    font-size:14px;

    line-height:1.6;

}

.footer-social{

    justify-content:center;

    gap:12px;

    margin:20px 0 30px;

}

.footer-social a{

    width:44px;

    height:44px;

    font-size:16px;

}

.mobile-footer-grid{

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-top:0;

}

.mobile-footer .footer-links h4{

    font-size:17px;

    margin-bottom:12px;

}

.mobile-footer .footer-links ul li{

    font-size:14px;

    margin-bottom:8px;

    line-height:1.5;

}

.mobile-footer .footer-links::after{

    display:none;

}

.footer-bottom{

    margin-top:30px;

    padding:18px 0;

    flex-direction:column;

    gap:10px;

    text-align:center;

}

.footer-bottom p{

    font-size:13px;

}

.footer-policy{

    gap:16px;

    justify-content:center;

    flex-wrap:wrap;

}

.footer-policy a{

    font-size:13px;

}

}

/*====================================
Small Mobile
====================================*/

@media (max-width:480px){

.footer{

    padding:40px 0 0;

}

.mobile-footer-grid{

    grid-template-columns:1fr;

    gap:24px;

    text-align:center;

}

.mobile-footer .footer-links ul li{

    justify-content:center;

}

.footer-links h4{

    font-size:16px;

}

.footer-logo{

    font-size:30px;

}

.footer-social{

    gap:10px;

}

.footer-social a{

    width:40px;

    height:40px;

    font-size:15px;

}

.footer-bottom{

    padding:16px 0;

}

.footer-policy{

    flex-direction:column;

    gap:8px;

}

.footer-policy a::before{

    display:none;

}

}