
/* Fix for header offset on anchors.. */
/*[id]::before {
  content: '';
  display: block;
  height:      175px;
  margin-top: -175px;
  visibility: hidden;
}*/
/*:target::before {
    content: '';
    display: block;
    height:      180px;
    margin-top: -180px;
}*/
a.anchor { display: block; position: relative; top: -150px; visibility: hidden; }

.ndfc-brand {
	color: #9E005D;/*#555676; /*#EF8232;*/ /*Dark colour - 7F004B*/
}

a {
	color: #9E005D;/*#7b4dcd; /*#6293A6;/*#6DB3E4;*/
}

a:hover {
	color: #DC0082;/*#555676; /*#3D5B67;/*#3D5B67;*/
}

/*
Nice bright orange: EF8232 ; 
Nice cyan: 77B3CA ;

a
6DB3E4
3D5B67

cyan getting darker as you go down..
6DB3E4
6293A6
4C7180
3D5B67

tf dkblue
2F508A
445064
*/

/* Decrease heading sizes */
@media (max-width: 575.98px) {
	h1, h2, h3 { text-align: center; }
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }	
}
@media (min-width: 576px) and (max-width: 767.98px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }	
}

/* Sticky footer START */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 130px;
}
@media (max-width: 575.98px) {
	body {
	  /* Margin bottom by footer height */
	  margin-bottom: 280px;
	}	
}
@media (min-width: 576px) and (max-width: 767.98px) {
	body {
	  /* Margin bottom by footer height */
	  margin-bottom: 180px;
	}	
}	
@media (min-width: 768px) and (max-width: 991.98px) {
	body {
	  /* Margin bottom by footer height */
	  margin-bottom: 160px;
	}	
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;

  /* Set the fixed height of the footer here */
  min-height: 100px;
  /*height: auto;*/
  /*line-height: 60px; /* Vertically center the text there */
  /*background-color: #f5f5f5;*/
}
.footer-row {
	min-height: 100px;
	/*background-color: #f5f5f5;*/
}
/* Sticky footer END */


/* Hover effects for group page! 
   https://www.w3schools.com/howto/howto_css_image_overlay.asp
 */
.hovereffect {
  position: relative;
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #6293A6; /*#008CBA;*/
}

.hovereffect:hover .overlay {
  opacity: 0.9;
}

.overlay-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1;
  font-weight: bold;
}


/* YouTube Embed */
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; 
margin-bottom: 30px; 
height: 0; 
overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

