:root {
    --primary-color: #2c3855;
    --extra-dark: #2B2C2D;
    --text-semi-white: #d8d5d5;
    --white: #ffffff;
}

a{
    text-decoration: none;
}
footer {
    margin-top: 20px;
    background-color: #2B2C2D;
    color: var(--text-semi-white);
    padding: 40px 20px 0 20px;
}

.footer__col img {
    width: 80px;
    margin-bottom: 1rem;
}

.footer__col h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__col p, .footer__col > .socials {
    color: var(--text-semi-white);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer__col p:hover, .footer__col a:hover {
    color: var(--white);
}

.footer_socials a {
    color: var(--text-semi-white);
    font-size: 1.5rem;
    margin-right: 10px;
    transition: color 0.3s;
}

.footer_socials a:hover {
    color: var(--white);
}

.newsletter-form .newsletter-input {
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form .newsletter-btn {
    width: 100%;
    background-color: #c00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-form .newsletter-btn:hover {
    background-color: rgb(225, 6, 6);
}

.footer__bar {
    margin-top: 20px;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-semi-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px){
    .footer__col{
        margin-bottom: 20px;
    }
}