/* KLEUREN HOMEPAGINA */
:root {
    --homepageBackgroundColor: #F1EFE9;
    --textColorDark: #373634;
    --textColorLight: #F1EFE9;
    --cardColor1: #F1EFE9;
    --cardColor2: #E5D5C3;
    --cardColor3: #CDC0B1;
    --cardColor4: #AFA7A2;
    --cardColor5: #82887C;
    --footerBackgroundColor: #373634;
    --navbarHoverColor: #AFA7A2;
}

/* BOX-SIZING en FONT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--textColorDark);
}

/* BODY instellingen */
body {
    background: var(--homepageBackgroundColor);
    color: var(--textColorDark);
    overflow-x: hidden;
}

/* HEADER instellingen */
header {
    background-color: var(--homepageBackgroundColor);
    width: 85%;
    height: 8rem;
    top: 0px;
    position: fixed;
    margin-left: 7.5%;
    z-index: 8000;
}

/* logo instellingen */
header a {
    float: left;
}

/* HEADER achtergrond instellingen */
.headerBackground {
    background-color: var(--homepageBackgroundColor);
    width: 100%;
    height: 8rem;
    position: fixed;
    z-index: 999;
}

/* OPACITY tekst HEADER achtergrond */
.headerBackground p {
    opacity: 0;
}

/* FLEXBOX voor nav elementen */
.navLinks {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    padding: 5% 0px 2% 0px;
}

/* instellingen nav elementen */
.navLinks a {
    text-decoration: none;
    color: var(--textColorDark);
    font-weight: 600;
}

/* HOVER animatie */
.navLinks li a {
    transition: all 0.3s ease 0s;
}

/* instellingen HOVER animatie */
.navLinks li a:hover {
    color: var(--navbarHoverColor);
}

/* instellingen afbeelding navbar */
.laptopNavbar {
    width: 100px;
    margin-top: 15%;
}

/* HOVER ANIMATION afbeelding navbar */
.laptopNavbar:hover {
    animation: laptopNavbarAnim 3s ease;
    /* animation-iteration-count: 1; */
}

/* instellingen HOVER ANIMATION */
@keyframes laptopNavbarAnim {

    0%,
    100% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(.8, .8)
    }
}

/* FLEXBOX hero afbeeldingen */
.homepageHero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0rem 2rem 0rem;
}

/* ALIGNMENT laptop afbeelding */
.heroLaptop {
    position: relative;
    z-index: 900;
    width: 400px;
}

/* ALIGNMENT cirkel afbeelding */
.heroCircle1 {
    position: absolute;
    z-index: 850;
    margin-left: 23rem;
    margin-top: 13rem;
    width: 400px;
    animation: heroCircle1Anim 40s linear infinite;
}

/* ALIGNMENT cirkel afbeelding */
.heroCircle2 {
    position: absolute;
    z-index: 850;
    margin-left: 23rem;
    margin-top: 13rem;
    width: 400px;
    animation: heroCircle2Anim 40s linear infinite;
}

/* ALIGNMENT tab afbeelding */
.heroTab1 {
    position: absolute;
    z-index: 900;
    margin-left: -10rem;
    margin-top: -15rem;
    width: 400px;
    animation: heroTab1Anim 8s linear infinite;
}

/* ALIGNMENT tab afbeelding */
.heroTab2 {
    position: absolute;
    z-index: 900;
    margin-left: -6rem;
    margin-top: -6rem;
    width: 400px;
    animation: heroTab2Anim 8s linear infinite;
}

/* ANIMATION cirkel */
@keyframes heroCircle1Anim {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ANIMATION cirkel */
@keyframes heroCircle2Anim {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* ANIMATION tab */
@keyframes heroTab1Anim {

    0%,
    100% {
        margin-left: -10rem;
        margin-top: -15rem;
    }

    50% {
        margin-left: -6rem;
        margin-top: -12.5rem;
    }
}

/* ANIMATION tab */
@keyframes heroTab2Anim {

    0%,
    100% {
        margin-left: -6rem;
        margin-top: -6rem;
    }

    50% {
        margin-left: -10rem;
        margin-top: -8rem;
    }
}

/* ALIGNMENT en instellingen HERO MARQUEE */
.marqueeHero {
    position: absolute;
    width: 100vw;
    max-width: 100%;
    height: 200px;
    overflow-x: hidden;
    font-size: 150px;
    font-weight: 600;
}

/* ALIGNMENT en instellingen HERO MARQUEE */
.trackHero {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marqueeHeroAnim 80s linear infinite;
}

/* ANIMATION MARQUEE */
@keyframes marqueeHeroAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ANIMATION bij HOVER pauzeren */
.trackHero:hover {
    animation-play-state: paused;
}

/* ALIGNMENT achtergrond cirkel */
.heroCirkel {
    position: absolute;
    z-index: 800;
    width: 400px;
    margin-left: 2rem;
    margin-top: 4rem;
    opacity: 1;
    filter: blur(0px);
}

/* ALIGNMENT donkere balk onder laptop illustratie */
.homepageHeroBar {
    position: absolute;
    background-color: var(--textColorDark);
    color: var(--textColorLight);
    z-index: 800;
    align-self: flex-end;
    width: 85%;
    height: 4rem;
    padding: 1% 0% 0% 1%;
}

/* cursus-vlakken in COLUMN met FLEXBOX */
.homepaginaMainContent .container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    row-gap: 2rem;
}

/* KLEUREN cursus-vlakken */
.homepaginaMainContent .card:nth-child(1) {
    background-color: var(--cardColor2);
    z-index: 900;
}

.homepaginaMainContent .card:nth-child(2) {
    background-color: var(--cardColor3);
}

.homepaginaMainContent .card:nth-child(3) {
    background-color: var(--cardColor4);
}

.homepaginaMainContent .card:nth-child(4) {
    background-color: var(--cardColor5);
}

/* cursus-valk instellingen: WIDTH, HEIGHT en GRID voor informatie op de vlakken */
.homepaginaMainContent .card {
    width: 85%;
    height: 25rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    grid-template-rows: 1fr 2fr .1fr;
    grid-template-areas:
        "h2 img h3 h3"
        "h2 img h3 h3"
        "homepaginaLines homepaginaLines homepaginaLines homepaginaLines";
    transition: 1s ease;
}

.homepaginaMainContent .card a {
    color: var(--textColorDark);
}

/* instellingen H2 element cursus-vlakken */
.homepaginaMainContent .card h2 {
    grid-area: h2;
    font-size: 40px;
}

/* ALIGNMENT H3 element cursus-vlakken */
.homepaginaMainContent .card h3 {
    grid-area: h3;
    font-size: 60px;
}

/* ALIGNMENT img element cursus-vlakken */
.homepaginaMainContent .card img {
    grid-area: img;
    width: 170px;
}

/* ALIGNMENT img element card 3 */
.homepaginaMainContent .card:nth-child(3) img {
    grid-area: img;
    width: 240px;
}

/* ALIGNMENT img element card 4 */
.homepaginaMainContent .card:nth-child(4) img {
    grid-area: img;
    width: 240px;
}

/* ALIGNMENT a, h3, img elementen cursus-vlakken */
.homepaginaMainContent .card .linkImg,
.cardText {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* extra ALIGNMENT */
.homepaginaMainContent .linkImg,
.cardText {
    margin: 15% 0% 0% 0%;
}

/* extra ALIGNMENT */
.homepaginaMainContent .cardText {
    margin: 0% 0% 0% 10%;
}

/* ALIGNMENT div met p elementen en lijnen */
.homepaginaLines {
    grid-area: homepaginaLines;
    text-transform: uppercase;
    font-size: 10px;
    display: flex;
    /* align-items: flex-end; */
    justify-content: space-between;
    border-style: solid;
    border-color: var(--textColorDark);
    border-width: 1.5px 0px 1.5px 0px;
    margin-top: 15px;
    padding: 3px 0px 3px 0px;
}

/* HOVER ANIMATION cursus-vlakken */
.homepaginaMainContent .card:hover {
    transform: scale(1.03, 1.03);
}

/* ALIGNMENT FOOTER */
.illustratieFooter {
    margin: -15% 0% 0% 0%;
}

/* ALIGNMENT afbeelding */
.groundFooter {
    width: 100%;
    z-index: 10000;
    position: absolute;
    margin: 30% 0% 0% 0%;
}

/* ALIGNMENT afbeelding */
.mountain1Footer {
    width: 20%;
    z-index: 9000;
    position: absolute;
    margin: 20% 0% 0% 0%;
}

/* ALIGNMENT afbeelding */
.mountain2Footer {
    width: 30%;
    z-index: 8000;
    position: absolute;
    margin: 10% 0% 0% 11.5%;
}

/* ALIGNMENT afbeelding */
.mountain3Footer {
    width: 20%;
    z-index: 7000;
    position: absolute;
    margin: 20% 0% 0% 35%;
}

/* ALIGNMENT afbeelding */
.mountain4Footer {
    width: 20%;
    z-index: 7000;
    position: absolute;
    margin: 20% 0% 0% 60%;
}

/* ALIGNMENT afbeelding */
.mountain5Footer {
    width: 31%;
    z-index: 8000;
    position: absolute;
    margin: 10% 0% 0% 72.3%;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* ALIGNMENT afbeelding */
.mountain6Footer {
    width: 30%;
    z-index: 7000;
    position: absolute;
    margin: 10% 0% 0% 81%;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* ALIGNMENT afbeelding */
.sunFooter {
    width: 35%;
    z-index: 6000;
    position: absolute;
    margin: 18% 0% 0% 40%;
}

/* ALIGNMENT FOOTER en ALIGNMENT inhoud met FLEXBOX */
.contentFooter {
    position: absolute;
    background-color: var(--footerBackgroundColor);
    margin: 53% 0% 0% 0%;
    width: 100%;
    height: 8rem;
    z-index: 90000;
    color: var(--textColorLight);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: .5rem;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* instellingen AFBEELDING */
.logoFooter img {
    width: 100px;
    margin: 0% 0% 0% 10%;
}

/* HOVER ANIMATION */
.logoFooter img:hover {
    animation: logoFooterAnim 3s ease;
}

/* instellingen HOVER ANIMATION */
@keyframes logoFooterAnim {

    0%,
    100% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(.8, .8)
    }
}

/* instellingen FONT-WEIGHT h3 element */
.logoFooter h3 {
    font-weight: 500;
    color: var(--cardColor2);
    font-size: 15px;
}

/* instellingen LIJST en LINK elementen */
.navFooter ul,
li,
a {
    text-decoration: none;
    list-style: none;
    color: var(--textColorLight);
}

/* ALIGNMENT en instellingen verticale streep FOOTER NAV */
.navFooter li {
    padding: .5rem;
    border-style: solid;
    border-color: var(--cardColor5);
    border-width: 0px 0px 0px 4px;
}

/* HOVER ANIMATION */
.navFooter a:hover {
    color: var(--cardColor4);
}

/* ALIGNMENT links FOOTER */
.buttonLinksFooter {
    padding: 2rem;
}

/* ALIGNMENT en instellingen BUTTON FOOTER */
.buttonFooter {
    background-color: var(--cardColor5);
    border: none;
    color: var(--textColorLight);
    padding: 5% 20%;
    text-align: center;
    border-radius: 128px;
    font-size: 20px;
    font-weight: 600;
    margin: 0% 0% 0% 10%;
    cursor: pointer;
}

/* HOVER ANIMATION BUTTON */
.buttonFooter:hover {
    background-color: var(--cardColor4);
}

/* ALIGNMENT LINKS FOOTER */
.linksFooter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

/* instellingen AFBEELDINGEN LINKS FOOTER */
.linksFooter img {
    width: 40px;
}

/* ================================= CURSUS 1 ==================================== */
/* KLEUR BODY */
.cursus1body {
    background-color: var(--cardColor2);
}

/* HEADER ALIGNMENT en BACKGROUND */
.headerC1 {
    background-color: var(--cardColor2);
    width: 85%;
    height: 8rem;
    top: 0px;
    position: fixed;
    margin-left: 7.5%;
    z-index: 1000;
}

/* logo instellingen */
.headerC1 a {
    float: left;
}

.headerBackgroundC1 {
    background-color: var(--cardColor2);
    width: 100%;
    height: 8rem;
    position: fixed;
    z-index: 999;
}

.headerBackground p {
    opacity: 0;
}

/* instellingen KLEUR CARDs cursus1 */
.cursus1MainContent .cardCursus1:nth-child(1) {
    background-color: var(--cardColor1);
    justify-self: flex-end;

}

.cursus1MainContent .cardCursus1:nth-child(2) {
    background-color: var(--cardColor3);
    justify-self: flex-start;
}

.cursus1MainContent .cardCursus1:nth-child(3) {
    background-color: var(--cardColor4);
    justify-self: flex-end;
}

.cursus1MainContent .cardCursus1:nth-child(4) {
    background-color: var(--cardColor5);
    justify-self: flex-start;
}

.cursus1MainContent .cardCursus1:nth-child(5) {
    background-color: var(--cardColor1);
    justify-self: flex-end;
}

.cursus1MainContent .cardCursus1:nth-child(6) {
    background-color: var(--cardColor3);
    justify-self: flex-start;
}

/* GRID CARDS */
.containerCursus1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 0rem;
}

/* GRID content CARDS */
.cursus1MainContent .cardCursus1 {
    width: 84.6%;
    height: 20rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    /* grid-template-columns: .3fr 2fr 1fr;
    grid-template-rows: 1fr 2fr .1fr;
    grid-template-areas:
        "h2 h3 h3"
        "img img img"
        "cursus1Lines cursus1Lines cursus1Lines"; */
    transition: 1s ease;
    margin-top: 2rem;
}

.cursus1MainContent .cardCursus1 a {
    display: block;
    width: 105%;
    height: 20rem;
    display: flex; 
    align-items: center;
    justify-content: center;
}

/* ALIGNMENT H2  */
/* .cursus1MainContent .cardCursus1 h2 {
    grid-area: h2;
    font-size: 30px;
} */

/* ALIGNMENT H3  */
/* .cursus1MainContent .cardCursus1 h3 {
    grid-area: h3;
    font-size: 40px;
} */

/* ALIGNMENT IMG  */
/* .cursus1MainContent .cardCursus1 img {
    grid-area: img;
    width: 350px;
    margin: 3rem 0rem 0rem -20rem;
} */

/* ALIGNMENT IMG  */
/* .cursus1MainContent .cardCursus1:nth-child(2) img {
    grid-area: img;
    width: 200px;
    margin: 3rem 0rem 0rem -15rem;
} */

/* ALIGNMENT en instellingen lijnen CARDS */
.cursus1Lines {
    grid-area: cursus1Lines;
    text-transform: uppercase;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    border-style: solid;
    border-color: var(--textColorDark);
    border-width: 1.5px 0px 1.5px 0px;
    margin-top: 15px;
    padding: 3px 0px 3px 0px;
}

/* HOVER ANIMATION */
.cursus1MainContent .cardCursus1:hover {
    transform: scale(1.03, 1.03)
}

/* ALIGNMENT en intstellingen afbeeldingen HERO */
.mountain1Hero {
    width: 17%;
    margin: 0% 0% 1% 7.5%;
    z-index: 500;
    position: relative;
}

.mountain2Hero {
    width: 27%;
    margin: 0% 0% 0% -6.8%;
    z-index: 400;
    position: relative;
}

.mountain3Hero {
    width: 18%;
    margin: 0% 0% 0% -6.9%;
    z-index: 300;
    position: relative;
}

.mountain4Hero {
    width: 17%;
    margin: 0% 0% 0% 2%;
    z-index: 300;
    position: relative;
}

.mountain5Hero {
    width: 26%;
    margin: 0% 0% 1.5% -6.8%;
    z-index: 450;
    position: relative;
}

.mountain6Hero {
    width: 25%;
    margin: -30% 0% 0% 76.7%;
    z-index: 300;
    position: relative;
}

.bird-left {
    width: 1.5%;
    margin-right: -0.4%;
    z-index: 300;
    position: relative;
    animation: bird-left-anim 1.5s linear infinite;
    rotate: 10deg;
}

.bird-right {
    width: 1.5%;
    z-index: 300;
    position: relative;
    animation: bird-right-anim 1.5s linear infinite;
    rotate: 20deg;
}

.birds {
    position: relative;
    margin-top: -10%;

}

.birds1 {
    position: relative;
    margin-left: 11%;
    margin-bottom: -8%;
}

.birds2 {
    position: relative;
    margin-left: 15%;
    margin-top: 8%;
    margin-bottom: -5%;
}

.birds3 {
    position: relative;
    margin-left: 8%;
    margin-top: 5%;
    margin-bottom: -13%;
}

.birds4 {
    position: relative;
    margin-left: 75%;
    margin-top: 5%;
    margin-bottom: -5%;
}

.birds5 {
    position: relative;
    margin-left: 70%;
    margin-top: 5%;
    margin-bottom: -5%;
}

.birds6 {
    position: relative;
    margin-left: 71%;
    margin-top: -5%;
    margin-bottom: -2%;
}

@keyframes bird-left-anim {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 100% 0%;
    }

    50% {
        transform: rotate(-20deg);
    }
}

@keyframes bird-right-anim {

    0%,
    100% {
        transform-origin: 0% 100%;
        transform: rotate(0deg);
        scale: 1;
    }

    50% {
        transform: rotate(20deg);
    }
}

.bird2-left {
    margin-right: -0.7%;
    z-index: 300;
    width: 2%;
    position: relative;
    rotate: 50deg;
    animation: bird2-left-anim 2s linear infinite;
}

.bird2-right {
    z-index: 300;
    width: 2%;
    position: relative;
    animation: bird2-right-anim 2s linear infinite;
    rotate: 50deg;
}

@keyframes bird2-left-anim {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 100% 0%;
    }

    50% {
        transform: rotate(-20deg);
    }
}

@keyframes bird2-right-anim {

    0%,
    100% {
        transform-origin: 0% 100%;
        transform: rotate(0deg);
        scale: 1;
    }

    50% {
        transform: rotate(20deg);
    }
}

.bird3-left {
    width: 3%;
    margin-right: -0.4%;
    z-index: 300;
    position: relative;
    animation: bird3-left-anim 2.5s linear infinite;
}

.bird3-right {
    width: 3%;
    z-index: 300;
    position: relative;
    animation: bird3-right-anim 2.5s linear infinite;
}

@keyframes bird3-left-anim {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 100% 0%;
    }

    50% {
        transform: rotate(-15deg);
    }
}

@keyframes bird3-right-anim {

    0%,
    100% {
        transform-origin: 0% 100%;
        transform: rotate(0deg);
        scale: 1;
    }

    50% {
        transform: rotate(15deg);
    }
}

.bird4-left {
    width: 8%;
    margin-right: -0.4%;
    z-index: 300;
    position: relative;
    animation: bird4-left-anim 3s linear infinite;
}

.bird4-right {
    width: 8%;
    z-index: 300;
    position: relative;
    animation: bird4-right-anim 3s linear infinite;
}

@keyframes bird4-left-anim {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 100% 0%;
    }

    50% {
        transform: rotate(-20deg);
    }
}

@keyframes bird4-right-anim {

    0%,
    100% {
        transform-origin: 0% 100%;
        transform: rotate(0deg);
        scale: 1;
    }

    50% {
        transform: rotate(20deg);
    }
}

.bird5-left {
    width: 8%;
    margin-right: -1.9%;
    z-index: 300;
    position: relative;
    animation: bird5-left-anim 1.5s linear infinite;
    rotate: 40deg;
}

.bird5-right {
    width: 8%;
    z-index: 300;
    position: relative;
    animation: bird5-right-anim 1.5s linear infinite;
    rotate: 40deg;
}

@keyframes bird5-left-anim {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 100% 0%;
    }

    50% {
        transform: rotate(-10deg);
    }
}

@keyframes bird5-right-anim {

    0%,
    100% {
        transform-origin: 0% 100%;
        transform: rotate(0deg);
        scale: 1;
    }

    50% {
        transform: rotate(10deg);
    }
}

.bird6-left {
    width: 5%;
    margin-right: -1.5%;
    z-index: 300;
    position: relative;
    animation: bird6-left-anim 2s linear infinite;
    rotate: 20deg;
}

.bird6-right {
    width: 5%;
    z-index: 300;
    position: relative;
    animation: bird6-right-anim 2s linear infinite;
    rotate: 20deg;
}

@keyframes bird6-left-anim {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 100% 0%;
    }

    50% {
        transform: rotate(-25deg);
    }
}

@keyframes bird6-right-anim {

    0%,
    100% {
        transform-origin: 0% 100%;
        transform: rotate(0deg);
        scale: 1;
    }

    50% {
        transform: rotate(25deg);
    }
}

.cursus-kop {
    font-size: 25px;
}

.reflectieC iframe {
    width: 580px;
    height: 335px;
}


/* ALIGNMENT en instellingen gekleurde balk */
.heroBar {
    position: relative;
    background-color: var(--cardColor4);
    z-index: 500;
    width: 85%;
    height: 4rem;
    padding: 1% 0% 0% 1%;
    margin: -4.8% 0% 0% 7.5%;
}

/* ALIGNMENT en instellingen tekst gekleurde balk */
.heroBar h2 {
    color: var(--textColorLight);
    font-weight: 600;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ALIGNMENT en instellingen titel */
.heroTitel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    padding-top: 3%;
    font-size: 90px;
    margin-bottom: -14%;
}

/* Z-INDEX titel */
.cHero {
    z-index: 600;
}

/* Z-INDEX titel */
.uHero {
    z-index: 600;
}

/* Z-INDEX titel */
.sHero {
    z-index: 600;
}

/* Z-INDEX titel */
.oneHero {
    margin-left: 2rem;
}

/* ALIGNMENT navigatie in HERO */
.headerNav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding-top: 12%;
    margin: 0% 0% 0.5% 7.5%;
}

/* ALIGNMENT navigatie in HERO */
.headerNav h2 {
    color: var(--cardColor4);
    font-size: 20px;
}

/* ALIGNMENT navigatie in HERO */
.headerNav a,
h2 {
    transition: all 0.3s;
}

/* ALIGNMENT navigatie in HERO */
.headerNav a,
h2:hover {
    color: var(--textColorLight);
}

/* ================================= REISVERSLAG ==================================== */
/* ALIGNMENT titel */
.heroTitelR {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    padding-top: 3%;
    font-size: 80px;
    margin-bottom: -14%;
}

.rHeroR {
    z-index: 600;
}

.eHeroR {
    z-index: 600;
}

/* ALIGNMENT CARDS */
.cardsBig {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    row-gap: 2rem;
}

.cardsBig .cardR1 {
    background-color: var(--cardColor1);
}

.cardsBig .cardR2 {
    background-color: var(--cardColor3);
}

.cardsBig .cardR3 {
    background-color: var(--cardColor5);
}

/* ALIGNMENT CARDS met GRID */
.cardR1,
.cardR2,
.cardR3 {
    display: grid;
    width: 85%;
    height: 15rem;
    padding: 1rem;
    grid-template-columns: .1fr 1fr 1fr;
    grid-template-rows: .5fr 1fr;
    grid-template-areas:
        "cardNumber h3 h3"
        "p p p";
}

.cardNumber {
    grid-area: cardNumber;
}

.cardsBig h3 {
    grid-area: h3;
    font-size: 30px;
}

.cardsBig p {
    grid-area: p;
    margin-top: 1rem;
    width: 90%;
    justify-self: center;
    font-size: 18px;
}

.cardR1 {
    margin-top: 2rem;
}

.cardsSmall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.cardsSmall img {
    width: 580px
}

/* ================================= CONTACT ==================================== */
/* ALIGNMENT HERO titel */
.heroTitelC {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    padding-top: 3%;
    font-size: 100px;
    margin-bottom: -15%;
}

.iconsContact a {
    color: var(--textColorDark);
    text-decoration: underline;
}

.iconsContact a:hover {
    color: var(--cardColor3);
}

/* ALIGNMENT CARDS met GRID */
.cursus1MainContent .cardContact {
    width: 84.6%;
    height: 30rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: .105fr 1fr;
    grid-template-rows: .2fr 1fr .1fr;
    grid-template-areas:
        "h2 h3"
        "iconsContact iconsContact"
        "cursus1Lines cursus1Lines";
    margin-top: 2rem;
}

.cardContact h2 {
    grid-area: h2;
}

.cardContact h3 {
    grid-area: h3;
    font-size: 40px;
}

/* ALIGNMENT iconen en tekst met GRID */
.iconsContact {
    grid-area: iconsContact;
    display: grid;
    grid-template-columns: .1fr 1fr;
    align-items: center;
    justify-self: center;
    gap: 1rem;
    font-size: 25px;
}

/* instellingen KLEUR CARDs cursus1 */
.cursus1MainContent .cardContact:nth-child(1) {
    background-color: var(--cardColor1);
    justify-self: flex-end;

}

.cursus1MainContent .cardContact:nth-child(2) {
    background-color: var(--cardColor3);
    justify-self: flex-start;
}

/* ALIGNMENT en instellingen FORM */
.stuurEenBericht input {
    background-color: var(--cardColor4);
    border-style: none;
    border-radius: 30px;
    width: 20rem;
    height: 2rem;
    margin-bottom: 5%;
}

.stuurEenBericht label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10%;
}

.stuurEenBericht button {
    background-color: var(--cardColor2);
    border-style: none;
    border-radius: 30px;
    padding: .5rem 1rem .5rem 1rem;
    font-weight: 600;
    margin: 3% 0% 0% 100%;
    cursor: pointer;
}

.stuurEenBericht button:hover {
    background-color: var(--cardColor5);
}

.stuurEenBericht {
    margin-left: 30%;

}

/* ALIGNMENT titel CARD 2 */
.cardContact .card2Contact {
    margin-left: -100%;
}

.stuurEenBericht {
    margin-top: 30%;
}

.inputMessage input {
    height: 8rem;
    border-radius: 10px;
}

/* portfolio wall */

.cardsBigC {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    row-gap: 2rem;
    margin-top: 2rem;
}

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

.cardsSmallC img {
    width: 580px;
}

/* .cardsSmallC a {
    margin-top: -25%;
} */

.cardsSmallC iframe {
    width: 580px;
    height: 335px;
}

figcaption {
    width: 580px;
}

footer {
    overflow-y: hidden;
}

/* .imgcursus1 {
    margin-top: -40%;
} */


/* .cardsSmallC img {
    filter: grayscale(100%);
    transition: filter .2s; 
}

.cardsSmallC img:hover {
    filter: none; 
} */

/* ALIGNMENT en instellingen HERO MARQUEE */
.marqueeHeroF {
    position: absolute;
    width: 84.5%;
    max-width: 100%;
    height: 200px;
    overflow-x: hidden;
    font-size: 110px;
    font-weight: 600;
    margin-top: 18%;
    margin-left: 7.5%;
    z-index: 450;
}

/* ALIGNMENT en instellingen HERO MARQUEE */
.trackHeroF {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marqueeHeroAnim 80s linear infinite;
}

.contentMarqueeHeroF {
    color: var(--cardColor6);
}

/* ANIMATION MARQUEE */
@keyframes marqueeHeroAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ANIMATION bij HOVER pauzeren */
.trackHeroF:hover {
    animation-play-state: paused;
}

.reflectieC ul li{
    color: var(--textColorDark);
    list-style: disc;
}

.reflectieC {
    width: 85%;
    margin-left: 8%;
    font-size: 16px;
    margin-bottom: 5%;
    margin-top: 2%;
}

.reflectieC a {
    color: var(--cardColor5);
    font-style: italic;
}