footer {
    display: flex;
    padding: 32px 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 48px 48px 0px 0px;
    background: var(--Main-dark, #2E2E2E);
    max-width: 1920px;
    width: 100%;
    box-sizing: border-box;
}

.twobuttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.layoutfoot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}
.privacy{
    text-decoration: underline;
    color:#FAFAFA;
    cursor: pointer;
}
.frame-foot{
    display: flex;
    flex-direction: column;
    gap: 16px;

}
.location {
    color: var(--Text-white, #FAFAFA);
    font-family: "TT Hoves";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.layoutlogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 64px;
}

.framelogo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.number, .email {
    color: var(--Text-white, #FAFAFA);
    font-family: "TT Hoves";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.number {
    white-space: nowrap;
}

/* Адаптация на 1280px */
@media (max-width: 1280px) {
    footer {
        border-radius: 24px 24px 0px 0px;
    }
    
    .layoutlogo {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .framelogo {
        flex-direction: row;
        justify-content: flex-start;
        gap: 24px;
        width: 100%;
    }
    
    .razdelitel {
        width: 100%;
    }
    
    .number, .email {
        order: 0;
    }
}

/* Адаптация на 768px */
@media (max-width: 768px) {
    footer {
        border-radius: 20px 20px 0px 0px;
        padding: 32px;
    }
    
    .layoutfoot {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .twobuttons {
        justify-content: flex-start;
        width: 100%;
    }
    
    .framelogo {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .razdelitel {
        order: 0;
        width: 100%;
        /* margin: 16px 0; */
    }

    .location, .number, .email {
        font-size: 20px;
    }
}

/* Адаптация на 480px */
@media (max-width: 480px) {
    footer {
        border-radius: 16px 16px 0px 0px;
        padding: 24px;
    }
    
    .logo-img {
        width: 150px;
        height: 38px;
    }
    
    .layoutlogo {
        gap: 16px;
    }
    
    .framelogo {
        gap: 12px;
    }
    
    .location, .number, .email {
        font-size: 18px;
    }
    
    .twobuttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .button-orange, .button-white {
        width: 100%;
    }
}