  /* Specific to /apply */

.section-become {
	background: url('/apply/img/apply-header-img.jpg');
	background-repeat: no-repeat;
    background-position: top center;
	background-size: cover;
	padding: 5em 0 6em;
}
.section-become svg text {
	font-family: 'MonumentExtended-Regular', sans-serif;
	text-transform: uppercase;
}
.section-become svg:focus,
.section-become svg text:focus {
    outline: none;
}

.section-welcome {
	background: url('/apply/img/apply-bg-welcome.jpg');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: cover;
	position: relative;
	display: grid;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr;
	justify-items: center;
}
.section-welcome img {
	margin-top: 1em;
	width: 100%;
	max-width: 720px;
	align-self: end;
}
.welcome-copy h2 {
	font-family: 'MonumentExtended-Regular', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.welcome-copy p {
	font-family: 'GTSectra-Regular', serif;
	font-size: 1.2em;
}
.welcome-copy {
	width: 92%;
	max-width: 550px;
}
@media (min-width: 900px) {
	.section-welcome {
		grid-template-rows: 1fr;
		grid-template-columns: auto auto;
		grid-template-areas: "a b";
	}
	.section-welcome img {
		z-index: 5;
		margin-top: -6em;
		grid-area: a;
		min-width: 520px;
	}
	.welcome-copy {
		padding: 4em;
		grid-area: b;
	}
}
@media (min-width: 900px) and (max-width:1050px) {
	.welcome-copy h2 {
		font-size: 1.6em;
	}
}
@media (max-width: 899px) {
	.welcome-copy h2 {
		font-size: 2em;
	}
}
.section-what-kind {
	background: url('/apply/img/apply-bg-what-kind.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.grid-what-kind {
    display: grid;
    grid-template-rows: repeat(5, auto);
    grid-template-columns: 1fr;
    grid-gap: 40px;
    max-width: 1000px;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
	padding-bottom: 4em;
    align-items: stretch;
}
.section-what-kind h2 {
	margin-top: 0;
	padding-top: 2em;
	padding-bottom: 1em;
}
.section-what-kind h2,
.section-what-kind h3 {
	color: #06e092;
	font-family: 'MonumentExtended-Regular', sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
}
@media (max-width: 800px) {
	.section-what-kind h2 {
		font-size: 2em;
	}
}
.kind-of-student {
	border: solid 1px #06e092;
	padding: 1.5em;
	position: relative;
	overflow: hidden;
	background: rgba(6,224,146,0);
	-webkit-transition: background .5s ease-out;
	-moz-transition: background .5s ease-out;
	-o-transition: background .5s ease-out;
	transition: background .5s ease-out;
	display: flex;
    align-items: center;
}
.kind-of-student a {
	display: block;
}
.main a.kind-of-student:link,
.main a.kind-of-student:visited {
	text-decoration: none;
}

.kind-of-student h3 {
	font-size: 18px;
	transition: color 0.5s ease-out;
}
.kind-of-student p {
	color: white;
	font-family: 'GTSectra-Regular', serif;
	font-size: 16px;
	font-weight: normal;
}
.kind-of-student .btn-pseudo {
    opacity: 0;
    background: rgb(28,170,149);
    color: rgb(17,39,26);
    text-transform: uppercase;
    font-family: "MonumentExtended-Regular", sans-serif;
    padding: 0.5em 1em;
    text-align: center;
    margin: 1em auto 0;
    width: 180px;
	transition: opacity 0.5s ease-out;
}
.main a.kind-of-student:hover,
.main a.kind-of-student:active,
.main a.kind-of-student:focus {
	text-decoration: none ;
	background: rgba(0,58,97,0.5);
	backdrop-filter: blur(4px);
}
.main a.kind-of-student:hover h3,
.main a.kind-of-student:active h3,
.main a.kind-of-student:focus h3 {
	color: white;
}
.main a.kind-of-student:hover .btn-pseudo,
.main a.kind-of-student:active .btn-pseudo,
.main a.kind-of-student:focus .btn-pseudo {
	opacity: 1;
}
@media (min-width: 900px) {
	.grid-what-kind {
		grid-template-rows: 1fr 1fr;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 40px;
	grid-template-areas:
        "a a a a b b b b c c c c"
        "d d d d d d e e e e e e";
	}
	.kind-of-student:nth-of-type(1) {
		grid-area: a;
	}
	.kind-of-student:nth-of-type(2) {
		grid-area: b;
	}
	.kind-of-student:nth-of-type(3) {
		grid-area: c;
	}
	.kind-of-student:nth-of-type(4) {
		grid-area: d;
	}
	.kind-of-student:nth-of-type(5) {
		grid-area: e;
	}
}

.section-app-info {
	background: url('/apply/img/apply-bg-application.jpg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
.section-app-info .grid {
	display: grid;
	grid-template-rows: auto auto auto;
	grid-template-columns: 1fr;
}
@media (min-width: 750px) {
	.section-app-info .grid {
		grid-template-rows: auto auto;
		grid-template-columns: auto 400px;
		grid-template-areas: "a a"
			"b c";
	}
	.grid-app-info {
		grid-area: a;
	}
	.grid-get-started {
		grid-area: b;
	}
	.grid-app-info-img {
		grid-area: c;
		align-self: end;
	}
}
@media (min-width: 1050px) {
	.section-app-info .grid {
		grid-template-rows: auto;
		grid-template-columns: 33% 230px auto;
		grid-column-gap: 30px;
		max-width: 1200px;
		margin-left: auto;
		margin-right: 0;
	}
	.grid-app-info {
		grid-area: 1 / 1 / 2 / 2;
	}
	.grid-get-started {
		grid-area: 1 / 2 / 2 / 4;
	}
	.grid-app-info-img {
		grid-area: 1 / 3 / 2 / 4;
	}
}
.grid-app-info,
.grid-get-started {
	padding: 1em;
}
.section-app-info h2,
.section-app-info h3 {
	
	font-family: 'MonumentExtended-Regular', sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.section-app-info h2 {

}
.section-app-info h3 {
	color: #1caa95;
}
.section-app-info p {
	font-family: 'GTSectra-Regular', serif;
	font-size: 1.2em;
}
.section-app-info ul {
	list-style-type: none;
	padding-left: 0;
}
.section-app-info ul li a {
	display: block;
}
.main .section-app-info a:link,
.main .section-app-info a:visited {
	text-decoration: none;
    background: #1caa95;
    border: solid 1px #1caa95;
    color: white;
    padding: 1em;
    text-transform: uppercase;
    font-family: 'MonumentExtended-Regular', sans-serif;
    max-width: 200px;
    margin: 0.5em auto;
    text-align: center;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.3s ease-out;
}
.main .section-app-info a:hover,
.main .section-app-info a:active,
.main .section-app-info a:focus {
	background: rgb(164,255,228);
    color: rgb(13,79,69);
    border: solid 1px #1caa95;
}
@media (min-width: 1050px) {
	.main .section-app-info a:link,
	.main .section-app-info a:visited {
		margin: 1em 0;
	    text-align: left;
	}
}

.grid-app-info-img img {
	width: 100%;
}

.section-jax-bg {
	margin-bottom: 0 !important;
}
.grid-jax {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.section-darkbg a.btn-cta, .section-darkbg a.btn-cta:link, .section-darkbg a.btn-cta:visited {
	transition: all 0.3s ease-out;
}