:root{
    --header-height: 3rem;
    --font-semi: 600;
}

:root{
    --first-color: #49ccf8;
    --second-color: #333232;
}

:root{
    --body-font: 'Poppins', sans-serif;
    --title-font: mendl-sans-dusk, sans-serif;
    --big-font-size: 2rem;
    --medium-font-size: 1.3rem;
    --h2-font-size: 1.25rem;
    --normal-font-size: 1.12rem;
    --small-font-size: 0.938rem;
}

@media screen and(min-width: 768px) {
    :root{
        --big-font-size: 3.5rem;
        --h2-font-size: 2rem;
        --normal-font-size: 1rem;
    }
}

:root{
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
}

:root{
    --z-back: -10;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
}

*,::before,::after{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--second-color);
}

h1,h2,h3{
    margin: 0;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title{
    position: relative;
    font-size: var(--h2-font-size);
    color: var(--first-color);
    margin-top: var(--mb-2);
    margin-bottom: var(--mb-4);
    text-align: center;
    font-family: var(--title-font);
}

.section-title:after{
    position: absolute;
    content: "";
    width: 64px;
    height: 0.18rem;
    left: 0;
    right: 0;
    margin: auto;
    top: 2rem;
    background-color: var(--first-color);
}

.home-1{
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

.section{
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.bd-grid{
    max-width: 1024px;
    display: grid;
    grid-template-columns: 100%;
    grid-column-gap: 2rem;
    width: calc(100% - 2rem);
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
}

.l-header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(146,161,176,.15);
}

.nav{
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--title-font);
}
@media screen and (max-width: 768px) {
    .nav_menu{
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: 100%;
        padding: 2rem;
        background-color: var(--second-color);
        transition: .5s;
    }
}

.nav_item{
    margin-bottom: var(--mb-4);
}

.nav_link{
    position: relative;
    color: white;
}

.nav_link:hover{
    position: relative;
}

.nav_link:hover::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 0.18rem;
    left: 0;
    top: 2rem;
    background-color: var(--first-color);
}

.nav_logo{
    color: var(--second-color);
    font-family: var(--title-font);
    font-size: 1.6rem;
}

.nav_logo img{
    width: 250px;
    height: auto;
}

.nav_list{
    font-weight: 600;
}

.nav_toggle{
    color: var(--second-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.active::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 0.18rem;
    left: 0;
    top: 2rem;
    background-color: var(--first-color);
}

.show{
    right: 0;
}

.home{
    height: calc(100vh - 3rem);
    row-gap: 1rem;
}

.home_data{
    align-self: center;
}

.home_title{
    font-size: var(--big-font-size);
    font-weight: 500;
    margin-bottom: var(--mb-5);
    font-family: var(--title-font);
}

.home_text{
    font-size: var(--medium-font-size);
    margin-bottom: var(--mb-5);
    font-family: var(--title-font);
}

.home_list{
    font-size: var(--normal-font-size);
    margin-bottom: var(--mb-2);
    font-family: var(--title-font);
}

.home_title-color{
    color: var(--first-color);
}

.home_img img{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
}


.button1{
    display: inline-block;
    background-color: var(--first-color);
    color: #fff;
    padding: .75rem 2.5rem;
    font-weight: var(--font-semi);
    border-radius: .5rem;
    border: none;
}

.button1:hover{
    box-shadow: 0 10px 36px rgba(0,0,0,.15);
}

.button2{
    display: inline-block;
    background-color: var(--first-color);
    color: #fff;
    padding: .75rem 2.5rem;
    font-weight: var(--font-semi);
    border-radius: .5rem;
    border: none;
}

.button2:hover{
    box-shadow: 0 10px 36px rgba(0,0,0,.15);
}

.contact-column{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-column div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-column div .fa{
    font-size: 28px;
    color: #232f5c;
    margin: 10px;
    margin-right: 30px;
}

.contact-column div p{
    padding: 0;
}

.contact-column h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555555;
    font-weight: 400;
}

.contact-column input, .contact-column textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 0;
    background: ghostwhite;
    box-sizing: border-box;
}

.locatie_frame{
    width: 100%;
    margin-bottom: 15px;
}

footer {
    position: absolute;
    bottom: auto;
}

@media (max-height:800px) {
    footer {
        position: static;
    }
}

.footer-distributed {
    background-color: var(--second-color);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px 50px;
    margin-top: 80px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 30%;
}

.footer-distributed img {
    width: 50%;
    margin: 0;

}

/* Footer links */

.footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
}

.footer-distributed .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-center p a {
    color: var(--first-color);
    text-decoration: none;
;
}

/* Footer Right */
.footer-distributed .footer-right {
    width: 30%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}


.footer-links a:hover {
    color: var(--first-color);
}

@media (max-width: 880px) {
    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-distributed .footer-center i {
        margin-left: 0;
    }
    .home_img img{
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50%;
    }
}


@media screen and (min-width: 768px) {
    body{
        margin: 0;
    }
    section{
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    .section-title{
        margin-bottom: var(--mb-6);
    }
    .section-title:after{
        width: 80px;
        top: 3rem;
    }

    .nav{
        height: calc(var(--header-height) + 1rem);
    }
    .nav_list{
        display: flex;
        padding-top: 0;
    }
    .nav_item{
        margin-left: var(--mb-6);
        margin-bottom: 0;
    }
    .nav_toggle{
        display: none;
    }
    .nav_link{
        color: var(--second-color);
    }

    .home{
        height: 100vh;
    }
    .home_data{
        align-self: flex-end;
    }
    .home_img{
        width: 457px;
        bottom: 15%;
    }

    .about_container{
        align-items: center;
        text-align: initial;
    }
}

@media screen and (min-width: 1024px){
    .bd-grid{
        margin-left: auto;
        margin-right: auto;
    }
    .home_img{
        right: 10%;
    }
}

.about_container{
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.hl{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 0;
    text-decoration: none;
}

.hl iframe{
    margin-top: 20px;
    padding: 10px;
    height: 700px;
    width: 100%;
    border: 0;
    background-color: #ededed;
}

.grid-container img{
    height: 250px;
    width: 250px;
    filter: grayscale(1);
    border-radius: 50%;
}

.grid-container img:hover{
    filter: grayscale(0);
    transition: 0.5s;
    transform: scale(1.1);
}

.grid-container{
    display: grid;
    grid-template-areas: 'card-1 card-2 card-3 card-4';
    width: 100%;
    margin: auto;
    grid-gap: 30px;
}

.card-1{
    grid-area: card-1;
}

.card-2{
    grid-area: card-2;
}

.card-3{
    grid-area: card-3;
}

.card-4{
    grid-area: card-4;
}

.card{
    text-align: center;
}

.info{
    margin-top: 15px;
}

.grid-container h4{
    color: #232f5c;
    font-size: 20px;
}

.info p{
    font-size: 16px;
    font-weight: 500;
}

@media(max-width: 1300px) {
    .grid-container{
        grid-template-areas: 'card-1 card-2' 'card-3 card-4';
    }
}

@media(max-width: 700px) {
    .grid-container{
        grid-template-areas: 'card-1' 'card-2' 'card-3' 'card-4';
    }
}


#moreSA{
    display: none;
}

#moreHRM{
    display: none;
}

#moreVerzuim{
    display: none;
}

.steps{
    font-family: var(--title-font);
    font-weight: bolder;
    font-size: 20px;
    color: var(--first-color);
}

.stepsnumber{
    color: black;
}

.button3{
    display: inline-block;
    color: var(--first-color);
    margin-top: 0.5rem;
    padding: 0.6rem 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
    cursor: pointer;
}

.button3:hover{
    background-color: #fff;
    box-shadow: 0 0 2rem rgba(0,0,0,0.1);
    transform: translateY(-3px)
}

.team{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.team-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.team-container .team-card{
    width: 250px;
    height: auto;
    padding: 60px 30px;
    margin: 20px;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 20px;
}

.team-container .team-card .team-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.team-container .team-card .team-content .team-imgBx{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.team-container .team-card .team-content .team-imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
}

.team-container .team-card .team-content .team-contentBx h5{
    color: black;
    font-size: 1.4rem;
    font-weight: normal;
    text-align: center;
    letter-spacing: 1px;
}
