/* =========================== GIT =========================== */
.contacts {
    width: 100%;
    height: 100%;
}

.contacts .contact {
    background-color: var(--BGButton);
    padding: 60px;
    border-radius: 20px;
}

.contacts .contact span {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

.contacts .contact .text {
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}

.contacts .contact .text h1 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 300;
    width: 80%;
}

.contacts .contact .text a i {
    transform: rotate(-45deg);
    transition: all .3s ease-in-out;
}

.contacts .contact .text a {
    padding: 1rem 3rem;
    color: var(--ColorText);
    background-color: var(--BGCard);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    gap: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.contacts .contact .text a:hover>i {
    transform: rotate(0deg);
}

.contacts .contact .text a:hover {
    background-color: var(--BGCardHover);
}

@media screen and (max-width: 992px) and (min-width: 835px) {
    .contacts .contact .text h1 {
        font-size: 30px;
        width: auto;
        margin-bottom: 25px;
    }

    .contacts .contact .text a {
        font-size: 16px;
        width: 30%;
    }
}

@media screen and (max-width: 835px) {
    .contacts .contact {
        padding: 30px;
    }

    .contacts .contact .text {
        flex-direction: column;
        align-items: flex-start;
    }

    .contacts .contact .text h1 {
        font-size: 40px;
        width: 100%;
        margin-bottom: 25px;
    }
}