.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    min-height: 10.417vw;
    background: #713fa0;
}

.footer_logo_and_notarySignature {
    display: flex;
    flex-direction: column;
    gap: 1.042vw;
    margin: 1.563vw 0 2.24vw 0;
}
.footer_logo {
    width: 8.333vw;
    height: 3.594vw;
}
.footer_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer_notarySignature p {
    font-family: "Rubik";
    font-weight: 400;
    /* font-size: 16px; */
    font-size: 0.833vw;
    color: rgba(255, 255, 255, 0.5);
    white-space: pre;
}



/* .footer_menu {
    margin: 3.49vw 11.771vw 5.833vw 8.021vw;
    display: flex;
    gap: 5.208vw;
}
.footer_menu a {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.938vw;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
} */
.footer_menu {
    margin: 3.49vw 11.771vw 5.833vw 8.021vw;
    display: flex;
    gap: 5.208vw;
}

.footer_menu a {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.938vw;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;

    position: relative;
    transition: color 0.3s ease;
}

/* Анимированное подчеркивание */
.footer_menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2vw;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer_menu a:hover {
    color: #e0d4f7;
}

.footer_menu a:hover::after {
    transform: scaleX(1);
}


.footer_info_and_creatorSignature {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.615vw;
}
/* .footer_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.104vw;
}
.footer_info p {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.729vw;
    color: #fff;
    margin: 0;
}
.footer_info span {
    font-weight: 300;
    font-size: 1.042vw;
} */

.footer_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.104vw;
}

.footer_info p {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.729vw;
    color: #fff;
    margin: 0;
}

.footer_info span {
    font-weight: 300;
    font-size: 1.042vw;
}

/* Анимация ссылок */
.footer_info a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Подчёркивание при наведении */
.footer_info a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1vw;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover эффекты */
.footer_info a:hover {
    color: #d3d3d3; /* немного светлее, чем белый */
}

.footer_info a:hover::after {
    transform: scaleX(1);
}


/* .footer_creatorSignature p {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.833vw;
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
}
.footer_creatorSignature span {
    color: rgba(255, 255, 255, 0.75);
} */


.footer_creatorSignature p {
    font-family: "Rubik";
    font-weight: 400;
    font-size: 0.833vw;
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer_creatorSignature a {
    color: inherit; /* чтобы цвет унаследовался */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer_creatorSignature span {
    color: rgba(255, 255, 255, 0.75);
}

/* Подчёркивание для ссылки */
.footer_creatorSignature a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15vw;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.75);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover эффекты */
.footer_creatorSignature a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer_creatorSignature a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        padding-bottom: 8.267vw;
        margin-top: 3.733vw;
    }

    .footer_logo_and_notarySignature {
        gap: 7.2vw;
        align-items: center;
        margin: 5.333vw 0 14.4vw 0;
    }
    .footer_logo {
        width: 36.8vw;
        height: 15.733vw;
    }
    .footer_notarySignature {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer_notarySignature p {
        font-size: 3.733vw;
    }
    .footer_menu {
        margin: 0 0 15.733vw 0;
        align-items: center;
        gap: 6.4vw;
        flex-direction: column;
    }
    .footer_menu a {
        font-size: 4.8vw;
    }
    .footer_info_and_creatorSignature {
        align-items: center;
        gap: 11.2vw;
    }
    .footer_info {
        align-items: center;
        gap: 0.8vw;
    }
    .footer_creatorSignature p {
        font-size: 4.267vw;
    }
    .footer_info p {
        font-size: 3.733vw;
    }
    .footer_info span {
        font-size: 5.333vw;
    }
}