.footer {
    position: relative;
    overflow: hidden;
    border: 1px solid #ECECEC;
    box-shadow: 0px 30px 45px -30px #32325D40,
        0px 18px 36px -18px #0000001A;
    border-radius: 40px;
    padding: 60px;
    margin-bottom: 20px;
}

.footer::before {
    content: "";
    position: absolute;
    display: block;
    background-color: #F1F8FF;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}

.footer .footer__title {
    font-weight: 500;
    font-size: 52px;
    line-height: 100%;
    letter-spacing: -1%;
    color: #2589FF;
}

.footer .footer__text {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #080C10B2;
    margin-top: 16px;
    margin-bottom: 32px;
}

.footer .footer__socials {
    display: grid;
    grid-template-columns: repeat(2, 175px);
    align-items: center;
    gap: 16px;
}

.footer .footer__social {
    padding: 16px 0;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    border: 1px solid #F1F1F1;
    border-radius: 12px;
    box-shadow: 0px 3px 6px 0px #7C79791A,
        -1px 10px 10px 0px #7C797917,
        -3px 23px 14px 0px #7C79790D,
        -6px 41px 17px 0px #7C797903,
        -9px 65px 18px 0px #7C797900;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #232323;
}

.footer .footer__social-icon {
    height: 22.5px;
    width: 22.5px;
}

.footer .footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 116px;
}

.footer .footer__left,
.footer .footer__right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .footer__right {
    align-items: flex-end;
}

.footer .footer__bg {
    position: absolute;
    z-index: -2;
    bottom: 0;
    height: calc(100% - 80px);
    right: 0;
}

.footer .footer__bg-img {
    height: 100%;
    width: auto;
}

.footer .footer__left a,
.footer .footer__left {
    color: #080C10B2;
}

.footer .footer__right a,
.footer .footer__right {
    color: #fff;
}

.footer .footer__small-text {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0%;
}

@media screen and (max-width: 1100px) {
    .footer {
        padding: 40px;
        border-radius: 40px;
    }

    .footer .footer__title {
        font-size: 40px;
    }

    .footer .footer__text {
        font-size: 21px;
    }

    .footer .footer__bg {
        right: -100px;
    }

    .footer .footer__bottom {
        margin-top: 80px;
    }
}

@media screen and (max-width: 750px) {
    .footer .footer__bg {
        right: -180px;
    }
}

@media screen and (max-width: 680px) {
    .footer {
        padding: 20px;
        border-radius: 20px;
    }

    .footer .footer__title {
        font-size: 24px;
    }

    .footer .footer__text {
        font-size: 18px;
    }

    .footer .footer__socials {
        display: flex;
        flex-direction: column;
    }

    .footer .footer__social {
        width: 100%;
        background-color: #ffffff73;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .footer .footer__bottom {
        flex-direction: column;
    }

    .footer .footer__right {
        align-items: flex-start;
    }

    .footer .footer__right a,
    .footer .footer__right,
    .footer .footer__left {
        color: #080C10B2;
    }

    .footer .footer__bottom,
    .footer .footer__left, 
    .footer .footer__right {
        gap: 10px;
    }

    .footer .footer__bottom {
        margin-top: 50px;
    }

    .footer .footer__bg {
        right: -250px;
    }
}
