/* FONT IMPORT */
@import url(https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);


/* GENERAL */
:root {
    --font: 'Exo 2', 'Source Sans Pro';
}

html {
    scroll-behavior: smooth;
    font-family: var(--font);
}

* {
    box-sizing: border-box;
    margin: 0px;
}

body {
    overflow-x: hidden;
}

header {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

footer {
    overflow: hidden;
}

/* NAVIGATION */

.header_container {
    position: fixed;
    max-width: 100vw;
    z-index: 99;
    background-color: white;
}

.navigation_bar {
    display: flex;
    flex-wrap: nowrap;
    
    width: 100vw;
    height: 80px;

    border-bottom: 3px solid #2b99ce;
}

.logo_container {
    position: static;
    z-index: 100;
    display: flex;
    margin-left: 25px;
    padding-bottom: 5px;
}

.logo_container a img{
    height: 75px;
}

.bar_container {
    position: relative;
    display: flex;

    width: 100px;
    margin-left: 60px;
}

.nav_shaft_left {
    position: absolute;
    background-color: #2b99ce;
    width: 100px;
    height: 80px;
    -webkit-clip-path: polygon(40% 0, 60% 0, 20% 100%, 0 100%); 
    clip-path: polygon(40% 0, 60% 0, 20% 100%, 0 100%);
}

.nav_shaft_right {
    position: absolute;
    left: 30px;
    background-color: #2b99ce;
    width: 100px;
    height: 80px;
    -webkit-clip-path: polygon(40% 0, 60% 0, 20% 100%, 0 100%); 
    clip-path: polygon(40% 0, 60% 0, 20% 100%, 0 100%);
}

.navigation_container {
    position: absolute;
    display: flex;
    width: 100vw;
    height: 78px;
    justify-content: end;
    align-items: center;
}

.navigation_container ul {
    display: flex;
    text-decoration: none;
    list-style: none;
    padding-right: 50px;
    gap: 20px;
    height: 100%;
    align-items: center;
}

.navigation_container ul li {
    display: flex;
    justify-content: center;
    height: 100%;
    line-height: 68px;
    padding-top: 5px;
    min-width: 100px;
}

.navigation_container ul li a {
    text-decoration: none;
    color: rgb(49, 49, 49);

    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: calc(14px + (18 - 16) * ((100vw - 320px) / (1200 - 320)));
}

.navigation_container ul li:hover {
    border-top: #2b99ce 5px solid;
    padding-top: 0px;
}

.dropdown_nav i {
    margin-left: 6px;
    transform: rotate(90deg);
    transition: transform 0.5s ease-in;
}

.dropdown_nav:hover i {
    transform: rotate(0deg);
}

.dropdown_nav:hover .dropdown_container {
    display: flex;
}

.afspraak_btn {
    display: flex;
    justify-content: center;

    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 15px;
    color: white;

    background-color: #2b99ce;
    padding: 15px;

    cursor: pointer;
}

.afspraak_btn:hover {
    background-color: rgb(49, 49, 49);
    cursor: pointer;
}

.dropdown_container {
    position: absolute;
    display: none;
    flex-wrap: wrap;

    width: 325px;
    background-color: white;

    top: 80px;
    margin-left: 60px;
    margin-top: -5px;
}

.dropdown_container:hover {
    display: flex;
}

.dropdown_container a {
    line-height: 40px !important;

    font-family: var(--font);
    font-style: normal;
    font-weight: 700 !important;
    font-size: 16px !important;

    width: 100%;
    padding-inline: 25px;
}

.dropdown_container a:hover {
    background-color: rgb(219, 219, 219);
}

@media (max-width: 1000px) {
    .afspraak_btn {
        display: none;
    }

    .navigation_container ul {
        padding-right: 20px;
    }
}

@media (max-width: 800px) {
    .navigation_container {
        display: none;
    }

    .navigation_container.active {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        height: auto;
    }

    .navigation_container.active ul{
        display: flex;
        flex-wrap: wrap;
        background-color: white;
        padding-bottom: 25px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .navigation_container.active ul li{
        width: 100vw;
        background-color: white;
    }

    .dropdown_nav:hover .dropdown_container {
        display: none;
    }

    .dropdown_nav i {
        display: none;
    }

    .bar_container {
        display: none;
    }
}

/* NAV DROPDOWN MENU */

.toggle-button {
    position: absolute;
    top: 25px;
    right: 40px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}
  
.toggle-button .nav_small_bar {
    height: 3px;
    width: 100%;
    background-color: rgb(49, 49, 49);
    border-radius: 10px;
}
  
@media (max-width: 800px) {
    .toggle-button {
        position: absolute;
        display: flex;
        z-index: 101;
    }
}


/* CONTACT CONTAINER */

.contact_container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;

    width: 100vw;
    height: inherit;
    background-color: rgb(49, 49, 49);
    padding-top: 8px;
    padding-bottom: 8px;
}

.contact_info a{
    font-family: var(--font);
    font-style: normal;
    font-weight: 700 ;
    font-size: 16px;
    color: white;
    text-decoration: none;

}

.contact_info i {
    margin-right: 7px;
}

@media (max-width: 800px) {
    .contact_container {
        transform: translateY(-200px);
    }

    .header_container {
        height: 80px;
    }

    .hero_container {
        padding-top: 80px !important;
    }
}

/* HERO SECTION */

.hero_container {
    width: 100vw;
    height: 900px;

    padding-top: 100px;
    overflow: hidden;
}

.hero_img_container {
    position: relative;
    width: 100vw;
    height: 700px;
}

.hero_overlay {
    position: absolute;
    width: 100vw;
    height: 700px;

    background-color: rgba(0, 47, 85, 0.245);
}

.hero_info {
    width: 100%;
    height: 50px;
    margin-top: 125px;
    margin-left: 200px;
}

.hero_info h1 {
    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: max(30px, 3vw);
    color: white;
}

.hero_info h2 {
    margin-bottom: 35px;
    font-family: var(--font);
    font-style: normal;
    font-weight: 700;
    font-style: italic;
    font-size: max(20px, 2vw);
    color: white;
}

.hero_info p {
    margin-bottom: 55px;
    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: max(20px, 1.7vw);
    color: white;

    width: 550px;
}

.hero_btn {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 50px;
    width: 300px;

    margin-left: 10px;
    margin-top: 50px;
    
    background-color: rgba(255, 255, 255, 0.5);
    color: rgb(49, 49, 49);
    border: rgb(49, 49, 49) 3px solid;
    letter-spacing: 2px;

    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 15px;

    cursor: pointer;
    
    transition: all 0.5s ease-in;

}
  
.hero_btn:hover {
    background-color: rgb(49, 49, 49);
    color: white;
}

.hero_img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_arrow_container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.hero_spacer_left {
    position: absolute;
    background-color: white;
    height: 100px;
    width: 15vw;
    margin-top: -100px;
}

.hero_spacer_right {
    position: absolute;
    right: 0;
    background-color: white;
    height: 100px;
    width: 15vw;
    margin-top: -100px;
}

.hero_arrow {
    width: 100%;
    height: 100px;
    position: relative;
}

.hero_arrow::before {
    content: "";
    width: 1500px;
    height: 200px;
    position: absolute;
    bottom: -500;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    clip-path: polygon(45% 0%, 50% 40%, 55% 0%, 100% 0%, 100% 50%, 55% 50%, 50% 90%, 45% 50%, 0% 50%, 0% 0%);
}

@media (max-width: 775px) {
    .hero_btn {
        position: relative;
        left: 0;
        right: 0;
        margin-inline: auto;
    }

    .hero_info {
        text-align: center;
        padding-left: 0px;
        margin-left: 0px;
    }

    .hero_info p {
        width: 100vw;
        padding-inline: 50px;
    }
}

/* INFO CONTAINER */

.info_container {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 5;
    margin-top: -125px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.info_container h2 {
    position: absolute;
    right: 25px;
    top: 0;
    writing-mode: sideways-rl;
    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    height: 100%;
    text-align: center;
}

.info_container p {
    font-size: max(14px, 1vw);
    width: 45vw;
    min-width: 275px;
    text-align: justify;
}

/* KINESIST CONTAINER */

.kinesisten_container {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 5;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: rgb(236, 245, 255);
}

.kinesisten_container h2 {
    position: absolute;
    left: 25px;
    top: 0;
    writing-mode: sideways-lr;
    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    height: 100%;
    text-align: center;
}

.kine_team_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 75%;
    gap: 50px;
}

.kine_container {
    position: relative;
    width: 300px;
    min-width: 300px;
    height: 475px;
    background-color: white;
}

.kine_background {
    position: relative;
}

.background_img {
    width: 100%;
    height: 175px;
    object-fit: contain;
}

.background_img img {
    width: 100%;
    height: 175px;
    object-fit:cover;
}

.clip_container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(100% 55%, 0% 100%, 100% 100%); 
    clip-path: polygon(100% 55%, 0% 100%, 100% 100%);
    background-color: white;
}

.kine_foto {
    position: absolute;
    top: 25px;
    right: 18px;
    width: 180px;
    height: 180px;
    border: white solid 10px;
    border-radius: 100%;
    overflow: hidden;
    background-color: white;
}

.kine_foto  img{
    object-fit: cover;
    padding-right: 15px;
    width: 180px;
    height: 180px;
}

.margin_niels {
    padding-bottom: 5px;
    transform:scale(1)
}

.margin_yolan {
    padding-left: 5px;
    padding-top: 25px;
    transform: scale(1.3);
}

.margin_Kianu {
    padding-bottom: 10px;
}

.kine_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    height: auto;
    min-height: 272px;
}

.kine_info h3 {
    width: 100%;

    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 25px;
}

.kine_info h4 {
    width: 100%;

    font-family: var(--font);
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
}

.kine_info P {
    text-align: justify;
    width: 100%;
    padding-top: 15px;
    padding-inline: 50px;

    font-family: var(--font);
    font-style: normal;
    font-size: 13px;
}

.kine_btn {
    position: relative;
    margin-top: 40px;

    height: 50px;
    width: 150px;
    color: white;
    background-color: #2b99ce;
    border: transparent 1px solid;

    font-family: var(--font);
    font-style: normal;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 13px;

    cursor: pointer;
}

/* PRAKTIJK CONTAINER */

.praktijk_container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;

    padding-inline: 150px;
    padding-top: 50px;
    padding-bottom: 50px;

    overflow-x: hidden;
}

.praktijk_container h2 {
    position: absolute;
    right: 25px;
    top: 0;
    writing-mode: sideways-rl;
    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    height: 100%;
    text-align: center;
}

.praktijk_img img {
    width: 80px;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: all 1s ease;
}

.praktijk_img.active img {
    width: 580px;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 1015px) {
    .praktijk_img img {
        width: 580px;
    }
}

/* AFSPRAAK CONTAINER */

.afspraak_container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    z-index: 5;
    padding-top: 75px;
    padding-inline: 150px;
    background-color: rgb(236, 245, 255);
}

.afspraak_container h2 {
    position: absolute;
    left: 25px;
    top: 0;
    writing-mode: sideways-lr;
    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    height: 100%;
    text-align: center;
}

.afspraak_info {
    width: 500px;
}

.afspraak_info h3 {
    font-family: var(--font);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 25px;
}

.afspraak_info span {
    font-family: var(--font);
    font-style: normal;
    font-size: 19px;
}

.afspraak_items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 45px;
    padding-bottom: 60px;
    padding-left: 50px;
}

.afspraak_icon {
    position: relative;
    width: 100%;
    padding-bottom: 15px;
}

.afspraak_icon i {
    color: #2b99ce;
    font-size: 25px;
}

.afspraak_icon span {
    position: absolute;
    left: 50px;
}

.afspraak_info p {
    font-family: var(--font);
    font-style: normal;
    font-size: 19px;
}

.afspraak_aanpassen {
    width: 500px;
}

.afspraak_aanpassen h3 {
    font-family: var(--font);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 25px;
}

.afspraak_aanpassen P{
    font-family: var(--font);
    font-style: normal;
    font-size: 19px;
    padding-bottom: 75px;
}

/* REVIEW CONTAINER */

.review_container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 5;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-inline: 75px;
    margin-bottom: 50px;
}

.review_container h2 {
    position: absolute;
    right: 25px;
    top: 0;
    writing-mode: sideways-rl;
    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    height: 100%;
    text-align: center;
}

/* FOOTER */

.footer_container {
    width: 100vw;
    overflow-y: hidden;

    border-top: #2b99ce 3px solid;

    background-color: rgb(236, 245, 255);
}

.legal {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;

    font-family: var(--font);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

.legal span a {
    text-decoration: none;
    font-weight: 400;
    color: rgb(49, 49, 49);;
}

.legal span a:hover {
    text-decoration: underline;
}

.separator {
    margin-inline: 15px;
}

.company {
    font-weight: 800 !important;
  }
  
@media (max-width: 600px) {
    .legal span{
      display: flex;
      flex-wrap: wrap;
      padding-inline: 50px;
    }
  
    .legal span a{
      width: 100%;
      padding-inline: 50px;
      text-align: center;
      padding-bottom: 15px;
    }
  
    .separator {
      display: none !important;
    }
}

/* SKIP TO MAIN CONTENT LINK */

.skip_link {
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 80px;
    background-color: #2b99ce;

    z-index: 100;

    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    font-size: 25px;
    color: white;

    text-decoration: none;

    transform: translateY(-150px);
    transition: all 1s ease;
}

.skip_link:focus {
    transform: translateY(0);
    outline: none;
    border: none;
}

/* CHAT BUBBLE */

.chat-bubble {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 350px;
    padding: 35px;
    background-color: #eeeeee;
    border-radius: 10px;
    margin: 20px;
    text-align: left;
    font-size: 16px;
    align-self: stretch;
}
  
.chat-bubble:before {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 25px 25px 0 0;
    border-color: #eeeeee transparent transparent transparent;
    right: 25px;
    bottom: -20px;
}

.review-data {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 2px solid #2b99ce;
    margin-bottom: 20px;
}

.review {
    margin-bottom: 15px;
    width: 100%;
    height: 80%;
}

.author {
    flex: 1;
    flex-grow: 1;
    font-weight: 800;
    width: 100%;
}

.rating {
    text-align: right;
}

/* EXERCISE PLATFORM BTN */

.exercise_link {
    position: fixed;
    bottom: 0;
    right: 50px;
    z-index: 99;

    background-color: #2b99ce;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    cursor: pointer;

    padding-left: 25px;
    padding-right: 25px;
    padding-top: 7px;
    padding-bottom: 7px;

    transition: all 0.5s ease;
}

.exercise_link:hover {
    padding-bottom: 20px;
}

.exercise_link span{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
}

.exercise_link span i{
    margin-right: 15px;
}