:root {

    /* COLOURS  */
    --white: #ffffff;
    --black: #111112;
    --pink: #F1A1F3;
    --pinkfaded: rgba(241, 161, 243, 0.5);
    --grey: #D0D0CF;
    --green: #66C293;
    --blackfocus: rgba(7, 13, 14, 0.6);


    /* FONT WEIGHTS */
    --thin: 100;
    --thin200: 200;
    --light: 300; 
    --regular: 400;
    --bold: 700;

    
}

/* RESET  */

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

* {
    margin: 0;
}
  
html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




  
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

::selection {
        background: var(--pink);
}


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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: ivypresto-display, serif;

}

html {
    scrollbar-color: #7d7d7d #f5f5f5;
}

@media (max-width: 999px) {
    #trailer {
        display: none;
    }
}


@media (min-width: 1000px) {
    #trailer {
        height: 20px;
        width: 20px;
        background-color: var(--pink);
        border-radius: 20px;
        position: fixed;
        z-index: 10000;
        pointer-events: none;
        opacity: 0;
        transition: opacity 50ms ease-out;
        -moz-transition: opacity 50ms ease-out;
        -webkit-transition: opacity 50ms ease-out;
        -moz-transition: opacity 50ms ease-out;
        -ms-transition: opacity 50ms ease-out;
        -o-transition: opacity 50ms ease-out;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #trailer-icon {
        width: 10px;
        height: 10px;
        transform: rotate(-135deg)
    }
    
    body:hover > #trailer {
        opacity: 1;
    }
    
}

/* REPEATABLE CLASSES */


.uppercase {
    text-transform: uppercase;
}

.even-columns {
    padding: 0 1rem;
}

.letterspacing-close {
    letter-spacing: -.07em;
}
.letterspacing {
    letter-spacing: .02em;
}

.background-white {
    background-color: var(--white);
}


@media (min-width: 768px) {
    .even-columns {
        padding: 0 3rem;
    }
}
@media (min-width: 1000px) {
    .even-columns {
        padding: 0 100px;
    }
}



.top-nav-container {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    font-weight: var(--regular);
    position: absolute;
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
    width: 100%;
    align-items: center;
    
}

.top-nav-container a {
    color: var(--white);
}


nav ul {
    display: flex;
    gap: 40px;
}


.nav-toggle {
    background-color: var(--white);
    height: 34px;
    width: 34px;
    border-radius: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 100;
    position: fixed;
    right: 1rem;
    box-shadow: 0px 3px 6px rgba(7, 13, 14, 0.16);
}



.border-top-toggle, 
.border-bottom-toggle {
    width: 15px;
    height: 2px;
    background-color: var(--black);
}

.border-top-toggle-animation {
    animation: rotate-border-top 0.5s ease-out 1 both;
}
.border-bottom-toggle-animation {
    animation: rotate-border-bottom 0.5s ease-out 1 both;
}

.border-top-toggle-animation-reverse {
    animation: rotate-border-top-reverse 0.5s ease-out 1 both;
}

.border-bottom-rotate-border-bottom-reverse {
    animation: rotate-border-bottom-reverse 0.5s ease-out 1 both;
}


@keyframes rotate-border-top {
    100% {transform: rotate(-45deg) translate(-2px, 2px);}
}

@keyframes rotate-border-bottom {
    100% {transform: rotate(45deg) translate(-2px, -3px);}
}

@keyframes rotate-border-top-reverse {
    0% {transform: rotate(-45deg) translate(-2px, 2px);}
    100% {transform: rotate(0deg) translate(0, 0);}
}

@keyframes rotate-border-bottom-reverse {
    0% {transform: rotate(45deg) translate(-2px, -3px);}
    100% {transform: rotate(0deg) translate(0, 0);}
}





.mobile-nav {
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--white);
    height: 100%;
    width: 100%;
    background: var(--blackfocus);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 50;
    overflow: hidden;
}

.white-nav-home {
    color: white!important;
}

/* LATER ANIMATIE TOEVOEGEN */


.display {
    display: none;
}


@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
}




.mobile-nav nav {
    display: flex;
    flex: 1;
    -ms-flex: 1;
    align-items: center;
}


.mobile-nav-ul {
    display: flex;
    flex-direction: column;
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 2rem;
    font-weight: var(--regular);
    justify-content: center;
    line-height: 1;
    gap: 10px;
}

.mobile-nav-ul a {
    color: var(--white)
}

.footer-nav-mobile {
    text-align: center;
    padding-bottom: 2rem;
    font-family: aktiv-grotesk-extended, sans-serif;
}

.available-text {
    font-size: 0.875rem;
    text-decoration: underline var(--grey);
    -webkit-text-decoration: underline var(--grey);
    -webkit-text-underline-offset: 2px;
    text-underline-offset: 2px;
}

.available-text:hover, 
.available-text:focus {
    color: var(--grey);
}

.based-in-bali-text {
    font-size: 11px;
}

.fa-brands {
    color: var(--white);
    font-size: 18px;
}

.footer-nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.based-in-bali-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    line-height: 0.5;
}

.sun-icon {
    font-size: 30px;
}







.main-hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100svh;
    padding-bottom: 20px;
}


.container-hero-tekst {
    margin-top: auto;
    height: 65%;
}

.hero-tekst {
    font-size: 3.5rem;
    line-height: 64px;
    font-weight: var(--light);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero-tekst {
        font-size: 2rem;
        line-height: 38px;
        font-weight: var(--light);
        margin-bottom: 3rem;
    }
}


.hero-tekst span {
    font-style: italic;
}

.time-container {
    display: flex;
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    min-height: 30px;
    align-items: end;
}

.time-container a {
    color: var(--white);
}

.time-container a:hover, 
.time-container a:focus {
    color: var(--grey);
}


@media (max-width: 1000px) {
    .time-container div:nth-child(2) {
        display: none;
    }
}

.btn-home {
    padding: 18px 22px;
    background-color: var(--white);
    color: var(--black);
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 12px;
    border-radius: 56px;
}

.btn-home:hover, 
.btn-home:focus {
    background-color: var(--grey);
}


.scroll-down-container {
    position: absolute;
    bottom: -100px;
    right: 25%;
    z-index: -10;
}

.scroll-down-text {
    pointer-events: none;
    width: 200px;
    height: 100%;
}




.scroll-down-arrow {
    filter: invert(90%) sepia(69%) saturate(2350%) hue-rotate(240deg) brightness(99%) contrast(92%);
    height: 50px;
    width: 100%;
    pointer-events: none;
}

.scroll-down-arrow-container {
    position: absolute;
    left: 38%;
    top: 38%;
}

.scroll-down-relative-container {
    position: relative;
}




.info-container {
    margin: 9rem 0;
}

.info-container p {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 12px;
    margin-bottom: 2rem;
}

.info-container h2 {
    line-height: 40px;
    font-size: 25px;
    font-weight: var(--light);
    margin-bottom: 1rem;
}

.info-container a {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    text-decoration: underline var(--grey);
    text-underline-offset: 2px;
    -webkit-text-decoration: underline var(--grey);
    -webkit-text-underline-offset: 2px;
    letter-spacing: -.05em;
    color: var(--white);
} 



.info-container a:hover, 
.info-container a:focus {
    color: var(--grey);
}
@media (min-width: 768px) {
    .info-container p {
        margin-bottom: 0;
    }


    .info-container {
        display: flex;
    }

    .info-container-left {
        width: 20%
    }
    .info-container-right {
        width: 80%
    }
}

.cases-container {
    background-color: var(--white);
    padding-bottom: 7rem;
}

.cases-container h2 {
    font-size: 42px;
    font-weight: var(--light);
    color: var(--black);
    padding: 4rem 0;
    text-align: center;
}

.case-img-container {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.case-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case-name-container {
    margin-bottom: 1rem;
    font-size: 14px;
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
    color: var(--black);
}

.cta-cases-container {
    background-color: var(--pink);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}



@media (max-width: 767px) {
    .cta-cases-container {
        max-height: 358px;
        aspect-ratio: 1.35 / 1;
    }
}


.cta-cases-container p {
    font-size: 42px;
    line-height: 48px;
    color: var(--black);
}

.cta-cases-container div {
    border: solid 1px var(--black);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    transition: background-color 300ms ease-out;
}

.cta-cases-container div:hover {
    background-color: var(--black);
}

.cta-cases-container div:hover .icon-arrow-link {
    filter: invert(93%) sepia(94%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}

.cta-cases-container a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-arrow-link {
    transform: rotate(-135deg);
}

@media (min-width: 768px) {
    .case-img-container {
        aspect-ratio: 1.35 / 1;
    }

    .grid-container-cases {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .case-name-container {
        margin-bottom: 0;

    }

    .cases-container h2 {
        font-size: 3.5rem;
    }

    .cases-container {
        padding-bottom: 13rem;
    }
}

@media (min-width: 1100px) {
    .cta-cases-container p {
        font-size: 3.5rem;
        line-height: 62px;
    }
}



.proces-container-home {
    background-color: var(--white);
    color: var(--black);
    padding-top: 7rem;
    padding-bottom: 7rem;
}


.proces-container-home-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 2rem;
}

/* .change-word-process-kritisch {
    animation: change-word-animation 2s ease-in 1 both; 
}

@keyframes change-word-animation {
    0% {opacity: 0%;}
    100% {opacity: 100%;}
}
 */



.proces-container-home-title span{
    font-style: italic;
}

.proces-container-home-p {
    font-size: 25px;
    line-height: 40px;
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
    margin-bottom: 3rem;
}

.proces-container-home a {
    text-decoration: underline var(--grey);
    text-underline-offset: 2px;
    -webkit-text-decoration: underline var(--grey);
    -webkit-text-underline-offset: 2px;
    color: var(--black);
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    font-weight: var(--regular);
}

.proces-container-home a:focus, 
.proces-container-home a:hover {
    color: var(--grey);
}

.grey-border-divider {
    border-top: 1px solid var(--grey);
    margin: 0 1rem;
}

@media (min-width: 768px) {
    .grey-border-divider {
        margin: 0 3rem;
    }
}
@media (min-width: 1000px) {
    .grey-border-divider {
        margin: 0 100px;
    }

    .proces-container-home {
        display: flex;
    }

    .proces-container-home div {
        width: 50%;
    }

    .proces-container-home-title-container {
        padding-right: 10%;
    }

    .proces-container-home-title {
        font-size: 56px;
        line-height: 64px;
    }
}



/* MIJN DIENSTEN */

.mijn-diensten-container {
    padding-top: 4rem;
}

.mijn-diensten-container h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: var(--light);
}

.mijn-diensten-container h3 {
    font-size: 25px;
    font-weight: var(--thin);
    line-height: 1.5;
}

.mijn-diensten-container a {
    font-size: 25px;
    font-weight: var(--thin);
    line-height: 1.5;
    color: #ffffff
}

.mijn-diensten-container a:hover {
    text-decoration: underline;
}

.mijn-diensten-container div div:not(:last-child) {
    margin-bottom: 2rem;
}

@media (min-width: 1000px) {
    .mijn-diensten-flexbox {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .mijn-diensten-container h2 {
        font-size: 56px;
        margin-bottom: 3rem;
    }

}




.cta-footer-container {
    padding-top: 9rem;
    padding-bottom: 9rem;
    text-align: center;
}

.cta-footer-container p {
    font-weight: var(--light);
    font-size: 28px;
    line-height: 1.14;
    margin-bottom: 14px;
}

.cta-footer-container a {
    font-weight: var(--light);
    font-size: 24px;
    color: var(--white);
    text-decoration: underline var(--grey) 2px;
    text-underline-offset: 4px;
    -webkit-text-decoration: underline var(--grey);
    -webkit-text-underline-offset: 4px;
}

.cta-footer-container a:focus, 
.cta-footer-container a:hover {
    color: var(--grey);
}

@media (min-width: 1000px) {
    .cta-footer-container p {
        font-size: 56px;
        margin-bottom: 24px;
    }
    
    .cta-footer-container a {
        font-size: 48px;
        text-underline-offset: 10px;
    }
    
}



.mobile-nav-ul a {
    color: var(--white)
}

.available-footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.available-text {
    color: var(--white);
}

.footer-container {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: aktiv-grotesk-extended, sans-serif;
}

.footer-flexbox {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-icons-container div {
    display: flex;
    gap: 12px;
}

@media(min-width: 1000px) {

    .border-footer {
        border-left: solid 1px var(--grey);
        border-right: solid 1px var(--grey);
        padding-top: 24px;
        padding-bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
    }

    .footer-flexbox {
        display: flex;
        flex-direction: row;
        width: 100%;
        border-radius: 11px;
        gap: 0;
        border: 1px solid var(--grey);
        align-items: center;
    }
    
    .social-icons-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 25%;
    }

    .social-icons-container div {
        display: flex;
        gap: 0;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    
    .social-icons-container div div {
        width: 1.5rem;
    }



    .footer-flexbox :nth-child(1) { 
        order: 2; 
    }
    .footer-flexbox :nth-child(2) { 
        order: 3; 
    }
    .footer-flexbox :nth-child(3) { 
        order: 1; 
        width: 25%;
        text-align: center;
        min-height: 100%;
    }
}

.green-round {
    width: 12px; 
    height: 12px;
    background-color: var(--green);
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 5px;    
    z-index: 10;
}

.green-round-pulse {
    width: 12px; 
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 5px;
    animation: green-pulse 2s ease-out 1s infinite both;
}

.green-pulse {
    position: relative;
    width: 20px;
    height: 20px;
}

@keyframes green-pulse {
    0% {box-shadow: 0 0 0 0px rgba(22, 172, 51, 0.4);}
    100% {box-shadow: 0 0 0 20px rgba(22, 172, 51, 0);}
}


/* OVER MIJ PAGE */


.hero-section-over-mij {
    min-height: 100svh;
    padding-top: 184px;
}

.hero-title-over-mij {
    font-size: 84px;
    line-height: 84px;
    font-weight: var(--light); 
    margin-bottom: 9rem;
}

.count-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
}


.count-container div {
    border: 1px solid var(--black);
    border-radius: 50%;
    font-size: 26px;
    width: 29px;
    max-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kenmerken-container {
    display: flex;
    justify-content: space-between;
}

.kenmerken-container p {
    font-size: 18px;
    line-height: 26px;
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
    box-shadow: 0px 0px 400px var(--black);
}


.smiley-icon-over-mij {
    width: 100px;
}

.title-container-over-mij-smiley {
    position: relative;
    padding-left: 1rem;
}

.smiley-icon-container {
    position: absolute;
    left: 66%;
    top: 110px;
    transform: rotate(20deg);
    z-index: -1;
}

@media (max-width: 350px) {
    .smiley-icon-container {
        position: absolute;
        left: 40%;
        top: 0px;
    }

    .smiley-icon-over-mij {
        width: 80px;
    }
}


@media (max-width: 300px) {
    .kenmerken-container p {
        font-size: 14px;
        line-height: 1.5;
    }

}

@media (min-width: 768px) {
    .title-container-over-mij-smiley {
        padding-left: 3rem;
    }

    .hero-title-over-mij {
        font-size: 120px;
        line-height: 1;
        margin-bottom: 0rem;
    }

    .kenmerken-container {
        padding-right: 10%;
        padding-top: 15px;
        justify-content: right;
        gap: 8%;
    } 

    .kenmerken-container p {
        font-size: 22px;
        line-height: 1.52;
    }

}

@media(min-width: 1000px) {

    .title-container-over-mij-smiley {
        padding-left: 100px;
    }

    .hero-title-over-mij {
        font-size: 176px;
        line-height: 1;
        margin-bottom: 0rem;
    }

    .kenmerken-container p {
        font-size: 25px;
        line-height: 38px;
    }

    .smiley-icon-over-mij {
        width: 160px;
    }

    .smiley-icon-container {
        left: 60%;
        top: 00px;

    }

    .count-container div {
        transform: translateY(-3px)
    }
}



.over-mij-white-background {
    background-color: var(--white);
    margin-top: 10rem;
    color: var(--black);
}

.over-mij-images-container {
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
}

.over-mij-image-container-left, 
.over-mij-image-container-right
{
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}



.over-mij-image-container-left {
        background-image: url("/assets/images/soscha/soschavanbaal-mobiel.webp");
        background-size: cover;
        background-repeat: no-repeat;
    }
    
.over-mij-image-container-right {
        background-image: url("/assets/images/soscha/soscha-van-baal-portret-mobiel.webp");
        background-size: cover;
        background-repeat: no-repeat;
    }



@media(min-width: 1000px) {
    .over-mij-image-container-left {
        background-image: url("/assets/images/soscha/soscha-van-baal.webp");
        background-size: cover;
        background-repeat: no-repeat;
    }
    
    .over-mij-image-container-right {
        background-image: url("/assets/images/soscha/soscha-van-baal-portret.webp");
        background-size: cover;
        background-repeat: no-repeat;
    }
}




@media (min-width: 1000px) {
    .over-mij-images-container {
        display: flex;
        flex-direction: row;
        height: 100%;
    }

    .over-mij-images-container div {
        width: 50%;
    }
}

.main-text-over-mij {
    padding: 0 1rem 14rem 1rem;
}


.main-text-over-mij h2 {
    font-size: 28px;
    font-weight: var(--light);
    margin-bottom: 2rem;
    line-height: 1.15;
}

.main-text-over-mij p {
    font-size: 25px;
    font-weight: var(--thin);
    font-family: ivyjournal, sans-serif;
}

.margin-top-over-mij {
    margin-top: 100px;
}

@media (min-width: 1000px) {
    .over-mij-flex-box-container {
        display: flex;
    }
    
    .over-mij-flex-box-container div {
        width: 50%;
    }

    .main-text-over-mij h2 {
        font-size: 38px;
        margin-bottom: 0rem;
    }

    #title-droombestemming {
        margin-bottom: 4rem;
    }
}



.droombestemming-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    height: 800px;
}


.droombestemming-images-grid div {
    border-radius: 20px;
    overflow: hidden;
}

.droombestemming-images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-itema {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.grid-itemb {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
}
.grid-itemc {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 2;
    grid-column-end: 3;

}

.grid-itemd {
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 3;
}


@media (min-width: 768px) {
    .droombestemming-images-grid {
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .grid-itema {
        grid-column-start: 3;
        grid-column-end: 5;
        grid-row-start: 1;
        grid-row-end: 3;
    }

    .grid-itemb {
        grid-row-start: 1;
        grid-row-end: 2;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    .grid-itemc {
        grid-row-start: 1;
        grid-row-end: 2;
        grid-column-start: 2;
        grid-column-end: 3;
    
    }
    
    .grid-itemd {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 3;
    }
    
}


/* PROCES PAGINA */



.main-container-proces{
    padding-top: 184px;
}

.main-container-proces > p {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    font-weight: var(--regular);
    margin-bottom: 22px;
    letter-spacing: -.07em;
}

.main-container-proces > h1 {
    font-weight: var(--light);
    font-size: 28px;
}

.proces-fase-flexbox-container > div > h2 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    font-weight: var(--regular);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -.07em;
}

.proces-fase-flexbox-container > div > h3 {
    font-weight: var(--light);
    font-size: 25px;
    margin-bottom: 1rem;
}

.proces-fase-flexbox-container > div > p {
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
    font-size: 14px;
    line-height: 25px;
}

.icon-proces-span {
    font-size: 1.5rem;
    display: inline-block;
    transform: translateY(4px);
    margin-right: 4px;
}

@media (min-width: 1000px) {
    .proces-fase-flexbox-container {
        display: flex;
        justify-content: space-between;
        gap: 4rem;
    }

    .main-container-proces > h1 {
        font-size: 56px;
    }
}

.circle-container-proces {
    margin-top: 9rem;
    margin-bottom: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-container-proces > div > p {
    font-size: 34px;
    line-height: 38px;
    text-align: center;

}
.circle-container-proces > div {
    position: absolute;
    width: 85%;
}

@media (min-width: 600px) {
    .circle-container-proces > div > p {
        font-size: 48px;
        line-height: 56px;
    }

}
@media (min-width: 1000px) {
    .svg-proces {
        height: 65%;
        width: 65%;
        max-height: 650px;
        max-width: 650px;
    }
}
@media (min-width: 1200px) {
    .circle-container-proces > div > p {
        font-size: 56px;
        line-height: 64px;
    }
}

@media (max-width: 999px) {
    .svg-proces {
        display: none;
    }

    .circle-container-proces {
        height: 400px;
        margin-top: 0rem;
        margin-bottom: 0rem;
    }

}


.question-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-q-and-a-container {
    padding: 2rem 1rem;
}

.faq-container-diensten > div:nth-child(1) {
    border-top: 1px solid var(--grey);
}
.faq-container-diensten > div:nth-child(2) {
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}
.faq-container-diensten > div:nth-child(3) {
    border-bottom: 1px solid var(--grey);
}
.faq-container-diensten > div:nth-child(4) {
    border-bottom: 1px solid var(--grey);
}


.question-faq-flex {
    display: flex;
    align-items: center;
}

.question-faq-flex > p {
    font-size: 22px;
    font-weight: var(--bold);
    color: var(--grey);
    margin-right: 2rem;
}

.question-faq-flex > h2 {
    font-size: 28px;
    font-weight: var(--light);
}

.answer-faq {
    padding-left: 2.5rem;
    padding-right: 1.5rem;
    margin-top: 2rem;
    font-family: ivyjournal, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
}

.arrow-faq {
    height: 28px;
    width: 100%;
    cursor: pointer;
}

.arrow-faq-animation {
    animation: rotate-keyframes 400ms ease 1 both;
}
.arrow-faq-animation2 {
    animation: rotate-keyframes-back 400ms ease 1 both;
}

.display-none-faq {
    display: none;
}

@media (max-width: 768px) {
    .answer-faq {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

@media (min-width: 1000px) {
    .question-faq-flex > h2 {
        font-size: 38px;
    }

    .arrow-faq {
        height: 38px;
    }
}

@keyframes rotate-keyframes {
   0% {transform: rotate(0);}
   100% {transform: rotate(180deg);}
}

@keyframes rotate-keyframes-back {
   0% {transform: rotate(180deg);}
   100% {transform: rotate(0deg);}
}



/* CONTACT PAGE */

.contact-flex-box-container {
    padding-top: 184px;
    margin-bottom: 84px;
}

.contact-flex-box-container > div > h1 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    font-weight: var(--regular);
    letter-spacing: -0.07em;
    margin-bottom: 10px
}

.title-contact {
    font-size: 42px;
    line-height: 46px;
}

.contact-flex-item-right > p,
.contact-flex-item-right > div > a {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    font-weight: var(--regular);
    letter-spacing: -0.07em;
    color: var(--white);
}

.contact-flex-item-right > p {
    color: var(--grey); 
    margin-top: 40px;
    margin-bottom: 1rem;
}

.links-contact {
    display: flex;
    flex-direction: column;
}

.contact-options-container > div {
    background-color: var(--pink);
    min-height: 180px;
    border-radius: 20px;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-options-container > div > h2 {
    font-size: 42px;
    line-height: 46px;
    color: var(--black);
    font-weight: (var(--light));
}

.contact-options-container > div:not(:last-child) {
    margin-bottom: 1rem;
}

.contact-options-container > div:nth-child(2){
    background-color: var(--green);
}

.contact-options-container > div > div {
    border: solid 1px var(--black);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    transition: background-color 300ms ease-out;
}

.contact-options-container > div > div > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-options-container > div > div:hover {
    background-color: var(--black);
}

.contact-options-container > div > div:hover .icon-arrow-link {
    filter: invert(93%) sepia(94%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}


@media(min-width: 1000px) {
    .contact-flex-box-container {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }

    .contact-flex-item-right > p {
        margin-top: 0;
    }

    .title-contact {
        font-size: 56px;
        line-height: 64px;
    }
}



/* KOSTEN INDICATIE  */

.kosten-indicatie-form {
    padding-top: 184px;
    padding-bottom: 1.5rem;
}

.radio-toolbar {
    background-color: var(--pink);
    color: var(--black);
    border-radius: 20px;
    display: flex;
    min-height: 175px;
    cursor: pointer;
    position: relative;
    justify-content: space-between;
    
}

.behoefte-grid {
    display: grid;
    gap: 1rem;
    grid-template-rows: repeat(4, 1fr);
}

.container-wat-heb-je-nodig > h2 {
    font-size: 28px;
    font-weight: var(--light);
    margin-bottom: 2rem;
}

label {
    font-weight: var(--light);
    font-size: 20px;
}
.radio-p {
    font-size: 14px;
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
    display: block;
    margin-top: 1rem;
    z-index: 10;
    position: relative;
}

.radio-toolbar input[type="radio"],
.radio-toolbar input[type="checkbox"] {
    opacity: 0;
    position: fixed;
    width: 0;
  }

  .radio-toolbar input[type="radio"]:checked + label,
  .radio-toolbar input[type="checkbox"]:checked + label {
      background-color: var(--green);
  }
  
  .radio-toolbar input[type="radio"]:focus + label { 
      background-color: var(--green);
  }
  
  .radio-toolbar label {
      transition: background-color ease 0.5s;
      cursor: pointer;
      width: 100%;
      padding: 16px 24px;
      border-radius: 20px;
      transition: outline 200ms ease-out;
  }
  
  .radio-toolbar label:hover {
      outline: 4px solid var(--green);
  }

  .smiley-icon-kosten {
    position: absolute; 
    right: 2px;
    bottom: 2px;
    width: 100px;
    z-index: 0;
    transform: rotate(15deg);
  }


  .kosten-indicatie-button {
    width: 100%;
    display: flex;
    position: relative;
    padding-bottom: 3rem;

  }

  .kosten-indicatie-button > button {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin-top: 4rem;
    background-color: var(--black);
    border: 1px solid var(--white); 
    cursor: pointer;
  }

  .kosten-indicatie-button > button:hover,
  .kosten-indicatie-button > button:focus {
    background-color: var(--grey);
  }

  .kosten-indicatie-button > button > img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(70deg) brightness(101%) contrast(101%);
  }


  .kosten-indicatie-button > button:nth-child(2) {
    border-radius: 11px 0 0 11px; 
    border-right: 0;
  }

  .kosten-indicatie-button > button:nth-child(2) > img {
    transform: rotate(90deg);
    width: 14px;
  }
  .kosten-indicatie-button > button:nth-child(3) {
    border-radius: 0 11px 11px 0;
  }

  .kosten-indicatie-button > button:nth-child(3) > img {
    transform: rotate(270deg);
    width: 20px;
  }

  @media(max-width: 999px) {
    .kosten-indicatie-prijs {
        position: absolute;
        text-align: center;
        bottom: 0;
        margin: auto;
        width: 100%;
        font-family: aktiv-grotesk-extended, sans-serif;
        font-size: 20px;
        font-weight: var(--regular);
      }
  }

  .kosten-indicatie-prijs {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 20px;
    font-weight: var(--regular);
  }


  .contact-gegevens-container input {
    width: 100%;
    background-color: var(--pink);
    border: none;
    border-radius: 10px;
    height: 4rem;
  }

  @media (max-width: 500px) {
    .kosten-indicatie-prijs {
        font-size: 17px;
      }

  }



  @media(min-width: 1000px) {

        .container-wat-heb-je-nodig > h2 {
            font-size: 56px;
        }

        .kosten-indicatie-button > button {
            width: 25%;
            margin-top: 0rem;
            height: 68px;
        }

        .kosten-indicatie-prijs {
            width: 50%;
            text-align: center;
            border: 1px solid var(--white);
            height: 68px;
            border-radius: 11px 0 0 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .kosten-indicatie-button > button:nth-child(2) {
            border-left: 0;
            border-radius: 0;
          }

        .kosten-indicatie-button {
            align-items: center;
            margin-top: 4rem; 
        }

        .kosten-indicatie-button > button:nth-child(2) > img {
            width: 21px;
          }
        
          .kosten-indicatie-button > button:nth-child(3) > img {
            width: 31px;
          }

          label {
            font-size: 32px;
        }

        .behoefte-grid {
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto;
            min-height: 350px;
        }

        .behoefte-grid-extra-content {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
        }

        .container-wat-heb-je-nodig {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
  }

  @media (min-width: 1200px){

    .kosten-indicatie-prijs {
        font-size: 26px;
    }
  }


  .contactgegevens-grid  {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-gegevens-container > input::placeholder {
    color: var(--black);
    opacity: 0.5;
  }

  .contact-gegevens-container > input::-ms-input-placeholder {
    color: var(--black);
    opacity: 0.5;
  }

  .contact-gegevens-container > input {
    padding-left: 1rem;
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
  }

    .contact-gegevens-container input[type="text"]:focus, 
    .contact-gegevens-container input[type="tel"]:focus, 
    .contact-gegevens-container input[type="email"]:focus 

    {
    outline: 2px solid var(--green);
}

.display-none-form {
    display: none;
}





/* CASE PAGINA */

.white-background-case {
    background-color: var(--white);
    color: var(--black);
    padding-top: 184px;
    padding-bottom: 108px;
}

.case-information-container p,
.case-information-container a {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    font-weight: var(--regular);
    color: var(--black);
}

.case-information-container > p {
    letter-spacing: -0.07em;
}

.jaar-share-container {
    margin-bottom: 4rem;
}

.case-information-container > h1 {
    font-weight: var(--light);
    font-size: 54px;
    line-height: 1;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.jaartal-container {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.jaartal-container,
.share-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share-container > p {
    color: var(--pink);
}
.share-container > div > a {
    text-decoration: underline var(--grey);
    -webkit-text-decoration: underline var(--grey);
    -webkit-text-underline-offset: 2px;
    text-underline-offset: 2px;
    font-size: 10px;
}

.share-container > div {
    display: flex;
    align-items: center;
}


.stap-case a {
    color: #f1a1f3;
}


.stap-case > h2 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 10px;
    font-weight: var(--regular);
    color: var(--pink);
    margin-top: 94px;
}

.stap-case > p {
    font-family: ivypresto-display, serif;
    font-size: 14px;
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
    line-height: 25px;
}

.stap-case {
    margin-bottom: 94px;
}
.container-next-project-link {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container-next-project-link > a {
    color: var(--black);
    text-decoration: underline var(--grey);
    -webkit-text-decoration: underline var(--grey);
    -webkit-text-underline-offset: 2px;
    text-underline-offset: 2px;
}

.container-next-project-link > a:hover {
    color: var(--grey);
}

.img-square-container,
.main-img-container,
.first-image-stappen-container,
.blog-img-container {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.img-square-case,
.main-image-case,
.first-image-stappen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top-nav-container-case a, 
.top-nav-container-case p {
    color: var(--black);
}

.citaat-website-case > p {
    font-size: 52px;
    line-height: 1;
    font-weight: var(--light);
}

.span-kgl-text {
    color: #00df73;
}

@media (min-width: 1200px) {
    .case-information-container > p {
        font-size: 18px
    }

    .case-information-container > h1 {
        font-size: 114px;
        line-height: 110px;
        margin-top: 1rem;
        margin-bottom: 56px;
        padding-right: 8%;
        max-width: 1200px;
    }

    .jaar-share-container {
        display: flex;
        align-items: center;
        gap: 148px;
    }

    .jaartal-container {
        margin-bottom: 0;
    }

    .main-img-container {
    aspect-ratio: 1.8 / 1;
    }

    .first-image-stappen-container {
        aspect-ratio: 1.8 / 1;
    }

    .img-square-container {
        aspect-ratio: 1.35 / 1;
        max-height: 550px;
    }

    .img-square-right {
        display: flex;
        justify-content: end;
        width: 100%;
    }

    .img-square-middle {
        display: flex;
        justify-content: center;
    }

    .stap-case > p {
        max-width: 550px;
    }

    .case-stappen-container {
        padding: 0 108px;
    }

    .citaat-website-case > p {
        font-size: 72px;
    }

    .citaat-website-case > p {
        width: 65%;
        max-width: 800px;
    }

    .citaat-website-case-right {
        width: 100%;
        display: flex;
        justify-content: end;
    }
    .citaat-website-case-right {
        text-align: right;
    }

    .citaat-website-case-middle {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .citaat-website-case-middle > p {
        width: 100%;
        max-width: 800px;
    }
}



.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--black);
    transition: opacity 0.4s, visibility 0.4s;    
    z-index: 100000;
}

.loader p {
    font-size: 50px;
}

.body-overflow-hidden {
    overflow: hidden;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader p:first-child {
    animation: opacityLoader 2000ms ease-in-out infinite backwards;
}
.loader p:nth-child(2) {
    animation: opacityLoader 2000ms ease-in-out 0.1s infinite backwards;
}
.loader p:nth-child(3) {
    animation: opacityLoader 2000ms ease-in-out 0.2s infinite backwards;
}

@keyframes opacityLoader {
    0% {opacity: 0;}
    50% {opacity: 75%;}
    80% {opacity: 100%;}
    100% {opacity: 100%;}
}


.container-404 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container-404 p {
    font-size: 3rem;
}

.container-404 > a {
    color: var(--white);
    text-decoration: underline var(--grey);
    -webkit-text-decoration: underline var(--grey);
    -webkit-text-underline-offset: 2px;
    text-underline-offset: 2px;
    cursor: pointer;
    font-family: aktiv-grotesk-extended, sans-serif;
}

.container-succes {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 20px;
    flex-direction: column;
    gap: 1rem;
}

.container-succes > div > img {
    width: 200px;
    height: 200px;
    margin-left: 60px;
}



.container-succes > a {
    color: var(--white);
    text-decoration: underline var(--grey);
    -webkit-text-decoration: underline var(--grey);
    -webkit-text-underline-offset: 2px;
    text-underline-offset: 2px;
    cursor: pointer;
    font-family: aktiv-grotesk-extended, sans-serif;
}

.studio-honing-container {
    color: white;
    font-size: 11px;
    padding-top: 1.5rem;
}

.studio-honing-container a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.social-icon-svg {
    height: 1rem;
    width: 100%;
}

.social-icons-container > div {
    display: flex;
    align-items:last baseline;
}



.body-template-blogs .stap-case > h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.body-template-blogs .stap-case > h3 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 18px;
    font-weight: var(--regular);
    color: var(--pink);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.body-template-blogs .stap-case p:not(:last-child) {
    margin-bottom: 1rem;
}

.body-template-blogs .stap-case p {
    font-size: max(1vw, 16px);
    line-height: 1.5;
    font-family: ivyjournal, sans-serif;
}

.body-template-blogs .stap-case a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 6px;
}

@media (min-width: 1200px) {
/* .body-template-blogs  .case-information-container,
.blog-grid-container {
    margin-left: 118px;
} */

.body-template-blogs  .case-information-container {
    margin-left: 118px;
}

.margin-left-0 {
    margin-left: 0!important;
}

.body-template-blogs .stap-case {
    max-width: 700px;
}

.body-template-blogs  .case-information-container > h1 {
    font-size: 6rem;
    max-width: 1000px;
}
.body-template-blogs .stap-case {
    margin-left: auto;
    margin-right: auto;
}
.body-template-blogs .stap-case p {
    min-width: 100%;
    max-width: 700px;
}

.body-template-blogs .stap-case > div {
    max-width: 700px;
}

.body-template-blogs .stap-case {
    width: fit-content;
}


}


.blog-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 800px) {
.blog-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
}

@media (min-width: 1600px) {
    .blog-grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    }

.thema-blog,
.date-blog {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 11px;
    font-weight: var(--regular);
    color: var(--pink);
}

.date-blog {
    text-transform: lowercase;
}

.blog-grid-container h2 {
    font-family: ivypresto-display, serif;
    color: #111112;
    font-weight: var(--light);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}


.blog-inleiding {
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
    color: var(--black)
}

.thema-date-container {
    display: flex;
    justify-content: space-between;
}




/* // DIENSTEN PAGINA */


@media (min-width: 1200px) {
    .faq-container-diensten-pagina {
        margin: 0 auto;
        width: 700px;
    }
}

.stap-case ul {
    padding: 0;
    padding-left: 1rem;
    margin-bottom: 1rem;;
    font-family: ivyjournal, sans-serif;
    list-style-type: square;
}

.stap-case ol {
    padding: 0;
    padding-left: 1rem;
    font-family: ivyjournal, sans-serif;
}

.stap-case li {
    margin-bottom: 6px;
}

.highlight-box {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 1rem;
}

.diensten-maak-afspraak-btn {
    background-color: var(--pink);
    padding: 1.2rem 2rem;
    margin: 94px auto;
    display: block;
    text-align: center;
    border-radius: 6px;
    width: 220px;
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 14px;
    font-weight: var(--regular);
    color: var(--black)!important;
    transition: background-color ease 0.2s;
    border: 1px solid var(--black);
    box-shadow: 3px 3px 0px var(--black);
    text-decoration: none!important;
}

.diensten-maak-afspraak-btn:hover {
    background-color: white;
    color: var(--black);
    border: 1px solid var(--pink);
    box-shadow: 3px 3px 0px var(--pink);
}



/* BLOG CMS */


.blog-post-container h2 {
    font-size: 24px;
    margin-bottom: 1rem;
    font-family: aktiv-grotesk-extended, sans-serif;
    font-weight: var(--regular);
    color: var(--pink);
    margin-top: 94px;
}

.blog-post-container h3 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 20px;
    font-weight: var(--regular);
    color: var(--pink);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.blog-post-container h4 {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-size: 18px;
    font-weight: var(--regular);
    color: var(--pink);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}


.blog-post-container p {
    font-size: max(1vw, 16px);
    line-height: 1.5;
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
}

.stap-case p,
.stap-case ul {
    font-size: max(1vw, 16px);

}

.blog-post-container a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 6px;
}

.blog-post-container blockquote {
    font-size: 52px;
    line-height: 1;
    font-weight: var(--light);
    margin: 94px 0;
}

.blog-post-container h2::selection {
        color: #111112;
}

.blog-post-container p:not(:last-child) {
    margin-bottom: 1rem;
}

.blog-post-container ul {
    padding: 0;
    padding-left: 1rem;
    margin-bottom: 1rem;
    font-size: max(1vw, 16px);
    font-family: ivyjournal, sans-serif;
    font-weight: var(--thin);
    list-style-type: square;
}

.stap-case ul {
    font-weight: var(--thin);
}

.blog-post-container li {
    margin-bottom: 6px;

}

.blog-post-container img {
    margin: 1rem 0;
    border-radius: 6px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1), 0 0 6px 0 rgba(0, 0, 0, .1), 0 2px 2px -2px rgba(0, 0, 0, .15);
}

@media (min-width: 1200px) {
    .blog-post-container {
        max-width: 700px;
        margin: 0 auto;
    }

    .citaat-website-case > p {
        font-size: 72px;
        width: 100%;
    }

    .blog-post-container blockquote {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        font-size: 72px;

    }

    .blog-post-container p,
    .blog-post-container li,
    .stap-case p,
    .stap-case li,
    .body-template-blogs .stap-case p {
        font-size: 18px;
    }
    

}
