footer{
    /* background-color: var(--secondary-3); */
    background-color: #191919;
    width: 100%;
}
footer .footer-one{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px 15px 70px;
}
footer .company-description img{
    height: 90px;
    width: fit-content;
    margin-bottom: 25px;
    object-fit: contain;
}
footer .company-description p{
    color: white;
    max-width: 70%;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0;
    word-spacing: 0;
    line-height: 24px;
    margin-bottom: 35px;
}
footer .company-description .social-media a img{
    max-width: 25px;
    width: 100%;
    height: 100%;
    margin-right: 12px;
}
footer .company-description .social-media a img:hover{
    filter: brightness(0) saturate(100%) invert(15%) sepia(92%) saturate(4228%) hue-rotate(350deg) brightness(93%) contrast(91%);
}
footer .useful-links{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
    color: white;
}
footer .useful-links .link-title{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    /* letter-spacing: 1.2px; */
    margin-bottom: 25px;
    color: var(--primary);
}
footer .useful-links .links{
    display: flex;
    flex-direction: column;
}
footer .useful-links .links p{
    display: flex;
    flex-direction: column;
    color: white;
    letter-spacing: 0;
    word-spacing: 0;
    margin-bottom: 8px;
}
footer .useful-links .links a{
    color: white;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: .5px;
    margin-bottom: 8px;    
    width: fit-content;
}
footer .useful-links .links a:hover{
    color: var(--primary);
    text-decoration: underline;
}
footer .footer-2{
    border-top: 1px solid white;
    display: flex;
    justify-content: space-between;    
    color: white;
    padding: 25px 15px;
}
footer .footer-2 {
    border-top: 1px solid white;
}
footer .footer-2 p{
    color: white;
}
footer .footer-2 a{
    color: white;
    text-transform: capitalize;
    font-size: 14px;
    padding-bottom: .5px;
    border-bottom: 2px solid var(--secondary-2);
    margin: 0 8px;
    width: fit-content;
}
footer .footer-2 a:hover{
    color: var(--primary);
    border-color: var(--primary);    
}

/* scroll to top style */
.scroll-to-top {
    position: fixed;
    bottom: -100%;
    right: 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all .5s ease-in-out;
}
.scroll-to-top:hover {
    background-color: var(--secondary);
}
/* scroll to top style */


@media (width < 800px){
    footer .footer-one {
        grid-template-columns: 1fr;
        padding: 60px 15px 25px;
    }
    footer .useful-links {
        grid-template-columns: 1fr 1fr;
    }
    footer .footer-2 {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
}