/*MOBILE SCREEN*/
/*BOOTSTRAP: xs*/  
body {
	font-family: 'Comfortaa', cursive;
}

h1 {
	color: #969698;
	font-size: 1.5em;
	margin: 0 0 1em 0;
}

#menu {
	color: #969698;
	padding:0 1em 0 0;
}


#menu a {
	color: #969698;
}

.colour-white {
	color: #fff;
}
.colour-white-bg {
	background-color: #fff;
	color: #969698;
}

.colour-sky {
	color: #33c5f3;
}
.button{
	background-color: #fff;
	border-radius: 50%;
}
.button:hover{
	background-color: #343433;
	color: #33c5f3;
}


.colour-sky-bg {
	background-color: #33c5f3;
	color: #fff;}

.colour-grey {
	color: #969698;
}
.colour-grey-bg {
	background-color: #969698;
	color: #fff;
}
.colour-charcoal {
	color: #343433;
}
.colour-charcoal-bg {
	background-color: #343433;
	color: #fff;
}

.blockflow {
	background-image: url(../images/blockflow.png);
	background-position: top center;
}

.vbg {
	background-image: url(../images/vbg.png);
	background-position: top center;
}

.modal-body {
	padding: 2rem;
	font-size: small;
  }

.cpdkblogo{
	width: 56px;
	padding-left: 5px;
	padding-right: 5px;
}

.pillhover {
	display: inline-block;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  }

  .pillhover:hover {
	background-color: #343a40 !important;
	transform: scale(1.5); 
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	cursor: pointer;
  }

.icon-circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: white;
	border: 0px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .icon-circle:hover {
	background: #343a40; 
	cursor: pointer;
	transform: scale(1.5);
  	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .icon-circle i {
	color: #33c5f3; 
  }

  .col-auto{
	opacity: 0;
	transform: translateY(10px);
	animation: fadeUp 0.6s ease forwards;
  }
  
  .col-auto:nth-child(1) { animation-delay: 1.1s; }
  .col-auto:nth-child(2) { animation-delay: 1.2s; }
  .col-auto:nth-child(3) { animation-delay: 1.3s; }
  .col-auto:nth-child(4) { animation-delay: 1.4s; }
  
  @keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	  }
  }

  .fade-in-left {
	opacity: 0;
	transform: translateX(-50vw);
	animation: fadeInLeft 1s ease forwards;
  }
  
  @keyframes fadeInLeft {
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }

  .fade-in-right {
	opacity: 0;
	transform: translateX(50vw);
	animation: fadeInRight 1s ease forwards;
  }
  
  @keyframes fadeInRight {
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }


/*
THE CSS BELOW OVERIDES PREVIOUS MOBILE CSS ABOVE
*/

/*SMALL MOBILE SCREEN*/
@media (min-width:478px) {
}

/*TABLET SCREEN*/
/*BOOTSTRAP: sm*/
@media (min-width:768px) {
	.spacer {
		min-height: 15%;
	}
	
	#thepage {
		position: absolute;
		top: 0;
		left:0;
		width: 100%;
		padding-top: 1em;
		overflow:auto;
	}

	.modal-width {
		--bs-modal-width: 600px;
        
    }
		
}

/*DESKTOP SCREEN*/
/*BOOTSTRAP: md*/
@media (min-width:992px) {
	#thepage {
		position: absolute;
		top: 40px;
	}
}

/*LARGE DESKTOP SCREEN*/
@media (min-width:1024px) {
	
}

/*LARGE DESKTOP SCREEN*/
/*BOOTSTRAP: lg*/
@media (min-width:1680px) {
	#thepage {
		position: absolute;
		top: 120px;
	}
}

/*HoneyPot*/
.required{
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
}







