@charset "utf-8";

/* CSS Document */



.topnav .extra {
  background-color: #008486;
  color: white;
}

.topnav .right {
  float: right;
}


.indexcontent.large { min-height: 250px; }
        .indexcontent.large ul a:link, .indexcontent.large ul a:visited, .indexcontent.large ul a:active { color:#000000; text-decoration:underline; 	}
        .indexcontent.large ul a:hover { color:#015D5F; text-decoration:underline; }


.indexcontent.xs { min-height: 170px; }
        .indexcontent.xs ul a:link, .indexcontent.xs ul a:visited, .indexcontent.xs ul a:active { color:#000000; text-decoration:underline; 	}
        .indexcontent.xs ul a:hover { color:#015D5F; text-decoration:underline; }



.icon-circle {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #015D5F; /* Pantone 326 C */
  color: white;
  font-size: 28px;
  text-align: center;
    padding-top: 18px;
  line-height: 70px; /* gelijk aan hoogte voor verticale centrering */
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;

}

/* Hover-effect */
.icon-circle:hover {
  background-color: #1375C; /* iets donkerder tint of andere kleur */
  color: #fff;
  transform: scale(1.1); /* lichte vergroting */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card.fact {
    background-color: #fff;
    min-height: 275px;
    padding-top: 20px;
    padding-bottom: 2px;
     text-decoration: none;
}


	.card.fact a:link { color:#015D5F; text-decoration:none; }
	.card.fact a:visited { color:#015D5F; text-decoration:none; }
	.card.fact a:active { color:#015D5F; text-decoration:none; }
	.card.fact a:hover { color:#015D5F; text-decoration:none; }


.icon-circle.small {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #015D5F; /* Pantone 326 C */
  color: white;
  font-size: 20px;
  text-align: center;
    padding-top: 1px;
  line-height: 50px; /* gelijk aan hoogte voor verticale centrering */
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;

}

/* Hover-effect */
.icon-circle.small:hover {
  background-color: #1375C; /* iets donkerder tint of andere kleur */
  color: #fff;
  transform: scale(1.1); /* lichte vergroting */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Topmenu */
.hovertext {
  position: relative;
  border-bottom: 1px dotted black;
}

.hovertext:before {
  content: attr(data-hover);
  visibility: hidden;
  opacity: 0;
  width: 400px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  transition: opacity 1s ease-in-out;

  position: absolute;
  z-index: 1;
  left: 0;
  top: 110%;
}

.hovertext:hover:before {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 600px) {
  .hovertext:hover:before {display: none;}
    .hovertext:before {display: none;}
}

/* Style */

.new {
    font-size:10px;
    color:#BEBEBE; 
}

.big { font-size: 230%; line-height: normal; }
.big1 { font-size: 110%; line-height: normal; }
.big2 { font-size: 180%; line-height: normal; }
.big3 { font-size: 130%; line-height: normal; }
.big0 { font-size: 350%; line-height: normal;} 

.ultralightgreen { background-color:#f1f8f7; }
.icongreen { color:#008486; font-size: 180%; padding-top: 15px; padding-right: 25px; }
.factgreen{ color: #015D5F; font-size: 130%; }
.green{ color: #015D5F; }

