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

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

html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
	color: #101820;
	font-family: var(--font-noto-sans);
	font-size: 1rem;
	line-height: 1.65;
}

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

h1 {
	font-family: var(--font-amiri);
	font-size: 4.375rem;
	font-weight: 700;
	line-height: 1.07;
}

h2 {
	font-family: var(--font-amiri);
	font-size: 3rem;
	font-weight: 700;
}

h2.subhead {
	font-family: var(--font-noto-sans);
	font-size: 2.25rem;
	font-weight: 500;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1.5rem;
}

a, a:active {
	color: var(--emory-dark-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;
}

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

.btn {
	border-radius: 0;
	font-weight: 700;;
	padding: 17px 25px !important;
	text-transform: uppercase;
	position: relative;
}

.btn-text {
	color: var(--emory-blue) !important;
	padding: 0 !important;
}

.btn-yellow {
	background-color: var(--emory-yellow);
	color: var(--emory-blue) !important;
}

.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:active {
	background-color: #FFC540;
}

.btn-arrow {
	padding-right: 6rem !important;
}

.btn-arrow:before,
.btn-arrow:after {
	content: "";
	position: absolute;
	transition: all 0.15s ease, width 0.15s ease;
}

.btn-arrow:before {
    width: 2rem;
    height: 1px;
    background-color: var(--emory-blue);
	top: 50%;
	left: calc(100% - 5rem);
}

.btn-arrow:hover::before {
    width: 3rem;
}

.btn-arrow:after {
	top: calc(50% - 3.5px);
	left: calc(100% - 3rem);
    border: solid transparent;
    border-left-color: var(--emory-blue);
    border-width: 4px;
}

.btn-arrow:hover::after {
    left: calc(100% - 2rem);
}

/*******************************************
:--- Divider ---:
*******************************************/

.divider {
	border-top: 2px solid var(--emory-blue);
	margin: 3.125rem 0;
	opacity: 1;
}

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

.alert-message {
	font-weight: normal;
}

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

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

header.page-header {
	background: #1E2E45;
	padding: 25px 0;
	position: relative;
}

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

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

nav.page-nav {
	font-weight: normal;
}

nav.page-nav .nav-list {
	margin: 0;
	gap: 80px;
	align-items: center;
}

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

nav.page-nav .nav-list>.nav-item>a {
	color: var(--white);
	font-family: var(--font-noto-sans);
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	text-decoration: none;
}

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(--emory-yellow);
}

nav.page-nav .nav-list>.nav-item>a i {
	margin-right: 10px;
}

@media (max-width: 1400px) {
    nav.page-nav .nav-list {
		gap: 50px;
	}
}

@media (max-width: 991px) {
    nav.page-nav .nav-list {
		gap: 35px;
	}

	nav.page-nav .nav-list>.nav-item>a.btn-arrow {
		padding: 13px 25px !important;
	}

	nav.page-nav .nav-list>.nav-item>a.btn-arrow:before,
	nav.page-nav .nav-list>.nav-item>a.btn-arrow:after {
		display: none;
	}
}

@media (max-width: 767px) {
    nav.page-nav .nav-list {
		display: block;
	}
}

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

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

.hero-section {
	background-size: cover;
	background-position: top center;
	min-height: 700px;
	display: flex;
}

.hero-section .hero-content {
	background-color: var(--emory-light-blue);
	padding: 3.125rem;
}

@media (max-width: 1400px) {
	.hero-section h1 {
		font-size: 3.5rem;
	}

	.hero-section h2.subhead {
		font-size: 1.9rem;
	}
}

@media (max-width: 1200px) {
	.hero-section h2.subhead {
		font-size: 1.8rem;
	}
}

@media (min-width: 992px) {
	.hero-section {
		padding-bottom: 80px;
	}

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

@media (max-width: 992px) {
	.hero-section {
		background-position: top left;
		background-repeat: no-repeat;
		min-height: 500px;
	}

	.hero-section .hero-content {
		margin-bottom: -200px;
	}

	.hero-section h1 {
		font-size: 3.4rem;
	}
}

@media (max-width: 767px) {
	.hero-section .hero-content {
		padding: 1.75rem;
	}

	.hero-section h1 {
		font-size: 3rem;
	}

	.hero-section h2.subhead {
		font-size: 1.7rem;
	}
}

@media (max-width: 575px) {
	.hero-section {
		background-position: 8%;
	}
}

@media (max-width: 500px) {
	.hero-section h1 {
		font-size: 2.5rem;
	}

	.hero-section h2.subhead {
		font-size: 1.5rem;
	}
}

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

/* Custom Step Indicator */
.form.multi-step .step-header {
	border-bottom: 1px solid var(--emory-blue);
	flex-flow: row !important;
	gap: 0 !important; 
}

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

.form.multi-step .step-header div span {
	background: none !important;
	border: none !important;
	border-width: 0 0 3px 0 !important;
	color: #FFF !important;
	display: block !important;
	font-size: 20px !important;
	font-weight: bold !important;
	min-height: auto !important;
}

.form.multi-step .step-header div.active span {
	border: solid var(--emory-blue) !important;
	border-width: 0 0 3px 0 !important;
}

/* Form Wrapper */

.form-wrap {
	background-color: var(--emory-light-blue);
	color: var(--white);
	padding: 0 50px 50px;
}

.form-wrap h2 {
	font-family: var(--font-barlow);
	font-size: 3.125rem;
	text-transform: uppercase;
}

.form-wrap a {
	color: #020203;
	font-weight: bold;
}

.form-wrap a:hover,
.form-wrap a:focus,
.form-wrap a:active {
	color: #FFF !important;
	text-decoration: underline !important;
}

@media (min-width: 992px) {
	.form-wrap {
		margin-top: -160px;
	}
}

@media (max-width: 992px) {
	.form-section {
		padding-top: 120px;
	}
	.form-wrap {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.form-wrap {
		padding: 1rem 1.75rem 1.75rem;
	}
}

@media (max-width: 500px) {
	.form-wrap h2 {
		font-size: 2.5rem;
	}
}

/* Main Form */

.form.multi-step label {
	color: #FFF !important;
	font-family: var(--font-noto-sans);
	font-size: 20px !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	margin-bottom: 12px !important;
}

.form.multi-step .input-wrap input,
.form.multi-step .select-wrap select {
	border: none !important;
}

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

.form.multi-step .select-wrap select {
	background-image:
		linear-gradient(45deg, transparent 50%, #FFF 50%),
		linear-gradient(135deg, #FFF 50%, transparent 50%),
		linear-gradient(to right, var(--emory-blue), var(--emory-blue)) !important;
	background-size:
		5px 5px,
		5px 5px,
		3em 4em !important;
}

.form.multi-step .form-controls input {
	background: var(--emory-yellow) !important;
	border: none !important;
	border-radius: 0 !important;
	color: var(--emory-blue) !important;
	font-weight: 700 !important;
	margin-bottom: 30px !important;
	text-transform: uppercase;
}

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

.form.multi-step .form-controls input#previous {
	background: var(--emory-dark-blue) !important;
	color: #FFF !important;
}

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

.form.multi-step span.error {
	color: #020203 !important;
	padding: 0 !important;
}

.form.multi-step span.asterisk,
.form.multi-step .privacy span {
	color: #020203 !important;
	font-size: 14px !important;
}

.form.multi-step .privacy {
	font-size: 16px !important;
    margin-bottom: 0 !important;
}

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

/* Popover */

.popover {
	background-color: var(--emory-yellow);
	border: 1px solid var(--emory-yellow);
	color: var(--emory-blue);
	padding: 6px;
	text-align: center;
}

.popover-body {
	color: var(--emory-blue);
	font-weight: 700;;
	padding: 5px;
}

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

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

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

.benefits-list {
	margin: 0;
}

.benefit-bullet {
	list-style: none;
	padding: 0;
}

.benefit-bullet:before {
	display: none;
}

.benefit {
	flex: 1 1 0;
}

.benefit-icon {
	color: var(--emory-light-blue);
	font-size: 2.4rem;
}

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

/*******************************************
:--- Callouts ---:
*******************************************/

.callout {
	color: #FFF;
	font-size: 1.375rem;
	margin: 0 auto;
	font-family: var(--font-barlow);
	line-height: 1.25;
	width: 100%;
	max-width: 450px;
}

.callout .callout-body,
.callout .callout-footer {
	font-weight: 600;
	padding: 2.5rem;
	z-index: 2;
}

.callout .callout-body p {
	margin: 0 auto;
	max-width: 80%;
}

.callout .source {
	font-family: var(--font-noto-sans);
	font-size: 15px;
	font-style: italic;
	font-weight: 400;
	margin-bottom: 0;
}

/* Rankings */

.callout.rank {
	background: #004D97;
}

.callout.rank .rank-number {
	color: var(--emory-yellow);
	display: block;
	font-size: 5rem;
	font-weight: 600;
}

.callout.rank .callout-footer {
	background-color: var(--emory-blue);
	text-transform: uppercase;
}

.callout.rank .callout-body::before,
.callout.rank .callout-body::after {
	background-image: url(../../images/ppc/chevron-dbl-blue.png);
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	width: 116px;
	height: 145px;
}

.callout.rank .callout-body::before {
	top: 0;
	right: 0;
	transform: scale(-1);
}

.callout.rank .callout-body::after {
	bottom: 0;
	left: 0;
}

.callout-divider {
	border-top: 4px solid var(--emory-yellow);
	margin: 1.25rem auto;
	opacity: 1;
	max-width: 150px;
}

/* Statistics */

.callout.stat {
	background: var(--emory-blue);
}

.callout.stat .callout-body::before,
.callout.stat .callout-body::after {
	background-image: url(../../images/ppc/chevron-dbl-white.png);
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	width: 116px;
	height: 145px;
}

.callout.stat .callout-body::before {
	top: 0;
	right: 0;
	transform: scale(-1);
}

.callout.stat .callout-body::after {
	bottom: 0;
	left: 0;
}

/*******************************************
:--- Image Box ---:
*******************************************/

.img-box {
	background-color: black;
	width: 100%;
	height: 550px;
	overflow: clip;
	max-width: 500px;
}

.img-box img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
}

.img-box.img-center img {
	left: 50%;
	transform: translate(-50%);
}

/*******************************************
:--- Tables ---:
*******************************************/
.table {
	color: #000;
	border-bottom: 2px solid var(--emory-light-blue);
}

.table .txt-normal {
	font-weight: 400;
}

.table thead {
	background-color: var(--emory-light-blue);
	color: #FFF;
	font-family: var(--font-amiri);
	font-size: 1.25rem;
}

.table tbody {
	font-size: 1rem;
}

.table>:not(caption)>*>* {
	padding: 0.8rem 1rem;
}

.table tbody tr,
.table tbody td {
	border: 0;
}

.table tbody tr:nth-child(odd) { 
	background-color: #FFF; 
}

.table tbody tr:nth-child(even) { 
	background-color: #EEF9FD;
}

/*******************************************
:--- Bullets ---:
*******************************************/

main ul {
	margin-left: 15px;
	margin-bottom: 25px;
}

main ul li {
    list-style: none;
    margin: 0;
    padding: 0 0 5px 20px;
}

main ul li:before {
    color: var(--emory-light-blue);
    content: "\f324";
    font-family: "Font Awesome 6 Pro";
    font-size: 0.65rem;
	font-weight: bold;
    padding-right: 15px;
    margin: -1px 0 0 -20px;
    vertical-align: middle;
    display: inline-block;
	-webkit-text-stroke: .65px;
}

/*******************************************
:--- Main Content ---:
*******************************************/
section {
	font-size: 1.125rem;
	padding: 5rem 0;
}

#main-content p a:focus-visible {
	background: var(--primary-dark);
	color: var(--white);
	outline: none;
	padding: 0 2px;
}

/* Tabbed Content */

.nav-pills .nav-link {
	background-color: var(--light-grey);
	border-radius: 0;
	color: var(--primary-dark);
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
	background-color: var(--primary-dark);
	color: #fff;
}

/* Testimonial */

.testimonial-section:before,
.testimonial-section:after {
	background-image: url(../../images/ppc/diamond.png);
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	overflow: clip;
	opacity: .05;
}

.testimonial-section::before {
	background-position: 50% 100%;
	bottom: 0;
	left: 0;
	transform: scale(-1);
	width: 270px;
	height: 340px;
}

.testimonial-section::after {
	background-position: 50% 0%;
	bottom: 0;
	right: 0;
	width: 240px;
	height: 350px;
}

.testimonial-section blockquote {
	color: var(--emory-blue);
	font-size: 1.625rem;
	line-height: 1.25;
}

.testimonial-image {
	width: 207px;
	height: 207px;
	margin: 0 auto 30px;
}

.testimonial-section .quote {
	font-family: var(--font-amiri);
	font-style: italic;
} 

.testimonial-attribution .name {
	font-family: var(--font-barlow);
	text-transform: uppercase;
}

.testimonial-attribution .title {
	color: #101820;
	font-family: var(--font-noto-sans);
	font-size: 1.125rem;
}

/* Program Overview */

.program-overview {
	background-color: var(--emory-blue);
	color: #FFF;
	position: relative;
}

.program-overview::before {
	background-image: url(../../images/ppc/emory-grid.png);
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .35;
}

.program-overview h2 {
	text-align: center;
}

.program-overview p {
	font-size: 1.125rem;
}

/* Additional Sections */

section.additional-section-1::before {
	background-image: url(../../images/ppc/chevron-dbl.png);
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 515px;
	height: 200px;
}

section.additional-section-3 {
	padding-bottom: 250px;
}

section.additional-section-3::before {
	background-image: url(../../images/ppc/chevron-dbl.png);
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 515px;
	height: 200px;
}

/* About Section */

section.about-school {
	background-color: var(--emory-light-blue);
	padding: 0;
}

section.about-school .about-content {
	color: #FFF;
	padding: 5rem 5rem 5rem 0;
	margin: 0 0 0 auto;
	width: 100%;
}

section.about-school .img-box {
	width: 100%;
	height: 100%;
	min-height: 400px;
	max-width: 100%;
}

@media (min-width: 1440px) {
	section.about-school .about-content {
		max-width: 690px;
	}
}

@media (max-width: 1440px) {
	section.about-school .about-content {
		max-width: 650px;
	}
}

@media (max-width: 1400px) {
	section.about-school .about-content {
		max-width: 560px;
	}
}

@media (max-width: 1200px) {
	section.about-school .about-content {
		max-width: 470px;
	}
}

@media (max-width: 992px) {
	section {
		padding: 2.5rem 0;
	}

	section.about-school .about-content {
		margin: 0 auto;
		max-width: 720px;
		padding: 5rem 12px;
	}

	section.about-school .img-box {
		min-height: 250px;
	}

	section.about-school .img-box img {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 767px) { 
	section.about-school .about-content {
		max-width: 540px;
	}
}

/*******************************************
:--- Social Links ---:
*******************************************/

.social-links {
    display: flex;
	margin-bottom: 30px;
}

.social-links a {
    color: #FFF;
    display: inline-block;
    width: 38px;
    height: 38px;
    font-size: 30px;
    text-align: center;
    margin: 0 20px 0 0;
    text-decoration: none;
}

.social-links a:hover,
.social-links a:focus,
.social-links a:active {
	color: var(--emory-yellow);
}

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

footer.page-footer {
	padding: 0 0 6rem;
	font-size: 1.125rem;
	line-height: 1.4;;
}

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

footer.page-footer .footer-content {
	background-color: var(--emory-blue);
	padding: 5rem 0;
	margin-bottom: 2.5rem;
}

footer.page-footer .footer-content .social-links a {
	color: #FFF;
	text-decoration: none;
}

footer.page-footer .footer-content .social-links a:hover,
footer.page-footer .footer-content .social-links a:focus,
footer.page-footer .footer-content .social-links a:active {
	color: var(--emory-yellow);
}

footer.page-footer hr {
	display: none;
}

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

footer.page-footer a {
	color: var(--emory-yellow);
	text-decoration: none;
}

footer.page-footer a:hover,
footer.page-footer a:focus,
footer.page-footer a:active {
	text-decoration: underline;
}

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

/* Large Displays */
@media (min-width: 1440px) {
	.container {
		max-width: 1400px;
	}
}

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

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

@media (max-width: 992px) {
	.footer-logo {
		max-width: 250px;
	}
}
 
@media (max-width: 767px) {
	
}

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

@media (max-width: 480px) { 

}

@media (max-width: 320px) { 

}