/* ==================================
   FOOTER
================================== */

.footer{
    background:#03154a;
    color:#fff;
    padding-top:30px;
    position:relative;
}

/* ==================================
   LINKS
================================== */

.footer-column ul li a,
.footer-column ul li a:visited,
.footer-column ul li a:link{
    color:#ffffff;
    text-decoration:none;
    transition:.3s ease;
}

.footer-column ul li a:hover{
    color:#2563ff;
    padding-left:4px;
}

/* ==================================
   TOP
================================== */

.footer-top{
    display:grid;
    grid-template-columns:
    1.5fr
    repeat(5,1fr);

    gap:40px;

    padding-bottom:30px;

    border-bottom:
    /*1px solid rgba(255,255,255,.08);*/
    1px solid rgb(161 161 161);
}

/* ==================================
   COMPANY
================================== */

.footer-logo{
    width:140px;
    margin-bottom:20px;
}

.footer-company p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:25px;
    max-width:320px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    color:#fff;

    transition:.3s ease;
}

.footer-social a:hover{
    background:#0B5FFF;
    transform:translateY(-4px);
}

/* ==================================
   COLUMN
================================== */

.footer-column p{
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}

.footer-column ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-column a{
    color:rgba(255,255,255,.75);
    transition:.3s;
    font-size:15px;
}

.footer-column a:hover{
    color:#4DA3FF;
}

/* ==================================
   BOTTOM
================================== */

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.footer-bottom p{
    color:rgba(255,255,255,.7);
    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
}

.footer-bottom-links a{
    color:rgba(255,255,255,.7);
    transition:.3s;
}

.footer-bottom-links a:hover{
    color:#4DA3FF;
}

/* ==================================
   FLOATING WHATSAPP
================================== */

.whatsapp-float{
    position:fixed;

    right:10px;
    bottom:100px;

    width:40px;
    height:40px;

    border-radius:50%;

    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:25px;

    text-decoration:none;

    box-shadow:
    0 12px 30px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:
    translateY(-5px)
    scale(1.05);
}

/* ==================================
   SCROLL TOP
================================== */

.scroll-top{
    position:fixed;

    right:10px;
    bottom:50px;

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:#0B5FFF;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    cursor:pointer;

    z-index:9999;

    box-shadow:
    0 12px 30px rgba(11,95,255,.35);

    transition:.3s ease;
}

.scroll-top:hover{
    /*background:#071C63;*/
    background: #ff7a00;
    transform:translateY(-5px);
}

/* ==================================
   LARGE TABLET
================================== */

@media(max-width:1200px){

    .footer-top{
        grid-template-columns:
        repeat(3,1fr);
    }

    .footer-company{
        grid-column:span 3;
    }
}

/* ==================================
   TABLET
================================== */

@media(max-width:768px){

    .footer{
        padding-top:60px;
    }

    .footer-top{
        grid-template-columns:
        repeat(2,1fr);

        gap:30px;
    }

    .footer-company{
        grid-column:span 2;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .whatsapp-float{
        width:55px;
        height:55px;

        font-size:26px;

        right:20px;
        bottom:20px;
    }

    .scroll-top{
        width:45px;
        height:45px;

        font-size:16px;

        right:20px;
        bottom:85px;
    }
}

/* ==================================
   MOBILE
================================== */

@media(max-width:480px){

    .footer-top{
        grid-template-columns:1fr;
        gap:25px;
    }

    .footer-company{
        grid-column:unset;
    }

    .footer-column{
        border-top:
        1px solid rgba(255,255,255,.08);

        padding-top:20px;
    }

    .footer-bottom-links{
        flex-direction:column;
        gap:10px;
    }

    .footer-logo{
        width:120px;
    }

    .footer-column p{
        font-size:16px;
    }

    .footer-column a{
        font-size:14px;
    }

    .footer-bottom p{
        font-size:13px;
    }

    .whatsapp-float{
        width:52px;
        height:52px;

        right:15px;
        bottom:15px;

        font-size:24px;
    }

    .scroll-top{
        width:42px;
        height:42px;

        right:15px;
        bottom:78px;

        font-size:14px;
    }
}