footer{
    height: auto;
    background-color: var(--black);
    padding: 5rem 0px;
    font-family: "Artizan mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--white);
}

.footer__info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-start;
    padding-bottom: 30px;
}

.footer__info__contact{
    width: 35%;

}

.footer-email{
    text-decoration: underline;
    color: var(--white);
}

.footer-info-phones{
    display: flex;
    justify-content: space-between;
}

.footer-info-menu{
    display: flex;
    justify-content: space-between;
    width: 25%;
    font-size: 12px;
    font-weight: 400;
    line-height: 2.2;
}

footer {
    padding-bottom: 0px;
}

.footer-logo{
    font-family: "Gunterz-regular";
    font-size: clamp(6px, 5vw, 90px);
    font-weight: 700;
    text-align: center;
    height: clamp(12px, 6vw, 120px);
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.footer-info-menu-list-two a{
    text-decoration: none;
    color:var(--white)
}

.footer-info-menu a{
    text-decoration: none;
    color:var(--white)
}

.footer-info-menu{
    margin-top: 40px;
}


.footer-info-phones a{
    text-decoration: none;
    color:var(--white)
}

.btn-proyect-k{
    width: 289px;
    height: 43px;
    border-radius: 6px;
    background-color: #E5E8EF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 20px;
    margin:30px 0px;
    cursor: pointer;
}

.btn-proyect-k:hover{
    background-color: var(--black);
    border: 1px solid white;
}

.btn-proyect-k:hover a,
.btn-proyect-k:hover p{
    color:white;
}

.btn-proyect-k:hover path{
    fill:white;
}


.btn-proyect-k a,
.btn-proyect-k p{
    text-decoration: none;
    color:var(--black);
}


@media screen and (max-width:768px){
    .footer__info{
        flex-direction: column;
        align-items: center;
    }

    .footer__info__contact{
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .footer-info-phones{
        width: 288px;
        display: flex;
        gap:1rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-info-menu{
        width: 288px;
    }

    .footer-logo{
        font-family: "Gunterz-regular";
        font-size: clamp(6px, 5vw, 90px);
    }

}