.footer {
    position: relative;
    padding: 80px 0px;

    background-image: linear-gradient(90deg, #0F1760 21.34%, rgba(15, 23, 96, 0.85) 51.82%, rgba(15, 23, 96, 0.72) 75.18%);
}

.footer__body {
    padding: 0px 50px;
    display: flex;
    gap: 165px;
}

.footer__logo {
    display: block;
    margin-bottom: 110px;
    cursor: pointer;
}

.footer__license {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.footer__row {
    display: flex;
    gap: 90px;
}


.footer__contacts-title {
    display: inline-block;
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
}

.footer__social-media {
    display: flex;
    gap: 24px;
}

.footer__link {
    display: block;
    padding: 2px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: border 215ms;
}

.footer__link:hover {
    border: 1px solid #fff;
}

.footer__location-title {
    display: inline-block;
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
}

.footer__location-body {
    display: flex;
    gap: 5px;
}

.footer__location-address {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline;
}

.footer__location-address:hover {
    color: aqua;
    text-decoration: underline;
}

/* Footer background image */
.footer__background-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.footer__background-image::before {
    content: "";
    position: absolute;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
    top: 0;
    left: -100px;
    width: 100%;
    height: 100%;
}

/* Responsiveness */
@media (max-width: 850px) {
    .footer {
        background-color: #0F1760;
    }

    .footer__body {
        justify-content: center;
    }

    .footer__row {
        flex-direction: column;
        gap: 25px;
    }

    .footer__logo {
        margin-bottom: 50px;
    }

    .footer__background-image {
        display: none;
    }
}


@media (max-width: 650px) {
    .footer__body {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .footer__row {
        align-items: center;
        gap: 50px;
    }

    .footer__location-icon {
        display: none;
    }
}