.footer {
    margin-top: 40px;
    border-image: linear-gradient(-232deg, #5956f0 0%, #ff50b8 100%);
    box-sizing: content-box;
    border-width: 3px;
    border-style: solid;
    border-image-slice: 1;
    border-bottom: none;
    border-left: none;
    border-right: none;
    background-color: #28183f;
    color: #fff;
}

.footer__container {
    padding-top: 75px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer__a {
    display: grid;
    gap: 33px;
}

.footer__a-divider {
    max-width: 450px;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #5956f0 0%, #ff50b8 100%);
}
.footer__a-text {
    max-width: 450px;
    width: 100%;
    color: #8d6fb5;
    font-family: var(--opensans);
    font-size: 16px;
    margin: 0;
}
.footer__a-text--emphasys {
    letter-spacing: 0.8px;
    font-weight: 600;
}
.footer__a-copyright {
    width: 100%;
    border-radius: 10px 10px 0 0;
    background-color: #0f002799;
}

.footer__a-copyright-text {
    padding: 12px 20px;
    color: #7655a1;
    font-family: var(--opensans);
    font-size: 16px;
    text-align: center;
    line-height: 1;
    margin: 0;
}

.footer__b {
    display: grid;
    gap: 57px;
}

.footer__b-newsletter-title {
    color: #fff;
    font-family: var(--josefinsans);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.footer__b-newsletter-cf7 label {
    position: relative;
}

.footer__b-newsletter-cf7 input[type="email"] {
    width: 100%;
    padding: 14px 20px;
    border-radius: 7px;
    background-color: #faf4eb33;
    border: none;
    outline: none;
    font-family: var(--opensans);
    color: #fff;
}

.footer__b-newsletter-cf7 input[type="email"]::-webkit-input-placeholder {
    color: #7d7588;
    font-size: 18px;
}

.footer__b-newsletter-cf7 input[type="email"]:-moz-placeholder {
    color: #7d7588;
    font-size: 18px;
}

.footer__b-newsletter-cf7 input[type="email"]:-ms-input-placeholder {
    color: #7d7588;
    font-size: 18px;
}

.footer__b-newsletter-cf7 input[type="email"]::placeholder {
    color: #7d7588;
    font-size: 18px;
}

.footer__b-newsletter-cf7 button[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 52px;
    background: linear-gradient(to right, #5956f0, transparent) #ff50b8;
    color: #fff;
    font-size: 29px;
    outline: none;
    border: none;
    border-radius: 7px;
    transition: background-color 1s;
}

.footer__b-newsletter-cf7 button[type="submit"]:hover,
.footer__b-newsletter-cf7 button[type="submit"]:focus {
    background-color: #5956f0 !important;
}

.footer__b-newsletter-cf7 .wpcf7-response-output {
    margin: 15px 0 25px 0 !important;
    max-width: 390px;
}

.footer__b-social-title {
    color: #fff;
    font-family: var(--josefinsans);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
}
.footer__b-social-icons {
    display: flex;
    gap: 10px;
}
.footer__b-social-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(to right, #5956f0, transparent) #ff50b8;
    border-radius: 50%;
    font-size: 24px;
    transition: background-color 1s;
    color: #fff;
    text-decoration: none;
}

.footer__b-social-icon:hover,
.footer__b-social-icon:focus {
    background-color: #5956f0;
}

.footer__a-copyright--mobile {
    display: none;
}

@media screen and (max-width: 820px) {
    .footer__container {
        flex-direction: column;
        gap: 50px;
    }

    .footer__a {
        width: 100%;
    }

    .footer__a-divider {
        max-width: unset;
    }

    .footer__a-text {
        max-width: unset;
    }

    .footer__a-copyright {
        display: none;
    }

    .footer__a-copyright--mobile {
        display: initial;
    }

    .footer__b {
        width: 100%;
        gap: 30px;
    }
}
