.services {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 1400px;
    background-color: #FAF6F4;
}

.services .online-therapy-container  {
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
    padding: 30px;
}

.services .online-therapy-container h1 {
    font-size: 35px;
    font-family: 'aller-bd', -apple-system, system-ui;
    color: #640b19;
}

.services .online-therapy-container p {
    font-size: 25px;
    font-family: 'aller-rg', -apple-system, system-ui;
    color: #640b19;
}

.services .in-person-therapy-container {
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
    padding: 30px;
}

.services .in-person-therapy-container h1 {
    font-size: 35px;
    font-family: 'aller-bd', -apple-system, system-ui;
    color: #640b19;
}

.services .in-person-therapy-container p {
    font-size: 25px;
    font-family: 'aller-rg', -apple-system, system-ui;
    color: #640b19;
}

.services .services-content {
    display: flex;
    flex-direction: row;
    height: 900px;
    align-items: center;
    justify-content: center;
}

.services .services-content .services-info-card {
    height: fit-content;
    min-width: 400px;
    max-width: 550px;
    background-color: #640b19;
    margin-left: 10px;
    border-radius: 50px;

}

.services .services-content .services-info-card .services-title-container {
    display: flex;
    flex-direction: row;
    height: 15%;
    align-items: center;
    justify-content: left;
    padding-left: 20px;
    /* padding: 10px; */
}

.services .services-content .services-info-card .services-title-container h1 {
    font-family: 'aller-bd', -apple-system, system-ui;
    font-size: 35px;
    color: #FAF6F4;
}


.services .services-content .services-info-card .services-content-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 85%;
}

.services .services-content .services-info-card .services-content-container p {

    margin: 0;
    font-family: 'aller-lt';
    color: #FAF6F4;
    font-size: medium;
    font-weight: 600;
}

.services .services-content .services-info-card .services-content-container p b {

    font-size: larger;
    font-family: 'aller-bd';
}

.services .services-content .services-photo-card {
    height: 80%;
    margin-right: 10px;
}

.services .services-content .services-photo-card img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    object-fit: cover;
    object-position: center;
}


@media only screen and (orientation: portrait) {
    .services {
        height: auto;
    }

    .services .services-content {
        flex-direction: column;
        height: fit-content;
    }

    .services .services-content .services-info-card {
        min-width: unset;
        max-width: unset;
        height: auto;
        margin: 10px;
        border-radius: 20px;
    }

    .services .services-content .services-photo-card {
        margin: unset;
        padding: 10px;
        height: 50vh;
        width: 100%;
    }

    .services .services-content .services-photo-card img {
        border-radius: 20px;
    }
}