:root {
    --primary-color: var(--orange);
    --first-text-color: var(--black);
    --second-text-color: var(--gray);
    --third-text-color: var(--gray-light);
    --label-color: #a09f9c;
    --white: #ffffff;
    --beige: rgba(249, 248, 244, 0.7);
    --orange: #ffcf09;
    --black: #0a0a0a;
    --gray: #515151;
    --gray-light: #bab7b1;
    --poppins: 'Poppins', sans-serif;
    --montserrat: 'Montserrat', sans-serif;
    --shadow: 0px 3px 75px 0px rgba(0, 0, 0, 0.09);
    --font-size-title: calc(24px + 4 * ((100vw - 320px) / (1240 - 320)));
    --line-height-title: calc(30px + 13 * ((100vw - 320px) / (1240 - 320)));
}

body {
    font-family: var(--poppins);
    color: var(--first-text-color);
}

h1,
h2,
h3,
h4 {
    font-family: var(--montserrat);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 10px;
}

.second-container {
    max-width: 1084px;
    margin: 0 auto;
    padding: 0 10px;
}

.home-container {
    padding: 0;
}

.image-circle {
    width: 111px;
    height: 111px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

.image-circle img {
    width: 60px;
    height: 60px;
}

.line {
    height: 4px;
    width: 70px;
    background-color: var(--primary-color);
    opacity: 0.23;
    margin-top: 55px;
    margin-left: -30px;
    margin-right: -30px;
}

@media screen and (max-width: 1084px) {
    .line {
        width: calc(70px + 20 * ((100vw - 1084px) / (1084 - 880)));
        margin-left: calc(-30px - 10 * ((100vw - 1084px) / (1084 - 880)));
        margin-right: calc(-30px - 10 * ((100vw - 1084px) / (1084 - 880)));
    }
}

/***** quiz *****/
.quiz {
    background-color: var(--beige);
    padding: 45px 5px;

}

.quiz__wrapper {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    width: 100%;
    min-height: 300px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}

.quiz__item {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}



.quiz__item:nth-child(1) {
    background: url("../img/quiz_bg.svg") center / cover no-repeat;
}

.quiz__left-block {
    width: 100%;
    text-align: center;
    /*margin-left: 78px;*/
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.quiz__right-block {
    position: absolute;
    /*top: 25%;*/
    /*left: 0%;*/
}

.quiz__left-block-title {
    /*font-size: 38px;*/
    font-size: calc(30px + 14 * ((100vw - 320px) / (1240 - 320)));
    /*line-height: 47px;*/
    line-height: calc(37px + 16 * ((100vw - 320px) / (1240 - 320)));
    font-weight: 800;
    margin-bottom: 20px;
}

.quiz__left-block-text {
    /*font-size: 26px;*/
    /*line-height: 35px;*/
    font-size: calc(19px + 7 * ((100vw - 320px) / (1240 - 320)));
    line-height: calc(26px + 9 * ((100vw - 320px) / (1240 - 320)));
    font-weight: 400;
}

@media screen and (min-width: 1240px) {
    .quiz__left-block-title {
        font-size: 44px;
        line-height: 52px;
    }

    .quiz__left-block-text {
        font-size: 26px;
        line-height: 35px;
    }
}

.quiz__right-block-title {
    font-size: 24px;
    line-height: 43px;
    font-weight: 600;
    margin-bottom: 15px;
}

.quiz__right-block-text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--second-text-color);
    margin-bottom: 32px;
}

.quiz__button {
    border-radius: 3px;
    background-color: var(--primary-color);
    color: #000;
    padding: 13px 56px 16px 56px;
    font-family: var(--montserrat);
    font-size: 18px;
    line-height: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

/********** diagram *************/
.diagram {
    padding: 55px 0 65px 0;
}

.diagram__title {
    /*font-size: 30px;*/
    font-size: var(--font-size-title);
    /*line-height: 43px;*/
    line-height: var(--line-height-title);
    font-weight: 800;
    text-align: center;
    /* background-color: var(--white); */
    margin-bottom: 45px;
}

.diagram__wrapper {
    width: 100%;
    border-radius: 3px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 60px 95px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.diagram__image {
    width: 427px;
    height: 410px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.diagram__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.diagram__list-item {
    position: relative;
    font-size: 17px;
    line-height: 25px;
    margin-left: 75px;
}

.diagram__list-item:not(:last-child) {
    margin-bottom: 25px;
}

.diagram__list-item-title {
    font-weight: 700;
}

.diagram__list-item-text {
    font-weight: 400;
    color: var(--gray);
}

.diagram__list-item:before {
    position: absolute;
    content: '';
    top: 5px;
    left: -44px;
    width: 14px;
    height: 13px;
    border-radius: 1px;
}

.diagram__list-item:nth-child(1):before {
    background-color: #262626;
}

.diagram__list-item:nth-child(2):before {
    background-color: #f0bf00;
}

.diagram__list-item:nth-child(3):before {
    background-color: #ca4805;
}

.diagram__list-item:nth-child(4):before {
    background-color: #fb7e25;
}

.diagram__list-item:nth-child(5):before {
    background-color: #bdbdbd;
}


@media screen and (max-width: 1162px) {
    .diagram__wrapper {
        padding: 60px 20px;
        justify-items: center;
    }

    .diagram__list-item {
        font-size: calc(14px + 2 * ((100vw - 320px) / (1162 - 320)));
        line-height: calc(16px + 10 * ((100vw - 320px) / (1162 - 320)));
    }

    .diagram__list-item:not(:last-child) {
        margin-bottom: 15px;
    }

    .diagram__image {
        width: 327px;
        height: 315px;
    }
}

@media screen and (max-width: 768px) {
    .diagram__wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .diagram__image {
        width: 227px;
        height: 219px;
    }

    .diagram__list-item {
        margin-left: 50px;
    }
}

/********* skills **********/
.skills {
    background: url("../img/skills_bg.svg") center/cover no-repeat;
    padding: 55px 0 65px 0;
}

.skills__title {
    font-size: calc(19px + 7 * ((100vw - 320px) / (1162 - 320)));
    line-height: calc(26px + 11 * ((100vw - 320px) / (1162 - 320)));
    font-weight: 700;
    margin: 0 auto 45px auto;
    text-align: center;
}


.skills__wrapper {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border-radius: 3px;
    padding: 50px 90px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 55px 1fr 55px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--white);
    gap: 10px 55px;
}

.skills__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 18px;
}

.skills__item img {
    width: 20px;
    height: 15px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-top: 6px;
}

.skills__item p {
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
}

@media screen and (max-width: 1030px) {
    .skills__wrapper {
        padding: 50px 30px;
    }
}

@media screen and (max-width: 910px) {
    .skills__wrapper {
        padding: 50px 60px;
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: auto 10px auto 10px auto 10px auto 10px auto;
        grid-template-rows: repeat(5, auto);
        gap: 10px 20px;
    }

    .skills__wrapper>*:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .skills__wrapper>*:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .skills__wrapper>*:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .skills__wrapper>*:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .skills__wrapper>*:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .skills__wrapper>*:nth-child(6) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }

    .skills__wrapper>*:nth-child(7) {
        -ms-grid-row: 7;
        -ms-grid-column: 1;
    }

    .skills__wrapper>*:nth-child(8) {
        -ms-grid-row: 7;
        -ms-grid-column: 3;
    }

    .skills__wrapper>*:nth-child(9) {
        -ms-grid-row: 9;
        -ms-grid-column: 1;
    }

    .skills__wrapper>*:nth-child(10) {
        -ms-grid-row: 9;
        -ms-grid-column: 3;
    }

    .skills__item:nth-child(5) {
        -ms-grid-row-span: 2;
        grid-row: span 2;
    }
}

@media screen and (max-width: 910px) {
    .skills__wrapper {
        padding: 30px 30px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .skills__item p {
        font-size: calc(16px + 4 * ((100vw - 320px) / (910 - 320)));
        ;
    }
}

@media screen and (max-width: 525px) {
    .skills__item {
        gap: 8px;
    }
}

@media screen and (max-width: 425px) {
    .skills__wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

/**** your-day ***/
.your-day {
    padding: 55px 0;
}

.your-day__title {
    font-size: var(--font-size-title);
    line-height: var(--line-height-title);
    font-weight: 700;
    margin-bottom: 70px;
    text-align: center;
}

.your-day__plan {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px auto 12px 1fr 12px auto 12px 1fr 12px auto 12px 1fr 12px auto 12px 1fr;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 12px;
}

.your-day__plan-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.your-day__plan-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: var(--second-text-color)
}

.your-day__plan-item {
    text-align: center;
}

.your-day__plan {
    padding: 0 20px;
    margin-bottom: 70px;
}

.your-day__subtitle {
    font-size: 20px;
    line-height: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 65px;
}

.your-day .your-day__plan .your-day__plan-item:nth-child(1) .image-circle img {
    margin-left: 13px;
}

.academy__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto 1fr auto 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    max-width: 825px;
    margin: 0 auto;
}

.academy__wrapper .line {
    margin-top: 99px;
}

.academy__item-date {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.academy__item-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.academy__item .academy__item-text:not(:last-child) {
    margin-bottom: 10px;
}

.hr {
    height: 2px;
    width: 100%;
    background-color: #f1f0ec;
    margin: 45px 0 50px 0;
}

@media screen and (max-width: 880px) {
    .your-day__plan {
        -ms-grid-columns: 1fr 1fr auto 1fr auto 1fr auto 1fr 1fr;
        grid-template-columns: 1fr 1fr auto 1fr auto 1fr auto 1fr 1fr;
        grid-auto-columns: auto;
        row-gap: 40px;
    }

    .your-day__plan .your-day__plan-item:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / 3;
    }

    .your-day__plan .your-day__plan-item:nth-child(3) {
        -ms-grid-column: 4;
        -ms-grid-column-span: 3;
        grid-column: 4 / 7;
    }

    .your-day__plan .your-day__plan-item:nth-child(5) {
        -ms-grid-column: 8;
        -ms-grid-column-span: 2;
        grid-column: 8 / 10;
    }

    .your-day__plan .your-day__plan-item:nth-child(7) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 3;
        grid-column: 2 / 5;
    }

    .your-day__plan .line:nth-child(8) {
        -ms-grid-column: 5;
        -ms-grid-column-span: 1;
        grid-column: 5/6;
    }

    .your-day__plan .your-day__plan-item:nth-child(9) {
        -ms-grid-column: 6;
        -ms-grid-column-span: 3;
        grid-column: 6 / 9;
    }

    .your-day__plan .line:nth-child(6) {
        display: none;
    }

    .your-day__plan .line {
        width: calc(140px + 90 * ((100vw - 880px) / (880 - 620)));
        margin-left: calc(-70px - 45 * ((100vw - 880px) / (880 - 625)));
        margin-right: calc(-70px - 25 * ((100vw - 880px) / (880 - 625)));
    }
}

@media screen and (max-width: 625px) {
    .your-day__plan {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .your-day__plan-title br {
        display: none;
    }

    .your-day__plan .line {
        display: none;
    }

    .your-day__title {
        margin-bottom: 30px;
    }

    .your-day__plan .your-day__plan-item:nth-child(1),
    .your-day__plan .your-day__plan-item:nth-child(3),
    .your-day__plan .your-day__plan-item:nth-child(5),
    .your-day__plan .your-day__plan-item:nth-child(7),
    .your-day__plan .your-day__plan-item:nth-child(9) {
        grid-column: 1/-1;
    }

    .academy__wrapper {
        -ms-grid-columns: 1fr 10px auto 10px 1fr;
        grid-template-columns: 1fr auto 1fr;
        gap: 40px 10px;
        justify-items: center;
    }

    .academy__wrapper .line:nth-child(4) {
        display: none;
    }

    .academy__wrapper .line {
        width: calc(100px + 10 * ((100vw - 625px) / (625 - 425)));
        margin-right: calc(-100px - 25 * ((100vw - 880px) / (880 - 625)));
        margin-left: calc(-100px - 25 * ((100vw - 880px) / (880 - 625)));
    }

    .your-day__subtitle {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 425px) {
    .academy__wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 40px 10px;
        justify-items: center;
    }

    .academy__wrapper .line {
        display: none;
    }
}

/***** alles-vanuit ****/
.alles-vanuit {
    background-color: var(--beige);
    padding: 55px 0 85px 0;
}

.alles-vanuit__title {
    font-size: var(--font-size-title);
    line-height: var(--line-height-title);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.alles-vanuit__wrapper {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border-radius: 3px;
    padding: 60px 75px 60px 90px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 95px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
}

@media screen and (max-width: 768px) {
    .alles-vanuit__wrapper {
        padding: 60px 35px 60px 45px;
        gap: 60px;
    }
}

@media screen and (max-width: 575px) {
    .alles-vanuit__wrapper {
        padding: 40px 20px 40px 35px;
        gap: 20px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 475px) {
    .alles-vanuit__wrapper {
        padding: 40px 15px 40px 25px;
    }
}

.alles-vanuit__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.alles-vanuit__item p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.alles-vanuit__item img {
    width: 13px;
    height: 17px;
    margin-top: 6px;
}

.alles-vanuit__item:not(:last-child) {
    margin-bottom: 20px;
}

/***** garantuee *****/
.garantuee {
    background-color: #1d1d1d;

}

.garantuee__wrapper {
    padding-left: 95px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.garantuee__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.garantuee__container {
    background: url("../img/guarantee_bg.svg") 15% 50% / auto 100% no-repeat;
}

.garantuee__image img {
    width: 281px;
    height: 281px;
}

.garantuee__about {
    padding-top: 87px;
}

.garantuee__title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.garantuee__text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-style: italic;
    color: var(--third-text-color);
    margin-bottom: 87px;
}

@media screen and (max-width: 768px) {
    .garantuee__wrapper {
        padding: 0 15px;
        gap: 10px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .garantuee__image {
        padding-top: 15px;
    }

    .garantuee__container {
        background-position: center;
    }

    .garantuee__about {
        padding-top: 0;
    }

    .garantuee__text {
        font-size: calc(16px + 2 * ((100vw - 320px) / (768 - 320)));
        margin-bottom: 40px;
    }

    .garantuee__title {
        font-size: calc(20px + 10 * ((100vw - 320px) / (768 - 320)));
        line-height: calc(22px + 14 * ((100vw - 320px) / (768 - 320)));
        margin-bottom: 15px;
    }
}

/***** stan voor *****/
.staan-voor {
    background-color: var(--beige);
    padding: 56px 0 90px 0;
}

.staan-voor__title {
    text-align: center;
    font-size: var(--font-size-title);
    line-height: var(--line-height-title);
    font-weight: 700;
    margin-bottom: 60px;
}

/****** klinkt ******/
.klinkt {
    background-color: var(--orange);
    padding: 56px 0 80px 0;
}

.klinkt__title {
    font-size: var(--font-size-title);
    line-height: var(--line-height-title);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.klinkt__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
}

.klinkt__button button {
    border-radius: 5px;
    color: #000;
    background-color: var(--white);
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    font-family: var(--poppins);
    padding: 31px 98px;
    margin: 0 auto;
}

/***** leadform *****/
.leadform {
    background-color: var(--beige);
    padding: 95px 0 95px 0;
}

.leadform__title {
    font-size: var(--font-size-title);
    line-height: var(--line-height-title);
    font-weight: 700;
    margin-bottom: 45px;
    text-align: center;
}

.leadform__form {
    padding: 50px 170px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background-color: var(--white);
    transition: all 0.5s ease;
    height: auto;
}

.leadform__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 35px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px 35px;
}

.leadform__item-voornaam:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
}

.leadform__item-achternaam:nth-child(2) {
    grid-column: 2/-1;
}

.leadform__item-email:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
}

.leadform__item-telefoonnummer:nth-child(4) {
    grid-column: 2/-1;
}

.leadform__item-linkedin:nth-child(5) {
    grid-column: 1/-1;
}

.leadform__label {
    font-size: 16px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--label-color);
    display: block;
}

.leadform__input {
    padding: 15px 19px;
    border: 1px solid #c5c4be;
    border-radius: 3px;
    background-color: var(--beige);
    width: 100%;
    font-size: 20px;
    line-height: 36px;
    font-weight: 400;
    font-family: var(--poppins);
    color: var(--first-text-color);
}

.leadform__input:focus {
    border: 1px solid var(--primary-color);
}

.leadform__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.leadform__button button {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    padding: 31px 98px;
    border-radius: 5px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .leadform__form {
        padding: 50px 60px;
    }
}

@media screen and (max-width: 768px) {
    .leadform__items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .leadform__label {
        margin-bottom: 0;
    }

    .leadform__item-voornaam:nth-child(1) {
        grid-column: 1/-1;
    }

    .leadform__item-achternaam:nth-child(2) {
        grid-column: 1/-1;
    }

    .leadform__item-email:nth-child(3) {
        grid-column: 1/-1;
    }

    .leadform__item-telefoonnummer:nth-child(4) {
        grid-column: 1/-1;
    }
}

@media screen and (max-width: 525px) {
    .leadform__form {
        padding: 30px 30px;
    }

    .leadform__input {
        padding: 12px 19px;
    }
}

/***** home-section *****/
.home-section {
    background-color: #313131;
    overflow: hidden;
    padding: 0px 0 72px 0;
}

.home-section__wrapper {
    /*padding-top: 60px;*/
    padding-left: 55px;
    position: relative;

}

.home-section__wrapper:before {
    position: absolute;
    content: '';
    top: 16.5px;
    left: 0;
    width: 1450px;
    height: 744px;
    background-image: url("../img/home-bg-mobile.webp");
    background-repeat: no-repeat;
    background-size: auto 744px;
    background-position: 500px 17px;
}

.home-section__title {
    font-size: 54px;
    line-height: 64px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--orange);
    max-width: 440px;
    margin-bottom: 40px;
    padding-top: 90px;
}

.home-section__title span {
    white-space: nowrap;
}

.home-section__text {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: var(--beige);
    margin-bottom: 111px;
}

.home-section__items {
    position: relative;
    max-width: 540px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 35px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 21px 35px;
    z-index: 2;
    -webkit-transform: skew(-9deg);
    -ms-transform: skew(-9deg);
    transform: skew(-9deg);
    padding: 40px 30px;
    background-color: #1d1d1d;
    margin-left: -22px;
}

.home-section__item {
    -webkit-transform: skew(9deg);
    -ms-transform: skew(9deg);
    transform: skew(9deg);
}

.home-section__item:nth-child(3),
.home-section__item:nth-child(4) {
    margin-left: 20px;
}

.home-section__item {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
}

.home-section__item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

.home-section__item-icon img {
    width: 53px;
    height: 53px;
}

.home-section__item--text {
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    color: var(--third-text-color);
}

/**** header ****/
.header {
    /* padding: 10px 0;
    background-color: #313131; */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    width: 182px;
    height: 62px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

.header__logo img {
    width: 182px;
    height: 62px;
}

@media screen and (max-width: 925px) {
    .quiz__item {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .quiz__left-block,
    .quiz__right-block {
        margin-left: 0;
        padding: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .quiz__wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .quiz__item {
        height: 200px;
    }

    .quiz__right-block {
        padding: 0 20px;
    }

}

@media screen and (max-width: 425px) {
    .quiz__left-block h3 {
        font-size: 30px;
        line-height: 36px;
    }
}

@media screen and (max-width: 768px) {

    .klinkt__button button,
    .leadform__button button {
        font-size: 20px;
        padding: 20px 70px;
    }
}

@media screen and (max-width: 525px) {

    .klinkt__button button,
    .leadform__button button {
        font-size: 20px;
        padding: 18px 60px;
    }
}

@media screen and (max-width: 525px) {
    .skills {
        padding: 30px 0 40px 0;
    }

    .skills__title {
        margin: 0 auto 25px auto;
    }

    .your-day {
        padding: 40px 0 50px 0;
    }

    .alles-vanuit {
        padding: 35px 0 55px 0;
    }

    .alles-vanuit__title {
        margin-bottom: 30px;
    }

    .staan-voor {
        padding: 45px 0 55px 0;
    }

    .leadform {
        padding: 35px 0 65px 0;
    }

    .diagram {
        padding: 35px 0 55px 0;
    }
}

@media screen and (max-width: 768px) {
    .klinkt {
        padding: 40px 0 60px 0;
    }

    .alles-vanuit__item p {
        font-size: calc(16px + 4 * ((100vw - 320px) / (768 - 320)));
        line-height: calc(21px + 9 * ((100vw - 320px) / (768 - 320)));
    }

    .alles-vanuit__item:not(:last-child) {
        margin-bottom: 12px;
    }

    .home-section__wrapper {
        padding-left: 30px;
    }

    .home-section__items {
        margin-left: 0;
    }
}

@media screen and (max-width: 610px) {
    .home-section__title {
        max-width: 100%;
        text-align: center;
        font-size: calc(25px + 10 * ((100vw - 320px) / (610 - 320)));
        line-height: calc(32px + 12 * ((100vw - 320px) / (610 - 320)));
        padding: 50px 5px 0 5px;
    }

    .home-section__wrapper {
        padding: 0;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.1))),
            url('../img/home-bg-mobile.webp') 40% 50% / auto 744px no-repeat;
        background: -o-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)),
            url('../img/home-bg-mobile.webp') 40% 50% / auto 744px no-repeat;
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)),
            url('../img/home-bg-mobile.webp') 40% 50% / auto 744px no-repeat;
    }

    .home-section__wrapper:before {
        content: none;
    }

    .home-section__text {
        text-align: center;
        margin-bottom: 60px;
        font-size: calc(16px + 4 * ((100vw - 320px) / (610 - 320)));
        line-height: calc(20px + 8 * ((100vw - 320px) / (610 - 320)));
        padding: 0 5px;
    }

    .home-section__items {
        margin: 0 auto;
        gap: 30px;
    }

    .home-section__item--text {
        font-size: calc(14px + 2 * ((100vw - 320px) / (1162 - 320)));
        line-height: calc(16px + 10 * ((100vw - 320px) / (1162 - 320)));
    }
}

@media screen and (max-width: 475px) {
    .home-section__items {
        gap: 20px 10px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin: 0 30px;
        padding: 20px 20px 20px 10px;
    }

    .home-section__wrapper {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.1))),
            url('../img/home-bg-mobile.webp') 37% 35% / auto 744px no-repeat;
        background: -o-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)),
            url('../img/home-bg-mobile.webp') 37% 35% / auto 744px no-repeat;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)),
            url('../img/home-bg-mobile.webp') 37% 35% / auto 744px no-repeat;
    }

    .home-section__item {
        margin-left: 10px;
    }
}

.quiz__button,
.leadform__button button,
.question__answer,
.leadform__submit,
.leadform__next,
.leadform__prev,
.klinkt__button button {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}



.quiz__button:hover,
.question__answer:hover,
.leadform__answer:hover,
.leadform__submit:hover,
.leadform__next:hover,
.leadform__prev:hover,
.leadform__button button:hover {
    opacity: 0.8;
}

.quiz__button:hover,
.leadform__button button:hover,
.klinkt__button button:hover,
.leadform__next:hover,
.leadform__prev:hover,
.leadform__submit:hover,
.leadform__answer:hover,
.question__answer:hover {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

.klinkt__button button:hover {
    background-color: var(--beige);
}

.quiz__button:active,
.leadform__button button:active,
.klinkt__button button:active,
.leadform__next:active,
.leadform__prev:active,
.leadform__answer:active,
.leadform__submit:active,
.question__answer:active {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
}

.quiz__question {
    margin: 0 auto;
}


.question__question {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--second-text-color);
}

@media screen and (max-width: 1240px) {
    .question__question {
        font-size: calc(14px + 4 * ((100vw - 320px) / (1240 - 320)));
    }
}

.question__variants {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    justify-content: center;
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
    .question__variants {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .leadform__next,
    .leadform__prev,
    .leadform__answer,
    .leadform__submit,
    .question__answer {
        margin: 0;
    }

    .question-block {
        height: auto;
    }
}

.leadform__submit,
.leadform__next,
.leadform__prev,
.question__answer {
    display: block;
    color: #000;
    border-radius: 3px;
    background-color: var(--primary-color);
    padding: 12px 45px;
    font-family: var(--montserrat);
    font-size: 15px;
    line-height: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.leadform__answer {
    font-size: 18px;
    padding: 16px 50px;

}

.question-block {
    position: relative;
    width: 100%;
    min-height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.quiz__question-wrapper {
    width: 100%;
    overflow: auto;
    padding: 30px 20px;
}

.quiz__question {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    /*padding: 40px 20px;*/
    overflow: auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.question__title {
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.question__question span {
    font-size: 20px;
    font-weight: 600;
    margin-right: 7px;
}

.question__img {
    width: 30px;
    height: 30px;
    margin-top: -3px;
    margin-right: 7px;
}

@media screen and (max-width: 1008px) {
    .quiz__question:nth-child(5) {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

@media screen and (max-width: 768px) {
    .quiz__question:nth-child(5) {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .quiz__question {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}

@media screen and (max-width: 479px) {
    .quiz__question-wrapper {
        padding: 20px;
    }
}

@media screen and (max-width: 425px) {
    .quiz__question:nth-child(7) {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

@media screen and (max-width: 383px) {
    .quiz__question:nth-child(5) {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}


.staan-voor .your-day__plan {
    margin-bottom: 0;
}

.staan-voor .your-day__plan-title {
    font-size: 14px;
}

.wrapper {
    position: relative;
}

.modal-leadform {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--beige);
    z-index: 115;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 30px;
}

.modal-leadform.active {
    opacity: 1;
    visibility: visible;
}

.modal-leadform__item {
    background-color: var(--white);
    border-radius: 5px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    max-width: 600px;
    padding: 30px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-leadform__text {
    font-size: calc(14px + 3 * ((100vw - 320px) / (1240 - 320)));

    line-height: calc(23px + 8 * ((100vw - 320px) / (1240 - 320)));
}

.modal-leadfrom__close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
    color: var(--first-text-color);
}

.modal-leadfrom__close:active {
    color: var(--first-text-color);
}

.modal-leadfrom__close:hover {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.footer {
    padding: 2rem 20px;
    background-color: #0a0a0a;
}

.footer_container {
    margin: auto;
    max-width: 1258px
}

.footer_logo_wrapper {
    width: 125px
}

/*.footer_row:first-child {*/
/*    padding-bottom: 1rem;*/
/*    border-bottom: 1px solid #2a2a2a*/
/*}*/

.copyright_txt {
    color: #9b9b9b;
    font-size: 16px;
    font-family: var(--poppins);
    line-height: 25.6px;
    display: block;
}

.img_footer_logo {
    display: block;
    width: 100%
}

a {
    color: #ffb51d;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

a:hover,
a:active {
    color: #ffbe00;
}

.leadform__item-opleiding {
    grid-column: 1 / -1;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.leadform__items-title {
    grid-column: 1 / -1;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.leadform__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.leadform__variants {
    display: flex;
    gap: 20px;
}

.leadform__wrapper {
    position: relative;
    height: auto;
    width: 100%;
    min-height: 200px;
}

[class*="leadform-step-"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 10px;
    opacity: 0;
    visibility: hidden;
}

[class*="leadform-step-"].active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

[class*="leadform-step-"].active .leadform__items-title {
    animation: slideInTitle 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

[class*="leadform-step-"].active .leadform__item {
    animation: slideInItem 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

[class*="leadform-step-"].active .leadform__checkbox-group label {
    animation: slideInCheckbox 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

[class*="leadform-step-"].active .leadform__checkbox-group label:nth-child(1) { animation-delay: 0.3s; }
[class*="leadform-step-"].active .leadform__checkbox-group label:nth-child(2) { animation-delay: 0.4s; }
[class*="leadform-step-"].active .leadform__checkbox-group label:nth-child(3) { animation-delay: 0.5s; }
[class*="leadform-step-"].active .leadform__checkbox-group label:nth-child(4) { animation-delay: 0.6s; }

@keyframes slideInTitle {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInCheckbox {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[class*="leadform-step-"].next {
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
    visibility: hidden;
}

[class*="leadform-step-"].prev {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    visibility: hidden;
}

.leadform__navigate {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    background-color: var(--white);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    z-index: 10;
    clear: both;
}

.leadform__item-linkedin {
    grid-column: 1 / -1;
}

.leadform__submit {
    display: none;
}

.prev-init {
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 425px) {
    .leadform__items-title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .leadform__label {
        font-size: 12px;
    }

    .leadform__input {
        font-size: 16px;
        padding: 10px 15px;
    }

    .leadform__prev,
    .leadform__next,
    .leadform__submit {
        font-size: 12px;
        padding: 12px 27px;
    }

    .leadform__variants {
        flex-direction: column;
        align-items: start;
        margin-left: 10px;
    }
}

.leadform__answer.toggle {
    background-color: var(--orange);
    box-shadow: var(--shadow);
}

.invalid {
    border: 2px solid rgba(255, 0, 0, 0.4);
    background-color: rgba(255, 0, 0, 0.05);
}

.invalid:focus {
    border: 2px solid rgba(255, 0, 0, 0.4);
}

.leadform__answer {
    width: 140px;
    background-color: var(--white);
    border: 3px solid var(--orange);
    display: block;
    border-radius: 3px;
    padding: 12px 45px;
    font-family: var(--montserrat);
    font-size: 15px;
    line-height: 18px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: var(--first-text-color);
}

.leadform__prev {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    margin-left: 5px;
}

.leadform__next,
.leadform__submit {
    margin-right: 5px;
}

.leadform__prev:active {
    scale: 0.95;
}

@media screen and (max-width: 340px) {

    .leadform__prev,
    .leadform__next,
    .leadform__submit {
        padding: 10px 20px;
    }
}

.footer_grid {
    /* padding: 0 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; */
}

.footer_copyright {
    -ms-grid-column-align: end;
    justify-self: end;
}

@media screen and (max-width: 1105px) {
    .footer_grid {
        padding: 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .footer_grid {
        padding: 0 0;
    }
}

@media screen and (max-width: 650px) {
    .footer_grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .footer_copyright {
        -ms-grid-column-align: center;
        justify-self: center;
        text-align: center;
        margin-top: 20px;
    }
}
textarea{
    resize: none;
}