
/* HTML */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    margin: 0;
    min-height: 100vh;
    background-color: white;
}

#services-page {
    display: flex;
    flex-direction: row;
    margin: 0 10% var(--section-margin) 5%;
    margin-top: calc(var(--header-height) + var(--section-margin));
    gap: 5vw;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s ease, opacity 1s ease;
}

#services-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}

#services-nav-list {
    padding-left: 30px;
    cursor: pointer;
}

#services-nav-list > li {
    padding-bottom: 3px;
}

#services-nav-list > li:hover {
    font-size: 1.5em;
    transition: 0.1s ease;
    user-select: none;
}

#services-content {
    display: flex;
    flex-direction: row;
    flex: 3;
    gap: 10px;
    
}

#services-content-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.5s ease;
}


.content-title {
    font-size: 60px;
    font-family: 'Cabin';
}

.content-subtitle {
    font-size: 25px;
    font-family: 'Ledger';
    margin-bottom: 20px;
}

.service-title {
    font-size: 35px;
    font-family: 'Cabin';
    margin-bottom: 5px;
}

.services-hr-h {
    height: 2px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.10);
}

.services-hr-v {
    height: 100%;
    min-width: 2px;
    background-color: rgba(0, 0, 0, 0.10);
}

.service-text {
    font-size: 23px;
}

.content-disappear {
    opacity: 0;
    transition: opacity 0.5s ease;
}


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

    #services-page {
        gap: 3vw;
    }

    .service-title {
        font-size: 30px;
    }

    .service-text {
        font-size: 17px;
    }

    #services-nav-list > li:hover {
        font-size: 1.1em;
        transition: 0.1s ease;
        user-select: none;
    }


}

@media screen and (max-width: 800px) {
    #services-page {
        flex-direction: column;
    }
}