/*
Theme Name: Manchester v2
Theme URI: https://liaisonedu.com
Author: Liaison International / Tom Bartling
Author URI: https://liaisonedu.com
Description: Manchester landing pages.
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 7.0
Version: 1.1
License:
License URI:
Text Domain: manchester
Tags:
*/

/* -------------- DEFAULTS & GENERAL 	-------------- */
:root {
	--font-primary: Arial, Helvetica, "sans-serif";
	--font-headings: Clarendon, Century, serif;

	--color-default_text: #3d3d3d;
	--color-white: #FFFFFF;
	--color-manchester_gold: #EEB111;
	--color-manchester_black: #0A0203;
	--color-manchester_gray: #969893;
	--color-manchester_sunrise: #FF6C0C;
	--color-manchester_blue: #6BC4DE;
	--color-manchester_green: #82BC00;
	--color-dark_background: #2e2f2e;
	--color-edu-site-background-color: #f7f7f7;

	--color-manchester_black-transparent: #0A020399;

    
	/*      UPDATE THIS  */
    --btn-color-background: var(--color-white);
    --btn-color-text: var(--color-default_text);

	--color-warning: #dd0000;

}

/* HTML element classes */

BODY, HTML {
	width: 100%;
	font-size: 16px;
	font-family: var(--font-primary);
	color: #000000;
	padding: 0;
	margin: 0;
	min-width: 390px;

	/* copied from .edu site 
	background-color: #f7f7f7;
	*/

}

IMG, IFRAME {
	max-width: 100%;
}

FORM, INPUT, TEXTAREA, SELECT, OPTION {
	/* width: 90%; */ /* this causes Gravity Forms to not display the form in the admin. */
	max-width: 100%;
	line-height: 200%;
}

/* width: 80%; causes admin form to not display */
.wp-admin FORM {  
	width: initial;
}


/* used with js function goToForm() to scroll to 1st input... selector needs to match js */
INPUT[type='text'] {
	scroll-margin-top: 60px;
}

INPUT[type="radio"],
INPUT[type="checkbox"],
INPUT[type="submit"] {
	width: auto;
}

/* overwriting bootstrap */
	B, STRONG {
		font-weight: 700;;
	}

	/* not importing bootstrap typography just for this */
	.text-left {
		text-align: center;
	}
	.text-center {
		text-align: center;
	}
	.text-right {
		text-align: center;
	}


A,
A:link,
A:active,
A:visited,
A:hover {
	font-weight: 700;
	/* color: var(--color-primary); */
}

.gform-footer INPUT[type="submit"],
A.cta-btn, 
A.cta-btn:link, 
A.cta-btn:active, 
A.cta-btn:visited, 
A.cta-btn:hover, 
.cta-btn, 
BUTTON {
    color: var(--btn-color-text); 
    cursor: pointer;
	display: inline-block;
	padding: 0.5rem 1.0rem;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 10px;
	text-transform: uppercase;
	font-family: var(--font-primary);
	border: solid var(--color-manchester_gold) 3px;
    background-color: var(--btn-color-background);
	/* background-image: linear-gradient(to right, var(--color-manchester_gold) 10%, #ffffff 10% 100% ); */
	/*
	*/
	background-image: linear-gradient(to right, var(--color-manchester_gold) 0% 100%), linear-gradient(to right, #ffffff 0% 100%);
	background-size: 0, 100%;
	background-repeat: no-repeat, no-repeat;

	animation-duration: 0.3s;
	animation-name: btn-back-to-normal;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

A.cta-btn:hover, 
A.cta-btn:link:hover, 
A.cta-btn:active:hover, 
A.cta-btn:visited:hover, 
A.cta-btn:hover:hover, 
.cta-btn:hover, 
BUTTON:hover {
	animation-duration: 0.3s;
	animation-name: btn-backslide;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

@keyframes btn-backslide {
	from {
		background-size: 0, 100%;
		color: var(--btn-color-text); 
	}

	to {
		background-size: 100%, 0%;
		color: #ffffff;
	}
}

@keyframes btn-back-to-normal {
	from {
		background-size: 100%, 0%;
		color: #ffffff;
	}

	to {
		background-size: 0, 100%;
		color: var(--btn-color-text); 
	}
}

.footer-row A.cta-btn,
.footer-row A.cta-btn:link,
.footer-row A.cta-btn:active,
.footer-row A.cta-btn:visited,
.footer-row A.cta-btn:hover,
.fast-facts-you-become-row A.cta-btn, 
.fast-facts-you-become-row A.cta-btn:link, 
.fast-facts-you-become-row A.cta-btn:active, 
.fast-facts-you-become-row A.cta-btn:visited,
.fast-facts-you-become-row A.cta-btn:hover  {
	border: solid #000000 3px;
}

.footer-row A.cta-btn:hover,
.fast-facts-you-become-row A.cta-btn:hover {
	border: solid #ffffff 3px;
}



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 800;
}

.h1, H1, .h2, H2, .h3, H3 {
	display: block;
	font-family: var(--font-primary);
	font-size: 2.75rem;
	/* 
    text-transform: uppercase;
	letter-spacing: .8px;
	line-height: 1.1rem; 
	margin: 0 0 1.5rem 0;
	*/
}

.h1, H1 {    font-size: 1.75rem; font-family: var(--font-headings); text-transform: uppercase;  }
.h2, H2 {    font-size: 1.5rem;  }
.h3, H3 {    font-size: 1.75rem;  }
.h4, H4 {    font-size: 1.50rem;  }



/* generic classes */
.bg-default_text { 
	background-color: var(--color-default_text); 
	color: #000000; 
}

.bg-white { 
	background-color: var(--color-white); 
	color: #000000; 
}

.bg-manchester_gold { 
	background-color: var(--color-manchester_gold); 
	color: #000000; 
}

.bg-manchester_black { 
	background-color: var(--color-manchester_black); 
	color: #000000; 
}

.bg-manchester_gray { 
	background-color: var(--color-manchester_gray); 
	color: #000000; 
}

.bg-manchester_sunrise { 
	background-color: var(--color-manchester_sunrise); 
	color: #000000; 
}

.bg-manchester_blue { 
	background-color: var(--color-manchester_blue); 
	color: #000000; 
}

.bg-manchester_green { 
	background-color: var(--color-manchester_green); 
	color: #000000; 
}

.bg-dark-background { 
	background-color: var(--color-dark_background); 
	color: #ffffff; 
}

.bg-edu-site-gray {
	background-color: var(--color-edu-site-background-color);
	color: #000000; 
}

.body-copy-emphasis {
	font-weight: 700;
	font-style: italic;
	font-size: 1.03em;
}


.program-benefits-row .body-copy-emphasis {
	color: var(--color-manchester_gold);
}

/* --------------------------------------------------------- */
/* --------- Header row    */

.header-row {
	color: #ffffff;
	border-top: solid #000000 10px;
	border-bottom: solid var(--color-manchester_gold) 4px;
}

.header-left,
.header-center,
.header-right {
	padding: 6px 0;
}

.header-left {
	text-align: center;
}

.header-left IMG {
	max-width: 300px;
	height: 3.0rem;
	margin: 0.5rem 0.5rem 0.5rem 0;
	/* margin: 1.5rem 1.5rem 1.5rem 0; */
}

.header-center {
	text-align: center;
	font-weight: 600;
	font-size: 1.0rem;
	letter-spacing: 4px;
}

.header-right {
	text-align: center;
	font-weight: 700;
	font-size: 1.0rem;
	letter-spacing: 1px;
}

.header-br {
	display: inline;
}

/* --------------------------------------------------------- */
/* --------- Hero row     */
/*
.hero-row, 
.hero-row-brand {
	background-image: url(ADD_URL_HERE);
	background-size: cover;
	background-position: top left;	
}
*/


.hero-row H1 {
	color: #ffffff;
	margin: 25px 0 20px 0;
}

.hero-container IMG {
	margin-top: 30px;
}

.hero-blur-background-brand {
	background-image: linear-gradient(var(--color-manchester_black-transparent), var(--color-manchester_black-transparent)), url(images/blur-athletics.jpg);
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-size: cover;
}

.hero-blur-background-pharmacy {
	background-image: linear-gradient(var(--color-manchester_black-transparent), var(--color-manchester_black-transparent)), url(images/blur-pharmacy.jpg);
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-size: cover;
}

.hero-blur-background-pgx {
	background-image: linear-gradient(var(--color-manchester_black-transparent), var(--color-manchester_black-transparent)), url(images/blur-pgx.jpg);
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-size: cover;
}

.hero-blur-background-msngx {
	background-image: linear-gradient(var(--color-manchester_black-transparent), var(--color-manchester_black-transparent)), url(images/blur-msngx.jpg);
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-size: cover;
}

.hero-blur-background-absn {
	background-image: linear-gradient(var(--color-manchester_black-transparent), var(--color-manchester_black-transparent)), url(images/blur-asbn-2.jpg);
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-size: cover;
}

.hero-blur-background-mba {
	background-image: linear-gradient(var(--color-manchester_black-transparent), var(--color-manchester_black-transparent)), url(images/blur-mba-2.jpg);
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-size: cover;
}

.hero-blur-background-pt {
	background-image: linear-gradient(var(--color-manchester_black-transparent), var(--color-manchester_black-transparent)), url(images/blur-pt-2.jpg);
	background-position: center, left center;
	background-repeat: repeat, no-repeat;
	background-size: cover;
}


/* --- Hero row - Thank You page     */
.hero-thank-you-row H1 {
	font-size: 1.5rem;
}

.hero-thank-you-row LI {
	margin-bottom: 1.4rem;
}

.hero-thank-you-row A, 
.hero-thank-you-row A:link, 
.hero-thank-you-row A:active, 
.hero-thank-you-row A:visited, 
.hero-thank-you-row A:hover {
	color: var(--color-manchester_gold);
	text-decoration: underline;
}

.new-tab-icon {
	margin: 0 0.5rem;
}

.new-tab-icon IMG {
	max-height: 1.0rem;
}



/* --------------------------------------------------------- */
/* --------- Program Benefits row     */
.form-brand-row,
.form-pt-row,
.form-pharmacy-row,
.form-pgx-row,
.form-msngx-row,
.form-mat-row,
.form-asbn-row,
.form-mba-row  {
	/* 
	background-image: linear-gradient(to right, #00000099 50%, transparent 50% 100%), url(images/bg-campus-leaf-tower.jpg); 
	background-size: 100% 100%, 50% 100%;
	background-position: top left, top left;
	background-repeat: repeat, no-repeat;
	*/
	color: var(--color-default_text);
	border-top: solid var(--color-manchester_gray) 1px;
	border-bottom: solid var(--color-manchester_gray) 1px;
}

.program-benefits-grad-ceremony-row {
	background-image: linear-gradient(to right, #00000099), url(images/bg-graduation-ceremony.jpg);
	background-position: center left, center left;
}

.program-benefits-contents {
	font-size: 1.0rem;
	background-image: linear-gradient(to right, #00000099), url(images/bg-graduation-ceremony.jpg);
	background-position: center left, top center;
	color: #ffffff;
}

.program-benefits-contents H2 {
	font-family: var(--font-headings);
	text-transform: capitalize;
	font-size: 2.1rem;
	margin: 0 0 30px 0;
}

.program-benefits-highlight {
	font-weight: 700;
	color: var(--color-manchester_gold);
}

/* used on Thank You page */
.program-benefits-thank-you-row  {
	background-image: linear-gradient(to right, #00000099), url(images/bg-campus-leaf-tower.jpg);
	background-position: center left, top left;
}

.program-benefits-thank-you-row .program-benefits-contents {
	background-image: none;
}

.program-benefits-row-fort-wayne {
	background-image: linear-gradient(to right, #00000099), url(images/bg-campus-fortwayne.jpg);
	background-position: center left, top left;
}

/*
.program-benefits-row-mat-lab {
	background-image: linear-gradient(to right, #00000099), url(images/bg-campus-mat-lab-3.jpg);
	background-position: center left, top right;
}

*/

.form-column {
	margin: 0;
	font-weight: 700;
	background-color: #ffffff88;
}


/* --------------------------------------------------------- */
/* --------- Fast Facts row     */
.fast-facts-row {
	font-size: 1.0rem;
}

.icon-text-container, 
.icon IMG {
	max-width: 90%;
	margin: 0 auto 0 auto;
	height: 110px;
}

.icon-text {
	font-size: 4.0rem;
	line-height: 120%;
	padding: 0;
}


.fact-container {
	margin: 15px;
	color: #000000;
    text-align: center;
}

/* mostly copied from the stats on their site */
.fact-number {
	color: var(--color-manchester_gold);
    margin: auto;
    padding: .45rem .45rem 0 .45rem;
	font-size: 2.5rem;
    font-weight: 700;
}

/*
.fact-number-inner {
	font-size: 1.8rem;
	padding: auto;
	margin: auto;
	
	width: 100%;
    height: 100%;
    padding-top: .15em;
}
.fact-number-inner-text {
	margin: 18% -25%;
}
*/


.fact-text {
	font-size: 1.5rem;
	padding: 0;
}
.fact-text-disclaimer {
	font-size: 1.1rem;
}

.fast-facts-you-become-row {
	font-size: 2.0rem;
}

.fast-facts-you-become-row H2 {
	font-family: var(--font-headings);
	font-weight: 400;
}

.facts-you-become-highlight {
	font-weight: 700;
}


/* --------------------------------------------------------- */
/* --------- Foundation row     */
.foundation-content {
	font-size: 1.5rem;
	padding: 20px;
	font-style: normal;
	font-weight: 300;
}

.accreditation-container {
	font-size: 0.8rem;
	border-top: solid black 1px;
	padding-top: 10px;
	text-align: justify;
	margin-top: 10px;
}

.foundation-row IMG {
	max-height: 150px;
}

.foundation-triangle-container {
	border-top: solid #ffffff 2px;
}

.foundation-triangle {
	/* clip-path: polygon( calc(50% - 30px) 0, 50% 40px, calc(50% + 30px) 0 ); */
	clip-path: polygon( calc(50% - 70px) 0, 50% 90px, calc(50% + 70px) 0 );
	background-color: #ffffff;
	background-position: 0 50%;
	background-repeat: no-repeat;
	margin-top: -2px;  /* prevents (mostly) a faint line above the triangle where background gold color shows. */
	min-height: 57px;
}


/* testimonial */
/*
.testimonial-container {
    background-image: radial-gradient(circle at center,rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.5)),
        radial-gradient(circle at center,rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.5)
    );
    background-color: rgb(0, 0, 0, 0); 
    background-size: cover, cover;
    background-position: center center, top center;
    background-repeat: no-repeat, no-repeat;
    min-height: 600px;
    padding-bottom: 20px;
}

.testimonial-container-PERSON_NAME {
    background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url(images/testimonials/PHOTO_FILENAME);
}
*/
.testimonial-quote {
	font-size: 1.3rem;
	padding: 2.0rem;
}
.testimonial-quote::before {
	content: '\201C';
}
.testimonial-quote::after {
	content: '\201D';
}

.testimonial-attribution {
	font-weight: 700;
	padding: 1.25rem;
}


/* --------------------------------------------------------- */
/* --------- Photo row     */
/*
.photo-row {
	background-image: url(URL_GOES_HERE);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
}
*/

.photo-row IMG {
	max-width: 100%;
	width: 100%;
}



/* --------------------------------------------------------- */
/* --------- Contact row     */
/*
.contact-row {

}
*/


/* --------------------------------------------------------- */
/* --------- Footer row     */
.footer-row {
	padding: 0 0 30px 0;
}

.footer-address {
	font-size: 1.0rem;
	line-height: 150%;
	margin: 20px 0 0 0;
}

.footer-bold {
	font-weight: 700;
}

/*
.footer-logo {
	max-width: 100px;
}
*/

.footer-tagline {
	font-weight: 700;
}

.footer-row A,
.footer-row A:link,
.footer-row A:active,
.footer-row A:visited,
.footer-row A:hover {
	color: #ffffff;
	text-decoration: none;
}

.footer-row A.cta-btn,
.footer-row A.cta-btn:link,
.footer-row A.cta-btn:active,
.footer-row A.cta-btn:visited,
.footer-row A.cta-btn:hover {
	color: #000000;
	text-decoration: none;
}


.footer-left, 
.footer-right {
	text-align: center;
}


/* --- GRAVITY FORMS OVERRIDES ARE IN footer-scripts-row.php BECAUSE style.css CAN LOAD BEFORE GRAVITY FORMS ON SOME SITES --- */

/*--- FORM STYLES WHEN GRAVITY FORMS CSS IS DISABLED ---*/
FORM {
	line-height: initial;
}

.gfield {
	margin: 0 0 20px 0;
}

.gfield LABEL {
	font-size: 0.9rem;
}
.gfield LABEL SPAN {
	margin-left: 0.2rem;
}

.gfield_error INPUT,
.gfield_error SELECT {
	border-color: var(--color-warning);
}

.validation_message, 
.gfield_validation_message, 
.gform_validation_errors, 
.gfield_required {
	color: var(--color-warning);
}

.validation_message, 
.gfield_validation_message {
	font-style: italic;	
}

.gform-theme--framework .gform_validation_errors .gform_submission_error {
	border: none;
	margin: 10px 0 20px 0;
}

.gform_validation_errors H2 {
	font-family: var(--font-primary);
	font-size: 1.3rem;
}

.gfield--type-hidden, 
.gfield--input-type-hidden, 
.gform_hidden, 
.gfield--type-honeypot {
	display: none;
}

.gform-body INPUT:not([type="checkbox"]), .gform-body SELECT {
	width: 100%;
	height: 2.0rem;
	padding: 0.2rem 0.2rem 0 0.2rem;
}

.gfield_visibility_hidden {
	display: none;
}

.ginput_container_checkbox LABEL {
	display: inline;
	margin: 0 0 0 6px;
	font-size: 0.9rem;
}

.gfield_label_before_complex {
	display: none;
}


/*--- FORM STYLES WHEN GRAVITY FORMS CSS IS DISABLED ---*/


/* --------------------------------------------------------- */
/* --------- RESPONSIVE 				 */

@media screen and (min-width: 576px) {
	.header-left IMG {
		max-width: 300px;
		height: auto;
		width: 100%;
		margin: 1.5rem 1.5rem 1.5rem 0;
	}

	.header-left {
		text-align: left;
	}

	.header-right {
		text-align: right;
	}

	
	.footer-left {
		text-align: center;
	}
	
	.footer-right {
		text-align: right;
	}
	
}


@media screen and (min-width: 768px) {
	.header-row {
		border-top: solid #000000 20px;
	}
	
	.header-center {
		font-size: 1.25rem;
	}
	.header-right {
		font-size: 1.0rem;
	}

	.hero-row H1 {
		font-size: 2.5rem;
	}
	
	.hero-container IMG {
		margin-top: 30px;
		max-height: 300px;
	}
	
	.form-brand-row,
	.form-pt-row,
	.form-pharmacy-row,
	.form-pgx-row,
	.form-msngx-row,
	.form-mat-row,
	.form-asbn-row,
	.form-mba-row  {
		/* 
		background-image: url(images/spatter.png), linear-gradient(to right, #00000099 36%, var(--color-manchester_gold) 36% 36.25%, transparent 36.5% 100%), url(images/bg-campus-leaf-tower.jpg); 
		*/
		background-image: url(images/spatter.png), linear-gradient(to right, #00000099 36%, var(--color-manchester_gold) 36% 36.25%, #ffffff00 36.5% 100%), url(images/bg-campus-leaf-tower.jpg); 
		background-size: contain, 100% 100%, 36% 100%;
		background-position: 36% 50%, top left, top left;
		background-repeat: no-repeat, no-repeat, no-repeat;
		background-blend-mode: normal, normal, normal;
	}

	.form-column {
		margin: 0 -20px 0 20px;
	}

	.program-benefits-contents {
		font-size: 1.0rem;
		/* border-right: solid var(--color-manchester_gold) 4px; */
		background-image: none;
	}
	.program-benefits-contents H2 {
		font-size: 2.1rem;
	}


	
	.fact-text {
		font-size: 1.2rem;
	}
	.fact-text-disclaimer {
		font-size: 0.9rem;
	}

	.icon {
		max-width: 100%;
	}

}


@media screen and (min-width: 993px) {
	.hero-row H1 {
		font-size: 3.0rem;
	}

	.form-brand-row,
	.form-pt-row,
	.form-pharmacy-row,
	.form-pgx-row,
	.form-msngx-row,
	.form-mat-row,
	.form-asbn-row,
	.form-mba-row  {
		background-image: url(images/spatter.png), linear-gradient(to right, #00000099 36%, var(--color-manchester_gold) 36% 36.25%, transparent 36.5% 100%), url(images/bg-campus-leaf-tower.jpg); 
		background-size: contain, 100% 100%, 36% 100%;
		background-position: 36% 50%, top left, top left;
	}

	.program-benefits-thank-you-row  {
		background-image: linear-gradient(to right, #000000aa 42%, var(--color-manchester_gold) 42% 42.25%, transparent 40%), url(images/bg-campus-leaf-tower.jpg);
		background-size: 100% 50%, cover;
		background-position: center left, top right;
		background-repeat: repeat, no-repeat;
	}
	
	.program-benefits-row-fort-wayne {
		background-image: linear-gradient(to left, #000000aa 42%, var(--color-manchester_gold) 42% 42.25%, transparent 40%), url(images/bg-campus-fortwayne-2.jpg);
		background-size: 100% 50%, cover;
		background-position: center left, top left;
		background-repeat: repeat, no-repeat;
	}

	/*
	.program-benefits-grad-ceremony-row {
		background-image: linear-gradient(to right, #000000aa 42%, var(--color-manchester_gold) 42% 42.25%, transparent 40%), url(images/bg-graduation-ceremony.jpg);
		background-size: 100% 50%, cover;
		background-position: center left, center right;
		background-repeat: repeat, no-repeat;
	}
	
	.program-benefits-row-mat-lab {
		background-image: linear-gradient(to right, #000000aa 42%, var(--color-manchester_gold) 42% 42.25%, transparent 40%), url(images/bg-campus-mat-lab-3.jpg);
	}
	*/

	.program-benefits-contents {
		font-size: 1.1rem;
	}

	.program-benefits-contents H2 {
		font-size: 2.5rem;
	}

	
	.text-left {
		text-align: left;
	}
	.text-center {
		text-align: center;
	}
	.text-right {
		text-align: right;
	}

}

@media screen and (min-width: 1200px) {
	.header-br {
		display: none;
	}
}


@media screen and (min-width: 1400px) {

}

@media screen and (min-width: 1775px) {
	.form-brand-row,
	.form-pt-row,
	.form-pharmacy-row,
	.form-pgx-row,
	.form-msngx-row,
	.form-mat-row,
	.form-asbn-row,
	.form-mba-row  {
		background-image: url(images/spatter.png), linear-gradient(to right, #00000099 38%, var(--color-manchester_gold) 38% 38.25%, transparent 38.5% 100%), url(images/bg-campus-leaf-tower.jpg); 
		background-size: contain, 100% 100%, 38% 100%;
		background-position: 38% 50%, top left, top left;
	}
}
