@import url('../reset.css');
@import url('../defaults.css');

/*******************************************
:--- General ---:
*******************************************/

html {
    scroll-behavior: auto !important;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 2rem;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1.5rem;
}

a, a:active {
	color: var(--secondary-medium-blue);
	text-decoration: underline;
}

a:hover {
	text-decoration: none
}

ul.content-list  {
	margin: 0 0 2rem;
	padding-left: 2rem;
}

ul.content-list li {
	list-style: disc;
}

/*******************************************
:--- Reusable ---:
*******************************************/

.live-chat, 
.download, 
.focus {
	cursor: pointer; 
}

.hide {
	display: none;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col, .no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.two-columns {
    column-count: 2;
}

/*******************************************
:--- Buttons ---:
*******************************************/

.btn,
.btn-primary {
	background-color: var(--primary-yellow);
	box-shadow: none !important;
    color: var(--primary-blue);
	font-size: 1.125rem;
    padding: 16px 60px;
	border: none !important;
    border-radius: 0;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
    transition: all 300ms ease 0ms;
    position: relative;
    white-space: nowrap;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #e6be0e !important;
    color: var(--primary-blue) !important;
	box-shadow: inset 0 -3px #b6a02e !important;
}

.btn-blue-ghost {
	background-color: transparent !important;
	color: var(--primary-blue) !important;
	border: 2px solid var(--primary-blue) !important;
}

.btn-blue-ghost:hover,
.btn-blue-ghost:focus,
.btn-blue-ghost:active {
	background-color: var(--secondary-lightest-blue) !important;
	color: var(--primary-blue) !important;
	border: 2px solid var(--primary-blue) !important;
	box-shadow: none !important;
}

.btn-sm {
	width: auto;
	padding: 16px 28px;
}

/*******************************************
:--- Header ---:
*******************************************/

header.page-header {
	background: var(--primary-blue);
	padding: 40px 0;
	position: relative;
	font-size: 1.125rem;
	text-align: center;
}

header.page-header .school-logo {
	display: block;
	max-width: 275px;
}

header.page-header .school-logo img {
	width: 100%;
}

nav.page-nav .nav-list {
	margin: 0;
}

nav.page-nav .nav-list > .nav-item {
	list-style: none;
}

nav.page-nav .nav-list > .nav-item a {
	text-decoration: none;
}

/*******************************************
:--- Hero ---:
*******************************************/

.hero-section {
	background-size: cover;
	background-position: center center;
	min-height: 452px;
}

.hero-content {
	margin-top: -290px;
	background-color: #fff;
	padding: 45px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.hero-content h1 {
	color: var(--secondary-medium-blue);
	font-family: var(--Arial);
	font-weight: 700;
	font-size: 2.625rem;
	line-height: 1.2;
}

.hero-content h2 {
	color: var(--primary-blue);
	font-family: var(--Oswald);
	font-weight: 400;
	font-size: 1.625rem;
	line-height: 36px;
	text-transform: uppercase;
}

.hero-content .btn-primary {
	padding: 18px 32px;
}

/*******************************************
:--- Archa Form ---:
*******************************************/

.form-section {
	background-color: var(--primary-blue);
	padding: 40px 40px 30px;
	color: #fff;
}

.form-section h2 {
	font-family: var(--Oswald);
	text-transform: uppercase;
	font-size: 2.25rem;
}

.form-section a {
	color: var(--primary-yellow);
}

/* MULTI-STEP */
.form.multi-step .step {
	margin: 0 0 20px !important;
}

.form.multi-step .step:after {
	display: none;
}

.form.multi-step .input-wrap input:focus,
.form.multi-step .select-wrap select:focus,
.form.multi-step .input-wrap input:hover,
.form.multi-step .select-wrap select:hover {
	outline: var(--primary-yellow) solid 1px !important;
	border: 1px solid var(--primary-yellow) !important;
}

.form.multi-step .input-wrap {
	margin: auto !important;
}

.form.multi-step .input-wrap input {
	padding: 10px !important;
	background: #fff !important;
}

.form.multi-step label {
	color: #fff !important;
	font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    margin: 0 0 10px !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.form.multi-step .select-wrap select {
    display: block;
    background: #fff !important;
    position: relative;
    z-index: 4;
    cursor: pointer;
	padding: 10px 50px 10px 10px !important;
	font-size: 1rem !important;
	color: var(--secondary-black) !important;
}

.form.multi-step .select-wrap::before {
    content: "\f0d7";
    font-size: 18px;
    font-weight: 900;
    color: #000;
    font-family: "Font Awesome 6 Pro";
    text-align: center;
    line-height: 48px;
    height: 44px;
    width: 48px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 10;
}

.form.multi-step .form-controls input {
	background-color: var(--primary-yellow) !important;
	width: auto !important;
	box-shadow: none !important;
    color: var(--primary-blue) !important;
    padding: 18px 28px !important;
	border: none !important;
    border-radius: 0 !important;
    transition: all 300ms ease 0ms !important;
    white-space: nowrap !important;
}

.form.multi-step .form-controls input:hover,
.form.multi-step .form-controls input:focus,
.form.multi-step .form-controls input:active {
	background-color: #e6be0e !important;
    color: var(--primary-blue);
	box-shadow: inset 0 -3px #b6a02e !important;
}

.form.multi-step .form-controls input#previous {
	background-color: #e7e7e7 !important;
	width: auto !important;
	box-shadow: none !important;
    color: var(--secondary-black) !important;
    padding: 8px 18px !important;
	border: 2px solid #cdcdcd !important;
    border-radius: 0 !important;
    transition: all 300ms ease 0ms !important;
    white-space: nowrap !important;
}

.form.multi-step .form-controls input#previous:hover,
.form.multi-step .form-controls input#previous:focus,
.form.multi-step .form-controls input#previous:active {
	background-color: #cdcdcd !important;
}

.form.multi-step #step3 {
	gap: 25px !important;
}

.form.multi-step #ai-opt-in,
.form.multi-step #sms-opt-in {
	align-items: flex-start !important;
	margin-bottom: 20px !important;
	width: 100% !important;
	clear: both;
}

.form.multi-step #sms-opt-in {
	margin-bottom: 10px !important;
	margin-top: 30px;
}

.form.multi-step #ai-opt-in input,
.form.multi-step #sms-opt-in input {
	margin-top: 4px !important;
}

.form.multi-step #ai-opt-in label,
.form.multi-step #sms-opt-in label {
	font-size: 12px !important;
	font-weight: 400 !important;
	margin: 0 0 0 10px !important;
	letter-spacing: normal !important;
	line-height: 1.5 !important;
	text-transform: none !important;
}

.form.multi-step .international-link {
	display: none !important;
}

.form.multi-step .tcpa-multi-step {
	font-size: 12px !important;
	padding-top: 1.5em !important;
	margin: 0 !important;
	line-height: 1.5 !important;
    color: #fff !important;
}

.form.multi-step .tcpa-multi-step a {
    color: var(--primary-yellow) !important;
}

.form.multi-step .privacy {
	font-size: 12px !important;
	padding-top: 18px !important;
	margin-bottom: 0 !important;
    color: #fff;
	line-height: 1.4;
}

.form.multi-step .step-header {
    gap: 0 !important;
}

.form.multi-step .step-header div {
    float: left;
    text-align: center;
    width: 33.3333% !important;
    z-index: 2;
	border-bottom: 1px solid #fff;
}

.form.multi-step .step-header div span {
    color: #fff !important;
	background-color: transparent !important;
    border: 2px solid transparent !important;
    font-size: 18px !important;
    line-height: 1.6;
    padding: 0 !important;
    text-align: center !important;
    min-height: 20px !important;
	font-weight: 700;
}

.form.multi-step .step-header div.active,
.form.multi-step .step-header div.complete {
	border-bottom: 6px solid var(--primary-yellow);
}

.form.multi-step .step-header div.active span,
.form.multi-step .step-header div.complete span {
    background: transparent !important;
    color: var(--primary-yellow) !important;
}

.form.multi-step .step-header:after {
    background: transparent !important;
}

.form.multi-step span.error {
	font-weight: 700 !important;
	font-size: 11px !important;
	padding: 2px 0 0 !important;
}

/* Popover */

.popover .popover-arrow::after, 
.popover .popover-arrow::before {
	border-bottom-color: var(--primary-yellow);
	border-top-color: var(--primary-yellow);
}

.popover {
    background: var(--primary-yellow);
    border: 1px solid var(--primary-yellow) !important;
    color: var(--primary-blue);
    padding: 6px;
    text-align: center;
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
}

.popover-body {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-blue);
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,
.bs-popover-bottom>.popover-arrow::after,
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,
.bs-popover-top>.popover-arrow::after {
    border-bottom-color: var(--primary-yellow) !important;
    border-top-color: var(--primary-yellow) !important;
}

/*******************************************
:--- Benefits Section ---:
*******************************************/

.intro-section {
	padding: 45px;
	color: var(--secondary-medium-blue);
	font-size: 1.25rem;
	line-height: 28px;
}

.benefits-section {
    padding: 0 45px 45px;
}

.benefits-list > li {
    font-size: 1.25rem;
    line-height: 28px;
    margin: 0 0 20px !important;
    padding: 0 !important;
    list-style: none !important;
	color: var(--secondary-black);
	font-weight: 700;
}

.benefit-icon > i {
    font-size: 26px;
    width: 30px;
    font-family: "Font Awesome 6 Pro";
	text-align: center;
	color: var(--secondary-medium-blue);
}

/*******************************************
:--- Main Content ---:
*******************************************/

.main-content ul {
	margin: 0 0 2rem;
}

.main-content  ul li {
	list-style: disc;
	margin: 0 0 0 1.5rem;
    font-size: 1.063rem;
    color: var(--secondary-black);
    line-height: 1.6;
}

.section-title {
	font-size: 2.25rem;
	font-family: var(--Oswald);
	color: var(--primary-blue);
	text-transform: uppercase;
	font-weight: 500;
}

.subhead {
	font-size: 1.75rem;
	line-height: 36px;
	color: var(--primary-blue);
	text-transform: uppercase;
	font-family: var(--Oswald);
	font-weight: 500;
}

.left-bleed {
    background: var(--secondary-lightest-blue);;
    position: relative;
}

.left-bleed:before {
    left: -999em;
    background: var(--secondary-lightest-blue);;
    content: '';
    display: block;
    position: absolute;
    width: 999em;
    top: 0;
    bottom: 0;
}

.body-caption {
	font-size: 0.75rem;
	line-height: 18px;
}

.different-section {
	position: relative;
	margin-top: 100px;
	margin-bottom: 50px;
	padding-bottom: 65px;
	background-color: var(--secondary-blue);
}

.header-text {
    overflow: hidden;
    top: -60px;
}

.header-text h2.section-title {
	margin: 1.5rem 0;
}

.white-boxes {
	background-color: #fff;
	padding: 30px;
	height: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid var(--secondary-lightest-blue);
}

.blue-box {
	background-color: var(--secondary-medium-blue); 
	padding: 30px;
	color: #fff;
}

.blue-box a {
	color: #fff;
}

.callout-bar {
	padding: 30px;
	background-color: var(--primary-blue);
	color: #fff;
	text-align: center;
}

.callout-bar a {
	color: #fff;
}

.bar-image {
	background-size: cover;
	background-position: center center;
	min-height: 280px;
}

.bullet-items {
    padding-bottom: 6px;
    margin-bottom: 0;
    margin-left: 14px;
}

.bullet-items::before {
    content: '•';
	color: var(--primary-yellow);
    position: absolute;
    left: -14px;
    top: 1px;
	font-weight: 700;
}

/*******************************************
:--- Testimonial Section ---:
*******************************************/

.testimonial-section {
	background-color: var(--secondary-lightest-blue);
	padding: 80px 50px;
}

.testimonial-content blockquote {
	font-family: var(--Adobe-Caslon-Pro);
	font-size: 22px;
	line-height: 1.5;
	position: relative;
}

.testimonial-image img {
	width: 100px;
	height: auto;
}

.blue-dash {
	background-color: var(--secondary-medium-blue);
	width: 23px;
	height: 5px;
	margin-bottom: 8px;
}

.testimonial-content::before {
	font-size: 200px;
    position: absolute;
	opacity: 0.18;
	top: 40px;
    left: -80px;
    color: var(--secondary-medium-blue);
	font-family: var(--Arial);
    content: open-quote;
}

.testimonial-content::after {
	font-size: 200px;
    position: absolute;
	opacity: 0.18;
	bottom: -40px;
    right: -60px;
    color: var(--secondary-medium-blue);
	font-family: var(--Arial);
    content: close-quote;
}

/*******************************************
:--- About Section ---:
*******************************************/

.about-school {
	color: #fff;
}

.about-school h2.section-title {
	color: #fff;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.about-school {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	position: relative;
}

.about-school::before {
	background-color: rgba(0, 75, 141, 0.9);
    position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    width: 100%;
    z-index: 0;
	content: '';
}

.clip-path {
    width: 200px;
    height: 350px;
    background: linear-gradient(to bottom right, #002D73 0%, #002D73 50%, transparent 50%, transparent 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    overflow: hidden;
}

.clip-path.left-clip {
    background: linear-gradient(to bottom right, #002D73 0%, #002D73 50%, transparent 50%, transparent 100%);
    left: 0;
    top: 0;
	right: auto;
    bottom: auto;
}

.clip-path.right-clip {
    background: linear-gradient(to top left, #002D73 0%, #002D73 50%, transparent 50%, transparent 100%);
	left: auto;
    top: auto;
    right: 0;
    bottom: 0;
}

/*******************************************
:--- Footer ---:
*******************************************/

footer.page-footer {
	padding: 4em 0;
	font-size: 0.9125rem;
	line-height: 1.4;
	background-color: var(--primary-blue);
}

footer.page-footer p {
	padding-bottom: 0 !important;
}

footer.page-footer a {
	color: #fff;
}

footer.page-footer [class*=col-] {
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}

footer.page-footer .footer-logo-col {
	border-left: none !important;
}

footer.page-footer .footer-logo-col .footer-logo {
	max-width: 290px;
}

/*******************************************
:--- Media Queries ---:
*******************************************/

/* Large Displays */
@media (min-width: 1440px) {
	
}

@media (min-width: 1200px) {
	
}

@media (max-width: 1200px) {
    
}

@media (max-width: 991px) {
	header.page-header .school-logo {
		margin: auto;
	}

	.hero-section {
		background-position: center right -100px;
		min-height: 300px;
	}

	.hero-content {
		margin-top: -80px;
	}

	.clip-path {
		width: 100px;
		height: 250px;
	}

	.header-text {
		background: linear-gradient(90deg, var(--secondary-lightest-blue) 97%, transparent 3%);
	}

	.testimonial-section {
		padding: 60px;
	}

	.testimonial-content blockquote {
		font-size: 19px;
	}

	.testimonial-content::before {
		font-size: 120px;
		top: 20px;
		left: -50px;
	}
	
	.testimonial-content::after {
		font-size: 120px;
		bottom: -20px;
		right: -40px;
	}

	.footer-logo {
		max-width: 250px;
	}

	footer.page-footer [class*=col-] {
		border-left: none;
	}
}

@media (max-width: 767px) {

	header.page-header {
		padding: 25px 0;
	}

	.hero-content {
		padding: 30px;
	}

	.hero-content h1 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.hero-content h2 {
		font-size: 1.375rem;
		line-height: 28px;
	}

	.btn, 
	.btn-primary {
		font-size: 1rem;
		padding: 14px 30px;
	}

	.benefits-section {
		padding: 0 25px 30px;
	}

	.benefits-list > li {
		font-size: 1.125rem;
		line-height: 24px;
	}

	.form-section {
		padding: 30px 5px 30px;
	}

	.form-section h2 {
		font-size: 1.75rem;
	}

	.intro-section {
		padding: 25px;
		font-size: 1.125rem;
		line-height: 28px;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.clip-path {
		display: none;
	}

	.bar-image {
		min-height: 170px;
	}
}

@media (max-width: 640px) { 
	.row > * {
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media (max-width: 480px) { 

}

@media (max-width: 320px) { 

}


/*******************************************
:--- IE Fixes ---:
*******************************************/

.ie7 .tooltip, .ie8 .tooltip {
	display: none!important
}

.ie7 label, .ie8 label, .ie9 label {
	display: block!important;
}

.ie7 .required-ast-nolabel, .ie8 .required-ast-nolabel, .ie9 .required-ast-nolabel {
	display: none;
}
