/* PLACE YOU CUSTOM STYLES IN THIS FILE */


/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	animation-duration:0.5s;
	} 

.fade-in.one {
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
	animation-delay: 0.2s;

	}

.fade-in.two {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	-o-animation-delay: 0.4s;
	animation-delay: 0.4s;

	}

.fade-in.three {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;

	}



.card-header{
	border-bottom:0;
	background-color: #fafafa;
}

.card-body{
	margin: 30px;
	text-align: justify;
}

.card{
	margin-top: 20px;
}

.custom-link-color{
	font-family: "Work Sans", sans-serif;
	font-weight: 400;
	font-size: 20px;
}

.custom-link-color:hover{
	color: #d9a83f;
}


#accordion{
	margin-top: 40px;
}



@keyframes backgroundAnimation {
  0% {
    background-color: #000000;
  }
  60% {
    background-color: #000000;
  }
  80% {
    background-color: rgba(12, 12, 12, 0.7);
  }
  100% {
    background-color: rgba(12, 12, 12, 0.7);
  }
}

#background-anim {
   animation: backgroundAnimation 4s;
}

.nav-mobile{
	background-color: black;
}

.nk-header-table{
	padding-top: 200px;
}

.color-or{
	color:#d5a943;
}