
.wrapper {
    margin-inline: auto;
    width: 60%;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

h1 {
    font-family: "Caprasimo", serif;
    color: rgba(0, 0, 0, 0.8);
    font-size: 50px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 50px;
    margin-top: 40px;
    text-align: center;
    pointer-events: none;
}

h1 strong {
    color: var(--cta_button);
    font-weight: 400;
}

.wrapper a {
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
}

.schedule_card {
    display: flex;
    padding: 20px 40px 20px 40px;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transition: 0.3s ease;
}

.schedule_card h2 {
    font-family: "Caprasimo", serif;
    font-weight: 400;
    font-size: 30px;
}

.card_graphic {
    height: 150px;
}

.schedule_info {
    min-width: 300px;
    width: 80%;
}

.scheduling_text {
    margin-top: 10px;
    font-weight: 500;
}

.session_colors {
    background-color: rgba(255, 182, 193, 0.3);
    color: rgba(0, 0, 0, 0.8);
}

.session_colors:hover {
    box-shadow: 0px 0px 10px 15px rgba(255, 182, 193, 0.7);
    translate: 0px -10px;
}

.session_colors:active {
    box-shadow: 0px 0px 10px 20px rgba(255, 182, 193, 1);
}

.consultation_colors {
    background-color: rgba(255, 182, 193, 0.3);
    color: rgba(0, 0, 0, 0.8);
}

.consultation_colors:hover {
    box-shadow: 0px 0px 10px 15px rgba(255, 182, 193, 0.7);
    translate: 0px -10px;
}

.consultation_colors:active {
    box-shadow: 0px 0px 10px 20px rgba(255, 182, 193, 1);
}

.email_colors {
    background-color: rgba(255, 182, 193, 0.3);
    color: rgba(0, 0, 0, 0.8);
}

.email_colors:hover {
    box-shadow: 0px 0px 10px 15px rgba(255, 182, 193, 0.7);
    translate: 0px -10px;
}

.email_colors:active {
    box-shadow: 0px 0px 10px 20px rgba(255, 182, 193, 1);
}

@media only screen and (max-width: 1100px) {
    .wrapper {
        width: 90%;
    }

    h1 {
        margin-top: 40px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 715px) {

    h1 {
        font-size: 35px;
    }

    .wrapper {
        width: 95%;
    }

    .schedule_card {
        flex-direction: column;
        gap: 15px;
        padding: 30px;
    }

    .schedule_card h2 {
        text-align: center;
    }

    .schedule_info {
        margin-top: 20px;
        width: 95%;
    }

    .wrapper {
        gap: 20px;
    }
}
