
.footer {
    background: #000;
    color: #ffffff;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}
.footer .container{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* LAYOUT */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-links {
    border-right: 1px solid rgb(255 255 255 / 58%);
    padding-right: 70px;
}
/* LEFT */
.footer-left {
    width: 50%;
    border-right: 1px solid rgb(255 255 255 / 58%);
    padding-right: 80px;
}

.footer-logos img {
    height: 40px;
    margin-right: 15px;
}

.footer-desc {
    margin: 20px 0;
    line-height: 1.6;
}

.footer-info p {
    margin: 8px 0;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #EAA636;
    color: #000;
    border-color: #EAA636;
    transform: translateY(-10px);
}

/* RIGHT */
.footer-right {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

/* LINKS */
.footer-links h4,
.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #EAA636;
    transform: translateX(15px);
    background-color: transparent;
}

/* NEWSLETTER */
.newsletter-box {
    display: flex;
    margin-top: 10px;
}

.newsletter-box input {
    padding: 12px;
    border: none;
    outline: none;
    background: #121212;
    color: #fff;
    width: 200px;
}

.newsletter-box button {
    background: #EAA636;
    border: none;
    padding: 12px 20px;
    color: #000;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 14px;
}

.footer-bottom span, .footer-bottom a {
    color: #EAA636;
    transition: all 0.5s;
    font-weight: bold;
}
.footer-bottom a:hover{
    background: transparent;
    color: #dfdfdf;
    font-weight: bold;

}
.footer-bottom .footer-bottom1, .footer-bottom .footer-bottom2{
    text-align: center;
}
.footer-bottom .footer-bottom1{
    width: 80%;
}
.footer-bottom .footer-bottom2{
    width: 20%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}