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

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

body {
	background: #fff;
	font-family: var(--IvyStyle-Sans);
	font-size: 1.125rem;
	line-height: 30px;
}

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

h1 {
	font-size: 2.5rem;
}

h2,
h2.section-title {
	font-size: 2.5rem;
	line-height: 50px;
	font-family: var(--IvyPresto-Headline);
}

h2.section-title {
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1.5rem;
}

a, a:active {
	color: var(--primary-red);
	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;
}

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

.three-column {
	column-count: 3;
}

section {
	margin-top: 90px;
	margin-bottom: 90px;
}

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

.btn,
.btn-primary {
	box-shadow: none !important;
    text-align: center;
    text-decoration: none !important;
    transition: all 300ms ease 0ms;
    position: relative;
    white-space: nowrap;
	font-size: 1.125rem;
	color: #fff;
	line-height: 1.1;
	background-color: var(--primary-red);
    border: 1px solid var(--primary-red);
    border-radius: 0;
    padding: 15px 30px;
	font-weight: 600;

}

.btn:hover,
.btn:focus,
.btn:active,
.btn:focus-visible,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #971b2f;
	border: 1px solid #971b2f;
}

.btn-gray {
	background-color: var(--warm-gray);
    border: 1px solid var(--warm-gray);
	color: #000;
}

.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active {
	background-color: #b7b1a8;
	border: 1px solid #b7b1a8;
	color: #000;
}

.square-arrow {
	background-color: var(--primary-red);
	bottom: 0;
	right: 0;
    height: 32px;
    position: absolute;
    width: 32px;
    z-index: 0;
}

.square-arrow:hover,
.square-arrow:focus,
.square-arrow:active {
	background-color: #971b2f;
}

.square-arrow:hover i,
.square-arrow:focus i,
.square-arrow:active i {
	right: 5px;
}

.square-arrow > i {
	color: #fff;
	font-size: 22px;
	display: block;
	bottom: 5px;
	right: 7px;
    position: absolute;
	transition: all 300ms ease 0ms;
    z-index: 2;
}


/*******************************************
:--- Alert ---:
*******************************************/

.alert-message {
	
}

.alert-message a {
	font-weight: bold;
}

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


header.page-header {
	background: #fff;
	padding: 35px 0;
	position: relative;
	border-top: 8px solid var(--primary-red);
}

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

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;
	color: #000;
	font-weight: 700;
	font-style: normal;
	font-size: 1.125rem;
	padding-left: 10px;
	padding-right: 10px
}

nav.page-nav .nav-list > .nav-item > a:hover,
nav.page-nav .nav-list > .nav-item > a:focus,
nav.page-nav .nav-list > .nav-item > a:active {
	color: var(--primary-red);
}

nav.page-nav .nav-list > .nav-item > a.btn-primary {
	color: #fff;
    padding: 15px 30px;
	font-weight: 600;
}

@media (max-width: 991px) {
	.nav-open {
		cursor: pointer;
		display: block;
		position: absolute;
		right: 15px;
		top: -15px;
		z-index: 1000;
        padding: 20px 14px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
	}

	.nav-open.opened {
		z-index: 10000;
	}

	.nav-open.opened span:nth-child(1) {
		position: absolute;
		top: 27px;
		transform: rotate(45deg);
	}

	.nav-open.opened span:nth-child(2) {
		position: absolute;
		top: 27px;
		transform: rotate(-45deg);
	}

	.nav-open.opened span:nth-child(3) {
		display: none;
	}

	.nav-open span {
		background: var(--primary-red);
		content: " ";
		display: block;
		height: 2px;
		margin: 0 0 6px;
		width: 28px;
        transition: all 0.2s ease;
	}

	.navbar-toggler:focus {
		box-shadow: none !important;
	}
}

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

.hero-section {
	background-size: cover;
	background-position: top center;
	margin: 0;
}

.hero-section:before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section .hero-content {
	min-height: 455px;
	display: flex;
    flex-flow: column;
    justify-content: center;
}

.hero-section .hero-content h1 {
	font-size: 1.25rem;
	line-height: 36px;
	font-family: var(--IvyStyle-Sans);
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
    text-shadow: rgba(0, 0, 0, 0.8) 1px 0 18px;
	margin-bottom: 18px;
}

.hero-section .hero-content h2 {
	font-family: var(--IvyPresto-Headline);
	color: #fff;
    font-size: 3.75rem;
	font-weight: 600;
    line-height: 65px;
    text-shadow: rgba(0, 0, 0, 0.8) 1px 0 18px;
}

.hero-section .hero-content .btn {
	width: fit-content;
}

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

.form-section {
    background-color: var(--dark-green);
	margin: 0;
}

.form-wrap {
    background: var(--primary-red);
    margin-top: -220px;
    padding: 2.25rem;
	margin-bottom: 2rem;
    color: #fff;
    line-height: 25px;
}

.form-wrap h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
    font-family: var(--IvyPresto-Headline);
	color: #fff;
}

.form-wrap a {
    text-decoration: underline;
    color: #fff;
}

.form-wrap a:hover,
.form-wrap a:focus,
.form-wrap a:active {
    text-decoration: none;
}

.form-wrap hr {
	opacity: 1;
	border-color: var(--warm-gray);
}

/* INPUT WRAPS */

.multistep-fields {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
    clear: both;
}

.multistep-fields .input-wrap {
	flex-grow: 1;
	width: 45%;
}

.intl-tel-input {
    margin: 0;
    width: 100%;
}

/* BUTTONS */

.form input.form-control {
    height: auto;
    font-size: 1.25rem;
    line-height: 1;
    white-space: nowrap;
    border-radius: 0.1px;
    display: inline-block;
    text-align: left;
    width: auto;
}

/* Next Button */

.form input#next {
    box-shadow: none !important;
    background: var(--primary-red);
    color: #fff;
    font-family: var(--IvyStyle-Sans);
	font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 14px 26px;
	border-radius: 0 !important;
    border: 2px solid #fff !important;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all 300ms ease 0ms;
    width: auto;
}

.form input#next:hover,
.form input#next:focus,
.form input#next:active {
    color: #000;
    text-decoration: none;
    background: #fff;
    outline: none;
    border: 2px solid #fff !important;
}

/* Previous Button */

.form input#previous {
	float: left;
    box-shadow: none !important;
    background: var(--primary-red);
    color: #fff;
    font-family: var(--IvyStyle-Sans);
	font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 14px 26px;
	border-radius: 0 !important;
    border: 2px solid #fff !important;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all 300ms ease 0ms;
    width: auto;
}

.form input#previous:hover,
.form input#previous:focus,
.form input#previous:active {
    color: #000;
    text-decoration: none;
    background: #fff;
    outline: none;
    border: 2px solid #fff !important;
}

/* Request Button */

.form input#request {
    box-shadow: none !important;
    background: var(--primary-red);
    color: #fff;
    font-family: var(--IvyStyle-Sans);
	font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 14px 26px;
	border-radius: 0 !important;
    border: 2px solid #fff !important;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all 300ms ease 0ms;
    width: auto;
}

.form input#request:hover,
.form input#request:focus,
.form input#request:active {
    color: #000;
    text-decoration: none;
    background: #fff;
    outline: none;
    border: 2px solid #fff !important;
}

.form #step3 :focus::-webkit-input-placeholder {
    opacity: 0.5;
}

.form #step3 :-ms-input-placeholder {
    /* IE 10+ */
    color: #5a5a5a;
    transition: opacity 250ms ease-in-out;
}

.form #step3 :focus:-ms-input-placeholder {
    opacity: 0.5;
}

.form #step3 ::-moz-placeholder {
    /* Firefox 19+ */
    color: #5a5a5a;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

.form #step3 :focus::-moz-placeholder {
    opacity: 0.5;
}

.form #step3 :-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #5a5a5a;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

.form #step3 :focus:-moz-placeholder {
    opacity: 0.5;
}

/* Popover */

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

.popover {
    background: var(--gold);
    border: 1px solid var(--gold) !important;
    color: #000;
    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: #000;
}

.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(--gold);
    border-top-color: var(--gold);
}

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

/* 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 {
	outline: var(--secondary-green) solid 2px !important;
}

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

.form.multi-step .input-wrap input {
    background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 0 !important;
	padding: 12px 15px !important;
}

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

.form.multi-step .select-wrap select {
    padding: 12px 60px 12px 15px !important;
    font-size: 1.125rem !important;
    display: block;
    background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 0 !important;
    position: relative;
    z-index: 4;
    cursor: pointer;
}

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

.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;
}

.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: 500 !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;
	font-weight: 500 !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: #fff !important;
}

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

.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;
}

.form.multi-step .step-header div span {
    color: #fff !important;
    border: 1px solid var(--warm-gray) !important;
    border-radius: 50%;
	background: var(--primary-red) !important;
    font-family: var(--IvyStyle-Sans);
    font-size: 1.125rem !important;
	font-weight: 700 !important;
	line-height: 2;
    height: 40px;
    padding: 0 !important;
    text-align: center !important;
    width: 40px;
    min-height: 40px !important;
}

.form.multi-step .step-header div.active span {
    background: var(--warm-gray) !important;
    color: var(--primary-red) !important;
	border: 2px solid var(--warm-gray) !important;
}

.form.multi-step .step-header:after {
    background: var(--warm-gray) !important;
	top: 20px !important;
	height: 1px !important;
}

.form.multi-step span.error {
	color: var(--gold) !important;
	font-weight: 700 !important;
	padding: 0 !important;
}

.form.multi-step span.asterisk,
.form.multi-step .privacy span {
    color: #fff !important;
}

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

.benefits-section {
	padding: 2em 0;
}

.benefits-list {
	margin: 0;
	color: #fff;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 30px;
}

.benefit-bullet {
	list-style: none;
	border-bottom: 1px solid var(--warm-gray);
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 0;
}

.benefit-bullet:last-of-type {
	border-bottom: 1px solid transparent;
}

.benefit-text {
	font-size: 1.1rem;
}


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

.main-content p a:focus-visible,
.main-content ul li a:focus-visible {
	background: var(--primary-dark);
	color: var(--white);
	outline: 0;
}

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

.main-content  ul li {
	list-style: disc;
	margin: 0 0 0 1.5rem;
}

.main-content ol li {
	list-style: auto;
	margin: 0 0 0 1.5rem;
}

.red-content-frame {
	padding: 40px;
}

.image-caption {
	background-color: var(--warm-gray);
	color: #000;
	font-size: 1.125rem;
	line-height: 28px;
	font-weight: 600;
	padding: 30px;
}

/* Testimonial */

.testimonial-section blockquote {
	background-color: var(--warm-gray-screen);
	padding: 2.75rem;
	font-size: 1.625rem;
	line-height: 36px;
	font-family: var(--IvyPresto-Text);
	color: var(--primary-red);
}

.testimonial-section hr {
	opacity: 1;
	border-color: var(--primary-red);
}

.testimonial-section p.quotation {
	font-size: 4rem;
	color: var(--primary-red);
	font-family: var(--IvyPresto-Headline);
	line-height: 0.5;
	margin-bottom: 0;
}

.testimonial-section .testimonial-attribution {
	font-size: 1.125rem;
	font-family: var(--IvyStyle-Sans);
	margin-bottom: 0;
}

.stat-callout-content blockquote,
.tuition-callout-content blockquote {
	background-color: var(--warm-gray-screen);
	display: flex;
	align-items: center;
	font-family: var(--IvyPresto-Text);
	font-size: 1.625rem;
	line-height: 36px;
	color: var(--primary-red);
	margin-bottom: 0;
	padding: 4rem 3.5rem;
	height: auto;
}

.stat-callout-content blockquote p,
.tuition-callout-content blockquote p {
	margin-bottom: 0;
}

.stat-callout-content blockquote span,
.tuition-callout-content blockquote span {
	font-size: 75px;
	line-height: 70px;
	font-weight: 700;
	margin-right: 40px;
}

/* About Section */
section.about-school {
	background-color: var(--dark-green);
}

/*******************************************
:--- Grid 50/50 Split ---:
*******************************************/

.container-fluid.grid-50-split {
	padding-right: 0;
	padding-left: 0;
}

.grid-50-content {
	height: 100%;
	max-width: 635px;
	padding: 80px 80px 80px 15px;
	margin: 0 0 0 auto;
}

.grid-50-content.right-side {
	padding: 80px 15px 80px 80px;
	margin: 0 auto 0 0;
}

.grid-50-img {
	background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 100%;
}

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

footer.page-footer {
	padding: 3.25rem 0;
	font-size: 1rem;
	font-weight: 600;
	background-color: #000;
}

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

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

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

footer.page-footer .social-icons {
	display: flex;
	justify-content: flex-start;
	font-size: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

footer.page-footer .social-icons a {
	width: 2em;
    text-decoration: none;
    height: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    transition: all 300ms ease 0ms;
	color: #000;
    background: #fff;
    border: 2px none transparent;
    border-radius: 24px;
}

footer.page-footer .social-icons a:hover,
footer.page-footer .social-icons a:focus,
footer.page-footer .social-icons a:active {
    background: var(--primary-red);
	color: #fff;
}

footer.page-footer .social-icons a i {
	display: inline-flex;
    align-self: center;
}

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

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

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

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

@media (max-width: 991px) {

	.hero-section .hero-content {
		min-height: 400px;
	}
	
	.hero-section .hero-content h1 {
		font-size: 1rem;
		line-height: 24px;
		margin-bottom: 10px;
	}
	
	.hero-section .hero-content h2 {
		font-size: 3.75rem;
        line-height: 60px;
	}

	.form-wrap {
		margin-top: -60px;
	}

	.stat-callout-content blockquote,
	.tuition-callout-content blockquote {
		display: block;
		font-size: 1.25rem;
		line-height: 27px;
		padding: 2.25rem 1.5rem;
	}
	
	.stat-callout-content blockquote span,
	.tuition-callout-content blockquote span {
		font-size: 60px;
		margin-right: 0;
	}

	.page-footer {
		text-align: center;
	}

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

	footer.page-footer .social-icons {
		justify-content: center;
	}
}
 
@media (max-width: 767px) {
	section {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.hero-section .hero-content h2 {
        font-size: 2.75rem;
        line-height: 50px;
    }

	h2, h2.section-title {
		font-size: 1.875rem;
		line-height: 40px;
	}

	body {
		font-size: 1rem;
		line-height: 30px;
	}

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

	header.page-header .school-logo {
		max-width: 150px;
	}

	nav.page-nav .nav-list > .nav-item > a {
		font-size: 1rem;
	}

	.hero-section .hero-content {
		justify-content: end;
	}

	.form-wrap {
		padding: 1.5rem;
	}
	
	.btn {
		font-size: 1rem;
	}

	.two-column {
		column-count: 1;
	}

	.three-column {
		column-count: 1;
	}
}

@media (max-width: 640px) { 
	.red-content-frame {
		padding: 10px;
	}

	.vertical-line {
		margin-left: 10px;
	}

	.form input#next,
	.form input#request {
		width: 100%;
		float: none;
	}

	.btn {
		width: 100%;
	}
}

@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;
}
