/* footer */
footer {
    background-color: #2E2D2D;
}

.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 35px 0;
}

.footer img , .logo img {
    width: 100px;
    background: white;
    border-radius: 13px;
    margin:15px;
}

.footer i {
    color: white;
}
.contact-us{
    margin-bottom: 10px;
}
.contact-us i {
    margin-right: 10px;
}

.contact-us a {
    font-size: 14px;
}

.footer .links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer a {
    text-decoration: none;
    color: white;

}

footer p {
    text-align: center;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

body>footer>p>a {
    color: rgb(20 160 9);
}

.social-media {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.links a {
    margin-bottom: 7px;
    font-size: 15px;
    transition: 0.5s ease;
}

.links a:hover {
    color: #9E7E05;
    transform: translateX(5px);
}

@media (max-width:670px) {
    .footer {
        gap: 15px;
        flex-direction: column;
    }
}