@charset "utf-8";

.wow{ opacity: 0; }
.btn_exam_wrapper {
	display: flex;
	justify-content: center;
  	align-items: center;
}

#bannersContainer img {
	transition: opacity .4s;
}
#bannersContainer img:hover {
	opacity: .51;
}
red { color: #f00; }
blue { color: #00f; }


/*Q and A*/
.QandA {
	border: 5px solid rgb(114, 169, 214);
	padding: 12px;
	border-radius: 8px;
	margin:20px 20px 24px 20px;
}
.QandA hr {
	max-width: 99%;
	border: 2px solid rgb(114, 169, 214);
}
.QandA .question_mark {
	font-size:24px;
	font-weight:bold;
	color: rgb(100, 100, 255);
	margin-right:12px;
}
.QandA .question {
	font-size:18px;
	font-weight:bold;
	color: rgb(100, 100, 255);
}
.QandA .answer_mark {
	font-size:24px;
	font-weight:bold;
	color: rgb(255, 2, 242);
	margin-right:12px;
}
.QandA .answer {
	font-size:16px;
}


  
.cta {
	display: flex;
	padding: 10px 45px;
	text-decoration: none!important;
	font-size: 40px;
	color: white;
	background: rgb(0, 119, 255);
	transition: 1s;
	box-shadow: 6px 6px 0 black;
	transform: skewX(-15deg);
}
.cta * {
	word-break: keep-all;
}
.cta svg {
	margin-top:-10px;
	margin-left:-10px;
	transform: scale(0.8);
}

.cta:focus {
	outline: none; 
}

.cta:hover {
	transition: 0.5s;
	box-shadow: 10px 10px 0 #FBC638;
}

.cta span:nth-child(2) {
	transition: 0.5s;
	margin-right: 0px;
}

.cta:hover  span:nth-child(2) {
	transition: 0.5s;
	margin-right: 45px;
}
  
.cta span {
	transform: skewX(15deg);
	color: #fff;
}

.cta span:nth-child(1) {
	margin-top:10px;
	font-size:28px;
	letter-spacing: 4px;
}

.cta span:nth-child(2) {
	width: 20px;
	margin-left: 30px;
	position: relative;
	top: 12%;
}
	
/**************SVG****************/

path.one {
	transition: 0.4s;
	transform: translateX(-60%);
}

path.two {
	transition: 0.5s;
	transform: translateX(-30%);
}

.cta:hover path.three {
	animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
	transform: translateX(0%);
	animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
	transform: translateX(0%);
	animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
	0% {
		fill: white;
	}
	50% {
		fill: #FBC638;
	}
	100% {
		fill: white;
	}
}


@media screen and (max-width: 1024px) {
	.cta span {
		transform: skewX(0deg);
	}
	.cta {
		transform: skewX(0deg) scale(0.8);
	}
	#headLogo {
		padding-left: 20px; 
		padding-right: 20px;
		max-width:100%;
	}
	
	.responsiveFlex {
		flex-direction: column;
	}
	.responsiveFlex div:first-child {
		padding-bottom: 22px;
	}
}
@media screen and (max-width: 990px) {
	.nav-link {
		letter-spacing: 2px;
		font-size:16px;
	}
}
@media screen and (max-width: 800px) {
	.cta span:nth-child(1) {
		margin-top:9px;
		font-size:29px;
	}
	.cta svg {
		margin-top:-10px;
		transform: scale(0.6);
	}
	.cta {
		transform: scale(0.6);
	}
}
@media screen and (max-width: 792px) {
	.nav-link {
		letter-spacing: 0px;
		font-size:14px;
	}
}
@media screen and (min-width: 640px) {
	.navbar-nav {
		float:none;
		margin:0 auto;
		display: block;
		text-align: center;
		letter-spacing: 5px;
		font-size: 19px;
	}
	.navbar-nav > li {
		display: inline-block;
		float:none;
	}
	.nav-item:hover:before {
		opacity: 1;
	}
}
@media screen and (max-width: 610px) {
	.nav-link {
		font-size:13px;
	}
	h2 {
		font-size:22px;
	}
}

@media screen and (max-width: 580px) {
	.nav-link {
		opacity: 1!important;
		visibility: visible!important;
		animation-duration: none!important;
		animation-name: none!important;
	}
	.sbtn {
		margin: 20px 30px 20px 0;
	}
	#bannersContainer {
		display:none;
	}
	.cta {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 440px) {
	#bannersContainer {
		display:none;
	}
	#headLogo {
		margin-top: 30px;
	}
	h2 {
		font-size:18px;
	}
}