.footer {
    background-image: url("../../img/image.png");
    background-size: cover;
    background-color: #111111F7;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.footer-links {
    display: flex;
}

.footer-border {
    width: 1px;
    height: 150px;
    background-color: #5F5F5F;
    margin: 0 2rem;
}

.footer-media {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-media i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    transition: all .3s;
}

.footer-logo img {
    width: 100%;
    margin-bottom: 1rem;
}

.footer-media i:hover {
    background-color: #0C00A6;
    transition: all .3s;
}

.footer h2 {
    color: #FFF;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 1.3rem;
    font-size: 24px;
}

.footer a {
    color: #BDBDBD;
    font-size: 16px;
    margin-bottom: 1.3rem;
    display: block;
    transition: all .3s;
}

.footer a:hover {
    color: #F6F308;
    transition: all .3s;
}

.footer .logo {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.copyRight {
    text-align: center;
    background-color: #131313;
    padding: 0.5rem;
}

.copyRight p {
    color: #FFFFFF;
    font-size: 16px;
}


@media (max-width: 768px) {
    .footer-layout {
        height: 100%;
        flex-flow: column;
        align-items: start;
    }
    .footer-logo {
        margin-bottom: 2rem;
    }
    .footer-logo img {
        width: auto;
    }
    .footer-border {
        display: none;
    }
    .footer-links {
        justify-content: space-between;
        width: 100%;
    }
}