/*Base*/
*,*:before,*:after {
	box-sizing: border-box;
}

body {
    font-family: 'quicksand', Arial, sans-serif !important;
    font-size: 20px !important;
    line-height: 1.5 !important;
    color: black !important;
}

a {
	cursor: pointer;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

a:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

a:focus {
	outline: 1px dashed #363636;
    outline-offset: 5px;
}

.text-shadow {
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35);
}

.inner-shadow {
   -moz-box-shadow: inset 0 0 10px rgba(93, 93, 93, 0.25);
   -webkit-box-shadow: inset 0 0 10px rgba(93, 93, 93, 0.25);
   box-shadow: inset 0 0 10px rgba(93, 93, 93, 0.25);
}

.pop-blue-text {
	color: #A9E0FF;
}

.pop-blue-background {
	background-color: #A9E0FF;
}

.pop-blue-background-lighter {
	background-color: #d4efff;
}

.pop-blue-background-lightest {
	background-color: #f3faff;
}

.teal-background {
	background-color: #3AA6BD;
}

.white-background {
	background-color: #fff;
}

.grey-background {
	background-color: #BFBFBF;
}

.smaller-text {
	font-size: 90%;
}

.larger-text {
	font-size: 120%;
	margin-bottom: 5px;
}

.flex {
	display: -webkit-flex;
	display: flex; 
}

.no-space {
	margin: 0px !important;
	padding: 0px !important;
}

.indent {
	margin-left: 20px;
}

.hidden {
	display: none !important;
}

.scholarship-winners {
	margin-bottom: 30px;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes glow {
   from{
    text-shadow: 0 0 2px rgba(229, 245, 255, 0.5), 0 0 4px rgba(229, 245, 255, 0.5), 0 0 6px rgba(229, 245, 255, 0.5);
     color: #A9E0FF;
    }
  to{
    text-shadow: 0 0 0px #fff;
    color: #A9E0FF;
    }
}
@keyframes glow {
   from{
    text-shadow: 0 0 2px rgba(229, 245, 255, 0.5), 0 0 4px rgba(229, 245, 255, 0.5), 0 0 6px rgba(229, 245, 255, 0.5);
     color: #A9E0FF;
    }
  to{
    text-shadow: 0 0 0px #fff;
    color: #A9E0FF;
    }
}

.glow{
  -moz-animation: glow 3.5s ease-in-out infinite alternate;
  -webkit-animation: glow 3.5s ease-in-out infinite alternate;
  animation: glow 3.5s ease-in-out infinite alternate;
}

/* Chrome, Safari, Opera */
@keyframes box-glow {
   from{
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.25), 0 0 8px rgba(255, 255, 255, 0.25), 0 0 16px rgba(255, 255, 255, 0.25);
    }
  to{
    box-shadow: 0 0 0px #fff;
    }
}
@keyframes box-glow {
   from{
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.25), 0 0 8px rgba(255, 255, 255, 0.25), 0 0 16px rgba(255, 255, 255, 0.25);
    }
  to{
    box-shadow: 0 0 0px #fff;
    }
}

.box-glow{
  -moz-animation: box-glow 3s ease-in-out infinite alternate;
  -webkit-animation: box-glow 3s ease-in-out infinite alternate;
  animation: box-glow 3s ease-in-out infinite alternate;
}

.scroll {
	height: 50px !important;
	background-color: #387cc3 !important;
/* 	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.0) !important; */
}

/*Responsive Styles*/


/*EXTRA Large*/
@media (max-width: 1280px) {
	.title {
		font-size: 68px !important;
		top: 57vh !important;
	}

	.nav-link {
		font-size: 15px !important;
	}

	.navbar { 
		box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
	}
	
	.about-dropdown li{
		font-size: 15px !important;
	}

	.inner-expanded-navbar {
		display: flex !important;
		margin: 0px auto !important;
	}
	
	.space-bottom-xl {
		margin-bottom: 20px !important;
	}	
	
	.profile-click img {
		width: 200px !important;
		height: 200px !important;
	}
	
	.steps-app {
		margin-top: 36px !important;
	}
	
	.scroll-steps-change {
		margin-top: -30px !important;
	}
	
	.pages li{
		margin: 10px 12px 10px 12px !important;
	}
	
	.pages li a{
		padding: 6px !important;
	}
	
	.blog-post-heading {
		margin: 51px 0px 40px 0px !important;
	}
	
	.area {
		height: 90px !important;
	}
}

/*Large*/
@media (max-width: 960px) {
	.title {
		font-size: 60px !important;
		top: 57vh !important;
	}
	
	.home-info {
		padding: 0px 15px 10px 15px !important;
	}

	.inner-slide,
	.carousel-caption-img,
	.carousel-caption-vid {
	    width: 75% !important;
	}
	
	.pages li{
		margin: 8px !important;
	}
	
	.pages li a{
		padding: 5px !important;
	}
	
	.grid-sizer,
	.grid-item {
	  width: 50% !important;
	}
	
	.area {
		height: 90px !important;
	}
}

/*Medium*/
@media (max-width: 840px) {
	.title {
		font-size: 48px !important;
		top: 44vh !important;
	}

	.navbar { 
		box-shadow: none !important;
	}
	
	.hamburger {
		align-items: center;
	    display: flex !important;
	}
	
	.scroll .hamburger {
		margin: 0px 10px 0px 0px !important;
	}
	
	.expanded-navbar {
		display: none !important;
	}

	.banner-container {
		height: 80vh !important;
	}

	.glow{
	  -moz-animation: none !important;
	  -webkit-animation: none !important;
	  animation: none !important;
	}
	
	.home-info h2{
		font-size: 40px !important;
	}
	
	.home-info p {
		font-size: 20px !important;
	}
	
	.learn-button {
		width: 100% !important;
		height: 40px !important;
		font-size: 24px !important;
	}
		
	.offer-heading {
		font-size: 40px !important;
	}
	
	.offer-container p {
		font-size: 20px !important;
	}
	
	.offer-container h2 {
		font-size: 32px !important;
	}
	
	.apply-container {
		padding: 0px !important;
	}
	
	.apply-input {
		margin-bottom: 20px !important;
	}
	
	.heading-container h1{
		font-size: 65px !important;
	}
	
	.sub-heading {
		font-size: 24px !important;
	}
	
	.profile-click img {
		width: 240px !important;
		height: 240px !important;
	}
	
	.professor-name {
		font-size: 20px !important;
	}
	
	.bottom-form-messages {
		margin-top: 30px !important;
	}
	
	.steps-app {
		margin-top: 0px !important;
	}
	
	.scroll-steps-change {
		margin-top: -30px !important;
	}
	
	.pages li{
		margin: 5px !important;
	}
	
	.post h2 {
		font-size: 1.5rem !important;
	}
	
	.post-excerpt {
		font-size: 16px !important;
	}
	
	.post-author-image{
		text-align: center;
	}
	
	.blog-post-heading {
		margin: 15px 0px 40px 0px !important;
	}
	
	.blog-post-heading h1{
		font-size: 34px !important;
	}
	
	.inner-slide {
		width: 100% !important;
	}
	
	.carousel-caption-img,
	.carousel-caption-vid {
		width: 100% !important;
	}
	
	.area {
		height: 60px !important;
	}
	
	.bottom-footer-container a{
		font-weight: normal !important;
	}		
}

/*Small*/
@media (max-width: 600px) {
	h2 {
		font-size: 1.5em !important;
	}
	
	body {
	    font-size: 90% !important;
	}
	
	.title {
		font-size: 45px !important;
	}

	.navbar { 
		height: 90px !important;
	}

	.logo {
		height: 70px !important;
		margin-left: 10px !important;
	}
	
	.scroll .logo {
		height: 45px !important;
		margin-left: 10px;
	}
	
	.scroll {
		height: 70px !important;
		background-color: #387cc3 !important;
	}
	
	.scroll .hamburger {
		font-size: 90% !important;
	}

	.hamburger {
		margin: 0px 20px 0px 0px !important;
	}

	.banner-button {
		top: 46vh !important;
	}
	
	.banner-apply-dropdown {
		top: 46vh !important;
	}
	
	.home-info {
		padding: 0px 10px 10px 10px !important;
	}
	
	.home-info h2{
		font-size: 36px !important;
	}
	
	.learn-button {
		margin: 10px 0px 15px 0px !important;
	}
	
	.offer-heading {
		font-size: 36px !important;
	}
	
	.offer-container h2 {
		font-size: 30px !important;
	}
	
	.apply-input-field {
		font-size: 20px !important;	
	}
	
	.apply-go-button {
		min-width: 80px !important;
		font-size: 20px !important;
	}
	
	.bottom-footer-container {
		padding: 10px 0px 10px 0px !important;
		font-size: 14px !important;
		text-align: center !important;
	}
	
	.heading-container {
		width: 100%;
	}
	
	.heading-container h1{
		font-size: 55px !important;
	}
	
	.sub-heading {
		font-size: 22px !important;
	}
	
	.top-img {
		height: 40vh !important;
	}
	
	.indent {
		margin-left: 10px !important;
	}
	
	.content-container {
		margin-left: 10px !important;
	}

	.content-container h1, .content-container h2 {
		margin-left: -10px !important;
	}
	
	.carousel-caption-img h3,
	.carousel-caption-vid h3
	{
		margin-bottom: 0px !important;
	}
	
	.pick-one {
		width: 200px !important;
		padding-left: 5px;
	}
	
	.year-dropped {
		width: 200px !important;
	}
	
	.year-dropped span {
		padding-left: 5px !important;
	}
	
	.steps-app {
		margin-top: 10px !important;
	}
	
	.scroll-steps-change {
		margin-top: -10px !important;
	}
	
	.contained {
		width: 90% !important;	
	}
	
	.year-select {
		width: auto !important;
	}
	
	.pages li{
		margin: 4px !important;
	}
	
	.pages li a{
		padding: 4px !important;
	}
	
	.popular-tag-list {
		width: 100%;
	}
	
	.popular-tag-list li{
		width: 100%;
		margin: 6px 0px 6px 0px !important;
	}
	
	.blog-post-heading h1{
		font-size: 32px !important;
	}
	
	.post-author-text {
		font-size: 16px !important;
	}
	
	.grid-sizer,
	.grid-item {
	  width: 100% !important;
	}
	
	.focused {
	  width: 68% !important;
	}
	
	.news-heading {
		font-size: 1.8rem !important;
	}
	
	.view-all-btn {
		font-size: 16px !important;
		padding: 8px 20px 8px 20px !important;
	}
	
	.area {
		height: 60px !important;
	}
	
	.form-input-zip,
	.find-zip {
		font-size: .8rem !important;
	}
	
	.google-maps {
		height: 400px !important;
	}
}

/*EXTRA Small*/
@media (max-width: 480px) {
	.title {
		font-size: 40px !important;
	}
	
	.banner-button,
	.banner-apply-dropdown {
		top: 44vh !important;
	}
	
	.apply-input-field {
		min-width: 150px !important;
	}
	
	.heading-container h1{
		font-size: 48px !important;
		overflow-x: hidden !important;
		overflow-y: hidden !important;
	}
	
}

/*Header*/
.scroll .logo {
	height: 40px;
	margin-left: 10px;
}

.scroll .nav-button {
	display: none;
}

.scroll .nav-link {
	color: #fff;
	font-size: 18px;
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35);
}

.scroll .hamburger {
	font-size: 80%;
}

.scroll .navbar-dropdown-section {
	align-items: center;
	line-height: 50px;
}

.scroll .about-dropdown {
	top: 50px;
	background-color: #387cc3 !important;
}

.scroll .about-dropdown li{
	padding: 7px 21px 7px 21px;
}

.semi-transparent {
	color: #7c7c7c;
	background-color: rgba(0, 0, 0, 0.25);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: all .2s;
	-webkit-transform: translateZ(0);
}

.navbar { 
	height: 80px;
}

.logo {
	height: 68px;
	margin-left: 20px;
	transition: all .2s;
}

.nav-menu{
	color: white;
	-webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35));
  	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35));
  	font-size: 40px;
  	padding-right: 10px;
}

.nav-menu:hover{
	color: white;
	-webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35));
  	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35));
}

.nav-menu span {
	display:block;
	height: 3px;
	width: 32px;
	background: #fff;
	margin: 6px 0;
	transition: transform 0.1s linear;
}

.active span {
	transition: transform 0.1s ease-out, opacity 0.2s linear;
}

.active .line-1 {
	transform: translateY(9px) translateX(0) rotate(45deg);	
}

.active .line-2 {
	opacity:0;
}

.active .line-3 {
	transform: translateY(-9px) translateX(0) rotate(-45deg);
}

.hover-change-up {
   transform: translateY(-2px);
}

.hover-change-down {
   transform: translateY(2px);
}  

.mobile-dropdown-list {
	list-style-type: none;
	margin: 0px 0px 0px 0px;
	background-color: #f5fbff !important;
}

.mobile-dropdown-list li a,
.other-mobile-link a
{
	padding-left: 40px !important;
}

.nav-link {
	color: #fff;
	font-size: 20px;
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.30);
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.nav-link:hover {
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.65);
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.down-icon {
	margin-left: 5px;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.mobile-down-icon {
	margin-right: 20px;
	margin-top: 4px;
	float: right;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.link-icon {
	margin-right: 10px;
}

.rotate-up {
    transform: rotate(180deg);
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.navbar-dropdown-section {
	align-items: center;
	line-height: 80px;
}

.about-dropdown {
	background-color: rgba(0, 0, 0, 0.25);
	border-top: 1px solid white;
	position: absolute;
	line-height: normal;
	top: 80px;
	z-index: 900;
	display: none;
	text-align: center;
	padding: 0px 0px 20px 0px;
}

.about-dropdown a{
	color: white;
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.30);
}

.about-dropdown a:hover {
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.65);
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.about-dropdown ul{
	list-style-type: none;
	margin: 0px;
} 

.about-dropdown li{
	font-size: 18px;
	border-bottom: 1px solid white;
	padding: 7px 28px 7px 28px;
	margin: 0px 10px 0px 10px;
}

.nav-button {
	width: 190px;
	height: 55px;
	margin: 8px 20px 10px 0px;
	color: white;
	border: none;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	font-size: 30px;
	z-index: 901;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.nav-button:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.nav-apply-dropdown {
	background-color: rgba(0, 0, 0, 0.25);
	width: 190px;
	position: absolute;
	top: 80px;
	right: calc(20px + .4rem);
	z-index: 900;
	display: none;
	border-top: 1px solid white;
}

.nav-apply-dropdown p{
	color: white;
	text-align: center;
	font-size: 18px;
	margin: 0 auto;
	padding-bottom: 5px;
	margin-top: 22px;
}

.nav-apply-dropdown form{
	width: 90%;
	max-width: 100%;
	margin: 0px auto;
	padding: 0px;
	display: -webkit-flex;
	display: flex; 
	align-items: center;
	margin-bottom: 30px;
}

.nav-apply-dropdown input[type="text"], .nav-apply-dropdown input[type="tel"] {
	width: 100%;
	max-width: 130px;
	border: none;
	padding: 0px 0px 0px 5px;
	min-height: 32px;
}

.nav-apply-dropdown button {
	background-color: #78d9af !important;
	color: white;
	border: none;
	cursor: pointer;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.nav-apply-dropdown input[type="text"]:focus, .nav-apply-dropdown input[type="tel"]:focus {
  	box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  	z-index: 1000;
  	-webkit-transition: all .4s ease !important;
    -moz-transition: all .4s ease !important;
    -o-transition: all .4s ease !important;
    -ms-transition: all .4s ease !important;
    transition: all .4s ease !important;
}

.nav-apply-dropdown button:hover {
	-webkit-filter: brightness(75%);
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.nav-apply-dropdown input[type="text"]::placeholder, .nav-apply-dropdown input[type="tel"]::placeholder {
    color: #c9c9c9;
    opacity: 1; /* Firefox */
}

.nav-apply-dropdown input[type="text"]:-ms-input-placeholder, .nav-apply-dropdown input[type="tel"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #c9c9c9;
}

.nav-apply-dropdown input[type="text"]::-ms-input-placeholder, .nav-apply-dropdown input[type="tel"]::-ms-input-placeholder { /* Microsoft Edge */
   color: #c9c9c9;
}

.top-form-messages li{
	margin-top: 0px !important;
	color: yellow !important;
	list-style-type: none;
	background-color: transparent !important;
}

.expanded-navbar {
	color: #7c7c7c;
	background-color: rgba(0, 0, 0, 0.25);
	position: fixed;
	margin-top: 80px;
	top: 0;
	left: 0;
	z-index: 899;
	text-align: center;
	width: 100%;
	display: -webkit-flex;
	display: flex; 
	-webkit-transform: translateZ(0);
}

.expanded-down-icon {
	margin-left: 5px;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.expanded-about-dropdown {
	background-color: rgba(0, 0, 0, 0.25);
	border-top: 1px solid white;
	position: absolute;
	top: 36px;
	width: calc(20% - 16px);
	z-index: 900;
	display: none;
	padding: 0px 0px 16px 0px;
	margin: 0 auto;
}

.expanded-about-dropdown a{
	color: white;
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.30);
}

.expanded-about-dropdown a:hover {
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.65);
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

 .expanded-about-dropdown ul{
	list-style-type: none;
	margin: 0px;
} 

.expanded-about-dropdown li{
	font-size: 14px;
	border-bottom: 1px solid white;
	padding: 7px 10px 7px 10px;
	margin: 0px 10px 0px 10px;
}

/*Banner*/
.banner-container {
	margin: 0px;
	margin-top: -.8rem;
	padding: 0px;
	height: 75vh;
	background-image: url('/static/images/vm_new/bg-new.jpg');
    background-repeat: no-repeat;
    background-position: center; 
    background-size: cover;
}

.title {
	font-size: 92px;
	position: relative;
	top: 57vh;
	margin-bottom: 40px;
	color: white;
	text-shadow: 2px 2px 6px rgba(0,0,0,.4);
}

.banner-button {
	position: relative;
	top: 48vh;
	color: white;
	margin: 0 auto;
	width: 210px;
	height: 65px;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 30px;
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.banner-button:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.button-link {
	color: white;
    display:block;
    width:100%;
    padding: 8px 22px 8px 22px;
}
.button-link:hover {
	-webkit-filter: none; /* Chrome, Safari, Opera */
    filter: none;  
}

.banner {
	height: 100px;
	max-height: 800px;
}

.banner-apply-dropdown {
	background-color: #3AA6BD;
	position: relative;
	top: 48vh;
	z-index: 1;
	color: white;
	margin: 0 auto;
	padding-bottom: 36px;
	width: 210px;
	display: none;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35); 
	border-top: 2px solid white;
}

.banner-apply-dropdown p{
	color: white;
	text-align: center;
	font-size: 18px;
	margin: 0 auto;
	padding-bottom: 5px;
	margin-top: 28px;
}

.banner-apply-dropdown form{
	width: 90%;
	max-width: 100%;
	margin: 0px auto;
	padding: 0px;
	display: -webkit-flex;
	display: flex; 
	align-items: center;
}

.banner-apply-dropdown input[type="text"], .banner-apply-dropdown input[type="tel"] {
	width: 100%;
	max-width: 151px;
	border: none;
	padding-left: 5px;
}

.banner-apply-dropdown button {
	background-color: #78d9af !important;
	color: white;
	border: none;
	cursor: pointer;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.banner-apply-dropdown input[type="text"]:focus, .banner-apply-dropdown input[type="tel"]:focus {
  	box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  	z-index: 1000;
  	-webkit-transition: all .4s ease !important;
    -moz-transition: all .4s ease !important;
    -o-transition: all .4s ease !important;
    -ms-transition: all .4s ease !important;
    transition: all .4s ease !important;
}

.banner-apply-dropdown button:hover {
	-webkit-filter: brightness(75%);
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.banner-apply-dropdown input[type="text"]::placeholder, .banner-apply-dropdown input[type="tel"]::placeholder {
    color: #c9c9c9;
    opacity: 1; /* Firefox */
}

.banner-apply-dropdown input[type="text"]:-ms-input-placeholder , .banner-apply-dropdown input[type="tel"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #c9c9c9;
}

.banner-apply-dropdown input[type="text"]::-ms-input-placeholder, .banner-apply-dropdown input[type="tel"]::-ms-input-placeholder { /* Microsoft Edge */
   color: #c9c9c9;
}

.middle-form-messages {
	height: 100%;
	position: relative;
}

.middle-form-messages li{
	margin-top: 10px !important;
	color: yellow !important;
	list-style-type: none;
	background-color: transparent !important;
}

.footer-widget {
	padding: 20px 40px;
}

@media (max-width: 1280px){
	.footer-widget {
		padding: 20px 20px;
	}
}
@media (max-width: 1000px){
	.footer-widget {
		padding: 20px 5px;
	}
}
@media (max-width: 840px){
	.footer-widget {
		padding: 0px;
	}
}

/*Home*/
.home-first-container {
	box-shadow: 0px -2px 6px rgba(0,0,0,.3);
}
.home-info {
	padding: 0px 25px 10px 25px;
	display: flex;
	flex-direction: column;
}

.home-info h2{
	font-size: 46px;
	margin-bottom: 10px;
}

.home-info p{
	font-size: 24px;
	margin-bottom: 10px;
}

.home-info a:hover{
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%); 
}

.learn-button {
	color: white;
	margin: 15px 0px 5px 0px;
	width: 280px;
	height: 45px;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 26px;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.learn-button:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.same-height {
	flex-grow: 1;
}

.fa-chevron-right {
	color: #387cc3;
}

.offer-heading {
	font-size: 46px;
	margin-bottom: 0px;
}

.offer-container {
	padding: 0px 0px 20px 0px;
}

.offer-container h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

.offer-container a {
	color: black;
}

.offer-container a:hover {
	color: #387cc3;
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%); 
}

.offer-container p {
	font-size: 24px;
}

/*Site Style*/
.heading-container {
	background-color: transparent;
	position: absolute;
	bottom: 2px;
	text-align: center;
	width: calc(100% - .8rem);
}

.heading-container h1{
	margin-bottom: 0px;
	color: #f3faff;
	font-weight: bold;
	font-size: 80px;
	z-index: 2;
	text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.70);
}

.main-content {
	z-index: 3;
	position: relative;
	margin-top: 0px;
}

.main-content p{
	margin-bottom: 15px;
}

.sub-heading {
	font-size: 28px;
	margin: 0 auto;
	margin-bottom: 25px;
	font-weight: bold;
}

.sub-heading a{
	color: #387cc3;
}

.sub-heading a:hover{
	color: #000;
}

.content-container {
	margin-bottom: 20px;
	margin-left: 20px;
}

.content-container a{
	color: #387cc3;
}

.content-container a:hover {
	color: #000;
}

.content-container h1, .content-container h2 {
	font-weight: bold;
	margin-left: -20px;
	margin-top: 30px;
}

.auto {
	display: block;
	margin: 0 auto !important;
	padding-top: 15px;
	padding-bottom: 30px;
}

.blog-auto {
	display: block;
	margin: 0 auto !important;
	padding-top: 15px;
	padding-bottom: 30px;
	height: 500px !important;
	object-fit: cover;
}

.inner-slide {
	width: 66%;
	margin: auto;
	min-height: 300px;
}

.swiper-slide img {
	width: 100%;
	height: auto;
}

.carousel-caption-img {
    background: rgba(0,0,0,0.65);
    width: 66%;
    color: white;
    padding: 10px;
    position: absolute;
    bottom: 0;
    height: auto;
    margin-bottom: 30px;
    word-wrap: break-word;
}

.full-height {
	height: 300px; 
}

.pic-filler {
	height: 455px;
	width: 100%;
	display: block;
	background: rgba(0,0,0,0.65) !important;
	margin-top: 15px;
	margin-bottom: 30px;
}

.no-background {
	background: none !important;
}

.carousel-caption-vid {
    background: rgba(0,0,0,1);
    width: 66%;
    color: white;
    padding: 11px;
    position: absolute;
    top: 0;
    height: auto;
}

.blog-img-link img{
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.blog-img-link img:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.blog-img-link .pic-filler{
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.blog-img-link .pic-filler:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    background: rgba(0,0,0,0.75) !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.carousel-caption-img h3{
	font-size: 26px;
	margin-bottom: .3em;
}

.carousel-caption-img h3 a{
	color: white
}

.carousel-caption-vid h3 {
	font-size: 24px;
	margin-bottom: .1em;
}

.carousel-caption-vid p,
.carousel-caption-img p{
	font-size: 16px;
}

.space-bottom {
	padding-bottom: 35px;
}

.pick-one {
	float: left;
	height: 40px;
	width: 300px;
	border: solid 1px #78d9af;
	font-size: 1.2rem;
	padding-left: 20px;
	display: -webkit-flex;
	display: flex; 
	align-items: center;
	background-color: white;
}

.truth-top {
	margin-bottom: 20px;
}

.truth-top p{
	margin: 0px;
	font-size: 14px;
}

.truth-top img{
	max-width: 100%;
}

.more-vid {
	margin-bottom: 40px;
}

.more-vid iframe {
	margin: auto;
	max-width: 1350px;
}

/*Scholarships*/
.year-select {
	height: 50px;
	cursor: pointer;
	width: 420px;
}

.drop-down-year {
	float: left;
	background-color: #78d9af;
	color: white;
	margin: auto;
	text-align: center;
	display: block;
	height: 40px;
	width: 95px;
	display: -webkit-flex;
	display: flex; 
	align-items: center;
}

.drop-down-year-active {
	background-color: #3AA6BD !important;
}

.drop-down-year i {
	margin: auto;
	font-size: 24px;
}

.year-arrow-icon {
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.year-dropped {
	width: 300px;
	border-style: solid;
    border-width: 0px 2px 2px 2px;
	border-color: #78d9af;
	font-size: 23px;
	height: 300px;
	overflow-x: hidden;
	overflow-y: scroll;
	margin-top: -10px;
	margin-bottom: 10px;
	background-color: white;
}

.year-dropped::-webkit-scrollbar {
    background-color: black;
}

.year-dropped::-webkit-scrollbar-track {
    background-color: white;
}

.year-dropped::-webkit-scrollbar-thumb {
	background-color: #3AA6BD;
}

.year-dropped span {
	list-style: none;
	margin: 0px;
	border-bottom: solid 1px #78d9af;
	width: 100%;
	display: block;
	padding-left: 20px;
	font-size: 1.1rem;
}

.year-dropped a {
	color: black;
}

.year-dropped a:hover {
	color: #3AA6BD;
}

.winners {
	width: 100%;
}

.scholarship {
	width: 100%;
	margin-bottom: 10px
}

.emoji {
	height: 20px;
	margin-bottom: -2px;
}

.card-prof img{
	height: calc(136px * 1.5);
	width: calc(106px * 1.5);
}


.column-padding-remove {
	padding: 0 !important;
	margin-top: 10px;
}

.professors h3 {
	font-size: 20px;
	text-align: center;
}

.professors span {
	text-align: center;
	margin-bottom: 10px;
}

.profile-click img {
	object-fit: contain;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	border: 5px solid #78d9af;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	cursor: pointer;
	background: transparent;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.profile-click img:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.professor-name {
	bottom: 0;
	padding: 6px;
	font-size: 22px;
}

.pop-appear {
	margin-top: 10px;
}

.card-profiles{
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	padding: 10px;
	background-color: white;
	margin-bottom: 10px;
}

.icon-down {
	background-color: #78d9af;
	margin-top: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    color: white;
     -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25)); 
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
  	align-items: center;
	-webkit-transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
}

.icon-down:hover{
	-webkit-transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
    -webkit-box-shadow: 0 0 0 5px #3d4752;
	box-shadow: 0 0 0 5px #3d4752;
}

.icon-down .fa-chevron-down{
	font-size: 20px !important;
	margin-top: -1px;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.space-below {
	margin-bottom: 25px;
}

.card-profiles span{
	font-size: 15px !important;
}

.leader-heading {
	width: 100%;
	height: 20px;
}

.bio-leaders h3 {
	width: 100%;
}

.bio-leaders span {
	margin-bottom: 10px !important;
	text-align: left;
}

.leader-position {
	text-align: center;
	padding-bottom: .5em; 
	border-bottom: solid 2px #78d9af;
}

.region {
	margin: auto;
}

.region h3 {
	width: 100%;
	padding: 0px 10px 0px 10px;
	border: solid 1px black;
	margin-bottom: 5px;
	color: white;
    border: none;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    background-color: #3AA6BD;
    font-size: 1.1em;
}

.area {
	width: 100%;
	height: 60px;
	border-top: solid 1px;
	border-left: solid 1px;
	border-right: solid 1px;
	padding: 5px;
	margin-bottom: 0px !important;
    border: none;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    background-color: white;
    font-size: 0.9em;
}

.reg-phone {
	width: 100%;
	border: solid 1px black;
	padding: 5px;
    border: none;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    background-color: white;
    font-size: 0.9em;
}

.vector-canada {
	margin: 0 !important;
}

.country-name {
	border-bottom: solid 2px black;
	width: 100%;
}

/* Google Maps */

.find-zip {
	padding: 8px;
    border: none;
    font-size: 1.0rem;
    background-color: #78d9af !important;
    color: white;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.find-zip:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.form-input-zip {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    background-image: none;
    border: .05rem solid #caced7;
    border-radius: .1rem;
    color: #50596c;
    display: block;
    font-size: 1.0rem;
    height: 1.8rem;
    line-height: 1rem;
    max-width: 100%;
    outline: none;
    padding: .35rem .4rem;
    position: relative;
    transition: all .2s ease;
    width: 100%;
}

.form-input-zip:focus {
	border: solid 1px #78d9af;
}

.google-maps {
	height: 500px;
	margin: auto;
}

/* Contact Us Form */

.contact-us-form {
	padding: 25px 25px 25px 25px !important;
	margin: 0px auto;
	border-top: solid 1px;
	border-left: solid 1px;
	border-right: solid 1px;
	padding: 5px;
	margin-bottom: 0px !important;
    border: none;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    background-color: white;
}

#contact-us-form input:focus, .contact-us-form textarea:focus {
	border: solid 1px #3AA6BD;
}

.contact-input {
	margin: 10px 0px 10px 0px;
}

.send-contact-form {
    height: 55px;
    margin: 20px auto;
    color: white;
    border: none;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    font-size: 30px;
    z-index: 901;
    padding: 0px 20px 0px 20px;
    max-width: 100%;
    width: 250px;
    background-color: #78d9af;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.send-contact-form:hover{
    -webkit-filter: brightness(75%);
    filter: brightness(75%);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.input-group-addon {
	background-color: #3AA6BD !important;
	color: white;
	border: none !important;
	min-width: 100px;
}

.message-input {
	min-height: 20px;
}

#contact-us-form {
	padding: 0px !important;
}

.g-recaptcha {
	margin: auto;
}

.recaptcha_error {
	margin: auto;
	text-align: center;
}

.contact-error li {
	margin-left: 10px !important;
}

/*Footer*/
.apply-container {
	padding: 0px 20px 0px 20px;
	text-align:left;
	flex-direction:column;
	display:flex;
	justify-content:center;
}
.apply-container h1 {
	font-size: 46px;
}

.apply-input {
	display: -webkit-flex;
	display: flex; 
	align-items: center;
	width:100%;
	text-align:left;
	padding:0;
	padding-top:1em;
}

.apply-input-field {
	padding: 8px 8px 8px 12px;
	background-color: #fff !important;
	border: none;
	width: 100%;
	font-size: 23px;
	outline: none;
	-webkit-transition: all .4s ease !important;
    -moz-transition: all .4s ease !important;
    -o-transition: all .4s ease !important;
    -ms-transition: all .4s ease !important;
    transition: all .4s ease !important;
}

.apply-input-field:focus {
  	box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  	z-index: 1000;
  	-webkit-transition: all .4s ease !important;
    -moz-transition: all .4s ease !important;
    -o-transition: all .4s ease !important;
    -ms-transition: all .4s ease !important;
    transition: all .4s ease !important;
}

.apply-go-button {
	border: none;
	width: 30%;
	font-size: 23px;
	background-color: #78d9af !important;
	color: white;
	cursor: pointer;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.apply-go-button:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.apply-input-field::placeholder {
    color: #c9c9c9;
    opacity: 1; /* Firefox */
}

.apply-input-field:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #c9c9c9;
}

.apply-input-field::-ms-input-placeholder { /* Microsoft Edge */
   color: #c9c9c9;
}

.links-container ul {
	list-style-type: none;
	margin-left: 0px;
	margin-bottom: 0px;
}

.links-container li {
	margin-top: .3rem !important;
}

.links-container li a {
	font-size: 20px;
	color: #363636;
}

.links-container li a:hover{
	color: #387cc3;
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%); 
}

.icon-container {
	padding: 0px !important;
	margin: 0px auto !important;
	max-width: 450px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
}

.twitter-follow-button {
	float: left;
}

.icon-container a {
	color: black;
}

.icon-container .image-icon {
	position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    text-align: center;
    padding: 13px;
}

.bottom-footer-container {
	padding: 10px;
	font-size: 16px;
	text-align: left;
}

.bottom-footer-container a{
	color: #387cc3;
	font-weight: bold;
}

.bottom-footer-container a:hover{
	color: black;
}

.footer-img {
	margin: 0px 5px 0px 5px;
}

.form-section {
	display: -webkit-flex;
	display: flex; 
}

.bottom-form-messages:empty {
	display: none !important;
}

.bottom-form-messages {
	margin-top: 25px;
	font-size: 25px;
}

.bottom-form-messages li{
	background-color: transparent !important;
	color: yellow !important;
	list-style-type: none;
}

/* Application */

.scroll-steps-change {
	margin-top: -30px;
}

.steps-app {
	width: 100%;
	position: fixed;
	left: 0;
	position: fixed;
	background-color: #3AA6BD;
	margin-bottom: 20px;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}

.step .step-item a::before {
	background-color: #78d9af;
}

.step .step-item:not(:first-child)::before {
	background-color: #78d9af;
 	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.step .step-item.active a::before {
    background: #fff;
    border: .1rem solid #78d9af;
}

.step .step-item.active a::before {
    box-shadow: 0 0 4px 4px #78d9af;
    border-radius: 50%;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(.17,.67,.83,.67);
    -moz-animation: pulse 1.25s infinite cubic-bezier(.17,.67,.83,.67);
    -ms-animation: pulse 1.25s infinite cubic-bezier(.17,.67,.83,.67);
    animation: pulse 1.25s infinite cubic-bezier(.17,.67,.83,.67);
}
.step .step-item.active a::before:hover 
{
  -webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}

@-webkit-keyframes pulse {to {box-shadow: 0 0 0 5px rgba(232, 76, 61, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 5px rgba(232, 76, 61, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 5px rgba(232, 76, 61, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 5px rgba(232, 76, 61, 0);}}

.step .step-item a::before {
    background: #78d9af;
    border: .1rem solid #fff;
    border-radius: 50%;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: .2rem;
    transform: translateX(-50%);
    z-index: 1;
}

.step .step-item {
	width: 100%;
}

.step .step-item a {
    color: white;
    display: inline-block;
    padding: 20px 10px 0;
    text-decoration: none;
}


.tooltip {	
	cursor: context-menu;
}

.tooltip:hover {
	color: white !important;
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

a.tooltip::after {
	display: none;
}

.star {
	line-height: 36px;
	float: left;
	width: 10px;
	display: block;
}

.textboxes {
	width: 100%;
	padding: 1px 10px;
}

.inputWrapper {
	padding-left: 2%;
	width: calc(100% - 10px);
	margin-bottom: 25px;
}

.nav-apply-dropdown .inputWrapper, footer .inputWrapper, .banner-apply-dropdown .inputWrapper {
	padding: 0;
	width: 100%;
	margin: 0;
}

#email_override {
	margin-bottom: 25px;
}

.contained {
	width: 80%;
	margin: auto;
	max-width: 1000px;
}

.fields-age {
	background-color: white;
	width: 100%;
	margin: auto;
	padding: 2%;
}

.contact-info {
	width: 100%;
    font-size: 1.1em;
}

.applicationFormWrapper {
	padding-top: 20px;
	padding-bottom: 10px;
}

.nav-apply-dropdown .applicationFormWrapper, footer .applicationFormWrapper, .banner-apply-dropdown .applicationFormWrapper {
	padding: 0;
}

.applicationSection {
	width: 100%;
	max-width: 900px;
   	margin-left: auto;
   	margin-right: auto;
   	background-color: white;
   	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    margin-bottom: 20px;
    padding: 2% 5% 2% 5%;
}

.nav-apply-dropdown .applicationSection, footer .applicationSection, .banner-apply-dropdown .applicationSection {
	padding: 0;
	margin: 0;
}

.contact-info-heading {
	color: black;
	padding-left: 20px;
	margin-bottom: 20px;
}

.appSubmit {
    min-width: 220px;
    height: 55px;
    color: white;
    border: none;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    font-size: 26px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    background-color: #78d9af;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.35);  
    margin-left: calc(50% - 110px); 
}

.appSubmit:hover {
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.under-17 {
	max-width: 900px;
	width: 100%;
   	margin-left: auto;
   	margin-right: auto;
   	background-color: white;
   	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    margin-bottom: 30px;
    padding: 20px;
}

/** Error messages **/
div.error>ul,div.warn>ul,div.confirm>ul {
	margin: 0;
	padding: 0;
}

div.error>ul>li,div.warn>ul>li,div.confirm>ul>li {
	list-style: none;
	margin: 10px 0;
	padding: 10px;
	font-size: 0.85em;
}

div.error>ul>li {
	color: white;
	background-color: red;
}

div.warn>ul>li {
	color: white;
	background-color: orange;
}

div.confirm>ul>li {
	color: white;
	background-color: green;
}

.spacing-bottom {
	margin-bottom: 30px;
}

.form .error>ul>li,
.form .warn>ul>li,
.form .confirm>ul>li,
.ui-dialog-content .error>ul>li, 
.ui-dialog-content .warn>ul>li,
.ui-dialog-content .confirm>ul>li {
	background: none;
	padding: 0;
	color: black;
}

.form .error>ul>li {
	color: #E85600;
}

.form .warn>ul>li {
	color: orange;
}

.form .confirm>ul>li {
	color: green;
}

/* Blog */

.grid-sizer,
.grid-item {
  width: 33.333%;
}

.posts {
	max-width: 1600px !important;

}

.post {
	margin: 15px 5px 15px 5px;
	padding: 20px;
	box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.2);
	word-wrap: break-word;
}

.popular-post h2, 
.popular-post h3,
.post h2, 
.post h3 {
	font-weight: bold;
	color: black;
	margin-bottom: 15px;
}

.popular-post h3,
.post h3 {
	font-size: 24px;
}

.popular-post h2 a,
.popular-post h3 a,
.post h2 a,
.post h3 a {
	color: black;
}

.popular-post h2 a:hover,
.popular-post h3 a:hover,
.post h2 a:hover,
.post h3 a:hover {
	color: #387cc3;
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%); 
}


.post-featured-image a{
	width: calc(100% + 40px);
	margin: -20px -20px 15px -20px;
	display: block;
}

.post-featured-image img{
	width: 100%;
}

.post-excerpt {
	font-size: 18px;
	margin-top: 15px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid lightgrey;
}

.read-more {
	margin-bottom: 0px !important;
}

.read-more a{
	color: #387cc3;
}

.read-more a:hover{
	color: black;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.top-border {
	border-top: 1px solid lightgrey;
	padding-top: 10px;
}

.tag-list {
	list-style-type: none;
	margin: 10px 0px 0px 0px;
    padding: 10px 0px 0px 0px;
    display: inline-block;
    border-top: 1px solid lightgrey;
    width: 100%;
}

.tag-list-item {
	float: left;
	margin: 4px;
	font-size: 16px;
	background-color: #f3faff;
	border-radius: 8px;
	display: block;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.tag-list-item:hover{
	-webkit-filter: brightness(75%); /* Chrome, Safari, Opera */
    filter: brightness(75%);  
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.tag-list-item a{
	display: block;
	padding: 7px;
	color: #666666;
}

.empty-tags {
	color: lightgrey;
	margin: 10px 0px 0px 0px;
    padding: 10px 0px 0px 0px;
    border-top: 1px solid lightgrey;
}

.empty-tags p{
	margin: 0px;
}

.pages {
	list-style-type: none;
	text-align: center;
	margin: auto;
	padding: 5px 10px 5px 10px;
	background-color: white;
	-webkit-filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.2));
  	filter: drop-shadow(0px 5px 9px rgba(0, 0, 0, 0.2));
}

.pages li{
	float: left;
	margin: 10px 18px 10px 18px;
}

.pages li a{
	display: block;
	padding: 8px;
	color: #666666;
}

.pages li a:hover{	
	background-color: lightgrey !important;
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%); 
}

.other-page a:hover {
	background-color: lightgrey !important;
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%); 
}

.current-page {
	background-color: lightgrey !important;
}

.popular {
	justify-content: center;
	padding-bottom: 0px !important;
	display: -webkit-flex;
	display: flex;
}

.popular-post {	
	padding: .4rem;
	
	-webkit-flex: 1;  /* Safari 6.1+ */
    -ms-flex: 1;  /* IE 10 */    
    flex: 1;
}

.inner-popular-post {
	padding: 20px;
	box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.2);
	height: 100%;
}

.popular-tag-container {
	display: -webkit-flex;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 15px 0px 15px 0px;
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.2);
}

.popular-tag-list {
	list-style-type: none;
	margin: 0px auto;
    padding: 0px 0px 0px 0px;
    display: inline-block;
    text-align: center !important
}

.popular-tag-list li{
	margin: 6px;
}

.blog-container img {
	max-width: 100%;
	display: block;
	margin: 10px;
}

.no-side-padding {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.blog-post-heading {
	margin: 15px 0px 40px 0px;
	padding: 20px;
	box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.2);
}

.blog-post-heading h1{
	font-size: 36px;
}

.post-author-bio {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.2);
}

.post-author-image img{
	max-width: 100%;
}

.post-author-image{
	padding: 5px;;
}

.post-author-text {
	font-size: 18px;
	padding: 5px;
}

.fb-comments {
	margin: 0 auto;
}

.internal-blog-post-date {
	margin-bottom: 0px !important;
}

.alignright {
	float: right;
}

.aligncenter {
	margin: 10px auto !important;
}

.alignleft {
	float: left;
}

/* Search */
.search-container {
	width: 100%;
	text-align: center;
	padding: 40px 25px 10px 25px;
}

.search-box {
	-webkit-transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
	width: 60px;
	height: 60px;
	border-radius: 40px;
	border: none;
	cursor: pointer;
	background: white;
	margin: auto;
	-webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35));
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35));
	text-indent: -5000px;
}
.search-box + label .search-icon {
	color: black;
}
.search-box:hover {
	background: #e3e3e3;
	-webkit-box-shadow: 0 0 0 5px #3d4752;
	        box-shadow: 0 0 0 5px #3d4752;
}

.focused {
	-webkit-transition: width 0.6s cubic-bezier(0, 1.22, 0.66, 1.39), border-radius 0.6s, background 0.6s;
	transition: width 0.6s cubic-bezier(0, 1.22, 0.66, 1.39), border-radius 0.6s, background 0.6s;
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	padding-left: 15px;
	cursor: text;
	width: 400px;
	border-radius: auto;
	background: white;
	color: black;
	text-indent: 0px;
}

.focused:hover + label .search-icon {
	color: black;
}

.focused:hover {
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	padding-left: 15px;
	cursor: text;
	border-radius: auto;
	background: white;
	color: black !important;
}

#search-submit {
	position: relative;
	font-size: 20px;
	width: 60px;
	height: 60px;
	border-radius: 40px;
	border: none;
	 -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35));
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35)); 
	background: #78d9af;
	color: white;
	cursor: pointer;
	-webkit-transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
}

#search-submit:hover{
	-webkit-box-shadow: 0 0 0 5px #3d4752;
	box-shadow: 0 0 0 5px #3d4752;
	background: #6cc39d;	
}

.search-icon {
	position: relative;
	left: -23px;
	padding: 16px 0px 16px 0px;
	color: white;
	cursor: pointer;
	font-size: 19px !important;
}

label[for="search-box"] {
   margin-left: -20px;
}

.rss a {
	font-size: 18px;
	color: #363636;
}

.rss a:hover{
	color: #387cc3;
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%); 
}

.rss i {
	color: #387cc3 !important;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.rss i:hover{
	color: black !important;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

.news-heading {
	font-size: 2rem;
	margin-bottom: 0px;
}

.view-all-container {
	width: 100%;
	text-align: center;
	padding: 20px 25px 0px 25px;
}

.view-all-btn {
	position: relative;
	z-index: 999;
	font-size: 20px;
	padding: 10px 25px 10px 25px;
	border-radius: 40px;
	border: none;
	-webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35));
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.35)); 
	background: #387cc3;
	color: white;
	cursor: pointer;
	-webkit-transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, -webkit-box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
	transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s, -webkit-box-shadow 0.6s;
}

.view-all-btn:hover{
	-webkit-box-shadow: 0 0 0 5px #3d4752;
	box-shadow: 0 0 0 5px #3d4752;
	background: #5f96cf;	
}

.view-all-container a {
	position: relative;
	z-index: 999;
}

.view-all-container a:hover {
	-webkit-filter: brightness(100%); /* Chrome, Safari, Opera */
    filter: brightness(100%); 
}

.vector-truth .content-container ol li {
	margin: 10px 0 30px 30px !important;
}

/** Fred requested that this page not show any application boxes **/
.welcome-to-the-team .nav-button, .welcome-to-the-team footer .teal-background {
	display: none;
}

.tiktok-embed {
	margin: 0 !important;
}

.social-modal .container .column {
	height: 480px;
}

@media (max-width: 600px) {
	.tiktok-embed {
		margin: 5px 0 !important;
	}
	.social-modal .container .column {
		height: auto;
	}
}

.lgd-info {
	margin-bottom: 110px;
}