/* cmsms stylesheet: Menuhoriz modified: Tuesday, March 4, 2025 1:47:07 PM */
/********************************************************************************
* HORIZONTAL MENU
********************************************************************************/

/* hack for Internet Explorer */
* html .menu_horiz {
  /* hide ie/mac \*/
  height: 1%;
  /* end hide */
}

/********************************************************************************
* background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
********************************************************************************/



/********************************************************************************
* the menu ul box has top and left border, 
right border is provided by the li elements
********************************************************************************/

.menu_horiz ul {
  margin: 0;
  padding: 0 1.2rem;
  list-style-type: none;
}

/********************************************************************************
* Menu list items
********************************************************************************/

.menu_horiz li {
  float: left;                     /* makes the list horizontal */
  list-style: none;                /* hides the list bullet */ 
  margin: 0 ;
  list-style-type: none;
}

/********************************************************************************
* the links, that is each list item
********************************************************************************/

.menu_horiz a {
  padding: .4em .4em;               /* padding inside the list item box */
  margin: 0;                       /* margin outside each list item box */
  text-decoration: none;           /* no underline for links */
  color: var(--color-white);
  display: block;                  /* IE has problems with this, fixed above */
  font-weight: 500;
  position: relative;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  font-size: var(--font-size-s);
}
@media only screen and (min-width: 1440px) {
  .menu_horiz a {
    font-size: var(--font-size-m);
  }
}


/********************************************************************************
* HOVER STATE for links
********************************************************************************/
.menu_horiz li a.menuactive ,
.menu_horiz a.activeparent:hover,
.menu_horiz li a:hover {
  color: var(--color-white);
}
.menu_horiz li.activeparent a:after,
.menu_horiz li a.menuactive:after,
.menu_horiz li a:after,
.menu_horiz li.menuactive a:after {
    content: "";
    position: absolute;
    margin-top: 13px;
    border-bottom: 4px solid var(--color-white);
    left: 100%;
    right: 100%;
    top: 50%;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.menu_horiz li.activeparent a:after,
.header.active .menu_horiz li a.currentpage:after,
.menu_horiz li:hover a:after,
.menu_horiz li.menuactive a:after {
    left: 15px;
    right: 15px;
}


/********************************************************************************
* active parent, that is the first-level parent of a child page that is the current page
********************************************************************************/


.menu_horiz h3 {
  padding: .6em 1em .6em 1.4em;    /* padding inside the list item box */
  margin: 0;                       /* margin outside each list item box */
  text-decoration: none;           /* no underline for links */
  color: var(--color-white);
  background: #385C72 url(images/cms/arrow-right-active.gif) no-repeat 0.4em center; ;
  display: block;                  /* IE has problems with this, fixed above */
  font-size: 1em;                  /* instead of the normal font size for <h3> */
}
/* cmsms stylesheet: Menuvert modified: Friday, February 24, 2023 11:20:53 AM */
/********************************************************************************
 * VERTICAL MENU
 ********************************************************************************/

.menu_vert {
    padding-left: 0;
    margin-left: 0;
}

.menu_vert ul {
    padding: 0;
    margin: 0;
}

/********************************************************************************
 * third level has some padding to have it stand out
 ********************************************************************************/

.menu_vert ul ul ul {
    padding-bottom: 0.5em;
}

/********************************************************************************
 * menu li block
 ********************************************************************************/

.menu_vert li {
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #7ea564;
    display: block;
}

.menu_vert ul ul li {
    border: none;
}

/********************************************************************************
 * fix stupid ie bug with display:block;
 ********************************************************************************/

* html .menu_vert li a { height: 1%; } 
* html .menu_vert li hr { height: 1%; }

/********************************************************************************
 * first level links
 ********************************************************************************/

.menu_vert a {
    text-decoration:none;                    /* no underline for links */
    display: block;                         /* IE has problems with this, fixed above */
    color: #FFF;
    font-weight: bold;
    font-size: 1.1em;
    padding: 12px 10px;
    background: #93bd77;
    /*box-shadow: inset 0 0 0 0 #93bd77;*/
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

/********************************************************************************
 * third level links, more padding 
 ********************************************************************************/

.menu_vert ul ul ul a {
    padding: 0.3em 0.5em 0.3em 4.3em;
    background: url(images/cms/dash.gif) no-repeat 2.8em center; 
}

/********************************************************************************
 * HOVER STATE on all links
 ********************************************************************************/

.menu_vert a.activeparent:hover,
.menu_vert a:hover,
.menu_vert a.menuactive {
    color: #FFF;
    background: #7ea564;
    /*box-shadow: inset 315px 0 0 0 #7ea564;*/
}

/********************************************************************************
 * active parent, that is the first-level parent 
of a child page that is the current page 
 ********************************************************************************/


.menu_vert li a.activeparent {
    background-color: #7ea564;
    color: #fff;
}

.menu_vert ul ul li a.activeparent {
    background-position: 1.5em center; 
    background-color: #7ea564;
    color: #FFF;
}

/********************************************************************************
 * current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
 ********************************************************************************/


div.menu_vert ul h3 {
    background: url(images/cms/arrow-right-active.gif) no-repeat 0.4em center;
    background-color: #385C72;
    display: block; 
    padding: 0.8em 0.5em 0.8em 1.5em;       /* some air for it */
    color: #fff;                            /* this will be link color for all levels */
    font-size: 1em;                         /* instead of the normal font size for <h3> */
    margin: 0;                              /* as <h3> normally has some margin by default */
}

/********************************************************************************
 * next level current pages, more padding, 
smaller font and no background color or bottom border  
 ********************************************************************************/

.menu_vert ul ul h3 {
    font-size: 90%;
    padding: 0.3em 0.5em 0.3em 2.8em;
    background-position: 1.4em center;
    background-color: transparent;
    border-bottom: none;
    color: #000;     
}
/********************************************************************************
 * current page on third level, more padding 
 ********************************************************************************/

.menu_vert ul ul ul h3 {
    padding: 0.3em 0.5em 0.3em 4.3em;
    background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; 
}

/********************************************************************************
 * section header 
 ********************************************************************************/

.menu_vert li.sectionheader {
    border-right: none;
    font-size: 130%;
    font-weight: bold;
    padding: 1.5em 0 0.8em 0;
    background-color: #fff;
    line-height: 1em;
    margin: 0;
    text-align:center;
}

/********************************************************************************
 * separator 
 ********************************************************************************/

.menu_vert li.separator {
    height: 1px !important;
    margin-top: -1px;
    margin-bottom: 0;
    padding:2px 0 2px 0;
    background-color: #000;
    overflow:hidden !important;
    line-height:1px !important;
    font-size:1px;                   /* for ie */
}

.menu_vert li.separator hr {
    display: none;                   /* this is for accessibility */
}
/* cmsms stylesheet: Style modified: Thursday, February 12, 2026 1:58:48 PM */
/*******************************************************************************
* BASIC LAYOUT
*******************************************************************************/

.notfound {
  display: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--color-10prct-primary);

  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  color: var(--color-dark-blue);
  font-size: var(--font-size-s);
  font-weight: 300;
  line-height: 1.5;
}


.settings {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0;
  top: 0;
  padding: 10px;
  z-index: 999;
  cursor: pointer;
}

img.settings_icon {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0;
  top: 0;
  padding: 10px;
  z-index: 999;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

img.close_icon {
  width: 30px;
  height: 30px;
  position: fixed;
  right: -40px;
  top: 0;
  padding: 10px;
  z-index: 999;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

img.settings_icon {
  height: auto;
}

img.close_icon {
  height: auto;
}


.card_outer {
  display: flex !important;
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01a.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.praktische-informatie .card_outer {
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01b.jpg);
}

.over-cobra .card_outer {
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01e.jpg);
}

.card_inner {
  background-color: var(--color-white);
  padding: 16px;
  color: var(--color-dark-blue);
  border-radius: 4px;
  margin: 16px;
}

.praktische-informatie .card_inner {
  color: var(--color-dark-green);
}

.over-cobra .card_inner {
  color: var(--color-black);
}

.home .NewsSummary {
  border: unset;
  padding: 0px;
}

.home .NewsImg img {
  display: none;
}

.card_inner a {
  color: var(--color-dark-blue);
}

.praktische-informatie .card_inner a {
  color: var(--color-dark-green);
}

.over-cobra .card_inner a {
  color: var(--color-black);
}

.praktische-informatie h3,
.praktische-informatie h1 {
  color: var(--color-dark-green);
}

.partners h4,
.partners h3,
.partners h1,
.over-cobra h2,
.over-cobra h3,
.over-cobra h4,
.over-cobra h1 {
  color: var(--color-black) !important;
}

.over-cobra ul {
  color: var(--color-black);
}

/******************************************************************************
* Site
******************************************************************************/
header {
  padding: 10px 0px;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 12;
  top: 0;
  transition: all 0.2s ease-in-out;
}

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

.menu .col-xs-9 {
  justify-self: end;
}

.logo-vervolg-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

nav li {
  list-style-type: none;
}



.header.active .pushmenu {
  margin-top: 0;
}

.header.active .menuIcon.active span {
  background: none;
}

.hide-on-desktop.menu .col-xs-11 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .menuIcon span::before,
.header .menuIcon span::after {
  background-color: var(--color-white);
}

.logo {
  max-height: 60px;
  width: auto;
  max-width: 100%;
}

.sustain-logo {
  max-height: 35px;
  width: auto;
  max-width: 100%;

}


@media only screen and (min-width: 1200px) {
  .sustain-logo .logo {
    max-height: 80px;
  }
}


section.map-frame {
  padding: 0;
  z-index: 1;
}

.map-frame {
  width: 100%;
  position: relative;
}

#map {
  height: 300px;
  width: 100%;
}


.vervolgcontainer {
  padding: 70px 0;
}

.visualcontainer {
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01d.jpg);
  background-size: cover;
  max-width: 100%;
  position: relative;
}

.programma .visualcontainer {
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01a.jpg);
}

.praktische-informatie .visualcontainer {
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01b.jpg);
}

.partners .visualcontainer,
.over-cobra .visualcontainer {
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01e.jpg);
}

.nieuws .visualcontainer {
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01a.jpg);
}

.visual {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visualcontainer .menu .row {
  align-items: center;
}

.visualcontainer .menu a {
  text-decoration: none;
}

.visualbox {
  text-align: center;
}


.visualcontainer .visualbox .visualcontent {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  padding: 32px;
  margin: 92px 0 64px 0;
  grid-column-start: 1;
  grid-column-end: 13;
  border-radius: 4px;
}

.visualcontent h1:first-letter {
  text-transform: capitalize;
  display: inline-block;
}

.visualcontent h3 {
  font-weight: 500;
}

.visualtitle {
  font-size: var(--font-size-xl);
}

.visualsubtitle {
  font-size: var(--font-size-m);
  margin-top: 16px;
}

.col-flex a {
  text-decoration: none;
}

.visualcontainer+div {
  background-color: var(--color-10prct-primary);
}

body.partners,
body.over-cobra,
body.praktische-informatie,
.partners .visualcontainer+div,
.over-cobra .visualcontainer+div,
.praktische-informatie .visualcontainer+div {
  background-color: var(--color-10prct-green);
}

/* IE Fixes */
*::-ms-backdrop,
.visualbox {
  margin: 0;
  width: 100%;
  position: relative;
}



/* IE11 centered position fix */
*::-ms-backdrop,
.os-phrases {
  display: none;
}

*::-ms-backdrop,
.show-ie11 {
  display: block !important;
}

.std_btn.primary_btn {
  background: var(--color-light-green);
  color: var(--color-dark-green) !important;
  padding: 14px 28px;
  font-size: 1.2em;
  display: inline-block;
  border-radius: 5px;
}

.std_btn.primary_btn:hover {
  background: var(--color-dark-green);
  color: var(--color-light-green) !important;
}

.std_btn.secondary_btn {
  background: var(--color-white);
  color: var(--color-dark-green);
  padding: 14px 28px;
  font-size: 1.2em;
  display: inline-block;
  border-radius: 5px;
}

.std_btn.secondary_btn:hover {
  background: var(--color-light-green);
}

.std_btn.alternative_btn {
  background: var(--color-white);
  color: var(--color-light-green);
  padding: 14px 28px;
  font-size: 1.2em;
  display: inline-block;
  border-radius: 5px;
}

.std_btn.alternative_btn:hover {
  background: var(--color-dark-green);
  color: var(--color-white);
}


/********************************************************************************
* Home
********************************************************************************/
.gradient-background {
  background-color: var(--color-dark-blue);
}

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

@media only screen and (min-width: 992px) {
  .gradient-background {
    background: var(--color-dark-blue);
    background: linear-gradient(90deg, var(--color-dark-blue) 33.33%, var(--color-dark-blue) 33.33%);
  }
}





ul {
  padding-left: 0;
  list-style: none;
}

footer nav ul li:before,
ul li:before {
  content: '\232a';
  margin: 0;
  font-size: var(--font-size-s);
  /* any design */
}

nav ul li:before {
  content: '';
  margin: 0;
  /* any design */
}

ul.a {
  list-style-position: outside;
}

footer nav ul li:before {
  color: var(--color-white);
}



@media only screen and (min-width: 992px) {
  .home_info__icon-text {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
  }
}

@media only screen and (min-width: 1440px) {
  .home_info__icon-text {
    width: 50%;
  }
}

.home_info__icon-text img {
  width: 32px;
  height: auto;
  margin-right: 8px;
}


.col-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.col-flex h2 {
  margin: 0;
}

.col-flex.news-content {
  flex-wrap: nowrap;
}

.cel-flex {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.mouse-scroll.cel-flex {
  flex: 2;
}

/********************************************************************************
* Cobradagen
********************************************************************************/
.content_container .row {
  align-items: start;
}

.content_container .content h1,
.content_container .content h2,
.content_container .content h3,
.content_container .content h4,
.content_container .content h5,
.content_container .content h6 {
  color: var(--color-dark-blue);
}

.general_container .content h1,
.general_container .content h2,
.general_container .content h3,
.general_container .content h4,
.general_container .content h5,
.general_container .content h6 {
  color: var(--color-dark-blue);

}

.sidebar ul {
  width: 100%;
  padding: 16px
}

.sidebar ul ul {
  display: none;
}

.sidebar ul li a {
  background-color: var(--color-white);
  color: var(--color-dark-blue);
  font-size: var(--font-size-m);
  font-weight: 500;
  padding: 16px;
  display: block;
  border-radius: 4px;
  margin-bottom: 8px;
}

.praktische-informatie .sidebar ul li a {
  color: var(--color-dark-green);
}

.over-cobra .sidebar ul li a {
  color: var(--color-black);
}

.sidebar ul li a.currentpage,
.sidebar ul li a.activeparent {
  background-color: var(--color-dark-blue);
  color: var(--color-light-blue);
}

.praktische-informatie .sidebar ul li a.currentpage,
.praktische-informatie .sidebar ul li a.activeparent {
  background-color: var(--color-dark-green);
  color: var(--color-light-green);
}

.over-cobra .sidebar ul li a.currentpage,
.over-cobra .sidebar ul li a.activeparent {
  background-color: var(--color-black);
  color: var(--color-light-green);
}

.sidebar ul li:before {
  content: '';
  margin: 0;
}

.sidebar a,
.sidebar a:link,
.sidebar a:visited {
  text-decoration: none;
}

.sidebar ul li a.activeparent span,
.sidebar ul li a span {
  float: right;
}

.sidebar ul li ul li {
  font-weight: 300;
  font-size: var(--font-size-s);
}

.sidebar ul li ul li a {
  padding-left: 45px;
}

.sidebar ul li ul li a.currentpage {
  color: var(--color-dark-blue);
  font-weight: 300;
}

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

.content_container .col-content {
  grid-column-start: span 12;
  display: grid;
}

@media only screen and (min-width: 992px) {
  .content_container .col-content {
    grid-column-start: 4;
    grid-column-end: 12;
  }
}

@media only screen and (min-width: 1440px) {
  .content_container .col-content {
    grid-column-start: 5;
    grid-column-end: 12;
  }
}

/********************************************************************************
* NEWS
********************************************************************************/
.NewsSummary {
    background-color: var(--color-white);
    padding: 16px;
    color: var(--color-dark-blue);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 1em;
    height: calc(100% - 32px);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.news_outer {
  background-image: url(../../images/2025/header_images/illustraties-cobra_dagen-01a.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  width: 50%;
  padding: 16px;
}

.NewsSummaryLink {
  margin: 8px 0 0 0
}

.NewsSummaryLink a {
  color: var(--color-dark-blue);
  font-weight: bold;
  text-decoration: none;
  font-size: var(--font-size-xl);
  line-height: 1.2;
}

.NewsSummaryMorelink {
  background-color: var(--color-light-blue);
  display: inline-block;
  padding: 8px 16px;
  margin-top: auto;
  transition: .3s ease;
  border-radius: 4px;
  color: var(--color-dark-blue);
  text-decoration: none;
  font-weight: 400;

}
a.return-link,
#NewsPostDetailReturnLink {
  display: inline-block;
  transition: .3s ease;
  color: var(--color-dark-blue);
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
a.return-link:hover,
#NewsPostDetailReturnLink:hover {
  color: var(--color-dark-green);
}

.NewsSummaryMorelink:hover {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.NewsSummaryMorelink a,
#NewsPostDetailReturnLink a {
  color: var(--color-dark-blue) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-xs);
}

.NewsSummaryMorelink:hover a,
#NewsPostDetailReturnLink:hover a {
  color: var(--color-white) !important;
}

.NewsSummaryPostdate {
  opacity: 0.7;
  display: none;
}

.news.summary {
  text-align: center;
}

.news_outer .NewsImg img {
  display: block;
  max-width: 100%;
  width: calc(100% - 32px);
  aspect-ratio: 4/3;
  object-fit: contain;
  margin: 16px 16px 0 16px;
  border-radius: 4px 4px 0 0;
  background-color: white;
}

.news_outer:has(.NewsImg img) .NewsSummary {
  margin: 0 16px 16px 16px;
  border-radius: 0 0 4px 4px;
}

.NewsSummaryCategory {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
}

.NewsDetailCategory strong {
  color: var(--color-dark-green);
}

a.newsSummaryItem {
  color: var(--color-white);
  text-decoration: none;
}

.NewsPostSummaryDate {
  padding: 10px;
  font-size: .8em;
  color: var(--color-dark-green);
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.morenews {
  text-align: center;
}

.nieuws-vervolgcontainer {
  padding: 40px 0;
  min-height: 600px;
}



.news.summary .readmore {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.news.summary .NewsSummaryTitle {
  padding-left: 12px;
  padding-right: 12px;
  font-size: 21px;
  font-weight: bold;
}

.NewsSummaryContent {
  margin-bottom: 16px;
  font-size: var(--font-size-s);
  line-height: 1.4;
  margin: 8px 0 0 0;
  color: var(--color-dark-blue);
  font-weight: 300;

}
.NewsSummarySummary {
    margin-bottom: 16px;
}
.news.summary .NewsSummarySummary p,
.news.summary .NewsSummaryContent p {
  font-size: var(--font-size-s);
  padding-bottom: 16px;
  color: var(--color-dark-blue);

}

.NewsSummaryImage {
  overflow: hidden;
  max-height: 180px;
}

.NewsDetailField .NewsImg img {
  width: 100%;
  max-width: 100%;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.content #NewsPostDetailDate {
  color: var(--color-dark-blue);
  font-weight: 400;
  font-size: var(--font-size-s);
}

.content #NewsPostDetailTitle {
  color: var(--color-dark-blue);
  font-weight: bold;
  font-size: var(--font-size-xl);
  margin: 32px 0;
  line-height: 1;
}

hr#NewsPostDetailHorizRule {
  border: 1px solid var(--color-dark-green)
}

.news.detail .titlebar,
.news.detail .content {
  display: table;
  width: 100%;
}

.news.detail img {
  width: 100%;
  height: auto;
  max-width: 1024px;
}

.reponsive_video_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.reponsive_video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.news.detail iframe {
  max-width: 100%;
}

.formhelptext p {
  color: rgb(20, 95, 28);
  font-weight: 400;
}

/* Dropdown Button */
.dropbtn {
  background-color: var(--color-primary);
  color: white;
  padding: 16px;
  font-size: var(--font-size-s);
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
  background-color: var(--color-primary);
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: var(--color-primary);
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

/********************************************************************************
* Programma
********************************************************************************/
.donderdag-11-april h1.title,
.woensdag-10-april h1.title,
.vrijdag-12-april h1.title {
  display: none;
}

.subtitleprogramma {
  font-weight: normal !important;
  margin-top: 8px !important;
}

.program-date-box {
  display: none;
}

p.program-time-new {
  margin: 0;
  font-size: var(--font-size-xs);
}

.white-bg p.program-time-new {
  color: var(--color-dark-blue);
}

.program-item-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.program-item-header p {
  margin: 0 0 0 0 !important;
}

.program-subcol1 .item-title-new {
  font-weight: 500;
  font-size: var(--font-size-m);
}

.item-title-new {
  color: var(--color-dark-blue);
}

.program-time-new {
  color: var(--color-dark-blue);
  font-size: var(--font-size-xs);
}

.program-item-new.white-bg ul li .breakout-col1 p.breakout-title a,
.program-item-header p.item-title-new a {
  font-weight: 500;
  font-size: var(--font-size-m);
  margin: 0;
  color: var(--color-dark-blue);
  text-decoration: none;
}

p.breakout-title {
  margin: 0 !important;

}

.program-item-header {
  font-size: var(--font-size-s);
}

.program-item-header p.item-title-new {
  font-weight: 700;
  text-transform: none;
  font-size: var(--font-size-l);
}

.white-bg .program-item-header p.item-title-new {
  color: var(--color-dark-blue);
  border-bottom: 1px solid var(--color-dark-blue);
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
span.program-item-location::before {
  font-family: "Material Icons";
  content: "location_on";
  margin-left: 16px;
}

span.program-item-location:empty {
  display: none;
}

.program-item-header p.presentatie,
.program-item-header span.spreker_naam {
  color: var(--color-dark-green);
}

.program-item-header span.spreker_functie {
  color: var(--color-dark-blue);
}

.white-bg ul li:nth-child(n+2) {
  padding-top: 1.6rem;
}

.show-more-target ul li::before {
  content: '';
}

.program-item-header {
  padding: 8px;
}

.program-item-new ul {
  padding: 8px 8px 0 8px;
}

.program-item-new ul li {
  padding-bottom: 1.6rem;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--color-light-blue);
  flex-direction: column;
  gap: 8px;
}

.program-item-new ul li:last-child {
  border-bottom: none;

}

.program-item-new li::before {
  content: '';
}

.white-bg {
  background: var(--color-white);
  color: var(--color-dark-blue);
  border-radius: 4px;
  padding: 0.8rem 0.8rem 1.6rem 0.8rem;
}


.program-item-new ul li .breakout-col1 {
  margin: -32px 0 0 0;
}

.program-item-new.white-bg ul li .breakout-col1 {
  margin: 0 0 0 0;
}

.program-item-new {
  margin: 0 0px 1.6rem 0;
  display: block;
  position: relative;
  padding: 0.8rem;
}

.program-speaker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.program-speaker+.program-speaker {
  margin-top: 32px
}


.programma .program-speaker-pic {
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 1.6rem;
}
.programma .program-detail .program-speaker-pic {
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: unset;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  flex: 1;
  border-radius: 2px;
  aspect-ratio: 3/4;
  margin-right: 0;
}

.program-speaker-bio {
  font-size: var(--font-size-s);
  line-height: 1.4;
  color: var(--color-dark-blue);
  flex: 3;
}

.program-items-container li::before {
  content: '';
}

.item-properties .item-properties {
  color: var(--color-dark-blue);
  font-size: var(--font-size-s);
  line-height: 1.6;
  margin-bottom: 16px;
}

.item-properties .lange_beschrijving {
  line-height: 1.1;
}

.item-properties .categorie {
  color: var(--color-dark-blue);
}


.item-title {
  margin-bottom: 8px;
}
.program-detail .time{
  color: var(--color-dark-blue);
  font-weight: 500;
}

/********************************************************************************
* Deelnemers
********************************************************************************/
.partner-col-flex {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.supplier-logo {
  background-color: white;
  padding: 16px;
  width: 25vw;
  border-radius: 4px;
  aspect-ratio: 7/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supplier-logo img {
  max-width: 100%;
  max-height: 100px;
}




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

.col-content .col-flex {
  gap: 1.6rem;
  justify-content: space-around;
}



/********************************************************************************
* FAQ
********************************************************************************/

.faqholder {
  margin: 30px auto 0 auto;
  max-width: 1000px;
  text-align: left;
}

.faq {
  margin-bottom: 32px;
}

.faq_itembox {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-dark-green);
}

.faq_q {
  position: relative;
  padding: 10px 45px 10px 0;
  cursor: pointer;
}

span.faq_title {
  color: var(--color-dark-green);
  font-size: 1.1em;
  font-weight: 600;
}

.faq_openclose {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
}

span.faq_oc.oc_horiz {
  background: var(--color-dark-green);
  height: 2px;
  width: 100%;
  display: block;
  margin: 9px 0 0 0;
}

span.faq_oc.oc_vert {
  background: var(--color-dark-blue);
  height: 100%;
  width: 2px;
  display: block;
  margin: -11px 0 0 9px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

/********************************************************************************
* FOOTER
********************************************************************************/
footer {
  background: var(--color-dark-blue);
  padding: 48px 0 24px 0;
  color: var(--color-white);
  width: 100%;
  margin-top: auto;
}

.praktische-informatie footer {
  background: var(--color-dark-green);
}

.partners footer,
.over-cobra footer {
  background: var(--color-black);
}

footer h5 {
  color: var(--color-white);
}



.visualbox.container,
header .container,
footer .container {
  background-color: transparent;
}

.COBRAdagen p,
.footer p,
.quick-links a span {
  font-size: var(--font-size-s);
  line-height: 1.3;
  color: var(--color-white) !important;
}

.quick-links .links {
  -webkit-columns: 4 150px;
  -moz-columns: 4 150px;
  columns: 4 150px;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
}

.quick-links a span {
  font-weight: bold;
  white-space: nowrap;
}

footer a,
footer a:link {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  padding-left: 8px;
}

footer a:hover,
footer a:active,
footer a.menuactive span {
  color: var(--color-white) !important;
}




footer a,
footer a:link {
  color: var(--color-white);
  text-decoration: none;
}

.copyright {
  border-top: 1px solid var(--color-white);
  width: 100%;
  color: var(--color-white);
  font-size: .9rem;
}

.copyright a,
.copyright a:link {
  text-decoration: none;
  color: var(--color-white);
}

.copyright .bottom-menu {
  text-align: center;
}

.bottom-menu p {
  margin-bottom: 0px;
  font-size: .9em;
  color: var(--color-white);
  opacity: 0.7;
}

.social-buttons {
  display: flex;
  cursor: pointer;
}


.social-buttons .icon {
  width: 32px;
  height: 32px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  cursor: pointer;
}










/********************************************************************************
* MOUSE SCROLL
********************************************************************************/
.mouse-scroll {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
  display: block;
  line-height: 1.6;
  font-size: 0.69em;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

.mouse-scroll .mouse-message {
  cursor: pointer;
}

.mouse-scroll .mouse {
  position: relative;
  display: block;
  width: 27px;
  height: 44px;
  margin: 0 auto 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid var(--color-white);
  border-radius: 23px;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  z-index: 5;
}

.mouse-scroll .mouse .mouse-movement {
  position: absolute;
  display: block;
  top: 20%;
  left: 45%;
  width: 3px;
  height: 10px;
  background: var(--color-white);
  border-radius: 38%;
  -webkit-animation: scroll-ani 2s linear infinite;
  -moz-animation: scroll-ani 2s linear infinite;
  animation: scroll-ani 2s linear infinite;
}

.mouse-scroll:hover .mouse-message {
  margin-top: 0;
}

.mouse-scroll:hover {
  color: var(--color-white);
}

.mouse-scroll:hover .mouse {
  border: 2px solid var(--color-white);
}

.mouse-scroll:hover .mouse .mouse-movement {
  background: var(--color-white);
}

@-webkit-keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 29%;
  }

  15% {
    opacity: 1;
    top: 50%;
  }

  50% {
    opacity: 0;
    top: 50%;
  }

  100% {
    opacity: 0;
    top: 29%;
  }
}

@-moz-keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 29%;
  }

  15% {
    opacity: 1;
    top: 50%;
  }

  50% {
    opacity: 0;
    top: 50%;
  }

  100% {
    opacity: 0;
    top: 29%;
  }
}

@keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 29%;
  }

  15% {
    opacity: 1;
    top: 50%;
  }

  50% {
    opacity: 0;
    top: 50%;
  }

  100% {
    opacity: 0;
    top: 29%;
  }
}

/************************************************************
COOKIEMELDING
************************************************************/
.cookiebanner {
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  display: none;
  left: 0;
  padding: 1em;
  position: fixed;
  text-align: left;
  right: 0;
  z-index: 10;
  border-top: 2px solid var(--color-dark-green);
}

.cookiebanner_text {
  float: left;
  padding: 5px 0;
  font-size: 0.9em;
}

.cookiebanner_button {
  background: var(--color-dark-green);
  border-radius: 2px;
  color: var(--color-white) !important;
  display: inline-block;
  padding: 0.5em 1em;
  margin-bottom: 16px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  text-decoration: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.cookiebanner_button:hover {
  background: var(--color-dark-green);
}

.cookiebanner a {
  color: var(--color-dark-green);
}

/******************************************************************************
* Header
******************************************************************************/
.topwrap {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.topwrap video {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}


.filled {
  background-color: var(--color-dark-blue);
}

.praktische-informatie .filled {
  background-color: var(--color-dark-green);
}

.partners .filled,
.over-cobra .filled {
  background-color: var(--color-black);
}

.scroll {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  color: var(--color-white);
  text-align: center;
  cursor: pointer;
}

.fa {
  width: 60px;
  display: block;
  text-align: center;
  color: var(--color-message-error);
  font: normal 45px 'FontAwesome';
  line-height: 60px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.fa-angle-double-down:before {
  content: "\f103";
}

.bounce {
  width: 53px;
  height: auto;
  margin: 0 auto;
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
  text-align: center;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

.bounce:hover object svg path {
  fill: var(--color-message-warning);
}

span.bounce_text {
  text-transform: uppercase;
  font-size: 1.5em;
  text-align: center;
  font-weight: 600;
  padding-top: 72px;
  display: block;
}

@-webkit-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-moz-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
  }
}

@-o-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }

  40% {
    -o-transform: translateY(-30px);
  }

  60% {
    -o-transform: translateY(-15px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}




.banner {
  background: var(--color-message-warning);
  color: var(--color-black);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.3em;
  position: absolute;
  right: -135px;
  top: 88px;
  padding: 12px 100px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.banner-inner {
  max-width: 321px;
  text-align: center;
  margin: 0;
}

.bottomwrap {
  display: block;
  background: var(--color-white);
  height: 108%;
  width: 100%;
  position: relative;
  overflow: visible;
}

.seperator {
  border-top: 1px solid var(--color-white);
  max-width: 550px;
  margin: 40px auto;
}





span.content_counter {
  display: block;
  margin: -21px 0 0 0;
}

.content_title {
  font-weight: 700;
  font-size: 2.4em;
  line-height: 1;
  margin: 0 0 10px 0;
  display: block;
}

.content_text {
  display: block;
  line-height: 1.1;
  font-size: 1.1em;
  margin: 0 0 12px 0;
}

.content_date {
  display: block;
  overflow: hidden;
  margin: 0 0 30px 0;
}

.content_location {
  display: block;
  overflow: hidden;
}

img.icon_location {
  width: 50px;
  float: left;
}

span.content_infotitle {
  float: left;
  margin: 9px 0 0 20px;
  font-size: 1.8em;
  font-weight: 200;
  line-height: 1.1;
}

.std_btn,
input[type=submit] {
  background: var(--colo-dark-green);
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(var(--color-dark-light), var(--colo-dark-green));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(var(--color-dark-light), var(--colo-dark-green));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(var(--color-dark-light), var(--colo-dark-green));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(var(--color-dark-light), var(--colo-dark-green));
  /* Standard syntax */

  border: none;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  text-decoration: none;
  padding: 10px 20px;
}

.std_btn:hover,
input[type=submit]:hover {
  background: var(--color-dark-light);
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(var(--colo-dark-green), var(--color-dark-light));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(var(--colo-dark-green), var(--color-dark-light));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(var(--colo-dark-green), var(--color-dark-light));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(var(--colo-dark-green), var(--color-dark-light));
  /* Standard syntax */
}

a.std_btn.prevbtn {
  padding: 10px 20px 10px 50px;
  background-image: url(../../images/left-arrow-angle.svg);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: left 10px center;
  float: left;
  background-color: var(--colo-dark-green);
}

.std_btn.nextbtn {
  padding: 10px 50px 10px 20px;
  background-image: url(../../images/right-arrow-angle.svg);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  float: right;
}

.std_btn.nextbtn:hover {
  background-position: right 5px center;
}

.std_btn.prevbtn:hover {
  background-position: left 5px center;
}

.std_btn.light_btn {
  background: var(--color-white);
  color: var(--colo-dark-green);
  float: none;
  padding: 10px 20px;
}

.std_btn.light_btn:hover {
  background: var(--color-dark-light);
  color: var(--color-white);
}





.radios {
  display: block;
  overflow: hidden;
  margin: 0 0 20px 0;
}

.radios ul {
  padding: 0;
  margin: 0;
}

.radiofield {
  width: 47%;
  display: inline-block;
  margin: 0 2% 0 0;
  position: relative;
}

ul li.radiofield input[type=radio] {
  position: absolute;
  visibility: hidden;
}

ul li.radiofield label {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.55em;
  padding: 0 0 0 44px;
  margin: 6px 0 0 0;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  transform: all 0.25s linear;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-white);
  -webkit-transform: all 0.25s linear;
  -moz-transform: all 0.25s linear;
  -ms-transform: all 0.25s linear;
  -o-transform: all 0.25s linear;
}

ul li.radiofield .check {
  display: block;
  position: absolute;
  border: 3px solid var(--color-10prct-primary);
  border-radius: 100%;
  height: 27px;
  width: 27px;
  top: 2px;
  left: 0;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
}

ul li.radiofield .check::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 17px;
  width: 17px;
  top: 5px;
  left: 5px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.radiofield input[type=radio]:checked~.check {
  border: 3px solid var(--color-message-error);
}

.radiofield input[type=radio]:checked~.check::before {
  background: var(--color-message-error);
}

.radiofield input[type=radio]:checked~label {
  color: var(--color-message-error);
}

.submit {
  margin-top: 10px;
}

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

select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid var(--color-dark-green);
  font-size: 1.4em;
  color: var(--color-dark-green);

  text-transform: uppercase;
  margin: 0px 0 25px 0;

  /* iOS style override: */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

select:focus {
  background: var(--color-dark-light);
  color: var(--color-white);
  border-bottom: 2px solidvar(--color-dark-light);
  outline: none;
  padding: 10px 15px;
}

select.selected {
  background: var(--color-dark-light);
  color: var(--color-white);
  border-bottom: 2px solidvar(--color-dark-light);
}

textarea.input__textarea {
  width: 96%;
  border: none;
  border-bottom: 2px solid var(--color-black);

  font-size: 1.4em;
  text-transform: uppercase;
  color: var(--color-black);
  height: 170px;
  padding: 2%;
}

.input--filled textarea.input__textarea {
  background: var(--color-message-error);
  color: var(--color-white);
  border-bottom: 2px solid var(--color-message-error);
}

textarea.input__textarea:focus {
  outline: none;
}

.input.input-100 {
  width: 100%;
}

.input.input-50 {
  margin: 0;
  width: 47%;
  margin: 0 2% 0 0;
}

.input {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  vertical-align: top;
  outline: none;
}

.input__field {
  position: relative;
  display: block;
  float: right;
  padding: 0.8em;
  width: 60%;
  border: none;
  border-radius: 0;
  background: #f0f0f0;
  color: var(--color-black);
  font-weight: 400;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */
  appearance: none;
}

.input__field:focus {
  outline: none;
}

.input__label {
  float: right;
  padding: 0 1em;
  width: 40%;
  color: #696969;
  font-weight: bold;
  font-size: 70.25%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input__label-content {
  position: relative;
  display: block;
  padding: 1.6em 0;
  width: 100%;
}

.graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
}


@media only screen and (min-width: 425px) {
  .program-item-new ul li {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .program-item-header {
    flex-direction: row;
    gap: 0;
    align-items: center;

  }
}

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

  .visualcontainer .visualbox .visualcontent {
    grid-column-start: 2;
    grid-column-end: 12;
  }

  .visualtitle {
    font-size: var(--font-size-xxxl);
  }

  .visualsubtitle {
    font-size: var(--font-size-xl);
    margin-top: 16px;
  }

  .supplier-logo {
    background-color: white;
    width: 16vw;
  }
  .news_outer {
    max-width: 50%;
}
}

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


  .general_container,
  .content_container {
    margin-top: 32px;
    margin-bottom: 32px;
  }



  .program-time-new {
    min-width: 124px;
  }

  .content #NewsPostDetailTitle {
    font-size: var(--font-size-xxl);
  }

  .visualcontainer .visualbox .visualcontent {
    grid-column-start: 4;
    grid-column-end: 10;
  }
  .program-speaker {
    flex-direction: row;
  }
}

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



}
/* cmsms stylesheet: Grid modified: Tuesday, March 4, 2025 10:23:33 AM */
/********************************************************************************
   * 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: 704px;
        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-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;
}
.col-start-2{
    grid-column: span 12;
}

@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-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;
    }
    .col-start-2{
        grid-column-start: 2;
        grid-column-end: span 10;
    }

}

@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-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: Breakpoints modified: Monday, March 6, 2023 1:09:28 PM */
@media only screen and (min-width: 768px) and (max-height: 800px) {
    .introtext {
        font-size: 2em;
    }
}

/* Hide arrow on desktop below 725px high */
@media only screen and (min-width: 768px) and (max-height: 725px) {
    img.icon_location {
        display: none;
    }
}

/* Hide arrow on smartphone below 615px high on portrait */
@media only screen and (min-width: 361px) and (max-height: 520px) and (orientation: portrait) {
    img.icon_location {
        display: none;
    }
}

/* Hide arrow on small screen smartphone below 520px high on portrait */
@media only screen and (max-width: 361px) and (max-height: 520px) and (orientation: portrait) {
    img.icon_location {
        display: none;
    }
}

/* Hide arrow on smartphone below 615px high on landscape */
@media only screen and (min-width: 361px) and (max-height: 320px) and (orientation: landscape) {
    img.icon_location {
        display: none;
    }
}

/* Hide arrow on small screen smartphone below 520px high on landscape */
@media only screen and (max-width: 361px) and (max-height: 320px) and (orientation: landscape) {
    img.icon_location {
        display: none;
    }
}

/* Header fix for landscape devices */
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .themelogobox {
        padding: 0 5% 0 5% !important;
    }
}

/* Header fix for landscape devices */
@media only screen and (max-width: 700px) and (orientation: landscape) {
    img.themelogo {
        max-width: 190px !important;
    }

    .seperator {
        margin: 20px 0 !important;
    }
}


/**************************************************
1450
***************************************************/
@media only screen and (max-width: 1450px) {}

/**************************************************
1024
***************************************************/
@media only screen and (max-width: 1024px) {

    h2,
    h2.content_title,
    span.content_title {
        font-size: 1.6em;
        line-height: 1.6;
    }

    .news.summary .NewsSummaryTitle {
        font-size: 1em;
        margin-bottom: 45px;
    }

    .introtext {
        font-size: 1.8em;
    }

    .checkmark {
        float: none;
    }

    .std_btn.light_btn {
        padding: 6px 10px;
    }

    .content_text {
        margin: 0;
    }




    .mouse-scroll {
        display: none;
    }

    .header-img {
        min-height: 200px;
    }

    .news.detail {
        padding: 60px 0;
    }


    .list {
        padding: 0;
    }

    .list li {
        margin-bottom: 8px;
    }

    .list li p {
        font-size: .9em;
    }

    _::-webkit-full-page-media,
    _:future,
    :root .visualbox {
        top: 30%;
    }

    footer .menu ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .leverancier-overzicht-item:nth-child(10) {
        margin-left: 25%;
    }
}

/******* END 1024 **********/

/**************************************************
767 (MOBILE)
***************************************************/
@media only screen and (max-width: 767px) {


    .cookiebanner {
        padding: 1em 0px;
    }

    .cookiebanner_text {
        float: none;
        padding: 5px 0;
    }

    .cookiebanner_buttons {
        float: none;
        clear: both;
    }

    .leverancier-overzicht-item:nth-child(10) {
        margin-left: 0;
    }

    .leveranciers-btn {
        max-width: 280px;
    }

 
    .themelogobox {
        padding: 25% 5% 0 5%;
    }

    .faq .question,
    .faq .question.active {
        padding: 15px;
    }



    .NewsSummaryImage img {
        width: 100%;
        height: auto;
    }

    span.bounce_text {
        font-size: 1em;
        padding-top: 54px;
    }

    .bounce {
        width: 30px;
    }

    .list li {
        padding: 8px 0 0 40px;
    }

    .bottomwrap {
        overflow: visible;
        display: table;
        width: 100%;
    }

    .left_content {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
    }

    .right_content {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
    }

    img.themelogo {
        max-width: 245px;
    }

    h2,
    h2.content_title,
    span.content_title,
    .content_title {
        font-size: 1.1em;
        line-height: 1.6;
    }

    .introtext {
        font-size: 1.3em;
    }

    .banner {
        font-size: .9em;
        top: 50px;
        right: -128px;
        padding: 5px 100px;
        font-weight: 500;
    }

    .banner-inner {
        max-width: 200px;
    }




    .content_text {
        line-height: 1.4;
        font-size: 0.9em;
    }

    img.icon_location {
        width: 30px;
    }

    span.content_infotitle {
        margin: 4px 0 0 20px;
        font-size: 1.2em;
    }

    .std_btn.nextbtn {
        padding: 10px 30px 10px 15px;
    }

    a.std_btn.prevbtn {
        padding: 10px 15px 10px 30px;
    }

    .input.input-50 {
        margin: 0;
        width: 100%;
    }

    .input__field--manami,
    select {
        margin-bottom: 35px;
    }

    .navigation {
        margin: 20px 0 20px 0;
    }

    .introtext {
        font-size: 1em;
    }

    .visualtext {
        font-size: 1em;
    }

    .std_btn.primary_btn,
    .std_btn.secondary_btn,
    .std_btn.alternative_btn,
    .std_btn.c2a_btn {
        font-size: 1em;
        padding: 10px 15px;
    }

    .news.summary .NewsSummary {
        min-height: 0;
    }

    .social-buttons {
        display: inline-flex;
    }

    .copyright .bottom-menu,
    .copyright .sonepar-logo {
        float: none;
    }

    footer .menu ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }


    .copyright .bottom-menu {
        text-align: left;
    }

    .header-img {
        margin-top: 85px;
    }

    .vervolgcontainer {
        padding: 35px 0;
    }


    .news.detail {
        padding: 30px 0;
    }

    .vervolg h1 {
        font-size: 1.3em;
    }

    .NewsPostSummaryDate {
        position: relative;
    }
}

/******* END 767 **********/

/**************************************************
360 (SMALL SCREENS - IPHONE)
***************************************************/
@media screen and (max-width: 360px) {
    .seperator {
        margin: 25px auto;
    }

    .toplogo img {
        max-width: 150px;
    }

    .banner {
        top: 38px;
        right: -138px;
    }
}
/* cmsms stylesheet: Mobilemenu modified: Friday, March 7, 2025 11:16:33 AM */
/********************************************************************************
 * COLORS
 ********************************************************************************/

   /* 70px  */
  /* 120px  */
  /* left/right*/
 
 
 @media screen and (max-width: 976px){
     .pushbody {
         padding-top:50px;
         overflow: hidden;
     }
 }
 
 /********************************************************************************
  * LOGO 
  ********************************************************************************/
 
 a.logomob {
     border: 0;
     padding: 0;
     display: block;
     position: absolute;
     float: right;
     right: 10px;
     top: 10px;
 }
 

 
 /********************************************************************************
  * PUSHMENU 
  ********************************************************************************/
 
 /************************************
  * HEADERFIXED
 ************************************/
 
 .headfixed {
     position: fixed;
     top: 0;
     right: 0;
     z-index: 999;
     height: 50px;
     background: var(--color-white);
 }
.menu{
    margin: 0 auto;
}
@media only screen and (min-width: 768px) {
    .menu {
        width: 668px;
    }
}

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

@media only screen and (min-width: 1200px) {
    .menu {
       width: 1130px;
        
    }
}
@media only screen and (min-width: 1440px) {
    .menu {
        width: 1340px;
    }
}

@media only screen and (min-width: 1920px) {
    .menu {
        width: 1820px;
    }
}
 /************************************
  * PUSHMENU
 ************************************/
 
 .pushmenu {
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     transition: all 0.3s ease;
     position: fixed;
     width: 70%;
     top: 0;
     bottom: 0;
     z-index: 998;
     padding-top: 80px;
     background: #185770;
     right: -70%;
 }
 
 .pushmenu.active {
     right: 0;
     border-right: 1px solid rgba(0,0,0,0.2);
 }
 
 .pushmenu a {
     display: block;
     color: var(--color-white) !important;
     font-size: 1em;
     line-height: 1.3em;
     font-weight: 400;
     padding: 10px;
     border: 0;
     border-bottom: 1px solid white;
     text-transform: uppercase;
     margin: 0;
     text-decoration: none;

 }
 .pushmenu a span{
    float: right;
 }
 .pushmenu ul {
     padding: 0px;
     margin: 0px;
 }
 

 
 .pushmenu li.parent, .pushmenu .sectionheader {
     position: relative;
     overflow: hidden;
 }
 
 .pushmenu li.parent a, .pushmenu .sectionheader > span {
     padding-right: 30px;
     position: relative;
 }
 
 .pushmenu a:hover {
     text-decoration: none;
     background: var(--color-primary);
 }
 
 .pushmenu a:active {
     text-decoration: none;
 }
 .pushmenu .currentpage {
    background: var(--color-white);
    font-weight: 700;
    color: var(--color-dark-blue) !important;
}
 
 /************************************
  * Second level
 ************************************/
 
 .pushmenu ul ul a {
     font-size: 1em;
     padding-left: 20px;
     background-position: 1.5em center;
 }
 
 /************************************
  * Third level
 ************************************/
 
 .pushmenu ul ul ul {
     background: rgba(0,0,0,0.05);
 }
 
 .pushmenu ul ul ul a {
     padding: 8px 0 8px 30px;
     font-size: 0.9em;
 }
 
 /********************************************************************************
  * PARENT 
  ********************************************************************************/
 
 .pushmenu .push-expand {
     position: absolute;
     border: none;
     top: 0;
     right: 0;
     bottom: 0;
     width: 40px;
     background: var(--color-white);
     margin: 0;
 }
 
 .minh {
     position: absolute;
     right: 12px;
     top: 50%;
     height: 1px;
     width: 15px;
     background: #185770;
 
 }
 
 .plush {
     position: absolute;
     right: 19px;
     top: 50%;
     margin-top: -7px;
     height: 15px;
     width: 1px;
     background: #185770;
 }
 
 /********************************************************************************
  * SECTIONHEADER 
  ********************************************************************************/
 
 .pushmenu ul li.sectionheader span.sectiontitle {
     display: block;
     color: var(--color-white);
     font-size: 1em;
     line-height: 1.3em;
     font-weight: 700;
     padding: 10px;
     border-bottom: 1px solid rgba(0,0,0,0.1);
     text-transform: uppercase;  
 }
 
 /********************************************************************************
  * ACTIVE 
  ********************************************************************************/
 
 .pushmenu li.menuactive a.menuactive {
     background: #007d30;
     color: var(--color-white) !important;
 }
 
 /********************************************************************************
  * MLE 
  ********************************************************************************/
 
 .pushmenu .short_mle {
    margin-bottom: 20px;
    text-align: right;
 }
 
 .pushmenu .short_mle a {
     border-bottom: 0;
 }
 
 
 /********************************************************************************
  * ICON
  ********************************************************************************/
 *, ::after, ::before {
     box-sizing: inherit;
 }
 
 .menuIcon {
     display: block;
     position: relative;
     overflow: hidden;
     margin: 5px 5px 5px auto;
     padding: 0;
     width: 40px;
     height: 40px;
     font-size: 0;
     text-indent: -9999px;
     appearance: none;
     box-shadow: none;
     border-radius: none;
     border: none;
     cursor: pointer;
     z-index: 1000;
 }
 
 .menuIcon:focus {
   outline: none;
 }
 
 .menuIcon span {
   display: block;
   position: absolute;
   top: 48%;
   left: 10%;
   right: 10%;
   height: 10%;
   background-color:var(--color-white);

 }
 
 .menuIcon span::before,
 .menuIcon span::after {
   position: absolute;
   display: block;
   right: 0;
   width: 100%;
   height: 100%;
   background-color:var(--color-dark-green);
   content: "";
 }
 
 .menuIcon span::before {
   top: -10px;
 }
 
 .menuIcon span::after {
   bottom: -10px;
 }
 
 .menuIcon--htx {
   background: none;
 }
 
 .menuIcon--htx span {
     -webkit-transition: background 0s .3s;
     transition: background 0s .3s;
 }
 
 .menuIcon--htx span::before,
 .menuIcon--htx span::after {
     -webkit-transition-duration: .3s,.3s;
     transition-duration: .3s,.3s;
     -webkit-transition-delay: .3s,0s;
     transition-delay: .3s,0s;
 }
 
 .menuIcon--htx span::before {
     -webkit-transition-property: top,-webkit-transform;
     transition-property: top,transform;
 }
 
 .menuIcon--htx span::after {
   -webkit-transition-property: bottom,-webkit-transform;
     transition-property: bottom,transform;
 }
 
 .menuIcon--htx.active span {
   background: none;
 }
 
 .menuIcon--htx.active span::before {
   top: 0;
     -ms-transform: rotate(45deg);
     -webkit-transform: rotate(45deg);
     transform: rotate(45deg);
 }
 
 .menuIcon--htx.active span::after {
   bottom: 0;
   -ms-transform: rotate(-45deg);
   -webkit-transform: rotate(-45deg);
   transform: rotate(-45deg);

 }
 
 .menuIcon--htx.active span::before,
 .menuIcon--htx.active span::after {
   transition-delay: 0s, 0.3s;
   -webkit-transition-delay: 0s, 0.3s;
   background-color: var(--color-white);
 }
/* cmsms stylesheet: variables modified: Tuesday, March 4, 2025 2:36:41 PM */
/********************************************************************************
 * CSS variables
 ********************************************************************************/
:root {
    /***Brand Colors***/
    --color-primary: #1B9DD9;  
    --color-light-green: #AEC473;
    --color-dark-green: #246640;
    --color-light-blue: #B9DFE1;
    --color-dark-blue: #185770;
    --color-light-red: #F0888B;
    --color-dark-red: #E74038;
    --color-white: #ffffff;
    --color-black: #1E1E1C;

    --color-10prct-primary: #F7FDFF;
    --color-10prct-green:#F7FAED;

    /***Message Colors***/
    --color-message-succes: #246640;
    --color-message-warning: #AEC473;
    --color-message-info: #1B9DD9;
    --color-message-error: #E74038;

    /***Font sizes***/
    --font-size-xxs: 12px;
    --font-size-xs: 14px;
    --font-size-s: 16px;
    --font-size-m: 19px;
    --font-size-l: 23px;
    --font-size-xl: 27px;
    --font-size-xxl: 33px;
    --font-size-xxxl: 39px;
    --font-size-xxxxl: 47px;

    /***Border radius***/
    --border-radius-s: 16px;
    --border-radius-l: 32px;
}
/* cmsms stylesheet: typografie modified: Thursday, June 19, 2025 10:39:19 AM */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


h1 {
    font-weight: 700;
    font-style: normal;
    font-size: var(--font-size-xl);
    line-height: 1.2;
    color: var(--color-dark-blue);
    margin:0;
}

h2 {
    font-weight: 700;
    font-style: normal;
    font-size: var(--font-size-m);
    color: var(--color-dark-blue);
    margin:0;
}

h3 {
    font-weight: 700;
    font-style: normal;
    font-size: var(--font-size-l);
    color: var(--color-dark-blue);
    margin:0;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    margin:0 0 8px 0;
}
h4{
    font-weight: 700;
    font-style: normal;
    font-size: var(--font-size-xl);
    color: var(--color-dark-blue);
    margin:0;
}
h5{
    font-weight: 700;
    font-style: normal;
    font-size: var(--font-size-l);
    color: var(--color-dark-blue);
    margin:0;
}
h6{
    font-weight: 700;
    font-style: normal;
    font-size: var(--font-size-m);
    color: var(--color-dark-blue);
    margin:0;
}
ul{
    font-size: var(--font-size-s);
    color: var(--color-dark-blue);
    margin:0 0 0 0;
}
 p{
    font-size: var(--font-size-s);
    line-height: 1.6;
    margin:8px 0 0 0;
    color: var(--color-black);
}
a{
    color: var(--color-dark-blue);
}
 .content p + h2,
 .content p + h3,
 .content p + h4,
 .content p + h5{
    margin-top: 32px;
}

.content h1 {
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

.content h2 {
    color: var(--color-dark-blue);
    text-transform: none;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

.content h3 {
    color: var(--color-dark-blue);
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}
.content h4{
    color: var(--color-dark-blue);
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}
.content h5{
    color: var(--color-dark-blue);
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}
b, strong{
    font-weight: 700;
    color: var(--color-dark-green);

}

@media only screen and (min-width: 600px) {
    h1 {
        font-size: var(--font-size-xxxxl);
    }
    h2 {
        font-size: var(--font-size-xxxl);
    }
    h3 {
        font-size: var(--font-size-xxl);
    }
        .content_container .content h1 {
        font-size: var(--font-size-xxxl);
    }

    .content_container .content h3 {
        font-size: var(--font-size-xl);

    }
}
