/* Block */
.footer {
    display: flex;
    min-width: 100%;
    padding: 84px 100px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Elements */
.footer__logo {
    display: flex;
    min-width: 20%;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
}
.footer__links {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.footer__section,
.footer__list {
    display: flex;
    min-width: 200px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.footer__section-title {
    color: var(--cool-purple-800, #301a79);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
    letter-spacing: -1px;
}

.footer__item {
    color: var(--cool-purple-800, #301a79);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.8px;
}
.footer__action {
    position: relative;
    display: flex;
    width: 130px;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--neutral-100, #ececec);
    background: #fff;
}

.footer__button {
    display: flex;
    width: 100%;
    padding: 10px 12px;
    justify-content: space-between;
    align-items: center;
}

.footer__button > span:first-child {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer__button > span span:last-child,
.dropdown-item a {
    color: var(--neutral-700, #555);
    text-align: center;
    font-size: var(--font-size-medium, 14px);
    font-style: normal;
    font-weight: var(--font-weight-600, 600);
    line-height: 20px;
    letter-spacing: -0.7px;
}

.dropdown-list {
    position: absolute;
    top: 42px;
    width: inherit;
    height: inherit;
    border-radius: 4px;
    border: 1px solid var(--neutral-100, #ececec);
    background: #fff;
}

.dropdown-item {
    width: 100%;
    height: 100%;
    padding: 10px 8px;
    text-align: center;
}

.dropdown-list .dropdown-item:nth-child(1) {
    border-bottom: 1px solid var(--neutral-100, #ececec);
}

.dropdown-item a {
    display: flex;
    gap: 8px;
    /* justify-content: center; */
    /* align-content: center; */
}

.dropdown-item.active,
.dropdown-item:hover {
    background: #f4f4f4;
}

.footer__bottom {
    display: flex;
    width: 100%;
    padding: 24px 100px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--cool-purple-100, #dfd5ff);
}

.footer__social {
    display: flex;
    align-items: flex-start;
    gap: 16.667px;
}
.footer__social a {
    padding: 13.889px;
    border-radius: 138.889px;
    border: 1px solid var(--purple-100, #dfcbff);
    background: var(--cool-purple-50, #f5f2ff);
}
.footer__info {
    color: var(--cool-purple-600, #6043bd);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.9px;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        padding: 40px 20px;
    }

    .footer__logo {
        width: 100%;
        align-items: center;
        gap: 24px;
    }

    .footer__links {
        display: flex;
        flex-direction: column;
    }

    .footer__section {
        min-width: auto;
        width: 100%;
        align-items: flex-start;
        gap: 12px;
    }

    .footer__action {
        width: 100%;
        margin-top: 20px;
    }

    .footer__bottom {
        padding: 20px 20px;
        flex-direction: column;
        gap: 24px;
    }
}

@media only screen and (max-width: 455px) {
    .footer__social {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }
}
