/* =========================== SERVICE =========================== */

.service {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.service .card {
    width: 33%;
    background-color: var(--BGCard);
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    color: var(--ColorText);
    font-family: var(--font1);
    padding: 40px;
    border: 1px solid var(--BGCardHover);
    cursor: pointer;
}

.service .card span {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: .6;
}

.service .card h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 5px;
}

.service .card p {
    font-size: 14px;
    font-weight: 200;
    line-height: 1.5;
}

.service .card a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.2px;
    color: var(--ColorText);
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.service .card .spin {
    transition: all .3s ease-in-out;
}

.service .card a:hover {
    color: var(--ColorText);
}

.service .card a:hover>.spin {
    color: var(--ColorText);
    transform: rotate(0);
}

.service .card a i {
    transform: rotate(-45deg);
    font-size: 25px;
}


@media screen and (max-width: 992px) {
    .service {
        justify-content: space-between;
    }

    .service .card {
        width: 100%;
        padding: 20px;
    }
}


@media screen and (max-width: 835px) {
    .service {
        width: 100%;
        height: 100%;
        background: var(--BGBody);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .service .card {
        width: 100%;
        padding: 40px;
    }

    .service .card:nth-child(1) {
        margin-top: 0px;
    }
}