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

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

body {
	background: #fff;
	font-size: 1rem;
}

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

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 1.75rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1.5rem;
}

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

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

.alert-message {
	
}

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

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


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

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

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

nav.page-nav {
	
}

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 {
	color: var(--white);
	font-weight: 400;
	font-style: normal;
	padding-left: 10px;
	padding-right: 10px
}

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


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

.hero-section {
	padding-bottom: 10rem !important;
    padding-top: 10rem !important;
}

.hero-section > * {
	z-index: 3;
}

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

.hero-section .hero-content {

}

.hero-bg-image {
	display: flex;
	align-items: center;
    position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: 100%;
	z-index: 1 !important;
}

.hero-bg-image img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}

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

/* Step Headers */

.form.multi-step .step-header {
	flex-flow: row !important;
}

/* Popover */

.popover {
	background-color: var(--tertiary-dark);
	border: 1px solid var(--tertiary-dark);
	color: #fff;
	padding: 6px;
	text-align: center;
}

.popover-body {
	color: #fff;
}

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

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

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

.benefits-list {
	margin: 0;
}

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

.benefit {
	flex: 1 1 0;
}

.benefit-icon {
	font-size: 2.25rem;
}

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


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

#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 blockquote {
	font-size: 1.4rem;
}

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

footer.page-footer {
	padding: 2em 0;
	font-size: 0.875rem;
}

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

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

/*******************************************
:--- Floating Alert Bar ---:
*******************************************/

/* Floating container in bottom-right */
.floating-alert {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 2000;
	width: clamp(260px, 28vw, 420px);
	pointer-events: auto;
	display: none;
}

.side-alert {
	position: fixed;
	top: 50%;
	right: -340px; /* hidden offscreen */
	transform: translateY(-50%);
	width: 300px;
	z-index: 2000;
	background-color: #273469;
	color: white;
	border-radius: 8px 0 0 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: right 0.5s ease-in-out;
	padding: 1.5rem;
}

.side-alert.show {
	right: 0; /* slides in */
}

.side-alert .close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	position: absolute;
	top: 8px;
	right: 10px;
	cursor: pointer;
}

.side-alert-title {
	font-size: 1.125rem;
	line-height: 1.4;
}

.fade-in {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.fade-in.show {
	opacity: 1;
}

/* Slight styling for the card-like alert */
.floating-alert .alert,
.side-alert .alert {
	border-radius: .75rem;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
	overflow: hidden;
	margin: 0;
}

.side-alert .alert {
	border-radius: 0;
}

/* Title row: make clickable for toggling */
.floating-alert .alert-header,
.side .alert-header {
	display: flex;
	gap: .5rem;
	width: 100%;
	padding: .6rem 0.75rem;
}

/* Keep the collapse content well padded */
.floating-alert .alert-body,
.side-alert .alert-body {
	padding: .75rem;
	border-top: 1px solid rgba(0,0,0,0.05);
}

button.modal-trigger-btn {
	width: 5rem;
	height: 5rem;
	border: 0;
	border-radius: 50%;
	background-color: #d0cfeb;
	cursor: pointer;
	overflow: hidden;
	z-index: 999;
	display: none;
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 500ms ease-out 0s;
	-moz-transition: 500ms ease-out 0s;
	-o-transition: 500ms ease-out 0s;
	transition: 500ms ease-out 0s;
	font-size: 11px;
    font-weight: bold;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: -0.125px;
	box-shadow: 0 0 7px rgba(15, 23, 42, 0.2);
}

.modal-content {
	padding: 1rem;
}

.modal-header {
	border-color: transparent;
	display: block;
	padding-bottom: 0;
}

.modal-header .modal-title {
	line-height: 1.3;
}

.modal-header button.btn-close {
	position: absolute;
	right: 2px;
    top: 2px;
}

/* Floating chat button */
#chatBubble i,
#chatBubbleOn i {
	font-size: 1.25rem;
}

.chat-bubble {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1050;
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2000;
}

.chat-header {
    background-color: #0d6efd;
    color: white;
    padding: 10px 15px;
    font-weight: 600;
}

.chat-body {
    padding: 15px;
    overflow-y: auto;
    font-size: 0.9rem;
}

.chat-footer {
    border-top: 1px solid #ddd;
    padding: 5px;
    display: flex;
    gap: 5px;
}

.chat-footer i {
	font-size: 1.25rem;
	color: #6c6f74;
}

.chat-footer .nav-link {
	background-color: transparent;
	color: #6c6f74;
	font-size: 0.875rem;
}

.chat-footer .nav-link.active {
	color: #0d6efd;
	background-color: transparent;
}

.chat-footer .nav-link.active i {
	color: #0d6efd;
}


.chat-footer .nav-link:hover,
.chat-footer .nav-link:focus,
.chat-footer .nav-link:hover i,
.chat-footer .nav-link:focus i {
	color: #0d6efd;
	background-color: transparent;
}

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

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

@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) { 

}


/*******************************************
:--- 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;
}
