footer {
    background-color: var(--color-primary);
    padding: 20px;
    color: white;
    font-size: 18px;
}

#footer-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

#footer-wrapper > * {
    width: 100%;
}

.footer-links {
    width: 30%;
    min-height: 200px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials li img {
    width: 30px;
    height: 30px;
}

.socials li img:hover {
    cursor: pointer;
}

.footer-title {
    margin: 24px 0;
    font-size: 30px;
}

.contacts {
    display: block;
}

.contacts li {
    line-height: 24px;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.footer-signup {
    width: 40%;
    min-height: 200px;
    position: relative;
}

.footer-signup p { 
    margin: 0;
    padding: 0;
}


#footer-form {
    margin-top: 10px;
}

#footer-form input[type="text"] {
    width: 70%;
    border: solid 2px black;
    box-shadow: 0 15px 15px 8px rgba(12, 76, 53, .1);
}

#footer-form input[type="button"] {
    width: 30%;
    box-shadow: none;
    border-radius: 0 20px 0 0;

    
    background-color: #000;
    border: solid 2px black;
}

#footer-form input[type="button"]:hover {
    color: var(--color-primary);
}

@media screen and (min-width: 1000px) {

    #footer-wrapper {
        flex-direction: row;
    }

}

@media screen and (min-width: 1300px) {

    footer {
        padding: 100px;
    }

    #footer-wrapper {
        gap: 40px;
    }

}