@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
    --title-fonts: "Titillium Web", sans-serif;

    --color-text: #000000;
    --color-primary: #FE6D27;
    --color-white: #ffffff;
    --color-success: #33b420;
    --color-dark: #000000;
    --color-seconday: #053367;
}

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

body {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: var(--color-text);
    line-height: 1.3;
    padding: 0;
    margin: 0;
}

body.nav-open {
    overflow: hidden;
}

.wave-divider {
    position: absolute;
    left: 0;
    top: -60px;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.justify-between {
    justify-content: space-between;
}

.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1441px) {
    .container-fluid {
        padding-left: 4%;
        padding-right: 4%;
    }
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-fonts);
}

h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.25;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.25;
}

h3 {
    font-size: 36px;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

h5 {
    font-size: 20px;
    font-weight: 600;
}


.container .grid-container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.relative {
    position: relative;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.35s all ease-in-out;
}

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


.page-content ul {
    margin-left: 20px;
	list-style-type: unset;
}

.button {
    padding: 22px 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    margin: 0;
    transition: 0.35s all ease-in-out;
    display: inline-flex;
    gap: 10px;
    min-width: 120px;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    border-radius: 4px;
    font-family: var(--title-fonts);
}

.button i {
    font-size: 20px;
}

.button.white,
.button.white.disabled,
.button.white.disabled:focus,
.button.white.disabled:hover,
.button.white[disabled],
.button.white[disabled]:focus,
.button.white[disabled]:hover {
    background-color: var(--color-white) !important;
    color: var(--color-text) !important;
    font-weight: 700;
}

.button.primary,
.button.primary.disabled,
.button.primary.disabled:focus,
.button.primary.disabled:hover,
.button.primary[disabled],
.button.primary[disabled]:focus,
.button.primary[disabled]:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    box-shadow: inset -4px 0px 0px #DC4801;
}


.button.success,
.button.success.disabled,
.button.success.disabled:focus,
.button.success.disabled:hover,
.button.success[disabled],
.button.success[disabled]:focus,
.button.success[disabled]:hover {
    background-color: var(--color-success) !important;
    color: var(--color-white) !important;
}

.button.hollow,
.button.hollow.disabled,
.button.hollow.disabled:focus,
.button.hollow.disabled:hover,
.button.hollow[disabled],
.button.hollow[disabled]:focus,
.button.hollow[disabled]:hover {
    border-width: 2px;
    border-color: var(--color-primary);
    color: var(--color-text);
}

.button.hollow:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.button.white:hover {
    filter: brightness(80%);
}

.button.primary:hover,
.button.success:hover {
    filter: brightness(90%);
}

.button.warning:hover {
    filter: brightness(110%);
}

.primary-light:hover {
    filter: brightness(80%) !important;
}


.sec_title {
    max-width: 900px;
    margin: 0 auto 35px;
    text-align: center;
}

.sec_title span {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    font-family: "Allerta", sans-serif;;
}

.sec_title h1,
.sec_title h2,
.sec_title h3 {
    margin-bottom: 0;
}

.sec_title p {
    margin: 35px 0 0 0;
}

.menu .active>a {
    background: none;
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    h5 {
        font-size: 18px;
    }

    .button {
        padding: 14px 25px;
        font-size: 17px;
    }

    .sec_title span {
        font-size: 22px;
    }
}

/*--- Global Style End ---*/

/*--- Header Style Start ---*/
#site-canvas .header {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: 0.35s all ease-in-out;
    left: 0;
    top: 0;
    background-color: transparent;
}

#site-canvas .header-top {
    background-color: var(--color-white);
    padding: 20px 0 35px;
}

#site-canvas .header-top ul {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

#site-canvas .header-top a {
    font-size: 19px;
    color: var(--color-text);
    font-weight: 700;
    font-family: var(--title-fonts);
}

#site-canvas .header-top a:hover {
    color: var(--color-primary);
}

#site-canvas .header-bottom {
    padding: 15px 0 240px;
    position: relative;
    margin-top: -15px;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 100%);
}

#site-canvas header .header-overlay {
    position: absolute;
    left: 0;
    top: -10px;
    width: 100%;
}

#site-canvas header .header-overlay img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#site-canvas .header-bottom .wave-divider {
    position: absolute;
    left: 0;
    top: -53px;
    width: 100%;
    z-index: 3;
    height: 100px;
}

#site-canvas .header-bottom .container {
    position: relative;
    z-index: 10;
}

#site-canvas .header-row {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

#site-canvas .logo {
    transition: 0.35s all ease-in-out;
    display: flex;
    align-items: flex-start;
    max-width: 250px;
    flex: 0 0 250px;
}

#site-canvas .header.scrolled .logo {
    max-width: 150px;
}



#site-canvas .logo img,
#site-canvas .logo svg {
    width: 100%;
}


#site-canvas header.scrolled {
    top: -75px;
    padding: 0;
    background-color: var(--color-dark);
}

#site-canvas header.scrolled .header-bottom {
    padding: 20px 0;
}

#site-canvas header nav {
    padding-top: 30px;
}

#site-canvas .nav-mob {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

#site-canvas .nav-mob nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

#site-canvas nav > ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

#site-canvas nav li {
    position: relative;
}

#site-canvas nav ul a {
    color: var(--color-white);
    text-transform: capitalize;
    transition: 0.35s all ease-in-out;
    padding: 2px 1px 10px 1px;
    position: relative;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--title-fonts);
}

#site-canvas nav ul a:before {
    content: "";
    width: 0;
    height: 6px;
    background-color: var(--color-primary);
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: 0.35s ease-in-out;
}

#site-canvas nav ul a:hover,
#site-canvas nav ul .active a,
#site-canvas nav ul a.active {
    color: var(--color-primary);
}

#site-canvas nav ul .active a:before,
#site-canvas nav ul a.active:before {
    width: 100%;
}


#site-canvas .nav-mob .logo,
#site-canvas .menu-close-btn,
#site-canvas .menu-btn,
#site-canvas .nav-overlay {
    display: none;
    cursor: pointer;
}

#site-canvas .dropdown {
    background-color: var(--color-white);
    overflow: hidden;
    border: 1px solid var(--color-primary);
    padding: 10px;
    width: 100%;
    margin: 0 !important;
    display: none;
    border-radius: 0 !important;
    box-shadow: 0 6px 18px #0000000A;
}

#site-canvas .dropdown.active {
    display: block;
}

#site-canvas .dropdown a:before {
    content: none !important;
}

#site-canvas .dropdown a {
    display: inline-flex !important;
    align-items: center;
    padding: 15px 10px !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-text);
    letter-spacing: 0;
    opacity: 1;
}

#site-canvas .dropdown a:hover {
    color: var(--color-primary) !important;
}

#site-canvas .dropdown li + li {
    border-top: 1px solid var(--color-primary);
}

#site-canvas .has-dropdown > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: inherit;
    display: inline-block;
    font-size: 14px;
    margin-left: 6px;
}

#site-canvas .menu-btn svg,
#site-canvas .menu-close-btn svg {
    fill: var(--color-white);
}

#site-canvas header .button {
    font-weight: 700;
    color: var(--color-success) !important;
}

@media (min-width: 1024px) {
    .has-dropdown a:after {
        content: none !important;
    }

    #site-canvas .dropdown {
        position: absolute;
        top: calc(100% + 14px) !important;
        left: 0 !important;
        right: auto !important;
        display: block;
        z-index: -2;
        visibility: hidden;
        transition: 0.35s all ease-in-out;
        opacity: 0;
        width: 250px;
    }

    #site-canvas .header .nav-mob a:hover + .dropdown,
    #site-canvas .dropdown:hover,
    .has-dropdown.active .dropdown,
    .dropdown.active {
        top: 100% !important;
        z-index: 2;
        visibility: visible;
        opacity: 1;
    }

    .nav-mob .logo {
        display: none;
    }
}

@media (max-width: 1366px) {
    #site-canvas .header-bottom {
        padding-bottom: 100px;
    }
}

@media (max-width: 1199px) {
    #site-canvas nav > ul {
        gap: 20px;
    }

    #site-canvas .nav-mob {
        gap: 25px;
    }

    /*#site-canvas header .header-overlay {*/
    /*    height: 30px;*/
    /*}*/
}

@media (max-width: 1023px) {

    /*#site-canvas header .header-overlay {*/
    /*    height: 20px;*/
    /*}*/
    #site-canvas .header-top {
        padding: 15px 0 30px;
    }

    #site-canvas header.scrolled {
        top: -75px;
    }

    #site-canvas .header .logo {
        margin-bottom: 0;
        display: flex;
    }

    .nav-mob .button {
        display: inline-flex;
    }

    #site-canvas nav li {
        width: 100%;
    }

    #site-canvas .has-dropdown > a {
        display: inline-flex;
        align-items: center;
    }


    #site-canvas .dropdown {
        position: relative;
        display: none;
        max-width: 300px;
    }

    #site-canvas .menu .active > a {
        background-color: transparent;
    }


    nav {
        width: 100%;
        text-align: left;
    }

    #site-canvas nav > ul,
    #site-canvas .nav-mob nav {
        align-items: flex-start;
    }

    .nav-open #site-canvas .header {
        overflow: visible;
    }

    #site-canvas .header-row {
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    #site-canvas .nav-mob {
        position: absolute;
        top: 0;
        width: 100%;
        background-color: var(--color-dark);
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        right: 0;
        transition: 0.45s all ease-in-out;
        overflow: auto;
        display: none;
    }

    #site-canvas header.scrolled .nav-mob {
        top: 50px;
    }

    #site-canvas .nav-overlay {
        display: block;
        position: fixed;
        left: -60%;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        overflow: auto;
        transition: 0.65s all ease-in-out;
    }

    #site-canvas .nav-mob.show {
        right: 0;
        display: flex;
    }

    #site-canvas header nav {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
    }

    #site-canvas .nav-mob.show .nav-overlay {
        opacity: 1;
        visibility: visible;
        left: 0;
    }

    body.nav-open {
        overflow: hidden;
    }

    #site-canvas .nav-mob ul {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        align-items: flex-start;
        gap: 20px;
    }

    #site-canvas .menu-close-btn,
    #site-canvas .menu-btn {
        display: block;
        font-size: 0;
    }

    #site-canvas nav ul a {
        width: auto;
    }

    #site-canvas .menu-close-btn svg,
    #site-canvas .menu-btn svg {
        width: 35px;
        height: 25px;
    }

    #site-canvas .menu-close-btn {
        position: absolute;
        right: 15px;
        top: 35px;
    }

    #site-canvas .contact-list {
        order: 12;
    }

    #site-canvas .contact-list li,
    #site-canvas .contact-list a {
        font-size: 14px;
    }

    #site-canvas .nav-mob.show .logo {
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    #site-canvas .header-bottom .wave-divider {
        top: -35px;
        width: 150%;
        height: 60px;
    }
    #site-canvas header.scrolled .nav-mob {
        top: 0;
        padding-top: 0;
        padding-left: 15px;
    }
}

/*--- Header Style End ---*/

/*--- Hero Style Start ---*/
.hero-section {
    padding: 385px 0 250px;
    background-image: url("../img/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
} 

.hero-section:before {
    content: "";
    width: 29%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(62, 66, 64, 1);
    opacity: 0.8;
    z-index: -1;
}

.hero-section .hero-content {
    max-width: 375px;
}

.hero-section span {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    font-family: "Allerta", sans-serif;
}

.hero-section h1 {
    color: var(--color-white);
    margin: 0 0 20px 0;
    line-height: 1;
}

.hero-section p {
    color: #E4E4E4;
    line-height: 1.66;
    font-family: "Roboto", sans-serif;
    margin: 0 0 25px 0;
}

.hero-section .hero-btns {
    display: flex;
    gap: 30px;
}

@media (max-width: 1199px) {
    .hero-section {
        padding: 270px 0 170px;
    }

    .hero-section:before {
        width: 55%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 270px 0 120px;
    }

    #site-canvas .logo {
        display: flex;
        max-width: 200px;
        flex: 0 0 200px;
    }

    .hero-section:before {
        width: 100%;
    }

    .hero-section .hero-btns {
        display: flex;
        gap: 20px;
    }

    #site-canvas .nav-mob {
        gap: 0;
    }
}

/*--- Hero Style End ---*/


/*--- Highlights Style Start ---*/
.highlights-section {
    position: relative;
    background-color: unset;
    z-index: 1;
	margin-top: -25px;
}

.highlights-section .highlight-overlay {
    position: absolute;
    left: 0;
    top: -15px;
    width: 100%;
}

.highlights-section .highlight-overlay img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.highlight-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.highlight-card__img {
    padding-bottom: 70%;
    position: relative;
}

.highlight-card__img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.highlight-card__body {
    border: 2px solid #F4F3F0;
    padding: 25px 30px;
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    height: 100%;
}

@media (max-width: 1023px) {
    .highlights-section {
        padding: 70px 0;
    }

    .highlights-section .grid-x > .cell {
        margin-bottom: 35px;
    }

    .highlights-section .grid-x > .cell:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .highlights-section .highlight-overlay {
        top: -12px;
    }
}

/*--- Highlights Style End ---*/

/*--- TopSport Section Style Start ---*/
.topsport-section {
    padding: 130px 0 180px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* full width achtergrond via pseudo element */
.topsport-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url("/public/templates/iich/img/bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: -1;
}

/* oude bg img verbergen, is niet meer nodig */
.topsport-section .topsport-bg {
    display: none;
}

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

.topsport-section .topsport-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 50px;
    padding-left: 30px;
}

.topsport-section .sec_title {
    text-align: left;
}

.topsport-section .sec_title p {
    margin-top: 25px !important;
}

.topsport-section .topsport-strips {
    display: flex;
    margin-top: auto;
    margin-left: -130px;
}

.topsport-section .topsport-strips > div {
    padding: 50px 30px;
    background-color: #5A5A5A;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 6px 0 0 6px;
    border-left: 3px solid var(--color-primary);
    width: 50%;
}

.topsport-section .topsport-strips > div:last-child {
    background-color: var(--color-dark);
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.topsport-section .topsport-strips > div * {
    margin: 0;
}

.topsport-section .topsport-strips span {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--title-fonts);
}

.topsport-section .topsport-strips h4 {
    color: var(--color-white);
    text-transform: capitalize;
}

.subsponsor-title {
    text-align: center;
    color: var(--color-primary);
    font-size: 38px;
    margin-bottom: 40px;
    font-family: var(--title-fonts);
	font-weight: 700;
}

.logo-grid {
    padding: 40px 0 80px;
}

.logo-item {
    width: 100%;
    height: 160px; /* of het formaat dat jij eerder gebruikte */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}




@media (max-width: 1366px) {
    .topsport-section .topsport-info {
        padding-left: 0;
    }

    .topsport-section .topsport-strips > div {
        padding: 40px 20px;
    }
}


@media (max-width: 1023px) {
    .topsport-section {
        padding: 70px 0;
    }

    .topsport-section .topsport-img,
    .topsport-section .topsport-info {
        max-width: 700px;
        margin: 20px 0;
    }

    .topsport-section .topsport-strips {
        margin: 0;
    }

    .topsport-section .topsport-info .sec_title {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .topsport-strips > div {
        padding: 35px 15px;
    }

    .topsport-strips span {
        font-size: 16px;
    }

    .topsport-strips h4 {
        font-size: 22px;
    }
}

/*--- TopSport Section Style End ---*/

/* SECTION */
.stats-section {
    padding: 150px 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* donkere achtergrond full width */
.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background-color: #262927;
    z-index: -2;
}

/* overlay full width BOVEN DE SECTION – golfje */
.stats-section .stats-overlay {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -1;
}

.stats-section .stats-overlay img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* STAT CARDS */
.stats-section .stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stats-section .stat-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
}

.stats-section .stat-icon img {
    object-fit: contain;
}

.stats-section .stat-card > * {
    margin: 0;
    line-height: 1;
}

.stats-section .stat-card span {
    color: var(--color-primary);
    font-size: 24px;
}

.stats-section .stat-card h2 {
    color: var(--color-white);
}

/* TABLET */
@media (max-width: 1023px) {
    .stats-section {
        padding: 100px 0;
    }

    .stats-section .cell {
        margin-bottom: 30px;
    }

    .stats-section .cell:last-child {
        margin-bottom: 0;
    }

    .stats-section .stat-icon {
        width: 120px;
        height: 120px;
    }
}

/* MOBIEL */
@media (max-width: 767px) {
    .stats-section {
        padding: 70px 0;
    }

    .stats-section .stats-overlay {
        top: -12px;
    }
}


/*--- Stats Section Style End ---*/

/*--- Social Section Style Start ---*/
.social-section {
    position: relative;
    padding: 150px 0;
    z-index: 2;
}

.social-section .social-overlay,
.social-section .social-bottom {
    position: absolute;
    left: 0;
    top: -17px;
    width: 100%;
    height: auto;
}

.social-section .social-bottom {
    top: auto;
    bottom: -17px;
}

.social-section img,
.social-bottom img {
    width: 100%;
    object-fit: contain;
}

.social-section .social-overlay img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.social-section .social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-section .social-card {
    flex: 0 0 calc(20% - 8px);
    position: relative;
    padding-bottom: 25%;
    overflow: hidden;
    transition: 0.5s all ease-in-out;
}


.social-section .social-card img,
.social-section .social-card video,
.social-section .social-card iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-section .social_info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(254, 109, 39, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    gap: 15px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: 0.5s all ease-in-out;
}

.social-section .social_info {
    color: var(--color-white);
}

.social-section .social_info * {
    margin: 0;
}

.social-section .like_comm {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-section .social-card:hover .social_info {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

@media (max-width: 1023px) {
    .social-section {
        padding: 100px 0;
    }

    .social-section .social-card {
        flex: 0 0 calc(33% - 8px);
    }
}

@media (max-width: 767px) {
    .social-section {
        padding: 70px 0;
    }

    .social-section .social-card {
        flex: 0 0 calc(50% - 8px);
        padding-bottom: 56.25%;
    }

    .social-section .social-overlay {
        top: -12px;
    }

    .social-section .social-bottom {
        bottom: -10px;
    }
}

/*--- Social Section Style End ---*/

.visitors-section {
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* full width achterlaag desktop: 2 vlakken naast elkaar */
.visitors-section::before,
.visitors-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 50vw;
    height: 100%;
    transform: translateX(-100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* linker vlak desktop */
.visitors-section::before {
    background-image:
        linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
        url("/public/templates/iich/img/visitor-img1.png");
}

/* rechter vlak desktop */
.visitors-section::after {
    transform: translateX(0);
    background-image:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("/public/templates/iich/img/visitor-img2.png");
}

/* kolommen */
.visitors-section .visitor-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 130px 100px;
    min-height: 900px;
    z-index: 1;
}

/* originele img */
.visitors-section .visitor-col img {
    display: none;
}

.visitors-section .visitor-info {
    max-width: 600px;
    position: relative;
    z-index: 3;
}

.visitors-section .sec_title {
    text-align: left;
}

.visitors-section .cell:first-child .visitor-col {
    justify-content: flex-end;
}

.visitors-section .cell:nth-child(2) h2 {
    color: var(--color-white);
}

/* ---------------------------- */
/*        MOBIEL OPLOSSING      */
/* ---------------------------- */

@media (max-width: 900px) {

    /* achtergrond resetten */
    .visitors-section::before,
    .visitors-section::after {
        width: 100vw;
        transform: translateX(-50%);
        height: 50vh;
    }

    /* bovenste blok = foto 1 */
    .visitors-section::before {
        top: 0;
    }

    /* onderste blok = foto 2 */
    .visitors-section::after {
        top: 50vh;
    }

    /* content blokken onder elkaar */
    .visitors-section .visitor-col {
        min-height: 50vh;
        padding: 80px 30px;
        align-items: flex-end;
    }

    /* wit / zwart overlay automatisch via ::before/::after */
    .visitors-section .cell:first-child .visitor-col {
        justify-content: flex-end;
    }

    .visitors-section .cell:nth-child(2) .visitor-col {
        justify-content: flex-end;
    }
}



@media (max-width: 1366px) {
    .visitors-section .visitor-col {
        min-height: 750px;
    }
}

@media (max-width: 1199px) {
    .visitors-section .visitor-col {
        padding: 100px 50px;
    }
}

@media (max-width: 1023px) {
    .visitors-section .visitor-col {
        padding: 70px 30px;
    }

    .visitors-section .cell:first-child .visitor-col {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .visitors-section .visitor-col {
        min-height: 400px;
        padding: 70px 15px;
    }
}

/*--- Visitors Section Style End ---*/


/*--- News Section Style Start ---*/
.news-section {
    padding: 150px 0;
    background-image: url("../img/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: -20px 0;
    position: relative;
    z-index: 3;
}

.news-section .sec_title {
    margin-bottom: 80px;
}

.news-section .news-card {
    position: relative;
    /*background-color: var(--color-white);*/
}

.news-section .news-card .news-card__img {
    padding-bottom: 77%;
    position: relative;
    border-radius: 3px;
}

.news-section .news-card .news-card__img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-section .news-card .news-date {
    position: absolute;
    top: -20px;
    left: 20px;
    background-position: var(--color-primary);
    z-index: 1;
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    box-shadow: inset 0 4px 0px #DC4801;
    padding: 10px 20px;
    border-radius: 2px;
    text-align: center;
    width: 70px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: capitalize;
}

.news-section .news-card .news-card__body {
    padding: 20px 15px 30px;
    min-height: 120px;
    border-bottom: 1px solid rgba(224, 224, 224, 1);;
}

.news-section .news-card h4,
.news-section .news-card h5,
.news-section .news-card h6 {
    font-weight: 700;
}

@media (max-width: 1023px) {
    .news-section {
        padding: 100px 0;
    }
}

@media (max-width: 1023px) {
    .news-section {
        padding: 70px 0;
    }

    .news-section .news-card {
        margin-bottom: 35px;
    }

    .news-section .news-card .news-card__body {
        min-height: auto;
    }

    .news-section .sec_title {
        margin-bottom: 60px;
    }
}

/*--- News Section Style End ---*/


/*--- Footer Style Start ---*/
footer {
    background-color: #151514;
}

footer .ftr-top {
    padding: 150px 0 70px 0;
}


footer .grid-x {
    justify-content: space-between;
    row-gap: 35px;
}

footer .cell {
    width: 100%;
    max-width: 20%;
    flex: 0 0 20%;
}

footer .cell:nth-child(1) {
    max-width: 33%;
    flex: 0 0 33%;
}

footer .logo {
    margin-bottom: 30px;
}

footer p,
footer a,
footer h4 {
    color: var(--color-white);
}

footer .ftr-info p {
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    color: #D9D9D9;
}

footer h4 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

footer h4:before,
footer h4:after {
    content: "";
    height: 1px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    bottom: 6px;
    display: block;
    width: 80px;
    border-radius: 3px;
}

footer h4:after {
    width: 40px;
    bottom: 0;
}

footer a:hover {
    color: var(--color-primary);
}

footer ul li + li {
    margin-top: 5px;
}

footer ul p {
    margin: 0;
}

footer .info-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .info-list li:before {
    content: "";
    color: var(--color-primary);
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

footer .social_list li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: capitalize;
    font-family: var(--title-fonts);
}

footer .social_list li + li {
    margin-top: 15px;
}

footer .social_list img {
    width: 40px;
}

footer .ftr-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
    text-align: center;
}

footer .ftr-bottom p {
    margin: 0;
    text-transform: capitalize;
}

@media (max-width: 1199px) {

}

@media (max-width: 1023px) {
    footer .cell,
    footer .cell:nth-child(1) {
        width: auto;
        max-width: 50%;
        flex: 0 0 50%;
    }

    footer .ftr-top {
        background-color: rgba(4, 60, 194, 0.05);
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    footer .cell,
    footer .cell:nth-child(1) {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/*--- Footer Style End ---*/
