/* cmsms stylesheet: NCC - Footer modified: dinsdag 29 augustus 2023 09:35:22 */
footer{
    margin-top:auto;
}
footer img.logo{
    width: 40%;
}
footer a{
    text-decoration: none;
    opacity: .8;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
footer a:hover{
    opacity: 1;
}
.footer_menu-items a{
    display: block;
    margin-top: 8px;
    font-size: var(--step--1);
}
.footer_social_icons{
    display: flex;
    gap:16px;
    justify-content: flex-start;
}
.footer_social_icons a{
  display: flex;
}
.footer_social_icons img{
    flex:1;
    width: calc(33% - 16px);
    max-width: 32px;
}
footer button.button input, footer a.button {
  font-size: var(--step--1);
}
@media only screen and (min-width: 768px) {
    footer img.logo{
        width: 20%;
        max-width: 200px;
    }
  
  }
/* cmsms stylesheet: NCC - Grid modified: maandag 17 juli 2023 12:56:51 */
/********************************************************************************
   * Layout
********************************************************************************/
body {
    margin: 0;
}

/********************************************************************************
   * Grid
********************************************************************************/

/* CONTAINER */
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;

}

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (min-width: 768px) {
    .container {
        width: 672px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        width: 896px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        width: 1104px;
    }
}

@media only screen and (min-width: 1440px) {
    .container {
        width: 1344px;
    }
}

@media only screen and (min-width: 1920px) {
    .container {
        width: 1824px;
    }
}

/* ROW */
.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1.2rem;
    position: relative;
}

.vertical-align {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}



[class^=' col-'],
[class*=' col-'] {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.col-text{
    grid-column: span 12;
}
.col-xs-12 {
    grid-column: span 12;
}

.col-xs-11 {
    grid-column: span 11;
}

.col-xs-10 {
    grid-column: span 10;
}

.col-xs-9 {
    grid-column: span 9;
}

.col-xs-8 {
    grid-column: span 8;
}

.col-xs-7 {
    grid-column: span 7;
}

.col-xs-6 {
    grid-column: span 6;
}

.col-xs-5 {
    grid-column: span 5;
}

.col-xs-4 {
    grid-column: span 4;
}

.col-xs-3 {
    grid-column: span 3;
}

.col-xs-2 {
    grid-column: span 2;
}

.col-xs-1 {
    grid-column: span 1;
}

.hide-on-mobile {
    display: none;
}

.hide-on-tablet {
    display: none;
}


@media only screen and (min-width: 768px) {
    
    .row {
        grid-gap: 1.6rem;
    }
    .hide-on-mobile {
        display: block;
    }

    .hide-on-mobile.hide-on-tablet {
        display: none;
    }
    .col-text {
        grid-column: 2 / span 10;
    }
    .col-sm-12 {
        grid-column: span 12;
    }

    .col-sm-11 {
        grid-column: span 11;
    }

    .col-sm-10 {
        grid-column: span 10;
    }

    .col-sm-9 {
        grid-column: span 9;
    }

    .col-sm-8 {
        grid-column: span 8;
    }

    .col-sm-7 {
        grid-column: span 7;
    }

    .col-sm-6 {
        grid-column: span 6;
    }

    .col-sm-5 {
        grid-column: span 5;
    }

    .col-sm-4 {
        grid-column: span 4;
    }

    .col-sm-3 {
        grid-column: span 3;
    }

    .col-sm-2 {
        grid-column: span 2;
    }

    .col-sm-1 {
        grid-column: span 1;
    }

}

@media only screen and (min-width: 992px) {
    .hide-on-mobile.hide-on-tablet {
        display: block;
    }

    .hide-on-tablet {
        display: block;
    }

    .hide-on-desktop {
        display: none;
    }

    .col-md-12 {
        grid-column: span 12;
    }

    .col-md-11 {
        grid-column: span 11;
    }

    .col-md-10 {
        grid-column: span 10;
    }

    .col-md-9 {
        grid-column: span 9;
    }

    .col-md-8 {
        grid-column: span 8;
    }

    .col-md-7 {
        grid-column: span 7;
    }

    .col-md-6 {
        grid-column: span 6;
    }

    .col-md-5 {
        grid-column: span 5;
    }

    .col-md-4 {
        grid-column: span 4;
    }

    .col-md-3 {
        grid-column: span 3;
    }

    .col-md-2 {
        grid-column: span 2;
    }

    .col-md-1 {
        grid-column: span 1;
    }
}

@media only screen and (min-width: 1200px) {
    .col-text{
        grid-column: 3 / span 8;
    } 
    .col-lg-12 {
        grid-column: span 12;
    }

    .col-lg-11 {
        grid-column: span 11;
    }

    .col-lg-10 {
        grid-column: span 10;
    }

    .col-lg-9 {
        grid-column: span 9;
    }

    .col-lg-8 {
        grid-column: span 8;
    }

    .col-lg-7 {
        grid-column: span 7;
    }

    .col-lg-6 {
        grid-column: span 6;
    }

    .col-lg-5 {
        grid-column: span 5;
    }

    .col-lg-4 {
        grid-column: span 4;
    }

    .col-lg-3 {
        grid-column: span 3;
    }

    .col-lg-2 {
        grid-column: span 2;
    }

    .col-lg-1 {
        grid-column: span 1;
    }
}

/********************************************************************************
   * Spacing
   ********************************************************************************/
/*Padding*/
.p-0 {
    padding: 0rem 0rem 0rem 0rem;
}

.p-1 {
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
}

.p-2 {
    padding: 1.6rem 1.6rem 1.6rem 1.6rem;
}

.p-3 {
    padding: 3.2rem 3.2rem 3.2rem 3.2rem;
}

.p-4 {
    padding: 5.6rem 5.6rem 5.6rem 5.6rem;
}

/*Padding-top*/
.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.8rem;
}

.pt-2 {
    padding-top: 1.6rem;
}

.pt-3 {
    padding-top: 3.2rem;
}

.pt-4 {
    padding-top: 5.6rem;
}

/*Padding-right*/
.pr-0 {
    padding-right: 0;
}

.pr-1 {
    padding-right: 0.8rem;
}

.pr-2 {
    padding-right: 1.6rem;
}

.pr-3 {
    padding-right: 3.2rem;
}

.pr-4 {
    padding-right: 5.6rem;
}

/*Padding-bottom*/
.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.8rem;
}

.pb-2 {
    padding-bottom: 1.6rem;
}

.pb-3 {
    padding-bottom: 3.2rem;
}

.pb-4 {
    padding-bottom: 5.6rem;
}

/*Padding-left*/
.pl-0 {
    padding-left: 0;
}

.pl-1 {
    padding-left: 0.8rem;
}

.pl-2 {
    padding-left: 1.6rem;
}

.pl-3 {
    padding-left: 3.2rem;
}

.pl-4 {
    padding-left: 5.6rem;
}


/*Margin*/
.m-0 {
    margin: 0rem 0rem 0rem 0rem;
}

.m-1 {
    margin: 0.8rem 0.8rem 0.8rem 0.8rem;
}

.m-2 {
    margin: 1.6rem 1.6rem 1.6rem 1.6rem;
}

.m-3 {
    margin: 3.2rem 3.2rem 3.2rem 3.2rem;
}

.m-4 {
    margin: 5.6rem 5.6rem 5.6rem 5.6rem;
}

/*margin-top*/
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.8rem;
}

.mt-2 {
    margin-top: 1.6rem;
}

.mt-3 {
    margin-top: 3.2rem;
}

.mt-4 {
    margin-top: 5.6rem;
}

/*margin-right*/
.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 0.8rem;
}

.mr-2 {
    margin-right: 1.6rem;
}

.mr-3 {
    margin-right: 3.2rem;
}

.mr-4 {
    margin-right: 5.6rem;
}

/*margin-bottom*/
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.8rem;
}

.mb-2 {
    margin-bottom: 1.6rem;
}

.mb-3 {
    margin-bottom: 3.2rem;
}

.mb-4 {
    margin-bottom: 5.6rem;
}

/*margin-left*/
.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 0.8rem;
}

.ml-2 {
    margin-left: 1.6rem;
}

.ml-3 {
    margin-left: 3.2rem;
}

.ml-4 {
    margin-left: 5.6rem;
}
/* cmsms stylesheet: NCC - Homepage modified: vrijdag 14 maart 2025 14:14:26 */
/* Countdown*/
.container_countdown h3 {
    text-align: center;
}
.container_countdown {
    background-image: url(/assets/images/countdown-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.countdown-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.date-container,
.days-container,
.hours-container,
.minutes-container,
.seconds-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 24%;
    max-width: 140px;
    height: 140px;
}
.date,
.days,
.hours,
.minutes,
.seconds {
    font-size: var(--step-6);
    margin: 10px 0;
    font-weight: 800;
    text-shadow: 0px 0px 15px var(--primary-color);
}
.month-label,
.days-label,
.hours-label,
.minutes-label,
.seconds-label {
    font-weight: 900;
    text-transform: uppercase;
    font-size: var(--step--0);
}
/* News */
.news_card {
    position: relative;
    height: 100%;
    background-color: var(--tertiary-color);
    display: block;
    margin-bottom: -4px;
    object-position: center center;
}
a.news_card {
    color: var(--neutral-color);
    text-decoration: none;
}
.news_card img {
    object-fit: cover;
    height: 250px;
    width: auto;
    min-width: 100%;
    max-width: 100%;
}
.news_card h5 {
    position: absolute;
    padding: 16px;
    top:0;
    left:0;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    z-index: 2;
}
.news_card button {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .9) !important;
    color: var(--primary-color) !important;
}
.news_card:hover button {
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color);
}
/* Highlights */
.highlights_content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px 16px;
}
.highlight_item {
    flex: 1;
    position: relative;
    color: var(--neutral-color);
}
.highlight_item img {
    width: 100%;
    position: relative;
    display: block;
}
.highlight_item_overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: linear-gradient(180deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    mix-blend-mode: overlay;
    opacity: .5;
}
.highlight_item .highlight_title {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
}
.highlight_item .highlight_title h5{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    z-index: 2;
}
.highlight_item .highlight_title h6{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    z-index: 2;
    color: var(--primary-color);
}
.highlight_item_video::before {
    content: '\e039';
    font-family: 'Material Icons';
    color: var(--primary-color);
    font-size: 10rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.highlight_item_picture .highlight_item_overlay:before {
    opacity: 0;
}
.highlight_item_empty {
    background-color: var(--primary-color);
    color: var(--dark-color);
}
.highlight_item_empty h5 {
    padding-right: 28px;
}
.highlight_item_empty h5::before {
    content: '\f1df';
    font-family: 'Material Icons';
    color: var(--secondary-color);
    font-size: var(--step-4);
    position: absolute;
    top: -6px;
    right: 0;
    z-index: 1;
}
.break {
    flex-basis: 100%;
    height: 0;
}
/* sponsoren */
.sponsor_logo {
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
}
.home .container_sponsor .row .col-xs-4:nth-child(n+8){
    display: none;
}
@media only screen and (min-width: 768px) {
    .highlights_content {
        flex-direction: row;
    }
    .home .container_sponsor .row .col-xs-4:nth-child(n+8){
        display: inherit;
    }
    .home .container_sponsor .row .col-xs-4:nth-child(n+10){
        display: none;
    }
}
@media only screen and (min-width: 992px) {
    .highlights_content div:nth-child(6) {
        display: none;
    }
    .home .container_sponsor .row .col-xs-4:nth-child(n+10){
        display: inherit;
    }
    .home .container_sponsor .row .col-xs-4:nth-child(n+14){
        display: none;
    }
}


/* popup */
.popup-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.popup-frame .popup-frame-container {
    width: 100%;
    height: 100%;
    text-align: center;
}
.popup-frame iframe {
    height: 90vh;
    width: 90vw;
    margin-top: 5vh;
}
.popup-frame .popup-frame--close {
    display: inline-block;
    position: absolute;
    right: 5vw;
    top: 2vh;
    cursor: pointer;
}
/* cmsms stylesheet: NCC - Main modified: vrijdag 14 maart 2025 13:36:25 */
/* Algemeen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    display: flex;    
    flex-direction: column;
    min-height: 100vh;
}
a {
    color: var(--light-blue);
}
img {
    max-width: 100%;
    height: auto;
}
hr.footer{
    border: 1px solid var(--secondary-color);
    margin-bottom: 64px;
    margin-top: -1px;
}
/* Einde Algemeen */
/* Buttons */
.submit {
    padding: 12px 16px;
    width: fit-content;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
}
.submit:hover {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--light-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
input.cms_submit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: var(--step-0);
    letter-spacing: 0.96px;
    text-decoration: none;
    text-decoration: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
    padding: 0;
    min-height: unset;
}
.formbuilderform input[type=text] {
    display: block;
    width: 100%;
    margin: 8px 0 16px 0;
    font-size: var(--step-0);
}
.button_group {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
button.button,
.button {
    padding: 12px 16px;
    width: fit-content;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    cursor: pointer;
}
button.button:hover,
.button:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.newsletter #mc_embed_signup .button,
button.button input,
a.button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: var(--step-0);
    letter-spacing: 0.96px;
    text-decoration: none;
    text-decoration: none;
}
button.button input{
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--tertiary-color);
    padding: 0;
    min-height: unset;
}
button.button:hover input{
    color: var(--light-color);
}
.small_button {
    font-size: var(--step--1) !important;
}
.newsletter #mc_embed_signup .button,
button.button,
a.primary_button {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    display: block;
    border-radius: 0;
}
.newsletter #mc_embed_signup .button:hover,
button.button:hover,
a.primary_button:hover {
    background-color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color);
    color: var(--light-color) !important;
}
a.secondary_button {
    background-color: var(--dark-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
a.secondary_button:hover {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.tertiary-primary_button {
    background-color: var(--tertiary-color);
    color: var(--dark-color);
}
.cta_button{
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    position: sticky;
    top: 75vh;
    z-index: 9999;
}
a.cta_button{
    font-weight: 700;
}
.tertiary-link.button{
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color) !important;
    padding: 4px 8px;
    border: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    margin-top: auto;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
.tertiary-link.button:hover{
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
}
.container-news_detail .button{
    display: block;
    margin-top: 32px;
}
/* Einde buttons */
/* Header*/
.container_header {
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%),
        url('/assets/images/homepage_header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vh;
}
.container_subheader {
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%),
        url('/assets/images/homepage_header.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
}
.speaker_detail .container_subheader {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%),
        url('/assets/images/_FPH0529.JPG');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
}
.news_detail .container_subheader {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%),
        url('/uploads/homepage%205.png');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
}
.container_header h3 {
    font-weight: 500;
    color: var(--primary-color);
}
/* Einde Header*/
/* form */
label{
    font-family: 'Montserrat', sans-serif;
    font-size: var(--step--1);
    letter-spacing: 0.68px;
}
label input{
    display: block;
    width: 100%;
    margin: 8px 0 16px 0;
    font-size: var(--step-0);
}
input{
    background-color: rgba(34, 0, 128, 0.7);
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    color: var(--light-color);
    min-height: 48px;
    padding: 8px 16px;
}
.formbuilderform .required label{
    display: block;
}
.formbuilderform .required input{
    width: 100%;
    margin-top: 8px;
}
.formbuilderform .required .cms_checkbox{
    width: 100%;
    margin-top: 8px;
    width: 32px;
    height: 32px;
}
.formbuilderform .required {
    margin-bottom: 32px;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--light-color);
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--light-color);
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--light-color);
  }
  
 .col-text img{
    margin: 32px auto;
    display: block;
}
.col-text p{
    margin-bottom: 16px;
}
ul, ol {
    font-size: var(--step-0);
    padding-left: 18px;
    margin-bottom: 16px;
}
li{
    margin-bottom: 8px;
}

 /**** cookiebanner ****/
 
 .cookiebanner {
     background: var(--dark-color);
     bottom: 0;
     display: none;
     left: 0;
     padding: 1em;
     position: fixed;
     text-align: center;
     right: 0;
     z-index: 9999;
 }
 
 .cookiebanner_buttons {
     margin: 0 0 1em 0;
 }
 
 .cookiebanner_button {
     background: var(--primary-color);
     color: var(--light-color) !important;
     display: inline-block;
     padding: 0.5em 1em;
     text-decoration: none !important;
 }
 
 .cookiebanner_button:hover {
     background: var(--secondary-color);
 }
 
 .cookiebanner_text {
     font-size: var(--step--1);
 }

@media only screen and (min-width: 768px) {
    .cta_button{
        top: 50vh;
    }
}
/* cmsms stylesheet: NCC - Navigation modified: vrijdag 14 maart 2025 13:26:46 */
/* Navigatiemenu*/
.menu-topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    min-height: 34px;
  }
  .menu-topbar span {
    font-size: var(--step-0);
  }
  .menu-topbar .material-icons {
    padding-top: 4px;
  }
  .menu-topbar a {
    font-size: var(--step--2);
  }
  .menu-topbar select {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    padding-top: 4px;
  }
  .search-toggle {
    cursor: pointer;
  }
  input.search-input {
    padding: 8px;
    min-height: unset;
  }

  nav {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--dark-color);
  }
  nav .logo {
    width: auto;
    float: left;
    box-sizing: border-box;
    max-height: 32px;
    vertical-align: middle;
    margin-top: 32px;
    margin-bottom: 16px;
  }
  nav .menu-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0;
    margin-top: 8px;
    min-height: 52px;
    flex-direction: column;
  }
  #toggle-icon {
    display: none;
  }
  nav .menu .links {
    text-align: center;
  }
  nav .menu .links > ul{
    font-size: var(--step-0);
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  nav .menu .links li {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    padding: 0 8px 8px 8px;
  }

  nav .menu .links li a {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    display: block;
    color: var(--light-color);
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: var(--step--1);
  }
  nav .menu .links li a.menuactive,
  nav .menu .links .dropdown a.menuactive + .arrow-icon,
  nav .menu .links li a.active,
  nav .menu .links li a:hover {
    color: var(--light-color);
  }
  nav .menu .links .dropdown {
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  nav .menu .links .dropdown:hover .arrow-icon {
    transform: rotate(90deg);
    color: var(--primary-color);
  }

  nav .menu .links .dropdown .submenu {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 200px;
    text-align: left;
    display: none;
    padding-left: 0;
  }

  nav .menu .links .dropdown .submenu li {
    background-color: var(--primary-color);
    margin-bottom: 8px;
    margin-top: 0px;
    padding: 8px;
    display: block;
    transition: .3s ease-in-out;
  }
  nav .menu .links .dropdown .submenu li:hover {
    background-color: rgba(33, 208, 235, 0.7);
    color: var(--light-color);
  }
  nav .menu .links .dropdown .submenu li:hover a {
    color: var(--light-color);
  }
  @media (min-width: 320px) and (max-width: 1200px) {
    nav .menu-container {
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
      margin-top: 32px;
      min-height: 52px;
    }
    #toggle-icon {
      display: block;
      color: white;
      position: relative;
      z-index: 1;
      cursor: pointer;
    }
    .toggle-icon .material-icons {
      font-size: 48px;
    }
    .toggle-icon .icon_close {
      display: none;
    }
    .active-bar .icon_menu {
      display: none;
    }
    .active-bar .icon_close {
      display: block;
    }
    nav .logo {
      position: relative;
    }
    nav .menu {
      width: 100%;
      background-color: #000;
      position: absolute;
      top: 84px;
      height: calc(100vh - 84px);
      display: none;
    }
    nav .active-menu {
      top: 0%;
    }
    nav .menu .links {
      text-align: center;
      width: 100%;
      background-color: black;
      height: 100%;
      padding: 32px 0 32px 0;
    }
    nav .menu .links li {
      display: block;
      margin-top: 32px;

    }
    nav .menu .links > ul {
      font-size: var(--step-0);
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-direction: column;
  }
  nav .menu .links .dropdown {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50%;
  }
  nav .menu .links .dropdown .arrow-icon {
    position: absolute;
    right: -48px;
    cursor: pointer;
  }
    nav .menu .links .dropdown .submenu {
      position: static;
      color: var(--light-color);
      width: 100%;
      text-align: center;
    }

    nav .menu .links li a {
      font-size: var(--step-2);
    }
    nav .menu .links .dropdown .submenu li:first-of-type{
      margin-top:16px;
    }
  }
  @media (min-width: 1200px) {
  nav .menu .links .dropdown:hover .submenu{
    display: block;
  }
  }
/* cmsms stylesheet: NCC - Program modified: maandag 17 juli 2023 12:57:35 */
.col-legenda h5 {
    margin-bottom: 16px;
}

.col-legenda p {
    display: flex;
}

.legenda_items {
    columns: 120px 2;
}

.legenda_items .material-icons {
    margin-right: 8px;
}

.material-icons.myopie {
    color: var(--primary-color)
}

.material-icons.keratoconus {
    color: var(--secondary-color);
}

.material-icons.presbyopie {
    color: #604184
}

.material-icons.dry_eyes {
    color: var(--tertiary-color);
}

.material-icons.other {
    color: #6A6E73;
}
@media only screen and (min-width: 768px) {
    .legenda_items {
        columns: 124px 3;
    }
}
/* cmsms stylesheet: NCC - Scientific modified: dinsdag 29 augustus 2023 14:09:42 */
.scientific_nav {
    background-color: var(--tertiary-color);
    z-index: 60;
}
.scientific_nav ul {
    list-style: none;
}
.scientific_nav ul {
    list-style: none;
}
.scientific_nav ul a {
    color: var(--neutral-color);
    text-decoration: none;
    opacity: 0.8;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
.scientific_nav ul .active a {
    opacity: 1;
}
.scientific_nav ul a:hover {
    color: var(--primary-color);
    opacity: 1;
}
input.search {
    float: right;
    font-size: var(  --step--1);
    width: 260px;
    margin-bottom: 32px;
    border: 1px solid var(--light-color);
    border-radius: 24px;
    display: block;
    background: rgba(0, 0, 0, 0.7) url("/assets/images/search_white_24dp.svg") no-repeat 13px;
    background-position: center right 8px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}
/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
.scientific_table table {
    width: 100%;
    max-width: 100%;
}
table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
}
table thead tr {
    padding: .35em;
    border-bottom: 1px solid var(--secondary-color);
}
table tbody tr {
    padding: .35em;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
table th,
table td {
    padding: .625em;
    text-align: left;
    vertical-align: top;
    font-size: var(--step--1);
    line-height: 1.3;
}
table th {
    font-size: var(--step--2);
    letter-spacing: .1em;
    text-transform: uppercase;
}
table a {
    color: var(--neutral-color);
}
.scientific_poster {
    width: 8.333333333333332%;
}
.scientific_category {
    width: 16.666666666666664%;
}
.scientific_type{
        width: 8.333333333333332%;
}
.scientific_title {
    width: 50%;
}
.scientific_author {
    width: 16.666666666666664%;
}
@media screen and (max-width: 992px) {
    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table tr {
        display: block;
        margin-bottom: .625em;
    }
    table th,
    table td {
        font-size: var(--step--2);
    }
    table td {
        display: block;
    }
    table td::before {
        /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        width: 100%;
        display: block;
    }
    .scientific_type{
        width: 100%;
}
    .scientific_poster {
        width: 100%;
    }
    .scientific_category {
        width: 100%;
    }
    .scientific_title {
        width: 100%;
    }
    .scientific_author {
        width: 100%;
    }
}
/* cmsms stylesheet: NCC - Speakers modified: vrijdag 14 maart 2025 12:40:43 */
.speaker_item .speaker_image {
    width: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 2 / 3;
    margin-bottom: 8px;
    transition: transform .3s ease-in-out;
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
}
.speaker_item:hover .speaker_image{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.speaker_item:hover .tertiary-link.button{
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
}
.container_speaker a{
    color: var(--light-color);
    text-decoration: none;
}
.container_speaker .subtitle-small{
 margin-bottom: 16px;
}
.container_cta {
    background-image: url(/assets/images/countdown-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100%;
    position: relative;
}
/* .container_cta::before {
    content: "";
    background: linear-gradient(36deg, rgba(166, 39, 188, .8) 0%, rgba(33, 208, 235, .8)  100%);    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}  */
/* Detailpagina */
.container_speaker_detail .speaker_content p{
    margin-bottom: 32px;
}
.col-speaker_detail_image{
    grid-column: 2 / span 10;
}
.col-speaker_detail_image .speaker_image{
    object-fit: cover;
    object-position: top;
    aspect-ratio: 2 / 3;
    width: 100%;
}
.col-abstract{
        grid-column: span 6;
}

.container_speaker_detail a.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    min-width: 150px;
    padding: 0 10%;
    margin-bottom: 32px;
}
.container_speaker_detail a.social-button:hover {
    border: 2px solid var(--secondary-color);
}
.container_speaker_detail .social-button img.social_icon {
    height: 40px;
}
.speaker_abstract{
    background-color: var(--secondary-color);
    position: relative;
    padding-bottom: 2.8rem;
    cursor: pointer;
    display: block;
}
a.speaker_abstract{
    text-decoration: none;
    color: var(--neutral-color);
}

.speaker_info h6, .speaker_abstract h6 {
    text-transform: uppercase;
    color: var(--light-color);
}
.speaker_abstract::after{
    content: '\e5db';
    font-family: 'Material Icons';
    font-size: 3rem;
    position: absolute;
    bottom: 8px;
    right:8px;
}
.speaker_name{
    opacity: .7;
}
.speaker_info{
    background-color: rgba(255, 255, 255, .2);
}
@media only screen and (min-width: 768px) {
    .col-speaker_detail_image{
    grid-column: 2 / span 4;
}
.col-abstract{
        grid-column: 6 / span 4;
}
}
@media only screen and (min-width: 992px) {
    .col-speaker_detail_image{
    grid-column: 2 / span 3;
}
.col-abstract{
    grid-column: 5 / span 3;
}
}
@media only screen and (min-width: 1200px) {
    .col-speaker_detail_image{
        grid-column: 3 / span 2;
    }
.col-abstract{
        grid-column: 5 / span 3;
}
.speaker_abstract::after{
    font-size: 4rem;
}
}
/* cmsms stylesheet: NCC - Typography modified: vrijdag 29 augustus 2025 11:32:44 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800;900&family=Roboto:ital,wght@0,400;0,700;1,300&display=swap');

  h1 {
      font-family: 'Montserrat', sans-serif;
      color: inherit;
      font-size: var(--step-5);
      letter-spacing: -0.68px;
      margin: 0 0 8px 0;
      line-height: 1;
      word-wrap: break-word;
  }

  h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-size: var(--step-4);
      letter-spacing: -0.68px;
      margin: 0 0 8px 0;
      line-height: 1.2;
  }

  h3 {
      font-family: 'Montserrat', sans-serif;
      color: inherit;
      font-size: var(--step-3);
      margin: 0 0 8px 0;
      font-weight: 700;
  }
  h3.light{
    font-weight: 400;
}

  h4 {
      font-family: 'Montserrat', sans-serif;
      color: inherit;
      font-size: var(--step-2);
      margin: 0;
  }

  h5 {
      font-family: 'Montserrat', sans-serif;
      font-size: var(--step-1);
      margin: 0;
  }

  h6 {
      font-family: 'Montserrat', sans-serif;
      font-size: var(--step-0);
      font-weight: 500;
      margin: 0;
  }

  .subtitle {
      font-family: 'Montserrat', sans-serif;
      color: var(--primary-color);
      font-size: var(--step-0);
      margin: 0;
  }

  .subtitle-small {
      font-family: 'Montserrat', sans-serif;
      color: var(--primary-color);
      font-size: var(--step--1);
      letter-spacing: 0.68px;
      margin: 0;
  }

  p {
      font-family: 'Roboto', sans-serif;
      color: inherit;
      font-size: var(--step-0);
      line-height: 1.6;
      margin: 0 0 8px 0;
  }

  .small {
      font-size: var(--step--1);
  }

  caption {
      font-family: 'Roboto', sans-serif;
      color: var(--dark-color);
      font-size: var(--step--2);
      margin: 0;
  }

  blockquote {
      font-family: 'Montserrat', sans-serif;
      color: var(--dark-color);
      font-size: var(--step-3);
      margin: 0;
      text-align: center;
      position: relative;
  }

  @media only screen and (min-width: 768px) {}

  @media only screen and (min-width: 992px) {}

  @media only screen and (min-width: 1200px) {}

  @media only screen and (min-width: 1920px) {}
/* cmsms stylesheet: NCC - newsletter modified: dinsdag 15 augustus 2023 12:54:41 */
/* Inschrijfformulier */
.newsletter label{
    font-size: var(--step--2);
  }
  .newsletter #mc_embed_signup {
    clear: left;
    width: 100%;
    font-family: 'Poppins', sans-serif;
  }
  .newsletter #mc_embed_signup form {
    margin: 0 !important;
  }
  .newsletter #mc_embed_signup .mc-field-group select,
  .newsletter #mc_embed_signup .mc-field-group input {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-indent: 2%;
    background-color: rgba(255,255,255,0.1); 
    color: white;
  
  }
  .newsletter #mc_embed_signup .helper_text {
  color: #fff;
  margin-top: 2px;
  display: inline-block;
  padding: 3px;
   background-color: rgba(255,255,255,0) !important; 
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  z-index: 1;
  }
  .newsletter #mc_embed_signup .button {
  background-color: var(--primary-color) !important;
  color: #1B0438 !important;
  }
  .newsletter #mc_embed_signup .button:hover {
  box-shadow: 0px 0px 20px 0px var(--color)!important;
  }
  .newsletter #mc_embed_signup div#mce-responses {
    margin: 0 !important;
  }
  .newsletter #mc_embed_signup #mce-success-response {
    color: var(--primary-color) !important;
  }
  .newsletter #mc_embed_signup div.response {
    font-weight: normal !important;
  }

.newsletter label input {
  display: block;
  width: 100%;
  margin: 0;
  font-size: var(--step-0);
}
.newsletter .checkbox input{
  min-height: 32px;
}
#mc_embed_signup .mc-field-group {
  clear: left;
  position: relative;
  width: 100%;
  padding-bottom: 0 !important;
  min-height: 50px;
  display: grid;
}

#mc_embed_signup .gdprRequired label {
  display: block;
  margin-bottom: 3px;
  margin-left: 16px;
}
@media only screen and (min-width: 768px) {
    .newsletter img.logo{
        width: 20%;
    }
    .newsletter .gdprRequired{
      display: flex !important;
      flex-direction: column;
    }
    .newsletter .checkbox.subfield{
      display: flex !important;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
  
    }
    .newsletter #mc_embed_signup .mc-field-group input {
      display: block;
      width: unset !important;
      padding: 8px 0;
      text-indent: 2%;
      margin-right: 8px !important;
  }
  .newsletter fieldset{
    border: 1px solid var(--primary-color) !important;
  }
  
  }
/* cmsms stylesheet: NCC - Variables modified: vrijdag 14 maart 2025 13:31:24 */
:root {
  /* Step -2: 11.11px → 11.52px */
  --step--2: clamp(0.69rem, calc(0.69rem + 0.04vw), 0.72rem);
  /* Step -1: 13.33px → 14.40px */
  --step--1: clamp(0.83rem, calc(0.81rem + 0.12vw), 0.90rem);
  /* Step 0: 16.00px → 18.00px */
  --step-0: clamp(1.00rem, calc(0.96rem + 0.22vw), 1.13rem);
  /* Step 1: 19.20px → 22.50px */
  --step-1: clamp(1.20rem, calc(1.13rem + 0.36vw), 1.41rem);
  /* Step 2: 23.04px → 28.13px */
  --step-2: clamp(1.44rem, calc(1.33rem + 0.55vw), 1.76rem);
  /* Step 3: 27.65px → 35.16px */
  --step-3: clamp(1.73rem, calc(1.56rem + 0.82vw), 2.20rem);
  /* Step 4: 33.18px → 43.95px */
  --step-4: clamp(2.07rem, calc(1.84rem + 1.17vw), 2.75rem);
  /* Step 5: 39.81px → 54.93px */
  --step-5: clamp(2.49rem, calc(2.16rem + 1.64vw), 3.43rem);
  /* Step 6: 47.78px → 68.66px */
  --step-6: clamp(2.99rem, calc(2.53rem + 2.27vw), 4.29rem);
    --primary-color:#F757AA;
    --secondary-color:#149ad7;
    --tertiary-color:#c000ff;
    --dark-color:#220080;
    --light-color:#ffffff;
    --light-blue: #7bcaff;
    --purple: #c000ff;
  }
/* cmsms stylesheet: NCC - FAQ modified: vrijdag 25 augustus 2023 11:56:23 */
.faq_q {
    margin-top:15px;
    padding:2px 10px;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    background-color:#ddd;
    cursor:pointer;
  }
  
  .faq_a {
    margin:4px 0;
    padding:0px 10px;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    background-color:#eee;
  }
  
  .faq_content {
      margin-bottom: 32px;
  }
  .faq_content h6{
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
  
  .faq_item_title {
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);

  }
  
  .faq_content details {
      min-height: 5px;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      box-sizing: border-box;
      transition: all .5s;
      -webkit-transition: all .5s;
      -moz-transition: all .5s;
      -ms-transition: all .5s;
      -o-transition: all .5s;
  }
  
  .faq_content details[open] {
      min-height: 50px;
  }
  
  .faq_content summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      opacity: 0.9;
  }
  
  .faq_content summary:focus {
      outline: none;
  
  }
  
  .faq_content summary h6 {
      font-weight: 700;
      padding: 16px 0;
  }
  
  
  .faq_content summary::-webkit-details-marker {
      display: none
  }
  
  .faq_content .control-icon {
      fill: var(--light-color);
      transition: .3s ease;
      pointer-events: none;
  }
  
  .faq_content .control-icon-close {
      display: none;
  }
  
  .faq_content details[open] .control-icon-close {
      display: initial;
      transition: .5s ease;
      transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      -webkit-transition: .5s ease;
      -moz-transition: .5s ease;
      -ms-transition: .5s ease;
      -o-transition: .5s ease;
  }
  
  .faq_content details[open] .control-icon-expand {
      display: none;
  }
  .faq_content details[open] p {
    opacity: 0.9;
}
/* cmsms stylesheet: grid modified: vrijdag 29 augustus 2025 12:58:12 */
/********************************************************************************
   * Layout
********************************************************************************/
body {
    margin: 0;
}

/********************************************************************************
   * Grid
********************************************************************************/

/* CONTAINER */
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100vw;
}

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (min-width: 768px) {
    .container {
        width: 708px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        width: 928px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        width: 1136px;
    }
}

@media only screen and (min-width: 1440px) {
    .container {
        width: 1376px;
    }
}

@media only screen and (min-width: 1920px) {
    .container {
        width: 1856px;
    }
}

/* ROW */
.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1.2rem;
    position: relative;
}

.vertical-align {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}



[class^=' col-'],
[class*=' col-'] {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.col-text{
    grid-column: span 12;
}
.col-xs-12 {
    grid-column: span 12;
}

.col-xs-11 {
    grid-column: span 11;
}

.col-xs-10 {
    grid-column: span 10;
}

.col-xs-9 {
    grid-column: span 9;
}

.col-xs-8 {
    grid-column: span 8;
}

.col-xs-7 {
    grid-column: span 7;
}

.col-xs-6 {
    grid-column: span 6;
}

.col-xs-5 {
    grid-column: span 5;
}

.col-xs-4 {
    grid-column: span 4;
}

.col-xs-3 {
    grid-column: span 3;
}

.col-xs-2 {
    grid-column: span 2;
}

.col-xs-1 {
    grid-column: span 1;
}

.hide-on-mobile {
    display: none;
}

.hide-on-tablet {
    display: none;
}


@media only screen and (min-width: 768px) {
    
    .row {
        grid-gap: 1.6rem;
    }
    .hide-on-mobile {
        display: block;
    }

    .hide-on-mobile.hide-on-tablet {
        display: none;
    }
    .col-text {
        grid-column: 2 / span 10;
    }
    .col-sm-12 {
        grid-column: span 12;
    }

    .col-sm-11 {
        grid-column: span 11;
    }

    .col-sm-10 {
        grid-column: span 10;
    }

    .col-sm-9 {
        grid-column: span 9;
    }

    .col-sm-8 {
        grid-column: span 8;
    }

    .col-sm-7 {
        grid-column: span 7;
    }

    .col-sm-6 {
        grid-column: span 6;
    }

    .col-sm-5 {
        grid-column: span 5;
    }

    .col-sm-4 {
        grid-column: span 4;
    }

    .col-sm-3 {
        grid-column: span 3;
    }

    .col-sm-2 {
        grid-column: span 2;
    }

    .col-sm-1 {
        grid-column: span 1;
    }

}

@media only screen and (min-width: 992px) {
    .hide-on-mobile.hide-on-tablet {
        display: block;
    }

    .hide-on-tablet {
        display: block;
    }

    .hide-on-desktop {
        display: none;
    }

    .col-md-12 {
        grid-column: span 12;
    }

    .col-md-11 {
        grid-column: span 11;
    }

    .col-md-10 {
        grid-column: span 10;
    }

    .col-md-9 {
        grid-column: span 9;
    }

    .col-md-8 {
        grid-column: span 8;
    }

    .col-md-7 {
        grid-column: span 7;
    }

    .col-md-6 {
        grid-column: span 6;
    }

    .col-md-5 {
        grid-column: span 5;
    }

    .col-md-4 {
        grid-column: span 4;
    }

    .col-md-3 {
        grid-column: span 3;
    }

    .col-md-2 {
        grid-column: span 2;
    }

    .col-md-1 {
        grid-column: span 1;
    }
}

@media only screen and (min-width: 1200px) {
    .col-text{
        grid-column: 3 / span 8;
    } 
    .col-lg-12 {
        grid-column: span 12;
    }

    .col-lg-11 {
        grid-column: span 11;
    }

    .col-lg-10 {
        grid-column: span 10;
    }

    .col-lg-9 {
        grid-column: span 9;
    }

    .col-lg-8 {
        grid-column: span 8;
    }

    .col-lg-7 {
        grid-column: span 7;
    }

    .col-lg-6 {
        grid-column: span 6;
    }

    .col-lg-5 {
        grid-column: span 5;
    }

    .col-lg-4 {
        grid-column: span 4;
    }

    .col-lg-3 {
        grid-column: span 3;
    }

    .col-lg-2 {
        grid-column: span 2;
    }

    .col-lg-1 {
        grid-column: span 1;
    }
}

/********************************************************************************
   * Spacing
   ********************************************************************************/
/*Padding*/
.p-0 {
    padding: 0rem 0rem 0rem 0rem;
}

.p-1 {
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
}

.p-2 {
    padding: 1.6rem 1.6rem 1.6rem 1.6rem;
}

.p-3 {
    padding: 3.2rem 3.2rem 3.2rem 3.2rem;
}

.p-4 {
    padding: 5.6rem 5.6rem 5.6rem 5.6rem;
}

/*Padding-top*/
.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.8rem;
}

.pt-2 {
    padding-top: 1.6rem;
}

.pt-3 {
    padding-top: 3.2rem;
}

.pt-4 {
    padding-top: 5.6rem;
}

/*Padding-right*/
.pr-0 {
    padding-right: 0;
}

.pr-1 {
    padding-right: 0.8rem;
}

.pr-2 {
    padding-right: 1.6rem;
}

.pr-3 {
    padding-right: 3.2rem;
}

.pr-4 {
    padding-right: 5.6rem;
}

/*Padding-bottom*/
.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.8rem;
}

.pb-2 {
    padding-bottom: 1.6rem;
}

.pb-3 {
    padding-bottom: 3.2rem;
}

.pb-4 {
    padding-bottom: 5.6rem;
}

/*Padding-left*/
.pl-0 {
    padding-left: 0;
}

.pl-1 {
    padding-left: 0.8rem;
}

.pl-2 {
    padding-left: 1.6rem;
}

.pl-3 {
    padding-left: 3.2rem;
}

.pl-4 {
    padding-left: 5.6rem;
}


/*Margin*/
.m-0 {
    margin: 0rem 0rem 0rem 0rem;
}

.m-1 {
    margin: 0.8rem 0.8rem 0.8rem 0.8rem;
}

.m-2 {
    margin: 1.6rem 1.6rem 1.6rem 1.6rem;
}

.m-3 {
    margin: 3.2rem 3.2rem 3.2rem 3.2rem;
}

.m-4 {
    margin: 5.6rem 5.6rem 5.6rem 5.6rem;
}

/*margin-top*/
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.8rem;
}

.mt-2 {
    margin-top: 1.6rem;
}

.mt-3 {
    margin-top: 3.2rem;
}

.mt-4 {
    margin-top: 5.6rem;
}

/*margin-right*/
.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 0.8rem;
}

.mr-2 {
    margin-right: 1.6rem;
}

.mr-3 {
    margin-right: 3.2rem;
}

.mr-4 {
    margin-right: 5.6rem;
}

/*margin-bottom*/
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.8rem;
}

.mb-2 {
    margin-bottom: 1.6rem;
}

.mb-3 {
    margin-bottom: 3.2rem;
}

.mb-4 {
    margin-bottom: 5.6rem;
}

/*margin-left*/
.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 0.8rem;
}

.ml-2 {
    margin-left: 1.6rem;
}

.ml-3 {
    margin-left: 3.2rem;
}

.ml-4 {
    margin-left: 5.6rem;
}
