.pre__footerMain {
    margin-top: 20px;
    background-color: var(--color-bgTheme-navs);
    border-top-left-radius: var(--corner-rare);
    border-top-right-radius: var(--corner-rare);
}

.pre__footerWrap {
    margin: 0 auto;
    width: var(--width-max);
    max-width: 100%;
    padding: 48px 0px 48px;
}

.pre__footerTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}

.pre__footerNav {
    display: flex;
    flex-wrap: wrap;
    gap: 120px;
}

.pre__footerColumn {
    display: flex;
    flex-direction: column;
}

.pre__footerTitle {
    color: var(--color-txtThird);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: lowercase;
}

.pre__footerLinks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pre__footerLink {
    font-size: 15px;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.pre__footerLink:hover {
    opacity: 0.7;
}

.pre__footerLogo {
    width: 156px;
    height: auto;
    flex-shrink: 0;
    cursor: grabbing;
     transition: transform 0.3s;
}

.pre__footerLogo:hover {
    transform: rotate(-21.6deg);
}

.pre__footerLogoImg {
    width: 100%;
    height: auto;
    user-select: none;
}

.pre__footerBottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pre__footerDisclaimer {
    color: var(--color-txtThird);
    font-size: 14px;
}

.pre__footerCopy {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-txtSecondary);
}

@media (max-width: 1185px) {
    .pre__footerWrap {
        padding: 32px 20px;
    }

    .pre__footerNav {
        gap: 60px;
    }

    .pre__footerLogo {
        display: none;
    }
}

@media (max-width: 728px) {
    .pre__footerTop {
        margin-bottom: 30px;
    }

    .pre__footerNav {
        gap: 32px;
    }

    .pre__footerDisclaimer,
    .pre__footerCopy {
        font-size: 13px;
    }
}