.footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px 0;
    background-color: #fff;
    border-radius: 25px 25px 0 0;
}
.footerWrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footerLogo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footerContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}
.footerGroup {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footerIcon {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footerList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footerListItem {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footerListTitle {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}
.footerTitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
}
.footerLink {
    text-align: start;
    font-size: clamp(12px, 2vw, 14px);
    line-height: 22px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #333;
}
.footerLink:active {
    color: var(--green);
}
.footerLine {
    display: flex;
    gap: 45px;
}
.footerListGroup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: space-between;
    gap: 24px;
}
.modal {
    padding: 0 !important;
}
.modalClass {
    border-radius: 10px !important;
}
.footerPolicy {
    color: #00000099;
    font-size: clamp(14px, 2vw, 16px);
    transition: all 0.3s;
}
.footer-point {
    font-size: 26px;
    margin-top: -14px;
    color: #00000099;
}
.footerBottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.expert-footer-link {
    color: var(--green);
    font-size: clamp(14px, 3vw, 16px);
}

.telegramBanner {
    background: #00b129;
    border-radius: 10px;
    max-width: 200px;
    padding: 20px;
    position: relative;
}

.telegramBannerImage {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.telegramBanner-text {
    font-weight: 400;
    font-size: 16px;
    position: relative;
    z-index: 2;
    line-height: 120%;
    color: #fff;
    margin-bottom: 16px;
}

.telegramBanner-link {
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    padding: 15px 20px;
    background: #ffe100;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    max-width: 110px;
}

@media (min-width: 920px) {
    .footerLink:hover,
    .footerPolicy:hover {
        color: var(--green);
    }
}
@media (max-width: 1440px) {
    .footerWrapper {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 920px) {
    .footer {
        padding: 23px 20px;
    }
    .footerContentDesk {
        display: none;
    }
    .footerLogo {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 23px 15px;
    }
    .footerListGroup {
        gap: 15px;
    }
    .footerLogoGroup img {
        min-width: 44px;
    }
    .footerGroup {
        gap: 7px;
    }
    .footerList {
        gap: 5px;
    }
    .footerBottom {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .footerBottom {
        gap: 8px;
    }
}
