comp-services{
    overflow: hidden;
}

div.services_wrapper{
    display: flex;
    height: calc(100vh - 100px);
    width: 100%;
    position: relative;
}

div.services_wrapper.detailview div.services_side-bar_outer {
    transform: translateY(-50%) translateX(-120%);
}

div.services_side-bar_outer {
    position: absolute;
    top: calc(50vh - 50px);
    max-height: calc(100vh - 100px);
    transform: translateY(-50%);
    margin-left: 50px;
    z-index: 1;
    transition: transform 1s ease-in-out;
}

div.services_side-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    width: 400px;
    background: linear-gradient(100deg, #65CC71 0%, #3BAB48 100%);
}


div.services_side-bar_link {
    cursor: pointer;
    color: white;
    padding: 6px 10px;
    margin: 10px 0px 10px auto;
    text-align: right;
}

div.services_side-bar_link.active {
    border-right: solid 2px white;
}
div.services_side-bar_link.active a {
    color: white;
    font-weight: 700 !important;
}

div.services_side-bar_link a {
    text-decoration: none;
    color: white;
    cursor: pointer;
    white-space: break-spaces;
    border-bottom: none;
    font-size: 0.9em;
    letter-spacing: 1px;
    font-weight: 100;
}

div.services_service-viewport {
    width: 100%;
    overflow: hidden;
}

div.services {
    display: flex;
    flex-direction: column;
}
div.service {
    width: 100%;
    height: calc(100vh - 100px);
    transition: transform 1s ease-in-out;
}
div.service_cards {
    display: flex;
    width: 200%;
    height: 100%;
}
div.service_card {
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}
div.service_side-bar-fake-wrapper {
    flex: 0 0 500px;
}

div.service_overview {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

div.service_overview-outer{
    background-color: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

div.service_overview-inner {
    padding: 40px;
    text-align: center;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
div.service_overview-inner_text-wrapper {
    height: 100%;
}
div.service_overview-inner_text-wrapper p {
    font-size: 1.2em;
    padding-top: 15px;
}
div.service_overview-inner_text-wrapper p, 
div.service_overview-inner_text-wrapper h2 {
    font-weight: 600 !important;
}
div.service_overview-inner_button-wrapper {
    display: flex;
}
div.service_overview-inner_button-wrapper button {
    margin-left: auto;
}


div.service_detail {
    background-color: white;
    overflow: scroll;
}

div.service_detail-inner {
    width: 1100px;
    margin: 100px auto 50px auto;
}

div.service_detail p {
    text-align: left;
}

div.service_detail b {
    font-weight: bold;
}

div.service_detail ul {
    padding-left: 20px;
    text-align: left;
}

div.services_wrapper.detailview div.service_card  {
    transform: translateX(-100%);
}

div.service_overview-inner p, div.service_overview-inner h2 {
    color: black;
    margin: 15px 0px 10px 0px;
}

div.service_detail-contact {
    background-color: #65CC71;
    padding: 150px auto 50px auto;
    height: 480px;
}

div.service_detail-contact-inner {
    width: 1100px;
    margin: 50px auto 50px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 480px;
}

.service_detail-contact-inner p, .service_detail-contact-inner h2, .service_detail-contact-inner a {
    color: white;
    border-color: white;
}

div.service_detail-contact-left {
    width: 50%;
    float: left;
}

div.service_detail-contact-right {
    width: 50%;
    float: right;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-left: 15%;
    text-align: center;
}

div.service_detail-contact-image {
    width: 250px;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

div.service_detail-contact-image img {
    display: inline;
    margin: 0 auto;
    margin-left: -25%;
    height: 100%;
    width: auto;
}

@media(max-width: 1300px)
{
    div.service_detail-inner {
        margin: 100px 0px 50px 0px;
        width: 100%;
        text-align: center;
    }

    div.service_side-bar-fake-wrapper {
        flex: 0 0 0px;
    }


    div.services_side-bar_show-button {
        content: '';
        height: 50px;
        width: 50px;
        background: linear-gradient(100deg, #65CC71 0%, #3BAB48 100%);
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
        position: absolute;
    }


    
    div.services_side-bar_show-button_icon::before,
    div.services_side-bar_show-button_icon::after,
    div.services_side-bar_show-button_icon {
        height: 1.5px;
        width: 30px;
        content: '';
        background-color: white;
        display: block;
        position: absolute;
        top: 50%;
        margin-left: 10px;
    }
    div.services_side-bar_show-button_icon::before {
        top: -10px;
        margin-left: 0px;
    }
    div.services_side-bar_show-button_icon::after {
        top: 10px;
        margin-left: 0px;
    }


    div.services_side-bar_outer{
        margin-left: 0px;
        transform: translate(-100%, -50%);
    }

    div.services_side-bar_outer.show{
        transform: translate(0%, -50%);
    }

    div.service_detail-contact-inner {
        width: 100%;
    }

    div.service_detail-contact-left {
        margin-left: 50px;
    }

    div.service_detail-contact-right {
        padding-left: 0px;
    }
}

@media(max-width: 500px)
{
    div.service_detail-inner{
        margin: 50px 0px;
        width: 100%;
        text-align: center;
        padding: 0px 20px
    }
    div.services_side-bar {
        width: 350px;
    }

    div.service_detail-contact {
        height: 600px;
    }

    div.service_detail-contact-inner {
        display: table-caption;
    }

    div.service_detail-contact-left {
        width: 100%;
        float: none;
    }

    div.service_detail-contact-right {
        width: 100%;
        float: none;
        margin-left: 50px;
        padding-top: 20px;
    }
    
}
@media(max-width: 400px)
{
    div.services_side-bar{
        padding: 15px;
    }
}