.container_contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    gap: 2vh;
}

.container_contact_session {
    width: 100%;
    height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 1vh;
    align-items: center;
    justify-content: center;
}

.container_contact,
.container_contact_session h2 {
    color: var(--vert);
    margin-top: 20px;
}

.container_card_contact {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 2vw;
}

.card {
    width: 30%;
    height: 300px;
    color: white;
    background-color: var(--vert);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding-bottom: 20px;
}

.card i {
    font-size: 50px;
}

.card p {
    font-size: 16px;
    margin: 10px;
    text-align: center;
}

.card a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    position: relative;
    font-size: large;
}

.card a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}
.card a:hover::after {
    width: 100%;
}

.container_rdv {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    background-color: var(--vert);
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.container_rdv p {
    font-size: 18px;
    color: white;
    text-align: center;
}

.container_rdv a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    padding: 10px 20px;
    border: 2px solid var(--vert);
    border-radius: 5px;
    font-size: xx-large;
}

@media all and (max-width: 992px) {
    .container_contact,
    .container_contact_session {
        height: auto;
        padding: 20px;
    }

    .container_card_contact {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
    }
    .card {
        width: 90%;
        margin-bottom: 20px;
        height: auto;
    }
    .container_rdv {
        width: 90%;
        height: auto;
    }
}
