footer {
    background-color: var(--rvl-dark-color);
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0px;
    z-index: 0;
}

.footer__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer__image {
    width: 100%;
}
 
.footer__item.newsletter {
    align-self: center;
    justify-self: flex-end;
    text-align: right;
}

.footer__item.newsletter .footer__heading {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .newsletter-form__input {
    border: 1px solid var(--rvl-main-color);
    padding: 0.626rem;
    outline: none;
    width: 400px;
    background-color: rgba(255, 255, 255, .2);
    color: var(--rvl-light-color);
    font-family: var(--rvl-main-font);
    font-size: 16px;
    cursor: text !important;
}

.newsletter__submit {
    width: 20%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none !important;
    outline: none !important;
}

.newsletter__submit .arrow {
    display: flex;
    cursor: pointer;
}

.newsletter__submit .arrow::before {
    content: '';
    height: 2px;
    width: 40px;
    background-color: #FFF;
    display: block;
    float: left;
    position: relative;
    top: 10px;
}

.newsletter__submit .arrow::after {
    content: '';
    float: left;
    border-left: 11px solid #FFF;
    border-right: 11px solid transparent;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.newsletter__submit .arrow:hover::before {
    background-color: var(--rvl-main-color);
}

.newsletter__submit .arrow:hover::after {
    border-left-color: var(--rvl-main-color);
}

.footer__item.email {
    align-self: flex-end;
}

.footer__item.email .footer__heading {
    font-size: 24px;
    line-height: 42px;
    font-weight: 400;
    color: var(--rvl-light-color);
}

.footer__item.email .footer__heading a {
    padding: 0 10px;
    background: var(--rvl-main-color);
    color: var(--rvl-light-color);
    text-decoration: none;
}

.footer__item.email .footer__heading a:hover {
    box-shadow: 0 0 10px var(--rvl-main-color);
}

.footer__item.info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer__link {
    color: var(--rvl-light-color);
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
}

.footer__social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer__social-media img {
    border: 2px solid transparent;
}

.footer__social-media img:hover {
    border-color: var(--rvl-main-color);
    border-radius: 10px;
}