footer{
    position: relative;
}
footer .top-footer{
    background-color: #000;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer .top-footer .brand-img img{
    width: 220px;
}
footer .top-footer .social-link img{
    width: 30px;
    height: 30px;
    margin-right: 6px;
}
footer .top-footer .social-link p.text{
    
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
}
footer .top-footer .social-link p.text::before{
    content: "";
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background-color: #fff;
}
footer .main-footer-wrapper{
    padding: 80px 0;
    background-color: #000;
}
footer .main-footer-wrapper h5{
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 24px;
}
footer .main-footer-wrapper .link-col a{
    color: #fff;
    display: block;
    margin-bottom: 10px;
    text-transform: capitalize;
}
footer .main-footer-wrapper .contact-col a{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: #fff;
    gap: 6px;
}
footer .main-footer-wrapper .contact-col a img{
    width: 22px;
    height: 22px;
}
footer .copyright{
    background-color: #111111;
    padding: 20px 0;
}
footer .copyright p{
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}
footer .copyright p a{
    color: #fff;
    font-weight: 700;
    transition: all 0.4s;
}
footer .copyright p a:hover{
    text-decoration: underline!important;
}


@media (max-width:568px){

footer .top-footer .social-link p.text::before{
    right: 60px;
}
footer .top-footer .social-link p.text::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background-color: #fff;
}
footer .copyright p{
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}
}