.services.content {
    width: 100vw;
    max-width: 1500px;
    min-height: 100vh;
    height: fit-content;
    margin: 0px auto;

    padding: 25px;
    padding-top: 50px;
} 

.services.content .titlebox {
    margin-bottom: 25px;
}

.services.content .titlebox .title {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.services.content .titlebox .subtitle {
    text-align: center;
}

.services.content .servicesContainer {
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: top;
}

.services.content .servicesContainer .service {
    position: relative;

    width: 300px;
    height: fit-content;

    padding: 25px;

    margin: 20px;

    border: 1px solid var(--border-color);
    border-radius: 32px;
    box-shadow: 0 6px 12px var(--border-color);

    transition: box-shadow .2s ease-in-out;

    user-select: none;
}

.services.content .servicesContainer .service:hover {
    cursor: pointer;

    box-shadow: 0px 0px 20px #4a00e035;
}

.services.content .servicesContainer .service:active {
    transform: scale(.98);
}

.services.content .servicesContainer .service .badge {
    position: absolute;
    top: 25px;
    right: 25px;
    
    width: fit-content;
    
    background: linear-gradient(90deg, #ff8888, #f75555);

    color: white;
    /* font-size: 13px; */

    padding: 5px 10px;

    border-radius: 12px;

    box-shadow: 0 0 8px rgba(168,85,247,0.3);
}

.services.content .servicesContainer .service .icon {
    width: 55px;
    height: 55px;

    background-color: #4a00e025;
    border-radius: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 25px;
}

.services.content .servicesContainer .service .icon i {
    font-size: 28px;
    color: #4a00e0;
}

.services.content .servicesContainer .service .icon img {
    width: 65%;
    height: 65%;

    object-fit: contain;
    object-position: center;
}

.services.content .servicesContainer .service .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services.content .servicesContainer .service .desc i {
    color: black;

    font-size: 0px;
    
    transition: all .3s ease-in-out;
}

.services.content .servicesContainer .service:hover .desc i {
    font-size: 13px !important;
}

.services.content .bookAp {
    width: 100%;

    margin: 50px 0px;
}

.services.content .bookAp .title {
    padding: 0px 25px;
    
    text-align: center;

    margin-bottom: 15px;
}

.services.content .bookAp .desc {
    padding: 0px 25px;
    
    text-align: center;
}

.services.content .bookAp iframe {
    width: 100%;
    height: fit-content;
    min-height: 939px;
}

.services.content .bookAp .googleCalendar {
    height: fit-content;

    margin: 25px;

    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    box-shadow: 0 6px 12px var(--border-color);

    position: relative;
}

.services.content .bookAp .googleCalendar .infoText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
}

.services.content .bookAp .googleCalendar iframe {
    height: 722px;
}




/* Mobile */
@media only screen and (max-width: 490px) {

    .services.content .bookAp .googleCalendar {
        width: calc(100vw - 50px);
        margin: 50px 0px;

        padding: 0px;
        border: none;
        border-radius: 0px;
        box-shadow: none;
    }

    .services.content .bookAp .googleCalendar iframe {
        height: 1347px;
    }
}