footer {
    padding: 80px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    footer {
        padding: 20px 20px;
    }
}

footer h4 {
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #4c423a;
    font-family: 'playFairRegular';
}

@media only screen and (max-width: 768px) {
    footer h4 {
        font-size: 20px;
    }
}

footer form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

footer form input {
    color: #4c423a;
    padding: .75em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(77, 65, 57, 0.11);
    border-radius: 2px;
    background: #FAFAFA;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
    vertical-align: baseline;
    line-height: 1;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    font-family: 'playFairRegular';
}

@media only screen and (max-width: 768px) {
    footer form input {
        padding: .5em;
    }
}

footer form button {
    border: 1px solid #4c423a;
    color: #4c423a;
    background-color: transparent;
    padding: 15px 25px;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'playFairRegular';
    cursor: pointer;
    transition: all .2s linear;
    border-radius: 2px;
}

@media only screen and (max-width: 768px) {
    footer form button {
        padding: 10px 20px;
    }
}

footer ul {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    list-style: none;
}

@media only screen and (max-width: 768px) {
    footer ul {
        gap: 20px;
    }
}

footer ul li a {
    color: #4c423a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'playFairRegular';
}

footer div {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

footer div a {
    background-color: #c1955d;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer div a svg {
    height: 18px;
    aspect-ratio: 1/1;
    width: auto;
    fill: #ffffff;
}

footer h5 {
    color: rgba(77, 66, 58, 0.76);
    text-align: center;
    font-family: 'playFairRegular';
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2em;
    margin-top: 80px;
}

@media only screen and (max-width: 768px) {
    footer h5 {
        font-size: 1rem;
    }
}