*,
* * {
	margin: 0;
	padding: 0;
	font-size: 1em;
	position: relative;
	box-sizing: border-box;
}

body {
	font-size: 62.5%;
	font-family: "proxima-nova",sans-serif;
}

footer,
header,
nav,
main,
section {
	display: block;
}

a {
	text-decoration: none;
}

a:focus {
	outline: 1px #8D8D8D dashed;
	outline-offset: 3px;
}

input:focus,
summary:focus,
select:focus,
textarea:focus {
	outline: 1px #8D8D8D dashed;
	outline-offset: 3px;
}

a[href^="tel:"] {
	text-decoration: underline;
}

.color-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% + 1px);
	height: calc(100% + 1px);
	z-index: 100;
}

.color-overlay:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -100;
	opacity: 0;
	transition: opacity .4s;
}

.color-overlay.overlay-pink-gradient {
	background-image: linear-gradient(to top, rgba(229,70,107,0.7), rgba(208,115,36,0.7));
}

.color-overlay.overlay-pink-gradient:before {
	background-image: linear-gradient(to top, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.color-overlay.overlay-pink-gradient:hover:before,
.color-overlay.overlay-pink-gradient:focus-within:before {
	opacity: 1;
}

.color-overlay.overlay-orange-gradient {
	background-image: linear-gradient(to top, rgba(229,70,107,0.7), rgba(208,115,36,0.7));
}

.color-overlay.overlay-orange-gradient:before {
	background-image: linear-gradient(to top, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.color-overlay.overlay-orange-gradient:hover:before,
.color-overlay.overlay-orange-gradient:focus-within:before {
	opacity: 1;
}

.color-overlay.overlay-light-blue-gradient {
	background-image: linear-gradient(to top, rgba(17,112,182,0.7), rgba(12,163,222,0.7), rgba(30,188,235,0.7));
}

.color-overlay.overlay-light-blue-gradient:before {
	background-image: linear-gradient(to top, rgba(17,112,182,0.9), rgba(46,166,216,0.9), rgba(80,228,255,0.9));
}

.color-overlay.overlay-light-blue-gradient:hover:before,
.color-overlay.overlay-light-blue-gradient:focus-within:before {
	opacity: 1;
}

.color-overlay.overlay-blue-gradient {
	background-image: linear-gradient(to top, rgba(0,141,206,0.7), rgba(37,198,240,0.7));
}

.color-overlay.overlay-blue-gradient:before {
	background-image: linear-gradient(to top, rgba(0,141,206,0.9), rgba(37,198,240,0.9));
}

.color-overlay.overlay-blue-gradient:hover:before,
.color-overlay.overlay-blue-gradient:focus-within:before {
	opacity: 1;
}

.clear {
	clear: both;
}

.col-2,
.col-3,
.col-4 {
	width: 100%;
}

pink {
	color: #e5486a;
}

blue {
	color: #0093d6;
}

dark-gray {
	color: #343434;
}

.pink {
	color: #e5486a;
}

.blue {
	color: #0093d6;
}

h1 {
	font-size: 3.6em;
	font-weight: 400;
}

h2 {
	font-size: 3em;
}

h3 {
	font-size: 2.8em;
}

h4 {
	font-size: 2.6em;
}

h5 {
	font-size: 2.2em;
}

h6 {
	font-size: 2.2em;
	color: #343434;
	font-weight: 400;
}

th,
td,
p {
	font-size: 2em;
	font-weight: 400;
	color: #343434;
}

h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a {
	color: #e5486a;
	text-decoration: underline;
}

h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
p a:hover {
	color: #A80025;
}

a {
	transition: color .4s;
}

figure {
	width: 100%;
	max-width: 1500px;
	margin: 60px auto;
}

figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

figure figcaption {
	line-height: 1.5em;
	font-size: 1.8em;
}

.text-button {
	font-size: 1.4em;
	color: #e5486a;
	font-weight: 700;
	border-bottom: 2px solid;
	padding-bottom: 2px;
	cursor: pointer;
	display: inline-block;
}

.text-button svg {
	width: 10px;
	height: 10px;
	margin-left: 3px;
	transition: margin-left .4s;
}

.text-button svg path {
	fill: #e5486a;
}

.text-button:hover svg,
.text-button:focus svg {
	margin-left: 23px;
}

.callout-button {
	position: absolute;
	color: #343434;
	transition: color .4s,min-width .4s,box-shadow .4s;
	bottom: -10%;
	left: 50%;
	transform: translate(-50%);
	min-width: 73%;
	background: #fff;
	padding: 5.5% 13% 5.5% 5%;
	border-radius: 8px;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	z-index: 3;
	width: auto;
	max-width: 85%;
}

.callout-button p,
.callout-button h6 {
	transition: color .4s;
}

.callout-button span {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-repeat: no-repeat;
	width: 4vw;
	height: 4vw;
	background-position: center;
	position: absolute;
	right: 6%;
	top: 33%;
}

.callout-button:hover,
.callout-button:focus {
	box-shadow: 4px 6.5px 22px 0px rgba(0,0,0,0.4);
	outline: none;
}

.callout-button:hover p,
.callout-button:hover h6,
.callout-button:focus p,
.callout-button:focus h6 {
	color: #e5486a;
}

.hide-element {
	display: none;
}

.show-element {
	display: block;
}

.show-element-inline {
	display: inline-block;
}

.background-white {
	background-color: #fff;
}

.background-light-gray {
	background-color: #f2f2f2;
}

.background-dark-gray {
	background-color: #707070;
}

.frame {
	z-index: 10;
}

iframe {
	max-width: 100%;
}

.bps-lightbox {
	position: fixed;
	top: 0;
	left: 50%;
	overflow: hidden;
	transition: left .2s,width .2s,height .2s;
	background: rgba(255,255,255,0.6);
	z-index: 900;
}

.bps-lightbox.active {
	left: 0;
	height: 100vh;
	width: 100vw;
}

.bps-lightbox.active .bps-lightbox-content {
	top: 50%;
	left: 50%;
	width: 85vw;
	height: 47vw;
	margin-top: -23vw;
	margin-left: -42vw;
}

.bps-lightbox.active .close-video {
	display: block;
}

.bps-lightbox .close-video {
	display: none;
	position: absolute;
	right: 1.5vw;
	top: 20vw;
	text-align: center;
	font-size: 1.8em;
	color: #343434;
	font-weight: 700;
}

.bps-lightbox .close-video span {
	background-image: url("/themes/custom/baltimore/img/red-x.svg");
	background-repeat: no-repeat;
	display: block;
	width: 18px;
	height: 18px;
	margin: 0 auto 3px;
}

.bps-lightbox .bps-lightbox-content {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	margin-top: 0;
	margin-left: 0;
	transition: all .2s;
}

.bps-lightbox .bps-lightbox-content iframe {
	border: none;
}

.show-bg-shadow {
	box-shadow: 0px 0px 11px 2px rgba(0,0,0,0.1);
	background-color: #fff;
}

.password-protected-page {
	background-color: #E5486A;
	position: relative;
	top: 0;
	width: 100%;
	height: 65px;
	z-index: 1;
}

.password-protected-page p {
	color: #fff;
	padding: 10px 10px 0px;
	text-align: center;
}

.password-protected-page span {
	background-image: url("/themes/custom/baltimore/img/staff-lock.svg");
	height: 20px;
	width: 56px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: -2px;
}

.maintenance-body {
	overflow: hidden;
}

.maintenance-body header {
	z-index: 10;
}

.maintenance-body header .hidden-info {
	text-align: center;
	margin-top: 30px;
	opacity: 1;
	display: block;
	width: 100%;
	max-height: inherit;
}

.maintenance-body header .hidden-info p {
	color: #707070;
	font-size: 1.3rem;
}

.maintenance-body header .hidden-info p a {
	color: #707070;
}

.maintenance-body header .hidden-info .social-media-icons {
	margin-bottom: 0;
	margin-left: 24px;
}

.maintenance-body header .hidden-info .social-media-icons li {
	margin-right: 24px;
}

.maintenance-body header .hidden-info .social-media-icons li a {
	height: 32px;
	width: 32px;
}

.maintenance-body header .hidden-info .social-media-icons li a svg path {
	fill: #0093d6;
}

.maintenance-body header .bps-logo {
	position: relative;
	top: auto;
	left: auto;
	width: 23em;
	max-width: initial;
	height: 65px;
	margin: 30px auto 0;
}

.maintenance-body .section-dynamic-callouts {
	padding: 20px 0 20px;
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 {
	padding: 50% 0;
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 .color-overlay.overlay-pink-gradient {
	background-image: linear-gradient(to top, #e5466b, #d07324);
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details svg {
	width: 220px;
	margin-bottom: 25px;
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details h3 {
	padding: 2.5% 3%;
	margin-bottom: 25px;
}

.dialog-off-canvas-main-canvas {
	z-index: 9;
}

.loading-icon {
	height: 25vh;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.toolbar-oriented .toolbar-bar .toolbar-tab,
.toolbar-oriented .toolbar-tray-horizontal li {
	position: static;
}

#block-baltimore-main-menu,
#block-baltimore-branding {
	display: none;
}

body {
	top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
	display: none !important;
}

.search-temp-message {
	width: 90%;
	margin: 2em auto 1em;
	font-size: 15px;
	border: 2px solid #e5486a;
	border-radius: 1em;
	padding: 1em;
}

.search-temp-message a {
	color: #e5486a;
	text-decoration: underline;
}

.search-temp-message a:hover {
	color: #A80025;
}

header {
	min-height: 12vh;
	z-index: 10;
	background-color: #fff;
}

header .hidden-info {
	opacity: 0;
	transition: opacity .4s;
	max-height: 45px;
	width: 18%;
	display: none;
}

header .hidden-info p {
	color: #fff;
	margin-bottom: 15px;
	font-size: 1.3em;
}

header .hidden-info p a {
	color: #fff;
}

header .hidden-info .social-media-icons {
	margin-bottom: 9%;
	display: block;
	list-style: none;
}

header .hidden-info .social-media-icons li {
	display: inline-block;
	margin-right: 10px;
}

header .hidden-info .social-media-icons li a {
	width: 16px;
	height: 16px;
	float: left;
	transition: opacity .4s;
}

header .hidden-info .social-media-icons li a span {
	display: block;
	overflow: hidden;
	text-indent: -1000px;
}

header .hidden-info .social-media-icons li a svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

header .hidden-info .social-media-icons li a:hover {
	opacity: .5;
}

header .bps-logo {
	display: block;
	position: absolute;
	left: 3em;
	width: 17.3em;
	max-width: 145px;
	top: 3px;
	height: 100%;
	background-image: url("/themes/custom/baltimore/img/BPS-logo.svg");
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
	max-height: 60px;
}

header .bps-logo span {
	text-indent: -100em;
	display: block;
}

header .active .bps-translogin {
	display: block;
}

header .bps-translogin {
	display: none;
	position: absolute;
	top: 1.5em;
	right: 1em;
	height: 21px;
	line-height: 21px;
	max-width: none;
	z-index: 110;
}

header .bps-translogin>div {
	display: inline-block;
	position: relative;
	height: 100%;
}

header .bps-translogin #google_translate_element {
	display: block;
	position: absolute;
	top: 0;
	left: -50px;
	z-index: 10;
}

header .bps-translogin .lang-rotator {
	z-index: 5;
	min-width: 70px;
}

header .bps-translogin .lang-rotator>span,
header .bps-translogin #google_translate_element>span {
	position: absolute;
	top: 5px;
	width: auto;
	border-bottom: 1px solid #e5486a;
	display: block;
	opacity: 0;
	color: #e5486a;
	font-size: 13px;
	transition: opacity .4s;
	text-align: center;
	line-height: 20px;
}

header .bps-translogin .lang-rotator>span.active,
header .bps-translogin #google_translate_element>span.active {
	opacity: 1;
}

header .bps-translogin .lang-rotator .goog-te-gadget,
header .bps-translogin #google_translate_element .goog-te-gadget {
	display: none;
}

header .bps-translogin .lang-rotator .goog-te-gadget-simple,
header .bps-translogin #google_translate_element .goog-te-gadget-simple {
	border: 0;
	padding-bottom: 1px;
	opacity: 0;
}

header .bps-translogin .lang-rotator .goog-te-gadget-simple .goog-te-combo,
header .bps-translogin #google_translate_element .goog-te-gadget-simple .goog-te-combo {
	font-size: 13px;
	font-family: "proxima-nova",sans-serif;
	color: #e5486a;
	border: 0;
	background-color: #fff;
	-webkit-appearance: none;
	background-image: url("/themes/custom/baltimore/img/down-arrow.svg");
	background-position: center;
	background-position-x: 100%;
	background-position-y: 50%;
	background-repeat: no-repeat;
	background-size: 8px 8px;
	margin: 0;
	cursor: pointer;
}

header .bps-translogin .lang-rotator .goog-te-gadget-simple select::-ms-expand,
header .bps-translogin #google_translate_element .goog-te-gadget-simple select::-ms-expand {
	display: none;
}

header .bps-translogin .bps-access {
	font-size: 13px;
	font-weight: 600;
	z-index: 10;
}

header .bps-translogin .bps-access a {
	color: #0093d6;
}

header .header-menu {
	position: absolute;
	overflow-x: hidden;
	visibility: hidden;
	transition: visibility 0s;
	transition-delay: .4s;
}

header .header-menu.active {
	z-index: 101;
	visibility: visible;
	transition-delay: 0s;
	box-shadow: -1px 10px 14px -4px rgba(0,0,0,0.4);
}

header .header-menu .beta-header {
	font-size: 12px;
	color: #0093d6;
	position: absolute;
	top: -65%;
	left: 0;
	transform: rotate(0deg);
}

header .header-menu.toggle-mobile-menu {
	height: 100px;
	margin: 0px auto 55px;
}

header .header-menu .close-nav.mobile {
	display: none;
	color: #343434;
	position: absolute;
	left: 1em;
	top: 16px;
	font-size: 16px;
	font-weight: 700;
	z-index: 11;
}

header .header-menu .close-nav.mobile span {
	background-image: url("/themes/custom/baltimore/img/black-x.svg");
	background-repeat: no-repeat;
	display: block;
	width: 20px;
	height: 20px;
	margin-bottom: 5px;
	margin-left: 11px;
}

header .header-menu .back-to-nav {
	display: none;
	color: #343434;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
	font-weight: 700;
	z-index: 11;
	background-color: #E6F3F9;
	width: 100%;
	padding: 5% 0;
}

header .header-menu .back-to-nav span {
	background-image: url("/themes/custom/baltimore/img/right-carat.svg");
	transform: rotate(180deg);
	background-repeat: no-repeat;
	display: inline-block;
	width: 20px;
	height: 20px;
	top: 5px;
	margin-right: 10px;
}

header .header-menu nav>ul {
	overflow: visible;
	display: block;
	max-height: 1000px;
	transition-delay: 0s;
	transition: right .4s;
	margin-top: 65px;
	z-index: 5;
	background-color: #fff;
	right: -100%;
	list-style: none;
}

header .header-menu nav>ul .close-nav {
	display: none;
}

header .header-menu nav>ul.active {
	visibility: visible;
	right: 0;
	overflow: hidden;
}

header .header-menu nav>ul.active .close-nav {
	display: none;
}

header .header-menu nav>ul.active .close-nav svg {
	width: 16px;
}

header .header-menu nav>ul>li:last-child {
	display: none;
	height: 0;
}

header .header-menu nav>ul>li>a {
	font-size: 2.4em;
	color: #343434;
	padding: 30px 0;
	padding-left: 20px;
	height: 90px;
	display: block;
	border-bottom: 1px solid #707070;
}

header .header-menu nav>ul>li>a.add-arrow {
	background: url("/themes/custom/baltimore/img/right-carat.svg") 95% 50% no-repeat;
	background-size: 12px;
}

header .header-menu nav>ul>li>a span {
	border-bottom-color: #707070;
	border-bottom-style: solid;
	border-bottom-width: 0px;
	transition: border-bottom-width .2s;
}

header .header-menu nav>ul>li>a:hover span {
	border-bottom-width: 3px;
}

header .header-menu nav>ul>li>a:focus-within {
	outline: none;
}

header .header-menu nav>ul>li>a:focus-within span {
	border-bottom-width: 3px;
}

header .header-menu nav>ul>li ul {
	display: none;
	list-style: none;
	margin-top: 0px;
	transition: right .4s;
	right: -100%;
}

header .header-menu nav>ul>li ul.active {
	right: 100%;
	visibility: visible;
	background-color: #fff;
}

header .header-menu nav>ul>li ul .close-nav {
	display: none !important;
}

header .header-menu nav>ul>li ul li a {
	border-bottom: 1px solid #707070;
	font-size: 2.4em;
	color: #343434;
	padding: 7% 0;
	padding-left: 20px;
	display: block;
}

header .header-menu nav>ul>li ul li a:hover {
	color: #e5486a;
}

header .mobile-menu {
	width: 40px;
	position: absolute;
	right: 7%;
	top: 15px;
}

header .mobile-menu img {
	width: 100%;
	height: 100%;
}

.show-search {
	display: none;
}

.path-school-profiles .show-search {
	display: none;
}

.section-search-bar {
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	height: 70px;
	padding: 12px 4%;
	z-index: 9;
	transition: height .2s,padding .2s,margin-top .2s;
}

.section-search-bar div {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	padding: 2px 2px 2px 5%;
	background: #fff;
}

.section-search-bar div input {
	height: 100%;
	width: 80%;
	float: left;
	font-size: 1.8em;
	padding-top: 12px;
	font-weight: 600;
	color: #343434;
	border: 0;
	transition: font-size .2s;
}

.section-search-bar div input:focus {
	outline: none;
}

.section-search-bar div button {
	width: 41px;
	height: 41px;
	float: right;
	background-image: linear-gradient(#E39649, #E5466B);
	color: #fff;
	border-radius: 8px;
	border: 0;
	padding: 10px;
	cursor: pointer;
	transition: height .2s,width .2s;
}

.section-search-bar div button img {
	height: 100%;
	width: 100%;
}

.section-search-bar div .hide-search {
	display: none;
}

.section-search-bar.grow-search {
	height: 80px;
}

.section-search-bar.grow-search div input {
	padding-top: 10px;
	font-size: 2em;
}

.section-search-bar.grow-search div button {
	width: 51px;
	height: 51px;
}

.section-search-bar.grow-search div #search-input:focus ~ .search-input-label,
.section-search-bar.grow-search div #search-input[data-value]:not([data-value=""]) ~ .search-input-label {
	top: 18px;
	bottom: 10px;
	left: 8px;
	font-size: 1.4em;
}

.path-school-profiles .section-search-bar {
	display: none;
}

.path-school-profiles .section-search-bar div {
	transition: border .4s;
	border: 0;
	padding: 0;
}

.path-school-profiles .section-search-bar div button {
	display: none;
	transition: display .4s;
}

.path-school-profiles .section-search-bar div .hide-search {
	display: none;
	transition: display .4s;
}

.path-school-profiles .section-search-bar.active {
	padding: 0 22% 0 22%;
}

.path-school-profiles .section-search-bar.active div {
	border: 1px solid #707070;
	padding: 0 15px;
}

.path-school-profiles .section-search-bar.active div button {
	display: block;
}

.path-school-profiles .section-search-bar.active div .hide-search {
	display: none;
}

.path-school-profiles .section-search-bar.active div .hide-search span {
	width: 14px;
	height: 14px;
	margin-bottom: -2px;
	display: inline-block;
	background-repeat: no-repeat;
	margin-left: 5px;
	background-image: url("/themes/custom/baltimore/img/right-carat-gray.svg");
}

.path-school-profiles .section-search-bar.grow-search {
	height: 80px;
}

#search-input:focus ~ .search-input-label,
#search-input[data-value]:not([data-value=""]) ~ .search-input-label {
	top: 13px;
	bottom: 10px;
	left: 8px;
	font-size: 1.2em;
}

.search-input-label {
	position: absolute;
	color: #707070;
	font-size: 1.6em;
	left: 12px;
	top: 52%;
	pointer-events: none;
	transform: translate(0, -50%);
	z-index: 99;
	max-width: 82%;
	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: .4s ease all;
}

.section-primary-landing-callout {
	transition: margin-top .4s;
}

.section-primary-landing-callout .primary-callout {
	display: block;
	margin: 0 auto;
}

.section-primary-landing-callout .primary-callout .primary-landing-banner .primary-landing-callout p {
	color: #e5486a;
}

.section-primary-landing-callout .primary-callout:hover .primary-landing-banner .primary-landing-callout p,
.section-primary-landing-callout .primary-callout:focus .primary-landing-banner .primary-landing-callout p {
	color: #e5486a;
}

.section-primary-landing-callout .primary-landing-banner {
	height: 200px;
	background-position: center center;
	background-size: cover;
}

.section-primary-landing-callout .primary-landing-banner>a {
	position: absolute;
	z-index: 3;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.section-primary-landing-callout .primary-landing-banner>a span {
	background-image: url("/themes/custom/baltimore/img/video-banner-white.svg");
	height: 85px;
	width: 85px;
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: center center;
	display: block;
	border: 3px solid #fff;
	border-radius: 2em;
	transition: opacity .4s;
}

.section-primary-landing-callout .primary-landing-banner>a span:hover {
	opacity: .5;
}

.section-primary-landing-callout .primary-landing-banner>a:focus-within span {
	opacity: .5;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout {
	margin: 0 1.5%;
	top: 87%;
	background: #fff;
	border-radius: 8px;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	padding: 6% 5% 5.5% 5%;
	min-width: initial;
	width: auto;
	max-width: none;
	z-index: 1;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout h1 {
	margin-bottom: 8%;
	line-height: 1.25em;
	display: inline-block;
	color: #343434;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout h1:last-child {
	margin-bottom: 0;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout a {
	color: #e5486a;
	float: right;
	margin-top: 3px;
	font-size: .8em;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout a:hover {
	color: #A80025;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout a span {
	background-image: url("/themes/custom/baltimore/img/video-banner.svg");
	height: 25px;
	background-repeat: no-repeat;
	background-position: 50% 0;
	display: block;
	margin-bottom: 7px;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout p {
	line-height: 1.5em;
	transition: color .4s ease;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout svg {
	width: 6vw;
	height: 6vw;
	position: absolute;
	right: 5%;
	bottom: 10%;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout svg path {
	fill: #e5486a;
}

.section-primary-landing-callout.toggle-mobile-menu {
	margin-top: 20vh;
}

.section-primary-landing-callout.video-icons .primary-landing-banner .primary-landing-callout h1 {
	max-width: 67%;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout {
	width: 94%;
	bottom: -82%;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout h1 {
	max-width: none;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout .profile-header-school-number {
	display: inline-block;
	text-align: left;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout .profile-header-school-number p {
	width: 90%;
	line-height: 1em;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout .profile-header-school-number h2 {
	margin-bottom: 10%;
}

.background-circle-banner-container {
	display: none;
}

.path-school-profiles .background-circle-banner-container {
	display: none;
}

.section-page-intro {
	margin: 10% 2.67%;
}

.section-page-intro h1 {
	margin-bottom: 12px;
	line-height: 1.25em;
}

.section-page-intro p {
	line-height: 1.5em;
	margin-right: 3%;
}

.section-page-intro a {
	color: #e5486a;
	text-decoration: underline;
}

.section-page-intro a:hover {
	color: #A80025;
}

.section-page-intro a:focus {
	outline: 1px #8D8D8D dashed;
	outline-offset: 3px;
}

.section-four-block-row {
	padding: 12% 2.67%;
	margin-bottom: 10%;
}

.section-four-block-row h1 {
	margin-bottom: 8%;
	margin-left: 2%;
	width: 85%;
}

.section-four-block-row h1 span {
	color: #e5486a;
	font-weight: 700;
}

.section-four-block-row .row .col-4 a {
	text-decoration: none;
}

.section-four-block-row .row .col-4 a .feature-block {
	margin: 2.25% 0;
	padding: 0;
	background-image: none;
	background-size: 0;
	transition: box-shadow .4s;
}

.section-four-block-row .row .col-4 a .feature-block .feature-block-title {
	width: 100%;
	border-radius: 8px;
	padding: 7.5% 0;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-four-block-row .row .col-4 a .feature-block .feature-block-title h5 {
	text-align: center;
	color: #fff;
	font-weight: 700;
}

.section-four-block-row .row .col-4 a .feature-block .feature-block-title.red-gradient {
	background-image: linear-gradient(to left, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.section-four-block-row .row .col-4 a .feature-block .feature-block-title.orange-gradient {
	background-image: linear-gradient(to left, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.section-four-block-row .row .col-4 a .feature-block .feature-block-title.light-blue-gradient {
	background-image: linear-gradient(to left, rgba(17,112,182,0.9), rgba(46,166,216,0.9), rgba(80,228,255,0.9));
}

.section-four-block-row .row .col-4 a .feature-block .feature-block-title.blue-gradient {
	background-image: linear-gradient(to left, rgba(0,141,206,0.9), rgba(37,198,240,0.9));
}

.section-dynamic-callouts {
	padding: 40px 0 20px;
}

.section-dynamic-callouts.show-bg-shadow {
	margin: 30px 0;
}

.section-dynamic-callouts h2 {
	margin-bottom: 30px;
	margin-left: 4%;
	font-weight: 400;
}

.section-dynamic-callouts .row {
	width: 100%;
}

.section-dynamic-callouts .row .dynamic-callout {
	width: 100%;
	padding: 40% 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	margin-bottom: 21%;
	background-color: #fff;
}

.section-dynamic-callouts .row .dynamic-callout a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.section-dynamic-callouts .row .dynamic-callout a .callout-button {
	position: relative;
	top: 88%;
	display: inline-block;
}

.section-dynamic-callouts .row .dynamic-callout a .callout-button p {
	width: auto;
}

.section-dynamic-callouts .row .dynamic-callout a:hover .callout-button p {
	color: #e5486a;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details {
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details h3 {
	font-size: 8vw;
	padding: 2.5% 0;
	margin: 0 4%;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details p {
	font-size: 6vw;
	font-weight: 400;
	overflow: hidden;
	margin: 0 4%;
	margin-top: -1.5%;
	color: #fff;
	width: auto;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details span {
	width: 15vw;
	height: 15vw;
	border: 2px solid;
	border-radius: 50%;
	padding: 2.5%;
	margin: 0 4%;
	display: inline-block;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details span svg {
	height: 100%;
	width: 100%;
	fill: #fff;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details span:empty {
	display: none;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details hr {
	margin: 5% 15%;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 {
	height: auto;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a .callout-button {
	padding: 5.5% 0;
	text-align: center;
	border-radius: 36px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a .callout-button p {
	font-size: 5.33vw;
	font-weight: 600;
	padding: 0 10px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a .callout-button span {
	background-image: none;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a .callout-button {
	padding: 5.5% 0;
	text-align: center;
	border-radius: 36px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a .callout-button p {
	font-size: 5.33vw;
	font-weight: 600;
	padding: 0 10px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a .callout-button span {
	background-image: none;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details {
	top: 50%;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details h3 {
	font-size: 8vw;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details p {
	font-size: 5vw;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details span {
	width: 13vw;
	height: 13vw;
}

.section-dynamic-callouts .row .dynamic-callout:focus-within .color-overlay a {
	outline: none;
}

.section-dynamic-callouts .row .dynamic-callout:focus-within .color-overlay a .callout-button p {
	color: #e5486a;
}

.section-dynamic-callouts .row .dynamic-callout:focus-within.columns-2 a .callout-button {
	padding: 2.33% 8% 2.33% 3%;
	text-align: left;
	color: #343434;
}

.section-dynamic-callouts .row .dynamic-callout:focus-within.columns-2 a .callout-button span {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	width: 1.25vw;
}

.section-dynamic-callouts .row .dynamic-callout:focus-within.columns-3 a .callout-button {
	padding: 2.33% 8% 2.33% 3%;
	text-align: left;
	color: #343434;
}

.section-dynamic-callouts .row .dynamic-callout:focus-within.columns-3 a .callout-button span {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	width: 1.25vw;
}

.section-information-blocks {
	padding: 40px 0;
}

.section-information-blocks.show-bg-shadow {
	margin: 30px 0;
}

.section-information-blocks .row {
	width: 94%;
	margin: 0 auto;
}

.section-information-blocks .row h1 {
	margin: 0 3%;
	margin-bottom: 16%;
}

.section-information-blocks .row .col-4 a {
	display: block;
	height: 100%;
	width: 100%;
	text-decoration: none;
}

.section-information-blocks .row .col-4 a .information-block {
	background: #fff;
	padding: 10% 0;
	margin: 13% 0;
}

.section-information-blocks .row .col-4 a .information-block div {
	color: #0093d6;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
}

.section-information-blocks .row .col-4 a .information-block div span {
	float: left;
	margin-right: 5%;
	height: 70px;
	width: 70px;
	border-radius: 50%;
	border: 1px solid #ccd0d1;
	padding: 5%;
	display: inline-block;
}

.section-information-blocks .row .col-4 a .information-block div span svg {
	height: 100%;
	width: 100%;
	fill: #0093d6;
}

.section-information-blocks .row .col-4 a .information-block div h5 {
	position: absolute;
	top: 50%;
	left: 25%;
	transform: translate(0, -50%);
	color: #0093d6;
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block div {
	color: #e5486a;
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block div h5 {
	color: #e5486a;
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block div span svg {
	fill: #e5486a;
}

.section-information-blocks .callout-button {
	bottom: -3%;
	min-width: 65%;
}

.section-information-blocks .callout-button h6 {
	font-weight: 400;
}

.section-dynamic-news-block {
	padding-top: 50px;
	background-color: #fff;
}

.section-dynamic-news-block .row {
	margin: 0 4% 0 5.5%;
}

.section-dynamic-news-block .row h2 {
	margin-bottom: 15%;
	font-weight: 400;
}

.section-dynamic-news-block .row .col-3 a {
	height: 100%;
	width: 100%;
	display: block;
}

.section-dynamic-news-block .row .col-3 a .dynamic-news-block {
	padding-bottom: 21.5%;
}

.section-dynamic-news-block .row .col-3 a .dynamic-news-block p {
	margin-bottom: 4%;
}

.section-dynamic-news-block .row .col-3 a .dynamic-news-block h2 {
	font-weight: 700;
	color: #e5486a;
	margin-bottom: 8%;
}

.section-dynamic-news-block .row .col-3 a .dynamic-news-block h5 {
	color: #343434;
	margin-bottom: 12.5%;
	font-weight: 400;
}

.section-dynamic-news-block .row .col-3 a:focus {
	outline: 1px #8D8D8D dashed;
	outline-offset: 3px;
}

.section-dynamic-news-block .background-square-news-top-container {
	display: none;
}

.section-dynamic-news-block .background-square-news-bottom {
	display: none;
}

.section-dynamic-news-block .background-circle-information {
	display: none;
}

.js-pager__items {
	text-align: center;
}

.js-pager__items li {
	display: inline-block;
	margin: 20px 30px;
}

.js-pager__items li .callout-button {
	position: relative;
	display: block;
	padding: 18px 40px 18px 15px;
}

.js-pager__items li .callout-button span {
	top: 38%;
}

.js-pager__items li .callout-button.next h6 {
	text-align: left;
}

.js-pager__items li .callout-button.previous {
	padding: 18px 15px 15px 40px;
}

.js-pager__items li .callout-button.previous span {
	left: 10%;
	transform: rotate(180deg);
}

.section-social-media-block {
	padding-top: 9%;
	padding-bottom: 10%;
}

.section-social-media-block h2 {
	margin: 0 3.5%;
	margin-bottom: 13%;
	font-weight: 400;
}

.section-social-media-block .row .col-3 a {
	height: 100%;
	width: 100%;
	display: block;
	text-decoration: none;
}

.section-social-media-block .row .col-3 a .social-media-block {
	width: 96%;
	margin: 0 auto;
	margin-bottom: 4.75%;
	border: 2px solid #ccd0d1;
	padding-bottom: 5%;
	background-color: #fff;
	transition: box-shadow .4s;
}

.section-social-media-block .row .col-3 a .social-media-block p {
	color: #707070;
	width: 60%;
	margin: 0 auto;
	text-align: center;
	border-radius: 30px;
	border: 1px solid #707070;
	padding: 2%;
	font-weight: 700;
}

.section-social-media-block .row .col-3 a .social-media-block div {
	background-size: cover;
	background-repeat: no-repeat;
	margin: 12% auto 5.5% auto;
	width: 90%;
	padding: 25%;
}

.section-social-media-block .row .col-3 a .social-media-block span {
	width: 6vw;
	height: 6vw;
	background-repeat: no-repeat;
	position: absolute;
	top: 4%;
	left: 50%;
	transform: translate(-50%);
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block {
	border: 0;
	border-top: 1px solid #0093d6;
	border-radius: 4px;
	background-color: #0093d6;
	padding-bottom: 0;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block span {
	background-repeat: no-repeat;
	position: absolute;
	left: 6%;
	transform: none;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block span svg {
	fill: #fff;
	height: 6vw;
	width: 6vw;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block span svg path {
	fill: #fff;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block p {
	background-color: #f2f2f2;
	width: 100%;
	padding: 4% 6%;
	border: 0;
	border-bottom: 1px solid #707070;
	border-left: 1px solid #707070;
	border-right: 1px solid #707070;
	border-radius: 0 0 4px 4px;
	text-align: left;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block div {
	width: 100%;
	margin: 0;
	margin-top: 13%;
	padding: 27.5%;
}

.section-social-media-block .row .col-3 a .social-media-block.instagram-block,
.section-social-media-block .row .col-3 a .social-media-block.other-block {
	padding-bottom: 0;
}

.section-social-media-block .row .col-3 a .social-media-block.instagram-block p,
.section-social-media-block .row .col-3 a .social-media-block.other-block p {
	width: 100%;
	padding: 7.5% 6%;
	text-align: left;
	border: 0;
	font-weight: 400;
}

.section-social-media-block .row .col-3 a .social-media-block.instagram-block div,
.section-social-media-block .row .col-3 a .social-media-block.other-block div {
	width: 100%;
	margin: 0;
	margin-top: 13%;
	padding: 27.5%;
}

.section-social-media-block .row .col-3 a .social-media-block.instagram-block span,
.section-social-media-block .row .col-3 a .social-media-block.other-block span {
	background-repeat: no-repeat;
	position: absolute;
	left: 6%;
	transform: none;
}

.section-social-media-block .row .col-3 a .social-media-block.instagram-block span svg path {
	fill: #e5486a;
}

.section-social-media-block .row .col-3 a .social-media-block.twitter-block span svg path {
	fill: #0093d6;
}

.section-social-media-block .row .col-3 a .social-media-block:hover {
	box-shadow: 4px 6.5px 22px 0px rgba(0,0,0,0.4);
}

.section-social-media-block .row .col-3 a:focus-within {
	outline: none;
}

.section-social-media-block .row .col-3 a:focus-within .social-media-block {
	box-shadow: 4px 6.5px 22px 0px rgba(0,0,0,0.4);
}

footer,
.footer {
	overflow: hidden;
	padding-top: 1%;
	clear: both;
}

.path-school-profiles footer,
.path-school-profiles .footer {
	display: none;
}

footer .footer-box,
.footer .footer-box {
	padding: 50px;
	background-color: #fff;
}

footer .footer-box .footer-content,
.footer .footer-box .footer-content {
	margin: 0 auto;
	color: #707070;
}

footer .footer-box .footer-content .bps-logo,
.footer .footer-box .footer-content .bps-logo {
	display: inline-block;
	width: 100%;
	height: 20vw;
	margin-bottom: 20px;
}

footer .footer-box .footer-content .bps-logo span,
.footer .footer-box .footer-content .bps-logo span {
	display: block;
	height: 100%;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	overflow: hidden;
	text-indent: -100em;
}

footer .footer-box .footer-content h4,
.footer .footer-box .footer-content h4 {
	font-size: 6.5vw;
	font-weight: 400;
	color: #343434;
	line-height: 1.25em;
}

footer .footer-box .footer-content p,
.footer .footer-box .footer-content p {
	font-size: 3.75vw;
	width: 80%;
	margin-bottom: 3.5%;
	line-height: 1.25em;
}

footer .footer-box .footer-content .social-media-icons,
.footer .footer-box .footer-content .social-media-icons {
	margin-bottom: 9%;
	display: block;
	list-style: none;
}

footer .footer-box .footer-content .social-media-icons li,
.footer .footer-box .footer-content .social-media-icons li {
	display: inline-block;
	margin-right: 5.5%;
}

footer .footer-box .footer-content .social-media-icons li a,
.footer .footer-box .footer-content .social-media-icons li a {
	width: 9vw;
	height: 9vw;
	float: left;
}

footer .footer-box .footer-content .social-media-icons li a span,
.footer .footer-box .footer-content .social-media-icons li a span {
	font-size: 7vw;
	display: block;
	overflow: hidden;
	text-indent: -1000px;
}

footer .footer-box .footer-content .social-media-icons li a svg,
.footer .footer-box .footer-content .social-media-icons li a svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

footer .footer-box .footer-content .social-media-icons li a svg path,
.footer .footer-box .footer-content .social-media-icons li a svg path {
	transition: fill .4s;
}

footer .footer-box .footer-content .social-media-icons li a:hover,
footer .footer-box .footer-content .social-media-icons li a:focus,
.footer .footer-box .footer-content .social-media-icons li a:hover,
.footer .footer-box .footer-content .social-media-icons li a:focus {
	outline: none;
}

footer .footer-box .footer-content .social-media-icons li a:hover svg path,
footer .footer-box .footer-content .social-media-icons li a:focus svg path,
.footer .footer-box .footer-content .social-media-icons li a:hover svg path,
.footer .footer-box .footer-content .social-media-icons li a:focus svg path {
	fill: #343434;
}

footer .footer-box .footer-content .footer-links,
.footer .footer-box .footer-content .footer-links {
	list-style: none;
	font-size: 14px;
}

footer .footer-box .footer-content .footer-links li,
.footer .footer-box .footer-content .footer-links li {
	display: inline-block;
	margin-bottom: 12px;
}

footer .footer-box .footer-content .footer-links li a,
.footer .footer-box .footer-content .footer-links li a {
	color: #707070;
	font-weight: 400;
	margin-right: 15px;
	text-decoration: underline;
}

footer .footer-box .footer-content .footer-links li a.policy-links,
.footer .footer-box .footer-content .footer-links li a.policy-links {
	margin: 0;
}

footer .footer-box .footer-content .footer-links li a:hover,
footer .footer-box .footer-content .footer-links li a:focus,
.footer .footer-box .footer-content .footer-links li a:hover,
.footer .footer-box .footer-content .footer-links li a:focus {
	color: #e5486a;
}

footer .footer-box .footer-content .footer-links li:first-child,
.footer .footer-box .footer-content .footer-links li:first-child {
	margin-bottom: 20px;
}

footer .footer-box .footer-content .footer-links li:last-child,
.footer .footer-box .footer-content .footer-links li:last-child {
	margin-right: 0;
	margin-bottom: 0;
}

footer .footer-callout,
.footer .footer-callout {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

footer .footer-callout .footer-callout-wrap,
.footer .footer-callout .footer-callout-wrap {
	padding: 60px 20%;
	position: relative;
	min-height: 200px;
}

footer .footer-callout .footer-callout-wrap.has-link,
.footer .footer-callout .footer-callout-wrap.has-link {
	padding: 0;
	min-height: 0;
}

footer .footer-callout .footer-callout-wrap.has-link>a,
.footer .footer-callout .footer-callout-wrap.has-link>a {
	display: block;
	padding: 60px 20%;
	min-height: 300px;
}

footer .footer-callout .footer-callout-wrap:not(.has-link):hover,
.footer .footer-callout .footer-callout-wrap:not(.has-link):hover {
	background-image: linear-gradient(to top, rgba(229,70,107,0.7), rgba(208,115,36,0.7));
}

footer .footer-callout h3,
.footer .footer-callout h3 {
	color: #fff;
	font-size: 8vw;
	margin-bottom: 10px;
}

footer .footer-callout p,
.footer .footer-callout p {
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 15px;
}

footer .footer-callout p.link-text,
.footer .footer-callout p.link-text {
	font-weight: 600;
	border-bottom: 2px solid #fff;
	display: inline-block;
}

footer .footer-callout p.link-text span,
.footer .footer-callout p.link-text span {
	background-image: url("/themes/custom/baltimore/img/right-arrow-white.svg");
	height: 10px;
	width: 12px;
	display: inline-block;
	margin-left: 8px;
}

.section-comparison-tool-landing .row .section-page-intro {
	margin-top: 20%;
}

.section-comparison-tool-landing .row .section-page-intro p {
	margin-bottom: 20px;
}

.section-comparison-tool-landing .row .section-school-tool-options .row {
	width: 100%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option {
	width: 94%;
	height: auto;
	padding: 25%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	border-radius: 12px;
	margin: 0 auto;
	margin-bottom: 30%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	padding: 2%;
	border-right: 1px solid #3dc2ea;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option a .option-details {
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option a .option-details h2 {
	padding: 2.5% 0;
	margin: 0 4%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option a .option-details svg {
	height: 18vw;
	width: 18vw;
	border: 1px solid;
	border-radius: 50%;
	padding: 5%;
	margin: 0 4%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option p {
	position: absolute;
	top: 110%;
	left: 2%;
	right: 2%;
	text-align: center;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option:nth-child(2) a {
	border-right: 1px solid #e37e53;
}

.section-i-am-a-menu {
	width: 100%;
	overflow: hidden;
	transition: right .4s;
	display: block;
	max-height: 1000px;
	z-index: 5;
	background-color: #fff;
	right: -100%;
}

.section-i-am-a-menu.active {
	right: 0%;
	height: 100%;
}

.section-i-am-a-menu.hide {
	height: 0;
}

.section-i-am-a-menu .subnav ul {
	text-align: left;
	font-size: 0;
	width: 100%;
	list-style: none;
}

.section-i-am-a-menu .subnav ul li {
	display: inline-block;
	font-size: 24px;
	margin: 0;
	width: 100%;
}

.section-i-am-a-menu .subnav ul li a {
	font-size: 24px;
	color: #343434;
	padding: 30px 0;
	padding-left: 20px;
	height: 100%;
	display: block;
	border-bottom: 1px solid #707070;
}

.section-i-am-a-menu .subnav ul li a:hover,
.section-i-am-a-menu .subnav ul li a:focus {
	color: #e5486a;
}

.section-i-am-a-menu .subnav ul li:first-child {
	color: #e5486a;
	font-weight: 700;
	font-size: 20px;
	padding: 50px 0 15px;
	padding-left: 20px;
	border-bottom: 1px solid #707070;
}

.small-screen-detail {
	display: none;
	padding: 0;
	position: absolute;
	width: 100%;
	top: 60%;
	z-index: 9;
	background-color: #f2f2f2;
	height: 60vh;
	overflow: scroll;
}

.small-screen-detail.active {
	padding: 40px 0;
	display: block;
	margin-top: 55px;
}

.small-screen-detail.active .info-window .section-school-card h2 {
	font-size: 1.3rem;
}

.small-screen-detail.active .info-window .section-school-card .school-address,
.small-screen-detail.active .info-window .section-school-card .school-phone-number {
	font-size: 1.1rem;
}

.small-screen-detail.active .info-window.multiple .section-school-card {
	margin: 0 auto 60px;
}

.popup-tip-anchor {
	height: 0;
	position: absolute;
	width: 350px;
}

.popup-bubble-anchor {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

.popup-bubble-content {
	position: absolute;
	top: 25px;
	left: 0;
	transform: translate(-50%, 0%);
	width: 300px;
}

.popup-bubble-content .section-school-card {
	margin: 0;
}

.popup-bubble-content .section-school-card.zoned-school .school-card-content .zoned-school-alert-elem,
.popup-bubble-content .section-school-card.zoned-school .school-card-content .zoned-school-alert-middle,
.popup-bubble-content .section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-elem,
.popup-bubble-content .section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-middle,
.popup-bubble-content .section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-elem,
.popup-bubble-content .section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-middle {
	display: none;
}

.popup-bubble-content .section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-elem {
	display: block;
}

.popup-bubble-content .section-school-card.zoned-school-elem .school-card-content .zoned-school-alert,
.popup-bubble-content .section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-middle {
	display: none;
}

.popup-bubble-content .section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-middle {
	display: block;
}

.popup-bubble-content .section-school-card.zoned-school-middle .school-card-content .zoned-school-alert,
.popup-bubble-content .section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-elem {
	display: none;
}

.popup-bubble-content .section-school-card .close-x-map {
	transition: border-color .2s;
	display: block;
	z-index: 102;
	width: 28px;
	height: 28px;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid;
	border-color: #343434;
	position: absolute;
	top: -40px;
	right: -16px;
	text-align: center;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	cursor: pointer;
}

.popup-bubble-content .section-school-card .close-x-map svg {
	transition: width .2s,height .2s;
	width: 9px;
	height: 9px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup-bubble-content .section-school-card .close-x-map:hover,
.popup-bubble-content .section-school-card .close-x-map:focus {
	border-color: #e5486a;
}

.popup-bubble-content .section-school-card .close-x-map:hover svg,
.popup-bubble-content .section-school-card .close-x-map:focus svg {
	width: 10px;
	height: 10px;
}

.popup-bubble-content .section-school-card .link-blocker {
	display: block;
	width: 30px;
	height: 40px;
	position: absolute;
	top: -24px;
	right: 0;
	z-index: 101;
}

.school-tool-elements {
	background-color: #F7F7F7;
	min-height: 400px;
	height: 88vh;
	transition: margin-top .4s;
}

.school-tool-elements.show-mobile-filter {
	min-height: 75em;
}

.school-tool-elements.show-mobile-filter .school-card-area {
	display: none !important;
}

.school-tool-elements .school-card-area {
	display: none;
	width: 100%;
	list-style: none;
	float: right;
	padding-top: 8em;
	padding-bottom: 12em;
	background-color: #F7F7F7;
}

.school-tool-elements.compare-max-2.comparing-2 .school-card-area,
.school-tool-elements.compare-max-3.comparing-3 .school-card-area {
	display: none !important;
}

.school-tool-elements.toggle-mobile-menu {
	margin-top: 24vh;
}

.section-error-message {
	background-color: #fff;
	text-align: center;
	position: fixed;
	left: 5vw;
	top: 50%;
	margin-top: -100px;
	z-index: 5;
	width: 90vw;
	border-radius: 8px;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
}

.section-error-message div {
	border: 1px solid #707070;
	border-radius: 50%;
	padding: 10px;
	width: 75px;
	height: 75px;
	margin: 0 auto;
	margin-bottom: 5%;
	margin-top: 10%;
}

.section-error-message div span {
	background-image: url("/themes/custom/baltimore/img/chat-bubble.svg");
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	background-position: center;
	background-size: contain;
	display: block;
	margin: 5px auto;
}

.section-error-message p {
	font-size: 20px;
	color: #707070;
	width: 85%;
	margin: 0 auto;
	margin-bottom: 10%;
}

.section-error-message.red-message div {
	border: 1px solid #e5486a;
}

.section-error-message.red-message p {
	color: #e5486a;
}

.section-error-message.blue-message div {
	border: 1px solid #0093d6;
}

.section-error-message.blue-message p {
	color: #0093d6;
}

.section-error-message.compare-message {
	box-shadow: none;
}

.info-window .close-x-map {
	display: none;
}

.section-school-card {
	width: 300px;
	margin: 2em auto 7em;
	border-radius: 8px;
	border-top-right-radius: 0px;
	background-color: #fff;
	z-index: 1;
	transition: width .2s,font-size .2s;
	font-size: 1em;
	text-align: left;
}

.section-school-card .close-x-map {
	display: none;
}

.info-window .section-school-card {
	width: auto !important;
	font-size: 0.9em;
	max-width: 300px;
	margin: 0 auto;
	list-style: none;
}

.compare-max-3.comparing-1 .info-window .section-school-card {
	font-size: 0.7em;
}

.compare-max-3.comparing-2 .info-window .section-school-card {
	font-size: 0.7em;
}

.section-school-card h2 {
	font-size: 1.3rem;
	color: #fff;
	font-weight: 400;
}

.section-school-card h2 .school-number {
	font-size: 1rem;
}

.section-school-card dd,
.section-school-card button,
.section-school-card p,
.section-school-card li,
.section-school-card a,
.section-school-card dt {
	font-size: 1.4em;
}

.section-school-card .school-card-header {
	width: 100%;
	padding: 3.75% 5%;
	border-top-left-radius: 8px;
	border-top-right-radius: 0px;
	background-image: linear-gradient(#D07324 25%, #E5466B);
	display: block;
	font-size: 1em;
	transition: box-shadow .2s;
	border-right: 1px solid #D07324;
	z-index: 100;
}

.section-school-card .school-card-header .school-number {
	margin-bottom: 2.5%;
	color: #fff;
	display: block;
	font-weight: 400;
}

.section-school-card .school-card-header .tab {
	transition: background-color .2s,box-shadow .2s;
	height: 31px;
	width: 130px;
	border-radius: 18px 8px 0px 0px;
	background-color: #D07324;
	position: absolute;
	top: -20px;
	right: -1px;
	display: inline-block;
	z-index: 2;
	padding-top: 5px;
}

.section-school-card .school-card-header .tab .school-profile-link {
	color: #fff;
	padding-left: 7px;
}

.section-school-card .school-card-header .tab .school-profile-link span {
	transition: margin-left .2s;
	background-image: url("/themes/custom/baltimore/img/right-arrow-white.svg");
	background-repeat: no-repeat;
	width: 10px;
	height: 10px;
	background-position: center;
	display: inline-block;
	margin-left: 5px;
}

.section-school-card .school-card-header .tab:before {
	transition: background-color .2s;
	height: 31px;
	width: 70px;
	border-radius: 6px 10px 0px 0px;
	background-color: #D07324;
	content: "";
	position: absolute;
	left: -16px;
	top: 0px;
	-webkit-transform: skewX(130deg);
	transform: skewX(130deg);
	z-index: -1;
}

.section-school-card .school-card-header:hover,
.section-school-card .school-card-header:focus {
	outline: 0;
	box-shadow: 5px -7px 7px -6px rgba(0,0,0,0.05),2px 5.5px 9px 2px rgba(0,0,0,0.2);
}

.section-school-card .school-card-header:hover:before,
.section-school-card .school-card-header:focus:before {
	opacity: 1;
}

.section-school-card .school-card-header:hover .tab,
.section-school-card .school-card-header:focus .tab {
	background-color: #E5466B;
	box-shadow: 11px 0px 6px -8px rgba(0,0,0,0.2);
}

.section-school-card .school-card-header:hover .tab .school-profile-link span,
.section-school-card .school-card-header:focus .tab .school-profile-link span {
	margin-left: 15px;
}

.section-school-card .school-card-header:hover .tab:before,
.section-school-card .school-card-header:focus .tab:before {
	background-color: #E5466B;
}

.section-school-card .school-card-header:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -100;
	opacity: 0;
	background-image: linear-gradient(to top, #D07324, #E5466B 90%);
	transition: opacity .2s;
}

.section-school-card .link-blocker {
	display: none;
}

.section-school-card .school-card-content {
	padding-left: 6.5%;
	padding-top: 25px;
	padding-bottom: 35px;
	height: 100%;
	border: 1px solid #707070;
	border-top: 0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.section-school-card .school-card-content .col-left .school-directions {
	display: none;
	color: #0093d6;
	border-bottom: 1px solid;
	padding-bottom: 1px;
}

.section-school-card .school-card-content .col-left .school-directions span {
	background-image: url("/themes/custom/baltimore/img/map-icon.svg");
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	background-position: center;
	display: inline-block;
	margin-right: 5px;
}

.section-school-card .school-card-content .col-left .school-directions:hover {
	color: #005C86;
}

.section-school-card .school-card-content .col-left .school-directions:hover span {
	background-image: url("/themes/custom/baltimore/img/map-icon-hover.svg");
}

.section-school-card .school-card-content .col-left .school-address {
	margin-bottom: 4.5%;
	margin-top: 3.5%;
	font-weight: 600;
	color: #343434;
	font-size: 1.1rem;
}

.section-school-card .school-card-content .col-left hr {
	width: 75%;
}

.section-school-card .school-card-content .col-left .school-phone-number {
	margin-top: 4.5%;
	margin-bottom: 6.5%;
	font-weight: 600;
	color: #343434;
	font-size: 1.1rem;
}

.section-school-card .school-card-content .col-left .school-phone-number>a {
	font-size: 1em;
	color: inherit;
}

.section-school-card .school-card-content .col-right {
	display: none;
	height: 100%;
}

.section-school-card .school-card-content .col-right dt {
	color: #707070;
	margin-bottom: 1%;
}

.section-school-card .school-card-content .col-right ul {
	list-style: none;
}

.section-school-card .school-card-content .col-right .school-principal {
	margin-bottom: 9.5%;
	color: #343434;
	font-weight: 600;
	padding-right: 5%;
}

.section-school-card .school-card-content .col-right .school-grades-served {
	margin-bottom: 25%;
	color: #343434;
	font-weight: 600;
}

.section-school-card .school-card-content .school-card-button {
	width: 55%;
	padding: 4% 5%;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-radius: 3em;
	background-color: #fff;
	position: absolute;
	bottom: -20px;
	left: 4%;
	cursor: pointer;
	font-weight: 600;
	text-align: left;
	border: 1px solid #707070;
	font-size: 1rem;
}

.section-school-card .school-card-content .school-card-button span {
	background-image: url("/themes/custom/baltimore/img/compare-red.svg");
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	background-position: center;
	object-fit: cover;
	position: absolute;
	right: 10%;
	top: 30%;
}

.section-school-card .school-card-content .zoned-school-alert,
.section-school-card .school-card-content .zoned-school-alert-elem,
.section-school-card .school-card-content .zoned-school-alert-middle {
	display: none;
}

.section-school-card.zoned-school .school-card-header,
.section-school-card.zoned-school-elem .school-card-header,
.section-school-card.zoned-school-middle .school-card-header {
	background-image: linear-gradient(#09A0E5 25%, #0584BE);
	border-right: 1px solid #0792D1;
}

.section-school-card.zoned-school .school-card-header .tab,
.section-school-card.zoned-school-elem .school-card-header .tab,
.section-school-card.zoned-school-middle .school-card-header .tab {
	background-color: #09A0E5;
}

.section-school-card.zoned-school .school-card-header .tab:before,
.section-school-card.zoned-school-elem .school-card-header .tab:before,
.section-school-card.zoned-school-middle .school-card-header .tab:before {
	background-color: #09A0E5;
}

.section-school-card.zoned-school .school-card-header:hover .tab,
.section-school-card.zoned-school .school-card-header:focus .tab,
.section-school-card.zoned-school-elem .school-card-header:hover .tab,
.section-school-card.zoned-school-elem .school-card-header:focus .tab,
.section-school-card.zoned-school-middle .school-card-header:hover .tab,
.section-school-card.zoned-school-middle .school-card-header:focus .tab {
	background-color: #0584BE;
}

.section-school-card.zoned-school .school-card-header:hover .tab:before,
.section-school-card.zoned-school .school-card-header:focus .tab:before,
.section-school-card.zoned-school-elem .school-card-header:hover .tab:before,
.section-school-card.zoned-school-elem .school-card-header:focus .tab:before,
.section-school-card.zoned-school-middle .school-card-header:hover .tab:before,
.section-school-card.zoned-school-middle .school-card-header:focus .tab:before {
	background-color: #0584BE;
}

.section-school-card.zoned-school .school-card-header:before,
.section-school-card.zoned-school-elem .school-card-header:before,
.section-school-card.zoned-school-middle .school-card-header:before {
	background-image: linear-gradient(#0584BE 25%, #09A0E5);
}

.section-school-card.zoned-school .school-card-content .zoned-school-alert,
.section-school-card.zoned-school .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school .school-card-content .zoned-school-alert-middle,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-middle,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-middle {
	display: block;
	position: absolute;
	bottom: 6%;
	left: 68%;
	font-weight: 700;
	padding-right: 5px;
	font-size: 1em;
	text-indent: -16px;
}

.section-school-card.zoned-school .school-card-content .zoned-school-alert span,
.section-school-card.zoned-school .school-card-content .zoned-school-alert-elem span,
.section-school-card.zoned-school .school-card-content .zoned-school-alert-middle span,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert span,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-elem span,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-middle span,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert span,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-elem span,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-middle span {
	background-image: url("/themes/custom/baltimore/img/compare.svg");
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	background-position: center;
	object-fit: cover;
	display: inline-block;
	margin-right: 3px;
	margin-bottom: -4px;
}

.section-school-card.zoned-school .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school .school-card-content .zoned-school-alert-middle,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-middle,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-middle {
	display: none;
}

.section-school-card.zoned-school .school-card-content .col-right .school-mobile,
.section-school-card.zoned-school-elem .school-card-content .col-right .school-mobile,
.section-school-card.zoned-school-middle .school-card-content .col-right .school-mobile {
	color: #0093d6;
}

.section-school-card.zoned-school .school-card-content .col-right .school-mobile svg path,
.section-school-card.zoned-school-elem .school-card-content .col-right .school-mobile svg path,
.section-school-card.zoned-school-middle .school-card-content .col-right .school-mobile svg path {
	fill: #0093d6;
}

.section-school-card.zoned-school .school-card-content .school-card-button,
.section-school-card.zoned-school-elem .school-card-content .school-card-button,
.section-school-card.zoned-school-middle .school-card-content .school-card-button {
	background-color: #0093d6;
	color: #fff;
}

.section-school-card.zoned-school .school-card-content .school-card-button span,
.section-school-card.zoned-school-elem .school-card-content .school-card-button span,
.section-school-card.zoned-school-middle .school-card-content .school-card-button span {
	background-image: url("/themes/custom/baltimore/img/compare-white.svg");
}

.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-elem {
	display: block;
}

.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-middle {
	display: none;
}

.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-middle {
	display: block;
}

.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-elem {
	display: none;
}

.gm-style-iw .section-school-card {
	width: 100%;
	margin: 5% 0% 10% 0;
}

.gm-style-iw .section-school-card .school-card-content .school-card-button {
	width: 62%;
}

.gm-style-iw .section-school-card .school-card-content .school-card-button span {
	top: 28%;
}

.section-pinned-school-area {
	display: none;
	padding-bottom: 80px;
	padding-top: 60px;
}

.show-mobile-filter .section-pinned-school-area {
	display: none;
}

.compare-max-3.show-filter.comparing-1 .section-pinned-school-area {
	width: calc(66vw - 380px);
}

.compare-max-3.show-filter.comparing-1 .section-pinned-school-area .pinned-school-area {
	text-align: center;
}

.compare-max-3.comparing-3 .section-pinned-school-area {
	width: 100vw;
}

.show-filter.compare-max-3.comparing-3 .section-pinned-school-area {
	width: calc(100vw - 380px);
}

.show-filter.compare-max-3.comparing-3[data-show="map"] .section-pinned-school-area {
	width: calc(100vw - 380px);
	margin-left: 380px;
}

.pinned-school-area {
	overflow-y: hidden;
	white-space: nowrap;
	background-color: #fff;
	margin-bottom: 25px;
	margin-top: 20px;
}

.compare-pinned-schools {
	display: none;
	width: 100%;
	padding: 5%;
	z-index: 9;
	background-color: #fff;
	margin: 0 auto;
}

.compare-pinned-schools.fix-compare {
	position: fixed;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	top: 55px;
}

.show-mobile-filter .compare-pinned-schools {
	display: none;
}

.compare-pinned-schools .first-pinned-school,
.compare-pinned-schools .second-pinned-school,
.compare-pinned-schools .third-pinned-school {
	width: 32px;
	height: 32px;
	border: 1px solid #707070;
	display: inline-block;
	margin-right: 4px;
	border-radius: 6px;
	text-align: center;
}

.compare-pinned-schools .first-pinned-school svg,
.compare-pinned-schools .second-pinned-school svg,
.compare-pinned-schools .third-pinned-school svg {
	width: 11px;
	padding-top: 7px;
}

.compare-pinned-schools .compare-pinned-schools-button {
	width: 115px;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #ccd0d1;
	float: right;
	background-color: #fff;
}

.compare-pinned-schools .compare-pinned-schools-button p {
	font-size: 15px;
	color: #ccd0d1;
	display: inline-block;
}

.compare-pinned-schools .compare-pinned-schools-button svg {
	width: 18px;
	margin-left: 6px;
	margin-bottom: -4px;
}

.compare-pinned-schools .compare-pinned-schools-button svg path {
	fill: #ccd0d1;
}

.compare-pinned-schools .compare-pinned-schools-alert {
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	padding: 15px 5%;
	margin-top: 20px;
	background-color: #fff;
}

.compare-pinned-schools .compare-pinned-schools-alert p {
	color: #e5486a;
	font-size: 15px;
}

.compare-pinned-schools-area {
	width: 87.5%;
	margin: 0 auto;
	position: absolute;
	left: 6.25%;
	margin-top: -40px;
}

.compare-pinned-schools-area .pinned-school-one,
.compare-pinned-schools-area .pinned-school-two,
.compare-pinned-schools-area .pinned-school-three {
	width: 32px;
	height: 32px;
	border: 1px solid #707070;
	background-color: #fff;
	display: none;
	margin-right: 4px;
	border-radius: 6px;
	text-align: center;
}

.compare-pinned-schools-area .pinned-school-one svg,
.compare-pinned-schools-area .pinned-school-two svg,
.compare-pinned-schools-area .pinned-school-three svg {
	width: 11px;
	padding-top: 7px;
}

.compare-pinned-schools-area .close-pinned-schools-button {
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #ccd0d1;
	background-color: #707070;
	float: right;
}

.compare-pinned-schools-area .close-pinned-schools-button p {
	font-size: 15px;
	color: #fff;
	display: inline-block;
}

.compare-pinned-schools-area .close-pinned-schools-button svg {
	width: 18px;
	margin-left: 6px;
	margin-bottom: -4px;
}

.compare-pinned-schools-area .close-pinned-schools-button svg path {
	fill: #fff;
}

.pinned-school-swipe {
	position: absolute;
	left: 25%;
}

.section-pinned-school {
	display: inline-block;
	width: 300px;
	margin: 0 4%;
	border-radius: 8px;
	border: 1px solid #343434;
	background-color: #fff;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	margin-bottom: 18%;
	margin-top: 10%;
	padding: 6% 6.25% 20% 6.25%;
	white-space: normal;
	vertical-align: top;
	font-size: 1em;
}

.section-pinned-school h2 {
	font-size: 2em;
	font-weight: 600;
	color: #e5486a;
	margin-bottom: 10px;
	white-space: normal;
}

.section-pinned-school .compare-profile {
	color: #e5486a;
	font-weight: 400;
	margin-bottom: 10px;
}

.section-pinned-school .compare-profile span {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-repeat: no-repeat;
	width: 8px;
	height: 8px;
	background-position: center;
	display: inline-block;
	background-size: contain;
	margin-left: 5px;
	transition: margin-left .4s;
}

.section-pinned-school .compare-profile:hover span,
.section-pinned-school .compare-profile:focus span {
	margin-left: 20px;
}

.section-pinned-school h3 {
	font-size: 1.5em;
	font-weight: 400;
}

.section-pinned-school dt,
.section-pinned-school dd,
.section-pinned-school h6,
.section-pinned-school p,
.section-pinned-school li,
.section-pinned-school a {
	font-size: 1.4em;
	color: #343434;
	list-style-type: none;
	z-index: 1;
}

.section-pinned-school dt>a,
.section-pinned-school dd>a,
.section-pinned-school h6>a,
.section-pinned-school p>a,
.section-pinned-school li>a,
.section-pinned-school a>a {
	font-size: 1em;
	text-decoration: underline;
}

.section-pinned-school dt,
.section-pinned-school h6 {
	color: #707070;
}

.section-pinned-school .close-x {
	width: 36px;
	height: 36px;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid #343434;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translate(-50%);
	text-align: center;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	cursor: pointer;
}

.section-pinned-school .close-x svg {
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.section-pinned-school .school-number {
	color: #707070;
	margin-bottom: 3%;
}

.section-pinned-school .school-type,
.section-pinned-school .school-address,
.section-pinned-school .school-principal,
.section-pinned-school .school-programming,
.section-pinned-school .school-grades-served {
	font-weight: 600;
}

.section-pinned-school .school-image-large {
	padding-bottom: 50%;
	width: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 8px;
	margin-bottom: 10%;
}

.section-pinned-school .school-image-large div {
	position: absolute;
	width: 100%;
	bottom: 0;
	border-radius: 0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding-left: 13%;
	background-color: rgba(255,255,255,0.8);
}

.section-pinned-school .school-image-large div p {
	color: #e5486a;
	padding: 3.5% 0;
}

.section-pinned-school .school-image-small {
	display: none;
}

.section-pinned-school .school-type {
	width: 60%;
	line-height: 1.5em;
	margin-bottom: 4%;
	color: #343434;
	white-space: normal;
}

.section-pinned-school .school-grades-served {
	margin-bottom: 10%;
	color: #343434;
	margin-top: 3%;
}

.section-pinned-school .school-address {
	font-size: 1.6em;
	margin-bottom: 4.5%;
	margin-top: 3.5%;
}

.section-pinned-school hr {
	width: 75%;
}

.section-pinned-school .school-phone-number {
	margin-top: 4.5%;
	margin-bottom: 15%;
}

.section-pinned-school .has-CTE-pathway,
.section-pinned-school .has-AP {
	display: none;
}

.section-pinned-school .has-CTE-pathway.active,
.section-pinned-school .has-AP.active {
	display: block;
	margin: 10px 0;
	color: #e5486a;
	font-weight: 600;
}

.section-pinned-school .has-CTE-pathway.active span,
.section-pinned-school .has-AP.active span {
	background-image: url("/themes/custom/baltimore/img/check-mark-circle.svg");
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	background-position: center;
	display: inline-block;
	background-size: contain;
	margin-right: 5px;
}

.section-pinned-school .has-Totenroll {
	display: none;
}

.section-pinned-school .has-Totenroll.active {
	display: block;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
}

.section-pinned-school .has-Totenroll.active .enroll-txt {
	color: #0093d6;
	display: block;
	font-size: 20px;
	font-weight: 700;
}

.section-pinned-school .has-Totenroll.active .enroll-txt:before,
.section-pinned-school .has-Totenroll.active .enroll-txt:after {
	content: "";
	position: absolute;
	height: 10px;
	border-bottom: 1px solid #707070;
	top: 0;
	width: 37%;
}

.section-pinned-school .has-Totenroll.active .enroll-txt:before {
	right: 57%;
	margin-right: 15px;
}

.section-pinned-school .has-Totenroll.active .enroll-txt:after {
	left: 57%;
	margin-left: 15px;
}

.section-pinned-school .school-directions {
	display: none;
}

.section-pinned-school .toggle-dropdown.mobile-comparison-card {
	display: block;
}

.section-pinned-school .additional-info {
	border-bottom: 1px solid #343434;
	padding-bottom: 4%;
	width: 100%;
	color: #343434;
}

.section-pinned-school .icon-open-close {
	width: 18px;
	height: 18px;
	line-height: 18px;
	position: absolute;
	right: 0;
	top: 5px;
	transition: transform .4s;
	transform: rotate(0deg);
	transform-origin: 50% 50%;
}

.section-pinned-school .filter-options {
	animation-duration: .4s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-name: openbox;
	overflow-y: hidden;
	padding-top: 3%;
}

.section-pinned-school .filter-options .school-principal {
	margin-bottom: 10%;
}

.section-pinned-school .filter-options .school-programming {
	list-style-position: inside;
}

.section-pinned-school .filter-options .school-programming li {
	list-style-type: initial;
}

.section-pinned-school .close .icon-open-close {
	transform: rotate(180deg);
}

.section-pinned-school .close+.filter-options {
	animation-name: closebox;
}

.section-pinned-school .school-map {
	display: none;
}

.section-pinned-school .col-left {
	display: none;
}

.section-pinned-school .col-right {
	display: none;
}

.section-pinned-school .callout-button {
	bottom: -4%;
	cursor: pointer;
	border: 0;
	border-radius: 2em;
}

.section-pinned-school .callout-button .large-screen-text {
	display: none;
}

.section-pinned-school .callout-button span {
	width: 14px;
	height: 14px;
	top: 38%;
}

.path-school-profiles {
	background-color: #F7F7F7;
}

#map {
	position: relative;
	width: auto;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 0;
	display: none;
	margin-bottom: 6.5vh;
}

.show-mobile-filter #map {
	display: none !important;
}

.map-key {
	display: none;
	width: 0;
}

.map-list-toggle {
	border-top: 1px solid #707070;
	background-color: #F7F7F7;
	position: absolute;
	top: 10px;
	right: -99%;
	display: block;
	z-index: 10;
	border: 1px solid #ccd0d1;
	border-radius: 8px;
}

.show-mobile-filter .map-list-toggle {
	display: none;
}

.map-list-toggle.fix-compare {
	position: fixed;
	right: 1%;
}

.map-list-toggle .map-toggle,
.map-list-toggle .list-toggle {
	float: left;
	transition: background-color .4s;
}

.map-list-toggle .map-toggle p,
.map-list-toggle .list-toggle p {
	transition: color .4s;
}

.map-list-toggle .map-toggle:hover,
.map-list-toggle .map-toggle.focus,
.map-list-toggle .list-toggle:hover,
.map-list-toggle .list-toggle.focus {
	background-color: #fff;
}

.map-list-toggle .map-toggle:hover p,
.map-list-toggle .map-toggle.focus p,
.map-list-toggle .list-toggle:hover p,
.map-list-toggle .list-toggle.focus p {
	color: #e5486a;
}

.map-list-toggle .map-toggle,
.map-list-toggle .list-toggle {
	display: inline-block;
	padding: 7px 7px 8px 8px;
	border-radius: 8px;
}

.map-list-toggle .map-toggle.active,
.map-list-toggle .list-toggle.active {
	border: #e5486a;
	background-color: #fff;
}

.map-list-toggle .map-toggle.active span,
.map-list-toggle .list-toggle.active span {
	background-color: #e5486a;
}

.map-list-toggle .map-toggle.active span svg path,
.map-list-toggle .list-toggle.active span svg path {
	fill: #fff;
}

.map-list-toggle .map-toggle.active:hover p,
.map-list-toggle .list-toggle.active:hover p {
	color: #343434;
}

.map-list-toggle .map-toggle p,
.map-list-toggle .list-toggle p {
	font-size: 3.75vw;
	padding-left: 25px;
}

.map-list-toggle .map-toggle svg,
.map-list-toggle .list-toggle svg {
	position: absolute;
	top: 50%;
	margin-top: -9px;
	left: 8px;
	width: 16px;
	height: 16px;
}

.map-list-toggle .map-toggle {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.map-list-toggle .map-toggle span {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 100%;
	left: 0px;
	transform: translate(0, -50%);
	border-bottom-left-radius: 8px;
	border-top-left-radius: 8px;
}

.map-list-toggle .list-toggle {
	border-left: 1px solid #ccd0d1;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.map-list-toggle .list-toggle span {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 100%;
	left: 0px;
	transform: translate(0, -50%);
}

.map-list-toggle .mobile-map-list-toggle {
	display: inline-block;
	z-index: 5;
	background-color: #fff;
	width: 50vw;
	margin-left: 8%;
}

.map-list-toggle .mobile-map-list-toggle .map-toggle,
.map-list-toggle .mobile-map-list-toggle .list-toggle {
	width: 50%;
	height: 100%;
	float: left;
	padding: 0% 2%;
	padding-top: 3%;
	background-color: #f2f2f2;
}

.map-list-toggle .mobile-map-list-toggle .map-toggle svg,
.map-list-toggle .mobile-map-list-toggle .list-toggle svg {
	width: 3.5vw;
	height: 3.5vw;
	margin-bottom: -2%;
}

.map-list-toggle .mobile-map-list-toggle .map-toggle p,
.map-list-toggle .mobile-map-list-toggle .list-toggle p {
	color: #707070;
	font-size: 4vw;
	padding-left: 7%;
}

.map-list-toggle .mobile-map-list-toggle .background-white {
	background-color: #fff;
}

.section-school-comparison-filter {
	z-index: 2;
	width: 100%;
	background-color: #fff;
	border-top: 1px solid #ccd0d1;
	display: none;
	transition: margin-left .4s;
}

.show-mobile-filter .section-school-comparison-filter {
	display: block;
}

.show-filter .section-school-comparison-filter {
	display: inline-block;
	margin-left: 0;
}

.show-filter .section-school-comparison-filter .map-list-toggle {
	display: none;
}

.hide-filter .section-school-comparison-filter {
	display: inline-block;
	margin-left: -100%;
}

.hide-filter .section-school-comparison-filter .toggle-filter {
	left: auto;
	right: -41%;
	top: 26px;
	padding: 0;
	z-index: 3;
	position: absolute;
}

.hide-filter .section-school-comparison-filter .toggle-filter.fix-compare {
	position: fixed;
	left: 32%;
	right: auto;
}

.hide-filter .section-school-comparison-filter .toggle-filter svg {
	width: 12px;
	height: 12px;
	margin-left: 5px;
	transform: rotate(180deg) translate(50%, 33%);
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle {
	right: -100%;
	width: 100vw;
	position: absolute;
	padding: 0 20px 0 0;
	margin: 0;
	border-radius: 0;
	background-color: #fff;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	background-image: none;
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle h2 {
	background-image: linear-gradient(#D07324, #E5466B);
	width: 45%;
	padding: 7px 15px;
	height: 55px;
	border-bottom-right-radius: 12px;
	font-size: 5vw;
	transition: width .4s;
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle h2 span {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle h2 span:first-child {
	display: none;
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle h2 span:last-child {
	display: block;
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle.fix-compare {
	position: fixed;
	top: 0;
	right: 0;
}

.section-school-comparison-filter input,
.section-school-comparison-filter p {
	font-size: 16px;
}

.section-school-comparison-filter ul {
	font-size: 16px;
}

.section-school-comparison-filter a {
	font-size: 15px;
}

.section-school-comparison-filter h2 {
	font-size: 22px;
}

.section-school-comparison-filter h3 {
	font-size: 20px;
}

.section-school-comparison-filter .toggle-filter {
	display: block;
	width: 11%;
	padding: 25px;
	position: absolute;
	left: 85%;
	top: 0px;
	border-bottom-right-radius: 8px;
	transition: width .4s,left .4s;
	cursor: pointer;
	z-index: 2;
	background-image: linear-gradient(#D07324, #E5466B);
}

.section-school-comparison-filter .toggle-filter svg {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform .4s ease-in-out;
}

.section-school-comparison-filter .toggle-filter svg path {
	fill: #fff;
	transition: fill .4s;
}

.section-school-comparison-filter .filter-section {
	padding: 0 15px 7%;
	border-bottom: 0;
	border-radius: 8px;
	background-color: #f2f2f2;
	transition: background-color .4s;
}

.section-school-comparison-filter .filter-section+.filter-section {
	border-top: 3px solid #e5486a;
	border-radius: 0;
	border-bottom: 1px solid #707070;
	border-left: 1px solid #707070;
	border-right: 1px solid #707070;
}

.section-school-comparison-filter .filter-section .filter-title {
	padding: 0;
	display: block;
}

.section-school-comparison-filter .filter-section .schools-compare-toggle {
	transition: width .4s;
	background-image: linear-gradient(#D07324, #E5466B);
	margin: 0 -15px;
	padding: 15px 20px;
	height: 55px;
	border-bottom-right-radius: 12px;
}

.section-school-comparison-filter .filter-section .icon-open-close {
	width: 12px;
	height: 12px;
	line-height: 6px;
	position: absolute;
	left: 0;
	top: 26px;
	transition: transform .4s;
	transform: rotate(0deg);
	transform-origin: 50% 50%;
}

.section-school-comparison-filter .filter-section .icon-open-close svg path {
	fill: #707070;
	transition: fill .4s;
}

.section-school-comparison-filter .filter-section h2 {
	font-size: 22px;
	color: #fff;
	font-weight: 600;
	transition: color .4s;
	width: 100%;
}

.section-school-comparison-filter .filter-section h2 span:last-child {
	display: none;
}

.section-school-comparison-filter .filter-section .filter-content {
	padding-top: 0;
	border-top: 0px solid #343434;
	animation-duration: .4s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-name: closebox;
	overflow-y: hidden;
	transition: padding-top .4s,margin-top .4s,border-width .4s;
}

.section-school-comparison-filter .filter-section .filter-content.fix-compare {
	height: 30px;
	box-shadow: none;
	visibility: hidden;
}

.section-school-comparison-filter .filter-section .filter-content h3 {
	color: #e5486a;
	margin-bottom: 20px;
	padding-top: 25px;
	font-weight: 400;
	padding-left: 25px;
	border-top: 1px solid #707070;
}

.section-school-comparison-filter .filter-section .filter-content .active-filters {
	margin-bottom: 10px;
}

.section-school-comparison-filter .filter-section .filter-content .active-filters li {
	display: inline-block;
	background-color: #f2f2f2;
	height: 22px;
	margin: 3px;
	cursor: pointer;
	transition: background-color .4s;
}

.section-school-comparison-filter .filter-section .filter-content .active-filters li a span {
	padding: 0 5px;
	font-weight: 700;
	color: #e5486a;
	font-size: 12px;
	transition: color .4s;
}

.section-school-comparison-filter .filter-section .filter-content .active-filters li a p {
	padding: 0 5px;
	display: inline-block;
	color: #e5486a;
	border-left: 2px solid #fff;
	font-size: 12px;
	transition: color .4s;
}

.section-school-comparison-filter .filter-section .filter-content .active-filters li:hover {
	background-color: #e5486a;
}

.section-school-comparison-filter .filter-section .filter-content .active-filters li:hover a span {
	color: #fff;
}

.section-school-comparison-filter .filter-section .filter-content .active-filters li:hover a p {
	color: #fff;
}

.section-school-comparison-filter .filter-section .filter-content .school-search-container {
	padding: 0 0 25px;
	border-bottom: 1px solid #707070;
}

.section-school-comparison-filter .filter-section .filter-content .zoned-search-container {
	padding: 0 25px 30px;
}

.section-school-comparison-filter .filter-section .filter-content .CTE-filter-container {
	margin-left: 25px;
}

.section-school-comparison-filter .filter-section .filter-content .filter-clear-all {
	display: none;
	color: #e5486a;
	float: right;
	border-bottom: 1px solid #e5486a;
	margin-bottom: 5%;
	padding-bottom: 1%;
	font-size: 13px;
}

.section-school-comparison-filter .filter-section .filter-content .filter-clear-all:hover {
	color: #CE3556;
	border-bottom: 1px solid #CE3556;
}

.section-school-comparison-filter .filter-section .filter-content .school-search:focus ~ .floating-label,
.section-school-comparison-filter .filter-section .filter-content .school-search[data-value]:not([data-value=""]) ~ .floating-label {
	top: 8px;
	bottom: 10px;
	left: 82px;
	font-size: 11px;
}

.section-school-comparison-filter .filter-section .filter-content .school-search {
	width: 100%;
	height: 60px;
	border-radius: 8px;
	border: 2px solid #707070;
	background: none;
	font-weight: 600;
	padding-left: 75px;
	padding-top: 20px;
}

.section-school-comparison-filter .filter-section .filter-content .school-search-button {
	font-size: 11px;
	border: 0;
	background-color: #fff;
	left: 4px;
	top: 4px;
	position: absolute;
	border-radius: 8px;
	background-image: linear-gradient(#D07324, #E5466B);
	height: 52px;
	width: 55px;
}

.section-school-comparison-filter .filter-section .filter-content .school-search-button svg {
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-right: 3px;
}

.section-school-comparison-filter .filter-section .filter-content .floating-label {
	position: absolute;
	color: #707070;
	font-size: 4.25vw;
	left: 70px;
	top: 21px;
	pointer-events: none;
	transition: .4s ease all;
}

.section-school-comparison-filter .filter-section .filter-content .zoned-school-search {
	width: 100%;
	border: 0;
	padding: 4% 0 1% 2%;
	border-bottom: 1px solid #ccd0d1;
	margin-right: 6%;
	float: left;
	background: none;
	font-weight: 600;
	padding-right: 69px;
}

.section-school-comparison-filter .filter-section .filter-content .zoned-school-search-button {
	color: #0093d6;
	font-size: 11px;
	border: 0;
	background-color: #fff;
	margin-left: -87px;
	margin-top: 5px;
	position: absolute;
	height: 25px;
	width: 60px;
}

.section-school-comparison-filter .filter-section .filter-content .zoned-school-search-button svg {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 3px;
}

.section-school-comparison-filter .filter-section .filter-content .floating-label-two {
	position: absolute;
	color: #707070;
	font-size: 18px;
	left: 27px;
	top: 10px;
	pointer-events: none;
	transition: .4s ease all;
}

.section-school-comparison-filter .filter-section .filter-content .zoned-school-search:focus ~ .floating-label-two,
.section-school-comparison-filter .filter-section .filter-content .zoned-school-search[data-value]:not([data-value=""]) ~ .floating-label-two {
	top: 0px;
	bottom: 10px;
	left: 30px;
	font-size: 11px;
}

.section-school-comparison-filter .filter-section .filter-content .my-location-search {
	width: 100px;
	float: left;
	border-bottom: 1px solid #0093d6;
	color: #0093d6;
	padding-bottom: 1%;
	padding-top: 18px;
	padding-right: 5px;
	text-align: right;
}

.section-school-comparison-filter .filter-section .filter-content .my-location-search span {
	background-image: url("/themes/custom/baltimore/img/location.svg");
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	background-position: center;
	position: absolute;
	top: 55%;
	left: 0%;
}

.section-school-comparison-filter .filter-section .filter-content .my-location-search:hover {
	color: #005C86;
}

.section-school-comparison-filter .filter-section .filter-content .my-location-search:hover span {
	background-image: url("/themes/custom/baltimore/img/location-hover.svg");
}

.section-school-comparison-filter .filter-section .filter-content .my-location-search.loading-animation span {
	width: 16px;
	height: 16px;
	top: 50%;
	left: -2%;
	animation: rotation 2s infinite linear;
}

.section-school-comparison-filter .filter-section .filter-content .school-filter-grade,
.section-school-comparison-filter .filter-section .filter-content .school-filter-CTE,
.section-school-comparison-filter .filter-section .filter-content .school-filter-program,
.section-school-comparison-filter .filter-section .filter-content .school-filter-management,
.section-school-comparison-filter .filter-section .filter-content .school-filter-enrollment {
	width: 100%;
	padding: 18px 0 12px 25px;
	margin-bottom: 6px;
}

.section-school-comparison-filter .filter-section .filter-content .toggle-dropdown {
	display: block;
}

.section-school-comparison-filter .filter-section .filter-content .toggle-dropdown svg path {
	fill: #707070;
}

.section-school-comparison-filter .filter-section .filter-content .toggle-dropdown:hover h3 {
	color: #CE3556;
}

.section-school-comparison-filter .filter-section .filter-content .toggle-dropdown:hover span svg path {
	fill: #343434;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table {
	display: table;
	height: 2em;
	width: 100%;
	margin-top: 2em;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row {
	display: table-row;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row .filter-line,
.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row>a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #707070;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row span {
	display: block;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row a {
	width: 46%;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row .filter-line span {
	height: 1px;
	border-bottom: 1px solid #707070;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row .see-filter-text {
	margin-left: -30px;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row .icon-open-close {
	background-image: url("/themes/custom/baltimore/img/caret-up-gray.svg");
	background-repeat: no-repeat;
	background-position: center;
	height: 16.5px;
	width: 16.5px;
	line-height: 16.5px;
	right: 8px;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table+.additional-filters-content {
	animation-duration: .4s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-name: closebox;
	overflow-y: hidden;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table.see-more-filters+.additional-filters-content {
	animation-name: openbox;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table.see-more-filters .icon-open-close {
	transform: rotate(180deg);
}

.section-school-comparison-filter .filter-section .filter-content .sorting-box {
	float: left;
	border: 1px solid #707070;
	border-radius: 8px;
	padding: 18px 20px;
	margin-bottom: 25px;
	cursor: pointer;
	background-color: #fff;
	font-size: 4.5vw;
	color: #707070;
	margin-left: 25px;
}

.section-school-comparison-filter .filter-section .filter-content .sorting-box.active {
	background-color: #0093d6;
	color: #fff;
}

.section-school-comparison-filter .filter-section .filter-content .sorting-box:hover {
	background-color: #D6F2FF;
	color: #707070;
}

.section-school-comparison-filter .filter-section .filter-content .download-list {
	color: #707070;
	margin-bottom: 8%;
	margin-top: 20px;
}

.section-school-comparison-filter .filter-section .filter-content .download-list a {
	text-decoration: underline;
	color: #343434;
}

.section-school-comparison-filter .filter-section.active {
	background-color: #fff;
}

.section-school-comparison-filter .filter-section.active h2 {
	color: #fff;
}

.section-school-comparison-filter .filter-section.active>a>.icon-open-close {
	transform: rotate(0deg);
}

.section-school-comparison-filter .filter-section.active>a>.icon-open-close svg path {
	fill: #e5486a;
}

.section-school-comparison-filter .filter-section.active .filter-content {
	padding-top: 1.5em;
	animation-name: openbox;
	white-space: normal;
}

.section-school-comparison-filter .filter-section .filter-options {
	animation-duration: .4s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-name: openbox;
	overflow-y: hidden;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-grade-box {
	padding: 0 22px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-grade-box ul {
	list-style: none;
	padding: 1px 0 30px;
	overflow: auto;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-grade-box ul li {
	border: 1px solid #ccd0d1;
	border-radius: 8px;
	width: 22.5%;
	float: left;
	margin: 3px;
	height: 45px;
	line-height: 45px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-grade-box ul li label {
	text-align: center;
	border-radius: 8px;
	color: #757575;
	cursor: pointer;
	display: block;
	height: 100%;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-grade-box ul li label input {
	display: none;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-grade-box ul li label.checked {
	background-color: #0093d6;
	color: #fff;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-grade-box ul li:hover {
	background-color: #D6F2FF;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.CTE-pathways {
	padding: 0;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.CTE-pathways ul {
	font-size: 16px;
	font-weight: 600;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.CTE-pathways>ul li ul li:last-child {
	margin-bottom: 15px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.CTE-pathways>ul li:last-child {
	margin-bottom: 55px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown .CTE-pathway-filter {
	width: 85%;
	border: 0;
	padding: 6% 0 1% 2%;
	border-bottom: 1px solid #ccd0d1;
	margin-bottom: 4.5%;
	margin-top: 0;
	font-weight: 600;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown .CTE-pathway-filter:focus ~ .floating-label-three,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown .CTE-pathway-filter[data-value]:not([data-value=""]) ~ .floating-label-three {
	top: 1px;
	bottom: 10px;
	left: 3px;
	font-size: 11px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown .floating-label-three {
	position: absolute;
	color: #707070;
	font-size: 18px;
	left: 1px;
	top: 10px;
	pointer-events: none;
	transition: .4s ease all;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul {
	list-style: none;
	padding-left: 25px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li {
	margin-bottom: 2.5%;
	padding: 1% 0;
	cursor: pointer;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li label input {
	display: none;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li label.checked {
	display: block;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li label.checked span {
	background-image: url("/themes/custom/baltimore/img/checkmark.svg");
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	background-position: center;
	position: absolute;
	left: -14px;
	top: 3px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li button {
	text-align: left;
	background-color: white;
	border: 0;
	font-weight: 600;
	font-family: "proxima-nova",sans-serif;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li button:focus {
	outline: none;
	border: 1px dotted #707070;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul {
	padding-left: 18px;
	font-size: 15px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul li {
	margin-bottom: 1%;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul li label {
	color: #707070;
	cursor: pointer;
	font-weight: 400;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul li label:focus {
	outline: none;
	border: 1px dotted #707070;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul li label input {
	display: none;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul li label.checked {
	background-color: #fff;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul li label.checked span {
	background-image: url("/themes/custom/baltimore/img/checkmark.svg");
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	background-position: center;
	position: absolute;
	left: -14px;
	top: 2px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul li label:hover {
	background-image: none;
	background-color: #f2f2f2;
	border-right: 1px solid #f2f2f2;
	transition: background-color .4s;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul {
	padding: 0px;
	list-style: none;
	margin-bottom: 55px;
	color: #343434;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul li,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul li {
	margin-bottom: 2.5%;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul li label,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul li label {
	display: block;
	padding-left: 25px;
	cursor: pointer;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label:focus,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul li label:focus,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul li label:focus {
	outline: none;
	border: 1px dotted #707070;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label input,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul li label input,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul li label input {
	display: none;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label.checked,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul li label.checked,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul li label.checked {
	background-color: #fff;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label.checked span,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul li label.checked span,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul li label.checked span {
	background-image: url("/themes/custom/baltimore/img/checkmark.svg");
	background-repeat: no-repeat;
	width: 16px;
	height: 14px;
	background-position: center;
	position: absolute;
	left: 5px;
	top: 3px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label:hover,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul li label:hover,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul li label:hover {
	background-image: none;
	background-color: #f2f2f2;
	border-right: 1px solid #f2f2f2;
	transition: background-color .4s;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label.checked {
	background-color: #fff;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label.checked span {
	background-image: url("/themes/custom/baltimore/img/checkmark.svg");
	background-repeat: no-repeat;
	width: 16px;
	height: 14px;
	background-position: center;
	position: absolute;
	left: 5px;
	top: 3px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label:hover {
	background-image: none;
	background-color: #f2f2f2;
	border-right: 1px solid #f2f2f2;
	transition: background-color .4s;
}

.section-school-comparison-filter .filter-section .close .icon-open-close {
	transform: rotate(180deg);
}

.section-school-comparison-filter .filter-section .close+.filter-options {
	animation-name: closebox;
}

.section-school-comparison-filter .filter-section .has-children button {
	width: 100%;
	padding-right: 1%;
	cursor: pointer;
}

.section-school-comparison-filter .filter-section .has-children button span {
	display: inline-block;
	background-image: url("/themes/custom/baltimore/img/caret-up-gray.svg");
	background-repeat: no-repeat;
	background-position: center;
	height: 7px;
	width: 6px;
	margin-left: 2px;
	transition: transform .4s;
	transform: rotate(180deg);
}

.section-school-comparison-filter .filter-section .has-children ul {
	animation-duration: .4s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-name: closebox;
	overflow-y: hidden;
}

.section-school-comparison-filter .filter-section .has-children button[aria-expanded="true"] span {
	transform: rotate(0deg);
	transition: transform .4s;
}

.section-school-comparison-filter .filter-section .has-children button[aria-expanded="true"]+ul {
	animation-name: openbox;
}

.section-school-comparison-filter .school-comparison-filter-content {
	padding: 0 5%;
}

.section-school-comparison-filter .school-comparison-filter-content .slideUp {
	max-height: 0;
	padding: 0 7% !important;
	color: #343434;
	overflow-y: hidden;
	padding: 0;
	transition: max-height .4s ease-in-out,padding .4s ease-in-out;
}

.section-school-comparison-filter .school-comparison-filter-content .slideDown {
	max-height: 5000px;
	color: #343434;
	overflow-y: hidden;
	transition: max-height .4s ease-in-out,padding .4s ease-in-out;
}

.section-school-comparison-filter .school-comparison-filter-content .select-grade {
	background-color: #0093d6;
}

.section-school-comparison-filter .school-comparison-filter-content .select-grade label {
	color: #fff;
}

.section-school-comparison-filter .school-comparison-filter-content .select-list-item {
	background-color: #f2f2f2;
}

.section-school-comparison-filter .apply-filters-button {
	background-image: linear-gradient(#D07324, #E5466B);
	padding: 15px 0;
	cursor: pointer;
	color: #fff;
	font-size: 16px;
	text-align: center;
	width: 97%;
	margin-left: 1.5%;
	position: fixed;
	bottom: 1%;
	border-radius: 6px;
	font-weight: 700;
	border: 0;
	box-shadow: 4px 6.5px 22px 0px rgba(0,0,0,0.4);
	display: block;
	visibility: visible;
}

.section-school-comparison-filter .apply-filters-button.fix-compare {
	visibility: hidden;
}

.shrinkFilter {
	max-height: 0px;
	overflow-y: hidden;
	transition: max-height .4s ease-in-out;
}

.expandFilter {
	max-height: 5000px;
	overflow-y: hidden;
	transition: max-height .4s ease-in-out;
}

.background-light-gray {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.background-white {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.section-profile-page-one {
	margin-top: 33%;
	box-shadow: 2px 6px 14px -3px rgba(0,0,0,0.1);
	padding-bottom: 60px;
}

.section-profile-page-one a {
	font-size: 1em;
	color: inherit;
}

.section-profile-page-one dd,
.section-profile-page-one dt {
	font-size: 2.2em;
}

.section-profile-page-one dd+dt:before {
	content: '';
	display: block;
	clear: both;
}

.section-profile-page-one .row {
	width: 100%;
}

.section-profile-page-one .row .primary-landing-callout {
	width: 90%;
	margin: 0 auto;
	margin-bottom: 5%;
}

.section-profile-page-one .row .primary-landing-callout .profile-header-school-number {
	display: inline-block;
	text-align: left;
}

.section-profile-page-one .row .primary-landing-callout .profile-header-school-number p {
	width: 90%;
	line-height: 1em;
}

.section-profile-page-one .row .primary-landing-callout .profile-header-school-number h2 {
	margin-bottom: 10%;
}

.section-profile-page-one .row .col-left {
	width: 100%;
}

.section-profile-page-one .row .col-left .section-page-intro {
	width: 84%;
	margin: 0 auto;
	margin-bottom: 5%;
}

.section-profile-page-one .row .col-left .profile-data-box {
	width: 93%;
	margin: 0 auto;
	margin-bottom: 10%;
	border-bottom: 3px solid #ccd0d1;
	display: inline-block;
	padding-bottom: 4%;
	margin-bottom: 4%;
	margin-left: 3.5%;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout {
	border-radius: 8px;
	border: 2px solid #ccd0d1;
	padding: 4.5% 5%;
	margin-bottom: 4%;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .official-state-grade-band-title {
	padding: 0;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .profile-official-state-grade-band {
	color: #0093d6;
	padding: 0;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .official-state-grade-band-title,
.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .profile-official-state-grade-band {
	font-size: 2.4em;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout dt,
.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout dd {
	font-weight: 400;
	margin: 0;
	margin-right: 5px;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .profile-grades-served {
	display: inline-block;
	padding: 0;
	color: #0093d6;
}

.section-profile-page-one .row .col-left .profile-data-box dt,
.section-profile-page-one .row .col-left .profile-data-box dd,
.section-profile-page-one .row .col-left .profile-data-box .term-label {
	display: inline;
	font-weight: 400;
	line-height: 1.5em;
	margin-right: 0.2em;
}

.section-profile-page-one .row .col-left .profile-data-box dt span,
.section-profile-page-one .row .col-left .profile-data-box dd span,
.section-profile-page-one .row .col-left .profile-data-box .term-label span {
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	background-position: center;
	background-size: cover;
	display: inline-block;
	margin-right: 7px;
}

.section-profile-page-one .row .col-left .profile-data-box dt span.title-i-svg,
.section-profile-page-one .row .col-left .profile-data-box dt span.uniform-svg,
.section-profile-page-one .row .col-left .profile-data-box dd span.title-i-svg,
.section-profile-page-one .row .col-left .profile-data-box dd span.uniform-svg,
.section-profile-page-one .row .col-left .profile-data-box .term-label span.title-i-svg,
.section-profile-page-one .row .col-left .profile-data-box .term-label span.uniform-svg {
	width: 16px;
	height: 18px;
}

.section-profile-page-one .row .col-left .profile-data-box dt .term-definition,
.section-profile-page-one .row .col-left .profile-data-box dd .term-definition,
.section-profile-page-one .row .col-left .profile-data-box .term-label .term-definition {
	transition: opacity .4s;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: -150px;
	width: 300px;
	top: 30px;
	height: auto;
	overflow: auto;
	background-color: #707070;
	color: #fff;
	z-index: 4;
	padding: 7px 12px;
	border-radius: 4px;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	font-size: 1rem;
}

.section-profile-page-one .row .col-left .profile-data-box dt .term-definition.active,
.section-profile-page-one .row .col-left .profile-data-box dd .term-definition.active,
.section-profile-page-one .row .col-left .profile-data-box .term-label .term-definition.active {
	visibility: visible;
	opacity: 1;
}

.section-profile-page-one .row .col-left .profile-data-box .term-label {
	cursor: pointer;
}

.section-profile-page-one .row .col-left .profile-data-box .term-label:hover .term-definition {
	visibility: visible;
	opacity: 1;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-school-type-h3 {
	display: none;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-information {
	color: #0093d6;
}

.section-profile-page-one .row .col-left hr {
	width: 80%;
	margin: 0 auto;
	height: 3px;
	border: 0;
	border-radius: 20px;
	background-color: #ccd0d1;
	margin-bottom: 11%;
}

.section-profile-page-one .row .col-left .text-button {
	display: inline-block;
	margin-left: 9%;
	margin-bottom: 7%;
	font-weight: 400;
}

.section-profile-page-one .row .col-left .text-button svg {
	width: 8px;
	height: 8px;
}

.section-profile-page-one .row .col-left .profile-school-website {
	color: #e5486a;
	font-size: 2em;
}

.section-profile-page-one .row .col-left .profile-apple-app,
.section-profile-page-one .row .col-left .profile-android-app {
	display: block;
	margin-left: 8%;
}

.section-profile-page-one .row .col-left .profile-apple-app p,
.section-profile-page-one .row .col-left .profile-android-app p {
	color: #e5486a;
	margin-bottom: 4%;
	margin-left: 9%;
}

.section-profile-page-one .row .col-left .profile-apple-app span,
.section-profile-page-one .row .col-left .profile-android-app span {
	position: absolute;
	top: 5%;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	background-position: center;
}

.section-profile-page-one .row .col-left .profile-android-app {
	margin-bottom: 10%;
}

.section-profile-page-one .row .col-left .social-media-icons {
	display: block;
	list-style: none;
	margin-left: 9%;
}

.section-profile-page-one .row .col-left .social-media-icons li {
	display: inline-block;
	margin-right: 3.25%;
}

.section-profile-page-one .row .col-left .social-media-icons li a {
	width: 28px;
	height: 28px;
	float: left;
}

.section-profile-page-one .row .col-left .social-media-icons li a span {
	display: block;
	overflow: hidden;
	text-indent: 100px;
}

.section-profile-page-one .row .col-left .social-media-icons li a svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.section-profile-page-one .row .col-right {
	width: 100%;
}

.section-profile-page-one .row .col-right .profile-map {
	padding-bottom: 70%;
	width: 89%;
	margin: 0 auto;
	margin-bottom: 6%;
	border-radius: 8px;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-profile-page-one .row .col-right .profile-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	margin: 0;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-marker {
	width: 32px;
	height: 32px;
	object-fit: contain;
	position: absolute;
	z-index: 3;
	top: 38%;
	left: 48%;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions {
	position: absolute;
	color: #0093d6;
	bottom: -8%;
	right: 5%;
	background: #fff;
	padding: 2% 1%;
	border-radius: 2em;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	z-index: 3;
	min-width: 45%;
	font-size: 1.8em;
	text-align: center;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions span {
	background-image: url("/themes/custom/baltimore/img/map-icon.svg");
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	object-fit: contain;
	background-position: center;
	display: inline-block;
	margin-right: 3%;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions:hover {
	color: #005C86;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions:hover span {
	background-image: url("/themes/custom/baltimore/img/map-icon-hover.svg");
}

.section-profile-page-one .row .col-right .profile-map-data {
	width: 90%;
	margin: 10% 0 10% 8%;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-address,
.section-profile-page-one .row .col-right .profile-map-data .profile-phone-number {
	margin-bottom: 25px;
	font-weight: 400;
	color: #343434;
	font-size: 2.2em;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-address {
	display: inline-block;
	border-bottom: 3px solid #ccd0d1;
	padding-bottom: 5%;
}

.section-profile-page-one .row .col-right .profile-map-data p {
	margin-bottom: 5px;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-school-leader {
	margin-bottom: 35px;
	color: #343434;
}

.section-profile-page-one .row .col-right .profile-map-data dd,
.section-profile-page-one .row .col-right .profile-map-data dt {
	display: inline;
	font-weight: 400;
	line-height: 1.5em;
}

.section-profile-page-one .row .col-right .profile-map-data dd span,
.section-profile-page-one .row .col-right .profile-map-data dt span {
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	background-position: center;
	background-size: cover;
	display: inline-block;
	margin-right: 7px;
}

.section-profile-page-one .row .col-right .profile-map-data dd span.cln-svg,
.section-profile-page-one .row .col-right .profile-map-data dt span.cln-svg {
	width: 20px;
	height: 12px;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-information {
	color: #0093d6;
}

.section-profile-page-two {
	padding-bottom: 40px;
	box-shadow: 2px 6px 14px -3px rgba(0,0,0,0.1);
}

.section-profile-page-two h2 {
	font-size: 2.4em;
}

.section-profile-page-two h3 {
	font-size: 2.4em;
}

.section-profile-page-two ul {
	font-size: 2.2em;
}

.section-profile-page-two .row {
	width: 100%;
	margin-top: 15%;
}

.section-profile-page-two .row h3 {
	color: #0093d6;
	margin-bottom: .3em;
	margin-left: .8em;
	font-weight: 400;
}

.section-profile-page-two .row ul {
	margin-bottom: 2em;
	margin-left: .7em;
}

.section-profile-page-two .row ul li {
	margin-bottom: .3em;
	margin-left: 1.5em;
}

.section-profile-page-two .row .profile-school-category {
	width: 86%;
	margin: 0 auto;
	margin-bottom: 8%;
	background-image: none;
	background-size: 0;
}

.section-profile-page-two .row .profile-school-category .profile-school-category-title {
	width: 100%;
	border-radius: 8px;
	padding: 5.5% 0;
	padding-left: 5%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-profile-page-two .row .profile-school-category .profile-school-category-title h2 {
	color: #fff;
}

.section-profile-page-two .row .profile-school-category .profile-school-category-title.red-gradient {
	background-image: linear-gradient(to top, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.section-profile-page-two .row .profile-school-category .profile-school-category-title.orange-gradient {
	background-image: linear-gradient(to top, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.section-profile-page-two .row .profile-school-category .profile-school-category-title.light-blue-gradient {
	background-image: linear-gradient(to top, rgba(17,112,182,0.9), rgba(46,166,216,0.9), rgba(80,228,255,0.9));
}

.section-profile-page-two .row .profile-school-category .profile-school-category-title.blue-gradient {
	background-image: linear-gradient(to top, rgba(0,141,206,0.9), rgba(37,198,240,0.9));
}

.section-profile-page-two .row .col-left {
	width: 100%;
}

.section-profile-page-two .row .col-right {
	width: 100%;
}

.section-profile-page-two .row .col-right .profile-school-category .profile-school-category-title {
	margin-top: 23%;
}

.section-profile-page-three {
	padding: 15% 0;
	box-shadow: 0px 0px 11px 2px rgba(0,0,0,0.1);
}

.section-profile-page-three h2 {
	font-size: 2.4em;
	font-weight: 700;
	color: #e5486a;
	text-align: center;
	margin-bottom: 5%;
}

.section-profile-page-three .row {
	width: 91.5%;
	margin: 0 auto;
}

.section-profile-page-three .row p {
	margin: 0 3%;
	text-align: center;
	margin-bottom: 7%;
	color: #343434;
}

.section-profile-page-three .row .callout-button {
	position: relative;
	width: 82%;
	padding: 7.5% 13% 7.5% 5%;
	display: block;
	cursor: pointer;
}

.section-profile-page-three .row .callout-button h5 {
	margin-bottom: 0;
	text-align: left;
	font-weight: 600;
	color: #343434;
}

.section-profile-page-three .row .callout-button span {
	width: 20px;
	height: 20px;
}

.section-profile-page-four {
	padding: 40px 0;
	box-shadow: 2px 6px 14px -3px rgba(0,0,0,0.1);
}

.section-profile-page-four h2 {
	margin-bottom: 30px;
	text-align: center;
	font-weight: 400;
}

.section-profile-page-four p {
	text-align: center;
	margin-bottom: 50px;
	padding: 0 15px;
}

.section-profile-page-four .row .profile-school-links {
	margin-left: 9.5%;
	margin-bottom: 25px;
}

.section-profile-page-four .row .profile-school-links li {
	list-style: none;
	display: inline;
}

.section-profile-page-four .row .profile-school-links li a {
	padding: 5% 0;
	padding-left: 17.5%;
	padding-right: 7.5%;
	min-width: 72%;
	border-radius: 6em;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	margin-bottom: 6%;
	display: inline-block;
}

.section-profile-page-four .row .profile-school-links li a span {
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	background-position: center;
	position: absolute;
	background-size: contain;
	left: 10%;
	top: 33%;
}

.section-profile-page-four .row .profile-school-links li a p {
	margin: 0;
	font-weight: 700;
	color: #343434;
	text-align: left;
	width: 100%;
	padding: 0;
}

.section-profile-page-four .row h4 {
	margin-bottom: 3%;
	margin-left: 13%;
	font-weight: 400;
}

.section-profile-page-four .row p {
	margin-left: 13%;
	margin-right: 9%;
	line-height: 1.25em;
}

.section-profile-page-four .row p a {
	color: #e5486a;
	text-decoration: underline;
}

.section-profile-page-five {
	padding: 40px 0;
}

.section-profile-page-five .profile-video-callout {
	width: 100%;
	margin: 0 auto;
	padding: 40% 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.section-profile-page-five .profile-video-callout a {
	top: 7%;
	left: 5%;
	width: 90%;
	height: 86%;
}

.section-profile-page-five .profile-video-callout a .video-callout-details {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.section-profile-page-five .profile-video-callout a .video-callout-details span {
	display: block;
	background-repeat: no-repeat;
	width: 36px;
	height: 36px;
	background-position: center;
	margin: 0 auto;
	margin-bottom: 3%;
}

.section-profile-page-five .profile-video-callout a .video-callout-details p {
	margin-bottom: 2.5%;
	color: #fff;
}

.section-profile-page-five .profile-video-callout a .video-callout-details hr {
	width: 35%;
	background-color: #fff;
	opacity: .3;
	margin: 0 auto;
	margin-bottom: 2.5%;
	padding-bottom: .55%;
	border: 0;
}

.section-profile-page-five .profile-video-callout a .video-callout-details h3 {
	font-weight: 400;
	color: #fff;
	font-size: 1.6em;
}

.section-profile-page-five .profile-video-callout a:focus {
	outline-offset: 5px;
}

.section-profile-page-six {
	padding-top: 3%;
	padding-bottom: 9%;
}

.section-profile-page-six .slider-row {
	margin: 0;
	overflow-y: hidden;
	white-space: nowrap;
	text-align: center;
}

.section-profile-page-six .slider-row .profile-slider-image {
	width: 91%;
	padding: 0 4.5%;
	display: inline-block;
	margin-bottom: 5%;
	height: 250px;
}

.section-profile-page-six .slider-row .profile-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-profile-page-six p {
	margin-left: 10%;
}

.section-body-copy {
	padding: 40px 0;
}

.section-body-copy.show-bg-shadow {
	margin: 30px 0;
}

.section-body-copy .section-header {
	font-weight: 400;
	margin: 0 4% 30px;
}

.section-body-copy a:focus {
	outline: 1px #8D8D8D dashed;
	outline-offset: 3px;
}

.section-body-copy h2.year {
	font-size: 3.6em;
}

.section-body-copy h2.year:not(:first-child) {
	margin-top: 100px;
}

.section-body-copy img {
	max-width: 100%;
	margin: 25px 0;
}

.section-body-copy.quote-block .row blockquote {
	color: #0093d6;
	text-align: center;
	font-size: 3.6em;
}

.section-body-copy.quote-block .row blockquote+p {
	color: #707070;
	text-align: center;
	margin-top: 15px;
}

.section-body-copy .row {
	margin: 0 4%;
}

.section-body-copy .row h2 {
	font-weight: 400;
	line-height: 1.2em;
}

.section-body-copy .row h2.year {
	font-size: 3.6em;
}

.section-body-copy .row h3 {
	line-height: 1.3em;
}

.section-body-copy .row h4 {
	font-weight: 600;
	line-height: 1.3em;
}

.section-body-copy .row h5 {
	font-weight: 400;
	line-height: 1.4em;
}

.section-body-copy .row h6 {
	font-weight: 700;
	line-height: 1.4em;
}

.section-body-copy .row p {
	margin-bottom: 25px;
	line-height: 1.5em;
}

.section-body-copy .row ul,
.section-body-copy .row ol {
	margin-left: 3em;
	margin-bottom: 35px;
	font-size: 20px;
	counter-reset: item;
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
}

.section-body-copy .row ul li,
.section-body-copy .row ol li {
	color: #343434;
	line-height: 1.5em;
	margin: 8px 0;
}

.section-body-copy .row ul li a,
.section-body-copy .row ol li a {
	color: #e5486a;
	text-decoration: underline;
}

.section-body-copy .row ul li a:hover,
.section-body-copy .row ol li a:hover {
	color: #A80025;
}

.section-body-copy .row ol li {
	list-style-type: none;
	position: relative;
}

.section-body-copy .row ol li:before {
	content: counter(item) ".";
	counter-increment: item;
	position: absolute;
	left: -2.5em;
	top: 0;
	width: 2em;
	text-align: right;
	color: #e5486a;
}

.section-body-copy .row .faq-question {
	color: #0093d6;
	font-size: 2.4em;
	margin-top: 50px;
}

.section-body-copy .row .text-button {
	margin-bottom: 30px;
}

.section-body-copy .row .month {
	color: #343434;
	font-weight: 700;
	line-height: 1em;
}

.section-body-copy .row .google-calendar {
	text-align: center;
}

.section-body-copy .row .press-release-list {
	list-style-type: none;
	margin-left: 0;
}

.section-body-copy .row .press-release-list li a {
	color: #e5486a;
	font-size: 1em;
	display: block;
	margin-bottom: 15px;
	text-decoration: none;
}

.section-body-copy .row .press-release-list li a:hover {
	color: #A80025;
}

.section-body-copy .row table {
	padding: 0 0 30px;
	width: 100% !important;
	max-width: 100%;
	border: none;
	border-spacing: 0;
}

.section-body-copy .row table+* {
	clear: both;
}

.section-body-copy .row table caption {
	color: #0093d6;
	text-align: left;
	font-size: 2.4em;
	margin: 30px 0;
}

.section-body-copy .row table p {
	display: inline;
}

.section-body-copy .row table th {
	display: none;
}

.section-body-copy .row table th[colspan="4"] {
	padding-bottom: 25px;
	display: inline-block;
	font-weight: 700;
	border: 0;
}

.section-body-copy .row table tbody {
	width: 100%;
}

.section-body-copy .row table tbody tr {
	width: 100%;
}

.section-body-copy .row table tbody tr td {
	float: left;
	clear: left;
	display: block;
	width: 100%;
	max-width: 300px;
	background-color: white !important;
	border: none !important;
}

.section-body-copy .row table tbody tr td .cell-content {
	font-weight: 700;
}

.section-body-copy .row table tbody tr td .cell-content p {
	font-weight: 700;
	margin-bottom: 5px;
}

.section-body-copy .row table tbody tr td:first-child {
	border-left: 0 !important;
}

.section-body-copy .row table tbody tr td:last-child {
	margin-bottom: 30px;
}

.section-body-copy .row table .cell-label {
	display: inline;
	margin-bottom: 5px;
	padding-right: 8px;
}

.section-body-copy .row .table-footer {
	font-size: 1.5em;
	margin-bottom: 15px;
}

.section-body-copy .row blockquote p {
	font-weight: 700;
	margin: 0px 20px 45px;
	text-align: left;
}

.section-body-copy .row.press-release-row h3 {
	color: #343434;
	font-weight: 700;
	line-height: 1em;
}

.section-body-copy.contact-information .row .col-4 {
	margin-bottom: 40px;
}

.section-body-copy.contact-information .row .col-4 p {
	font-size: 1.8em;
}

.section-body-copy.contact-information .row .col-4 p:last-child {
	margin-bottom: 0;
}

.section-body-copy.contact-information .row .col-4.contact-block {
	border: 1px solid #ccd0d1;
	border-radius: 2em;
	padding: 15px 30px 15px 20px;
	width: auto;
	display: inline-block;
	margin-bottom: 0;
}

.section-body-copy.contact-information .row .col-4.contact-block h4 {
	color: #0093d6;
}

.section-body-copy.story-date {
	padding: 0;
}

.section-body-copy.story-date .row {
	margin: 0px 4%;
}

.section-body-copy.story-date .row p {
	margin: 15px 0;
}

.section-body-copy.story-date+.section-body-copy {
	padding-top: 0;
}

.section-body-copy.fun-fact-container .row {
	text-align: center;
}

.section-body-copy.fun-fact-container .row h3 {
	color: #707070;
	font-size: 2.4em;
	margin-bottom: 20px;
	font-weight: 600;
}

.section-body-copy.fun-fact-container .row p {
	font-size: 3.6em;
	line-height: 1.25em;
}

.section-body-copy.fun-fact-container .row p .blue {
	color: #0093d6;
}

.section-flexible-content {
	padding: 10% 3%;
}

.section-flexible-content+.section-flexible-content {
	padding-top: 0;
	margin-top: -10%;
}

.section-flexible-content+.section-flexible-content h2 {
	margin-top: 10%;
}

.section-flexible-content h2 {
	text-align: center;
	margin-bottom: 35px;
	font-weight: 400;
}

.section-flexible-content .row {
	text-align: center;
	max-width: 1920px;
	margin: 0 auto;
}

.section-flexible-content .row .flexible-content-block {
	text-align: center;
	display: block;
	margin: 15% auto;
	vertical-align: top;
	max-width: 75%;
}

.section-flexible-content .row .flexible-content-block svg {
	display: inline-block;
	width: 65px;
	height: 65px;
	object-fit: contain;
	margin-bottom: 10px;
	fill: #e5486a;
}

.section-flexible-content .row .flexible-content-block .flexible-data {
	font-size: 6em;
	margin-bottom: 10px;
	color: #e5486a;
}

.section-flexible-content .row .flexible-content-block .flexible-title {
	font-size: 2.4em;
	padding-top: 5px;
	width: 100%;
	hyphens: auto;
}

.section-flexible-content .row .flexible-content-block .flexible-bar {
	border-top: 1px solid #ccd0d1;
	display: block;
	margin: 0 auto;
	width: 50%;
}

.section-flexible-content .row .flexible-content-block:nth-child(even) svg {
	fill: #0093d6;
}

.section-flexible-content .row .flexible-content-block:nth-child(even) .flexible-data {
	color: #0093d6;
}

.section-statistics {
	padding: 60px 0;
}

.section-statistics h2 {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #707070;
}

.section-statistics p {
	width: 90%;
	text-align: center;
	margin: 0 auto;
	font-size: 36px;
}

.section-statistics p a {
	color: #0093d6;
}

.section-i-am-a-links {
	padding: 50px 2.4em;
}

.section-i-am-a-links.show-bg-shadow {
	margin: 30px 0;
}

.section-i-am-a-links h2 {
	margin-bottom: 20px;
	font-weight: 400;
}

.section-i-am-a-links p {
	width: 90%;
	margin: 0 auto 60px;
}

.section-i-am-a-links .row {
	margin: 0 4%;
}

.section-i-am-a-links .row .col-2,
.section-i-am-a-links .row .col-3 {
	padding: 0 5px;
}

.section-i-am-a-links .row ul {
	list-style-type: none;
}

.section-i-am-a-links .row ul li {
	text-align: left;
	margin: 6px 0;
}

.section-i-am-a-links .row ul li a {
	color: #e5486a;
	margin-bottom: 5px;
	font-size: 16px;
	display: inline-block;
	text-align: left;
	transition: text-decoration .4s;
	padding-right: 15px;
}

.section-i-am-a-links .row ul li a span {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	opacity: 0;
	transition: opacity .4s;
}

.section-i-am-a-links .row ul li a:hover,
.section-i-am-a-links .row ul li a:focus {
	outline: none;
	text-decoration: underline;
}

.section-i-am-a-links .row ul li a:hover span,
.section-i-am-a-links .row ul li a:focus span {
	position: absolute;
	width: 10px;
	height: 10px;
	margin-left: 5px;
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	top: 55%;
	transform: translate(0, -50%);
	right: 0;
	opacity: 1;
}

.section-campus-portal {
	padding: 40px 0 50px;
}

.section-campus-portal.show-bg-shadow {
	margin: 30px 0;
}

.section-campus-portal .row {
	width: 85%;
	margin: 0 auto;
}

.section-campus-portal .row .col-left {
	width: 100%;
}

.section-campus-portal .row .col-left h2 {
	color: #e5486a;
	margin-bottom: 40px;
	font-weight: 400;
}

.section-campus-portal .row .col-left h3,
.section-campus-portal .row .col-left h4,
.section-campus-portal .row .col-left h5,
.section-campus-portal .row .col-left h6 {
	margin-bottom: 20px;
}

.section-campus-portal .row .col-left p {
	margin-bottom: 30px;
	font-size: 2.2em;
}

.section-campus-portal .row .col-left p a {
	color: #e5486a;
	text-decoration: underline;
}

.section-campus-portal .row .col-left .fine-print {
	color: #707070;
}

.section-campus-portal .row .col-right {
	width: 100%;
	text-align: center;
	margin-top: 100px;
}

.section-campus-portal .row .col-right .dynamic-callout {
	width: 100%;
	margin: 15% auto;
	padding: 50% 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	border-radius: 2em;
}

.section-campus-portal .row .col-right .dynamic-callout .campus-portal-help {
	position: absolute;
	z-index: 101;
	top: 0;
	left: 50%;
	transform: translate(-50%, -30%);
	width: 40%;
}

.section-campus-portal .row .col-right .dynamic-callout .campus-portal-help img {
	width: 100%;
	height: 100%;
}

.section-campus-portal .row .col-right .dynamic-callout a {
	border-radius: 2em;
}

.section-campus-portal .row .col-right .dynamic-callout a .callout-details {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.section-campus-portal .row .col-right .dynamic-callout a .callout-details h3 {
	padding: 2.5% 0;
	margin: 0 4%;
	font-weight: 600;
}

.section-campus-portal .row .col-right .dynamic-callout a .callout-button {
	width: 65%;
	padding: 4%;
	border-radius: 2em;
	text-align: center;
	bottom: -6%;
}

.section-campus-portal .row .col-right .dynamic-callout a .callout-button p {
	font-weight: 700;
}

.section-campus-portal .row .col-right .dynamic-callout:hover .callout-button {
	color: #e5486a;
}

.section-campus-portal .row .col-right .dynamic-callout:focus-within .color-overlay {
	outline: none;
}

.section-campus-portal .row .col-right .dynamic-callout:focus-within .color-overlay .callout-button {
	box-shadow: 4px 6.5px 22px 0px rgba(0,0,0,0.4);
}

.section-campus-portal .row .col-right .dynamic-callout:focus-within .color-overlay .callout-button p {
	color: #e5486a;
}

.a-z-container {
	background-color: #fff;
	min-height: 50vh;
}

.a-z-container h1 {
	margin: 0 7%;
	top: 20px;
}

.a-z-container .no-results {
	font-size: 18px;
	text-align: center;
	margin: 50px 0;
}

.a-z-row {
	top: 60px;
	margin-bottom: 100px;
}

.a-z-row .views-element-container .a-z-container h1 {
	display: none;
}

.a-z-row .views-element-container .a-z-row {
	padding: 0;
	box-shadow: none;
	border: 0;
	margin: 0;
	top: 0;
	border-radius: 0;
	background-color: inherit;
}

.glossary-filter {
	display: none;
	border: 1px solid #707070;
	height: 26px;
	left: 50%;
	transform: translate(-50%);
	top: -12px;
	background-color: white;
}

.glossary-filter span {
	border-right: 1px solid #707070;
	width: 24px;
	display: table-cell;
}

.glossary-filter span:last-child {
	border-right: 0;
}

.glossary-filter span a {
	display: block;
	height: 100%;
	width: 100%;
}

.glossary-filter span a .glossary-letter {
	text-align: center;
	font-size: 1.8em;
	color: #343434;
	vertical-align: middle;
	height: 26px;
}

.glossary-filter span a:hover {
	background-color: #e5486a;
}

.glossary-filter span a:hover .glossary-letter {
	color: #fff;
}

.glossary-filter span a[disabled="disabled"] {
	background-color: #f2f2f2;
	cursor: default;
}

.glossary-filter span a[disabled="disabled"] .glossary-letter {
	color: #6E6E6E;
}

.glossary-filter-mobile {
	display: inline-block;
	left: 7%;
	width: 86%;
}

.glossary-filter-mobile select {
	font-size: 16px;
	height: 40px;
	width: 100%;
	padding-left: 10px;
	border: 1px solid #ccd0d1;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url("/themes/custom/baltimore/img/down-arrow-gray.svg") 95%/15% no-repeat;
	background-size: 10px;
}

.glossary-result {
	margin: 50px 7%;
}

.glossary-result a {
	display: block;
}

.glossary-result a h2 {
	color: #343434;
	font-weight: 600;
	margin: 30px 0 20px;
	transition: color .4s;
}

.glossary-result a h2.alt {
	color: #707070;
}

.glossary-result a h2 svg {
	margin-left: 10px;
}

.glossary-result a p {
	margin-bottom: 30px;
}

.glossary-result a .a-z-link {
	color: #e5486a;
	font-weight: 700;
	text-decoration: underline;
	font-size: 16px;
	word-break: break-all;
	margin: 25px 0;
}

.glossary-result a .a-z-link span {
	display: inline-block;
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-repeat: no-repeat;
	width: 10px;
	height: 10px;
	background-position: center;
	margin-left: 1%;
	transition: margin-left .4s;
}

.glossary-result a:hover h2 {
	color: #e5486a;
}

.glossary-result a:hover .a-z-link span {
	margin-left: 15%;
}

.glossary-result hr {
	width: 30%;
}

.search-result-wrapper {
	transition: max-height .4s,padding .4s;
	max-height: 0;
	padding: 0;
	margin: 0 auto;
	width: 85%;
	padding: 0;
	border-top-left-radius: 2em;
	border-top-right-radius: 2em;
	background-color: #fff;
}

.search-result-wrapper .close-search-results {
	display: none;
}

.search-result-wrapper .search-result-page h3 {
	display: none;
}

.search-result-wrapper #search-container .search-temp-message {
	display: none;
}

.search-result-wrapper .controls {
	display: none;
}

.search-active .search-result-wrapper {
	background-color: white;
	padding-top: 50px;
	padding-bottom: 85px;
	display: block;
	max-height: 5000px;
	z-index: 4;
}

.search-active .search-result-wrapper .close-search-results {
	display: block;
	color: #e5486a;
	position: absolute;
	right: 7.5%;
	top: 15px;
	font-size: 15px;
	z-index: 11;
}

.search-active .search-result-wrapper .close-search-results span {
	background-image: url("/themes/custom/baltimore/img/red-x.svg");
	background-repeat: no-repeat;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 5px;
	margin-bottom: -3px;
}

.search-active .search-result-wrapper #search-container .search-temp-message {
	display: block;
}

.search-active .search-result-wrapper .search-result-page {
	margin-bottom: 25px;
}

.search-active .search-result-wrapper .search-result-page h3 {
	display: block;
	font-weight: 400;
	font-size: 15px;
	margin-left: 5%;
}

.search-active .search-result-wrapper #search-results {
	width: 90%;
	margin: 0 auto;
	list-style: none;
}

.search-active .search-result-wrapper #search-results li {
	border-bottom: 1px solid #C3C3C3;
	margin-bottom: 45px;
	padding-bottom: 25px;
}

.search-active .search-result-wrapper #search-results li h4 {
	color: #343434;
	font-weight: 600;
	max-width: 93%;
}

.search-active .search-result-wrapper #search-results li h4 span {
	background-image: url("/themes/custom/baltimore/img/pdf-icon.svg");
	height: 18px;
	width: 18px;
	background-repeat: no-repeat;
	background-position: center center;
	display: inline-block;
	margin-left: 10px;
}

.search-active .search-result-wrapper #search-results li span {
	display: none;
}

.search-active .search-result-wrapper #search-results li:hover {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-position-x: 99%;
	background-position-y: top;
	background-repeat: no-repeat;
	background-size: 16px;
}

.search-active .search-result-wrapper #search-results li:hover h4 {
	color: #e5486a;
}

.search-active .search-result-wrapper .controls {
	display: block;
	position: absolute;
	left: 48%;
	padding: 25px 0 50px;
	transform: translate(-50%, 0);
}

.search-active .search-result-wrapper .controls .button-prev,
.search-active .search-result-wrapper .controls .button-next {
	font-size: 1.8em;
	font-weight: 700;
	color: #707070;
	border: 0;
	background: none;
	border-bottom: 1px solid #707070;
	padding-bottom: 3px;
	margin: 0 10px;
	cursor: pointer;
}

.search-active .search-result-wrapper .controls .button-prev:hover,
.search-active .search-result-wrapper .controls .button-next:hover {
	color: #e5486a;
	border-bottom: 1px solid #e5486a;
}

.search-active .search-result-wrapper .controls .button-next {
	width: 43px;
	text-align: left;
	transition: width .4s;
}

.search-active .search-result-wrapper .controls .button-next:hover {
	width: 60px;
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-position-x: 99%;
	background-position-y: center;
	background-repeat: no-repeat;
	background-size: 12px;
}

.search-active .search-result-wrapper .controls .button-prev {
	width: 77px;
	text-align: right;
	transition: width .4s;
}

.search-active .search-result-wrapper .controls .button-prev:hover {
	width: 95px;
	background-image: url("/themes/custom/baltimore/img/left-arrow.svg");
	background-position-x: 1%;
	background-position-y: center;
	background-repeat: no-repeat;
	background-size: 12px;
}

.images-section {
	padding: 40px 0;
}

.images-section h1 {
	margin: 0 4% 30px;
}

.images-section .image-blocks {
	margin-bottom: 40px;
}

.images-section .image-blocks a {
	display: block;
}

.images-section .image-blocks .image-block {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 450px;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
}

.error-message {
	display: none;
	font-size: 2em;
}

.contact-forms {
	font-size: 2em;
}

.contact-forms a {
	color: #0093d6;
}

.contact-forms h2 {
	font-size: 1.8em;
}

.contact-forms p {
	font-size: 1em;
}

.contact-forms .background-square-links-bottom {
	display: none;
}

.contact-forms.show-bg-shadow {
	margin: 30px 0 80px;
}

.contact-forms>div {
	margin: 40px 3% 80px;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-radius: 12px;
	padding: 50px 7%;
}

.contact-forms>div h2 {
	color: #e5486a;
}

.contact-forms>div .instructions {
	margin-bottom: 50px;
}

.contact-forms>div form>div:not(:first-child) {
	margin-top: 50px;
}

.contact-forms>div form>div:not(:first-child).preview {
	margin-top: 0;
}

.contact-forms label {
	display: inline-block;
	margin-bottom: 7px;
}

.contact-forms label.form-required::after {
	content: "*";
	color: #e5486a;
}

.contact-forms div.address-container-inline>.form-item,
.contact-forms .field--type-datetime div.form-item {
	display: block;
	margin-right: 0;
}

.contact-forms div.field--type-address summary {
	font-weight: 600;
}

.contact-forms div.field--type-address details .js-form-item {
	margin-bottom: 20px;
}

.contact-forms div.address-container-inline+div,
.contact-forms div.field--type-address+div,
.contact-forms .field--type-datetime+div {
	clear: both;
}

.contact-forms fieldset {
	border: none;
}

.contact-forms input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-forms select,
.contact-forms textarea {
	width: 100%;
	display: block;
	border: 1px solid #ccd0d1;
	padding: 7px 15px;
	border-radius: 4px;
	font-family: "proxima-nova",sans-serif;
	transition: border-color 0.3s;
}

.contact-forms input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid,
.contact-forms select:invalid,
.contact-forms textarea:invalid {
	box-shadow: none;
}

.contact-forms input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
.contact-forms input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid:focus,
.contact-forms input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):valid:focus,
.contact-forms select:focus,
.contact-forms select:invalid:focus,
.contact-forms select:valid:focus,
.contact-forms textarea:focus,
.contact-forms textarea:invalid:focus,
.contact-forms textarea:valid:focus {
	outline: none;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-color: #0093d6;
}

.contact-forms input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]).error,
.contact-forms select.error,
.contact-forms textarea.error {
	border-color: #e5486a;
}

.contact-forms input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]).error:focus,
.contact-forms select.error:focus,
.contact-forms textarea.error:focus {
	border-color: #0093d6;
}

.contact-forms input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]).error+.description,
.contact-forms select.error+.description,
.contact-forms textarea.error+.description {
	color: #e5486a;
}

.contact-forms .form-managed-file {
	font-size: 15px;
}

.contact-forms .form-managed-file input {
	font-size: 14px;
}

.contact-forms select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url("/themes/custom/baltimore/img/caret-down.svg") 96%/15% no-repeat;
	background-size: 16px;
}

.contact-forms .js-form-type-radio,
.contact-forms .js-form-type-checkbox {
	display: block;
	margin-bottom: 10px;
}

.contact-forms .js-form-type-radio label,
.contact-forms .js-form-type-checkbox label {
	margin-left: -20px;
	color: #343434;
}

.contact-forms .js-form-type-radio label::before,
.contact-forms .js-form-type-checkbox label::before {
	content: "";
	display: block;
	float: left;
	height: 18px;
	width: 18px;
	border: 1px solid #ccd0d1;
	border-radius: 4px;
	margin-right: 8px;
	margin-bottom: -3px;
}

.contact-forms .js-form-type-radio label::after,
.contact-forms .js-form-type-checkbox label::after {
	content: "";
	display: block;
	float: left;
	height: 14px;
	width: 14px;
	background-color: #e5486a;
}

.contact-forms .js-form-type-radio input,
.contact-forms .js-form-type-checkbox input {
	opacity: 0;
}

.contact-forms .js-form-type-radio input+label::after,
.contact-forms .js-form-type-checkbox input+label::after {
	content: none;
}

.contact-forms .js-form-type-radio input:checked+label::after,
.contact-forms .js-form-type-checkbox input:checked+label::after {
	content: "";
	position: absolute;
	left: 3px;
	top: 3px;
	border-radius: 3px;
}

.contact-forms .js-form-type-radio input:focus+label::before,
.contact-forms .js-form-type-checkbox input:focus+label::before {
	outline: #0093d6 auto 5px;
}

.contact-forms .js-form-type-checkbox label::after {
	content: "";
	display: inline-block;
	height: 10px;
	width: 18px;
	border-left: 3px solid #e5486a;
	border-bottom: 3px solid #e5486a;
	transform: rotate(-45deg);
	border-radius: 0;
	background-color: inherit;
}

.contact-forms .js-form-type-checkbox input:checked+label::after {
	content: "";
	position: absolute;
	left: 1px;
	top: 1px;
	border-radius: 0px;
}

.contact-forms legend {
	margin-bottom: 20px;
}

.contact-forms .description {
	margin-top: 10px;
	font-size: 0.7em;
}

.contact-forms .form-actions {
	bottom: -80px;
	display: inline-block;
	max-width: 100%;
	z-index: 2;
	left: 50%;
	transform: translate(-50%);
}

.contact-forms .form-actions .ajax-progress {
	position: absolute;
	bottom: -50px;
	width: 100%;
	display: block;
}

.contact-forms .form-actions input[type="submit"] {
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-radius: 8px;
	padding: 20px;
	border: 0;
	background-color: white;
	transition: padding .4s,color .4s;
	cursor: pointer;
	-webkit-appearance: unset;
}

.contact-forms .form-actions input[type="submit"][data-drupal-selector="edit-preview"] {
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.contact-forms .form-actions input[type="submit"].button--primary {
	padding: 20px 60px 20px 20px;
}

.contact-forms .form-actions input[type="submit"].button--primary+span {
	width: 16px;
	height: 16px;
	position: absolute;
	display: block;
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-repeat: no-repeat;
	background-position: center;
	right: 20px;
	top: 50%;
	margin-top: -8px;
}

.contact-forms .form-actions input[type="submit"]:hover {
	padding: 20px 40px;
	color: #e5486a;
}

.contact-forms .form-actions input[type="submit"]:hover.button--primary {
	padding: 20px 80px 20px 20px;
}

.contact-forms .error-message {
	display: block;
	margin-bottom: 50px;
	color: #e5486a;
}

.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"])[required],
.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid,
.contact-forms .error-message+div select[required],
.contact-forms .error-message+div select:invalid,
.contact-forms .error-message+div textarea[required],
.contact-forms .error-message+div textarea:invalid {
	border-color: #e5486a;
}

.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"])[required]:valid,
.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid:valid,
.contact-forms .error-message+div select[required]:valid,
.contact-forms .error-message+div select:invalid:valid,
.contact-forms .error-message+div textarea[required]:valid,
.contact-forms .error-message+div textarea:invalid:valid {
	border-color: #ccd0d1;
}

.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"])[required]:focus,
.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"])[required]:valid:focus,
.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid:focus,
.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid:valid:focus,
.contact-forms .error-message+div select[required]:focus,
.contact-forms .error-message+div select[required]:valid:focus,
.contact-forms .error-message+div select:invalid:focus,
.contact-forms .error-message+div select:invalid:valid:focus,
.contact-forms .error-message+div textarea[required]:focus,
.contact-forms .error-message+div textarea[required]:valid:focus,
.contact-forms .error-message+div textarea:invalid:focus,
.contact-forms .error-message+div textarea:invalid:valid:focus {
	border-color: #0093d6;
}

.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"])[required]+.description,
.contact-forms .error-message+div input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid+.description,
.contact-forms .error-message+div select[required]+.description,
.contact-forms .error-message+div select:invalid+.description,
.contact-forms .error-message+div textarea[required]+.description,
.contact-forms .error-message+div textarea:invalid+.description {
	color: #e5486a;
}

.contact-forms form .error-message {
	margin-bottom: 10px;
}

.contact-forms form .form-item--error-message,
.contact-forms form .datetime-field+div {
	color: #e5486a;
	font-size: 20px;
	margin-top: 10px;
	clear: both;
}

.contact-forms .preview {
	background: #f2f2f2;
	border-radius: 12px;
	padding: 20px;
}

.contact-forms .preview div {
	font-weight: 700;
	margin-bottom: 10px;
}

.contact-forms .preview div div {
	font-weight: 400;
	padding-right: 10px;
}

.contact-forms .preview div .address {
	font-weight: 700;
}

.contact-forms .status-message {
	border: 1px solid #39E1FF;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 50px;
	color: #707070;
	border-left-color: #0093d6;
	border-bottom-color: #1AB6E9;
	border-top-color: #2ACCF4;
	text-align: center;
}

.contact-forms .status-message span {
	background-image: url("/themes/custom/baltimore/img/ic_thumb_up_24px.svg");
	display: inline-block;
	margin-right: 20px;
	margin-bottom: -10px;
	width: 34px;
	height: 34px;
}

.user-login-form {
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	background: #fff;
	margin: 40px auto 80px;
	border-radius: 12px;
	padding: 50px 7% 25em;
	max-width: 85%;
	font-size: 2em;
}

.user-login-form a {
	color: #0093d6;
}

.user-login-form>a {
	font-size: 26px;
	font-weight: 600;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-radius: 8px;
	padding: 20px;
	border: 0;
	background-color: white;
	transition: padding .4s,color .4s;
	cursor: pointer;
}

.user-login-form>a:hover {
	padding: 20px 40px;
	color: #e5486a;
}

.user-login-form .js-form-item {
	position: absolute;
	top: 10em;
}

.user-login-form .js-form-item,
.user-login-form .form-actions {
	opacity: 0.1;
}

.user-login-form .js-form-item+.js-form-item {
	top: 18em;
}

.user-login-form label {
	display: inline-block;
	margin-bottom: 7px;
	font-weight: 600;
}

.user-login-form label.form-required::after {
	content: "*";
	color: #e5486a;
}

.user-login-form fieldset {
	border: none;
}

.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.user-login-form select,
.user-login-form textarea {
	width: 100%;
	display: block;
	border: 1px solid #ccd0d1;
	padding: 7px 15px;
	border-radius: 4px;
	font-family: "proxima-nova",sans-serif;
	transition: border-color 0.3s;
}

.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid,
.user-login-form select:invalid,
.user-login-form textarea:invalid {
	box-shadow: none;
}

.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):invalid:focus,
.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):valid:focus,
.user-login-form select:focus,
.user-login-form select:invalid:focus,
.user-login-form select:valid:focus,
.user-login-form textarea:focus,
.user-login-form textarea:invalid:focus,
.user-login-form textarea:valid:focus {
	outline: none;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-color: #0093d6;
}

.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]).error,
.user-login-form select.error,
.user-login-form textarea.error {
	border-color: #e5486a;
}

.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]).error:focus,
.user-login-form select.error:focus,
.user-login-form textarea.error:focus {
	border-color: #0093d6;
}

.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]).error+.description,
.user-login-form select.error+.description,
.user-login-form textarea.error+.description {
	color: #e5486a;
}

.user-login-form legend {
	margin-bottom: 20px;
}

.user-login-form .description {
	margin-top: 10px;
	margin-bottom: 25px;
	font-size: 0.7em;
}

.user-login-form .form-actions {
	top: 26em;
	position: absolute;
	max-width: 100%;
	z-index: 2;
	left: 50%;
	transform: translate(-50%);
}

.user-login-form .form-actions .ajax-progress {
	position: absolute;
	bottom: -50px;
	width: 100%;
	display: block;
}

.user-login-form .form-actions input[type="submit"] {
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-radius: 8px;
	padding: 20px;
	border: 0;
	background-color: white;
	transition: padding .4s,color .4s;
	cursor: pointer;
	-webkit-appearance: unset;
}

.user-login-form .form-actions input[type="submit"][data-drupal-selector="edit-preview"] {
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.user-login-form .form-actions input[type="submit"].button--primary {
	padding: 20px 60px 20px 20px;
}

.user-login-form .form-actions input[type="submit"].button--primary+span {
	width: 16px;
	height: 16px;
	position: absolute;
	display: block;
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-repeat: no-repeat;
	background-position: center;
	right: 20px;
	top: 50%;
	margin-top: -8px;
}

.user-login-form .form-actions input[type="submit"]:hover {
	padding: 20px 40px;
	color: #e5486a;
}

.user-login-form .form-actions input[type="submit"]:hover.button--primary {
	padding: 20px 80px 20px 20px;
}

.user-login-form .error-message {
	display: block;
	margin-bottom: 50px;
	color: #e5486a;
	margin-bottom: 10px;
}

.user-login-form .form-item--error-message {
	color: #e5486a;
	font-size: 20px;
	margin-top: 10px;
	clear: both;
}

.view-alerts {
	background-color: #A6253A;
	transition: background-color .4s;
	height: 80px;
	max-height: 80px;
	transition: max-height .4s;
	z-index: 99;
}

.view-alerts:hover {
	background-color: #951629;
}

.view-alerts .alert-close {
	display: none;
	background-image: url("/themes/custom/baltimore/img/up-arrow.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 9px;
	background-position-x: 95%;
	border-bottom: 2px solid #fff;
	color: #fff;
	font-size: 16px;
	width: 80px;
}

.view-alerts .alert-icon {
	background-image: url("/themes/custom/baltimore/img/alert.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 3%;
	top: 50%;
	transform: translate(0, -50%);
}

.view-alerts .view-header {
	color: #fff;
	font-size: 20px;
	padding-top: 30px;
	padding-left: 20%;
	height: 100%;
	display: block;
}

.view-alerts .view-header span {
	display: inline-block;
	background-image: url("/themes/custom/baltimore/img/down-arrow-white.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 11px;
	height: 11px;
	margin-left: 7px;
}

.view-alerts .view-content {
	display: inline-block;
	transition: max-height .4s,padding .4s,box-shadow .6s;
	text-align: left;
	width: 100%;
	background-color: #fff;
	z-index: 999;
	margin-top: 0;
	box-shadow: none;
}

.view-alerts .view-content>div {
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s,padding .2s,box-shadow .2s,overflow 0s ease .2s;
}

.view-alerts .view-content .views-row {
	display: table;
	width: 100%;
	margin-bottom: 60px;
}

.view-alerts .view-content .views-row>div {
	padding: 0 30px 0 45px;
}

.view-alerts .view-content .views-row>div.alert-left h2 {
	font-weight: 400;
	line-height: 1.2em;
}

.view-alerts .view-content .views-row>div.alert-left h3 {
	color: #e5486a;
	line-height: 1.3em;
}

.view-alerts .view-content .views-row>div.alert-left h4 {
	color: #e5486a;
	font-weight: 600;
	line-height: 1.3em;
}

.view-alerts .view-content .views-row>div.alert-left h5 {
	color: #0093d6;
	font-weight: 400;
	line-height: 1.4em;
}

.view-alerts .view-content .views-row>div.alert-left h6 {
	font-weight: 700;
	line-height: 1.4em;
}

.view-alerts .view-content .views-row>div.alert-left p,
.view-alerts .view-content .views-row>div.alert-left h2,
.view-alerts .view-content .views-row>div.alert-left h3,
.view-alerts .view-content .views-row>div.alert-left h4,
.view-alerts .view-content .views-row>div.alert-left h5,
.view-alerts .view-content .views-row>div.alert-left h6 {
	margin-bottom: 15px;
}

.view-alerts .view-content .views-row>div.alert-left ul,
.view-alerts .view-content .views-row>div.alert-left ol {
	margin-left: 3em;
	margin-bottom: 15px;
	font-size: 20px;
	counter-reset: item;
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
}

.view-alerts .view-content .views-row>div.alert-left ul li,
.view-alerts .view-content .views-row>div.alert-left ol li {
	color: #343434;
	line-height: 1.5em;
	margin: 5px 0;
}

.view-alerts .view-content .views-row>div.alert-left ul li a,
.view-alerts .view-content .views-row>div.alert-left ol li a {
	color: #e5486a;
	text-decoration: underline;
}

.view-alerts .view-content .views-row>div.alert-left ul li a:hover,
.view-alerts .view-content .views-row>div.alert-left ol li a:hover {
	color: #A80025;
}

.view-alerts .view-content .views-row>div.alert-left ol li {
	list-style-type: none;
	position: relative;
}

.view-alerts .view-content .views-row>div.alert-left ol li:before {
	content: counter(item) ".";
	counter-increment: item;
	position: absolute;
	left: -2.5em;
	top: 0;
	width: 2em;
	text-align: right;
	color: #e5486a;
}

.view-alerts .view-content .views-row>div.alert-right {
	padding: 20px 30px 20px 45px;
}

.view-alerts .view-content .views-row>div.alert-right p {
	font-size: 14px;
	color: #707070;
}

.view-alerts .view-content .views-row.close {
	width: 100%;
	position: absolute;
	top: -64px;
}

.view-alerts .view-content .views-row.close div {
	display: table-cell;
}

.view-alerts .view-content .views-row.close div.alert-left {
	border: none;
}

.view-alerts .view-content .views-row.close div.alert-right {
	width: 50px;
	padding: 0 30px 0 45px;
}

.view-alerts .view-content .views-row .alert-level {
	position: absolute;
	top: -6px;
	left: 0;
	background-image: url("/themes/custom/baltimore/img/outline-info-24px.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 32px;
	height: 40px;
	background-size: 20px;
	background-color: #E19551;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

.view-alerts .view-content .views-row .alert-level.low {
	background-color: #4DA94E;
}

.view-alerts .view-content .views-row .alert-level.high {
	background-color: #A6253A;
}

.view-alerts .view-content .views-row .views-field-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

.view-alerts .view-content .views-row .views-field-body {
	margin-bottom: 20px;
}

.view-alerts .view-content .views-row .views-field-changed,
.view-alerts .view-content .views-row .views-field-changed-1 {
	display: none;
}

.view-alerts.active .alert-close {
	display: inline-block;
}

.view-alerts.active .alert-icon {
	width: 70px;
	height: 70px;
	left: 50%;
	top: 65%;
	transform: translate(-50%);
	z-index: 1000;
}

.view-alerts.active .view-content {
	margin-top: 80px;
	box-shadow: 2px 6px 14px -3px rgba(0,0,0,0.1);
}

.view-alerts.active .view-content>div {
	padding: 60px 0 0;
	max-height: 5000px;
	margin-bottom: 70px;
	overflow: visible;
}

.section-image-50-50 {
	padding: 40px 0;
}

.section-image-50-50 h2 {
	margin-bottom: 30px;
	margin-left: 5%;
	font-weight: 400;
}

.section-image-50-50 .row {
	padding: 0 5%;
}

.section-image-50-50 .row .col-left,
.section-image-50-50 .row .col-right {
	height: 100%;
	width: 100%;
}

.section-image-50-50 .row .col-left .image-50-50,
.section-image-50-50 .row .col-right .image-50-50 {
	min-height: 250px;
	width: 100%;
	margin: 40px 0;
	background-size: cover;
	background-position: center center;
}

.section-image-50-50 .row .col-left h2,
.section-image-50-50 .row .col-right h2 {
	padding: 0;
	margin: 0;
}

.section-image-50-50 .row .col-left h3,
.section-image-50-50 .row .col-right h3 {
	color: #e5486a;
	line-height: 1.3em;
}

.section-image-50-50 .row .col-left h4,
.section-image-50-50 .row .col-right h4 {
	color: #e5486a;
	font-weight: 600;
	line-height: 1.3em;
}

.section-image-50-50 .row .col-left h5,
.section-image-50-50 .row .col-right h5 {
	color: #0093d6;
	font-weight: 400;
	line-height: 1.4em;
}

.section-image-50-50 .row .col-left h6,
.section-image-50-50 .row .col-right h6 {
	font-weight: 700;
	line-height: 1.4em;
}

.section-image-50-50 .row .col-left h2,
.section-image-50-50 .row .col-left h3,
.section-image-50-50 .row .col-left h4,
.section-image-50-50 .row .col-left h5,
.section-image-50-50 .row .col-left h6,
.section-image-50-50 .row .col-right h2,
.section-image-50-50 .row .col-right h3,
.section-image-50-50 .row .col-right h4,
.section-image-50-50 .row .col-right h5,
.section-image-50-50 .row .col-right h6 {
	margin-bottom: 25px;
}

.section-image-50-50 .row .col-left p,
.section-image-50-50 .row .col-right p {
	margin-bottom: 25px;
	line-height: 1.5em;
}

.section-image-50-50 .row .col-left a,
.section-image-50-50 .row .col-right a {
	color: #e5486a;
	text-decoration: underline;
}

.section-image-50-50 .row .col-left ul,
.section-image-50-50 .row .col-left ol,
.section-image-50-50 .row .col-right ul,
.section-image-50-50 .row .col-right ol {
	margin-left: 4em;
	margin-bottom: 25px;
	font-size: 20px;
	counter-reset: item;
}

.section-image-50-50 .row .col-left ul li,
.section-image-50-50 .row .col-left ol li,
.section-image-50-50 .row .col-right ul li,
.section-image-50-50 .row .col-right ol li {
	color: #343434;
	line-height: 1.5em;
	margin: 8px 0;
}

.section-image-50-50 .row .col-left ul li a,
.section-image-50-50 .row .col-left ol li a,
.section-image-50-50 .row .col-right ul li a,
.section-image-50-50 .row .col-right ol li a {
	color: #e5486a;
	text-decoration: underline;
}

.section-image-50-50 .row .col-left ul li a:hover,
.section-image-50-50 .row .col-left ol li a:hover,
.section-image-50-50 .row .col-right ul li a:hover,
.section-image-50-50 .row .col-right ol li a:hover {
	color: #A80025;
}

.section-image-50-50 .row .col-left ol li,
.section-image-50-50 .row .col-right ol li {
	list-style-type: none;
	position: relative;
}

.section-image-50-50 .row .col-left ol li:before,
.section-image-50-50 .row .col-right ol li:before {
	content: counter(item) ".";
	counter-increment: item;
	position: absolute;
	left: -2.5em;
	top: 0;
	width: 2em;
	text-align: right;
	color: #e5486a;
}

.section-image-50-50.show-bg-shadow {
	margin: 30px 0;
}

.cal-body {
	padding: 25px;
	margin: 25px 0;
}

.cal-body .cal-cover.active {
	position: absolute;
	width: 105%;
	left: -5%;
	height: 100%;
	z-index: 2;
	background-color: rgba(255,255,255,0.92);
}

.cal-body .cal-header {
	border-bottom: 1px solid #ccd0d1;
	padding-bottom: 20px;
	z-index: 1;
}

.cal-body .cal-header button {
	background-color: #fff;
	padding: 10px 40px;
	border-radius: 2em;
	font-size: 1rem;
	font-weight: 700;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	margin-bottom: 10px;
	border: 0;
}

.cal-body .cal-header .cal-month {
	font-weight: 600;
	font-size: 2.5rem;
	margin: 10px 0 40px;
}

.cal-body .cal-header .cal-month::after {
	content: "\A";
	white-space: pre;
}

.cal-body .cal-header label {
	display: block;
	margin-bottom: 30px;
	font-size: 1rem;
	background-color: transparent;
	background-image: none;
	background-repeat: no-repeat;
	background-size: 22px;
	background-position-x: 0px;
}

.cal-body .cal-header label .cal-name {
	margin-left: 10px;
	color: #343434;
	top: 2px;
}

.cal-body .cal-header label.checked {
	background-image: url("/themes/custom/baltimore/img/checkmark-white.svg");
}

.cal-body .cal-header label::before {
	content: "";
	display: block;
	float: left;
	height: 20px;
	width: 20px;
	border-radius: 4px;
	margin-right: -18px;
	margin-bottom: -3px;
	border-width: 1px;
	border-style: solid;
	border-color: inherit;
}

.cal-body .cal-header label::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 19px;
	width: 0px;
	border-left-style: solid;
	border-bottom-style: solid;
	border-left-width: 22px;
	border-bottom-width: 3px;
	border-left-color: inherit;
	border-bottom-color: inherit;
	border-radius: 4px;
	background-color: inherit;
	z-index: -1;
}

.cal-body .cal-header .cal-picker-input {
	margin-right: 10px;
	opacity: 0;
}

.cal-body .cal-header label::after {
	content: none;
}

.cal-body .cal-header label.checked::after {
	content: "";
	position: absolute;
}

.cal-body .cal-header .cal-back,
.cal-body .cal-header .cal-next {
	background-image: url("/themes/custom/baltimore/img/left-caret-black.svg");
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	display: inline-block;
	background-size: contain;
	top: -5px;
}

.cal-body .cal-header .cal-back span,
.cal-body .cal-header .cal-next span {
	visibility: hidden;
}

.cal-body .cal-header .cal-back {
	margin: 0 28px 0 25px;
}

.cal-body .cal-header .cal-next {
	margin: 0 0 0 3px;
	transform: rotate(180deg);
}

.cal-body .cal-show-past-events {
	font-size: 1.125rem;
	text-align: center;
	display: block;
	border-bottom: 1px solid #ccd0d1;
	padding: 25px 0;
	color: #e5486a;
	font-weight: 600;
}

.cal-body table thead {
	display: none;
}

.cal-body table tbody tr td {
	display: inline;
}

.cal-body table tbody tr td .cal-content {
	margin: 20px 0;
	padding: 15px 0;
	border-bottom: 1px solid #DEDEDE;
}

.cal-body table tbody tr td .cal-content .cal-day-text {
	font-size: 1.25rem;
	font-weight: 700;
	display: block;
	margin-bottom: 25px;
}

.cal-body table tbody tr td .cal-content .cal-day-number {
	display: none;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul {
	list-style-position: inside;
	list-style: none;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li {
	margin-bottom: 25px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li svg,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li svg {
	width: 16px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li svg path,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li svg path {
	fill: inherit;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li a,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a {
	color: #343434;
	font-weight: 700;
	font-size: 1rem;
	top: -2px;
	margin-left: 7px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li a .cal-event-time-value,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a .cal-event-time-value {
	font-size: .875rem;
	font-weight: 400;
	margin-right: 3px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li a .cal-event-summary-value,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a .cal-event-summary-value {
	display: inline-block;
	width: 70%;
	vertical-align: text-top;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail {
	border-radius: 8px;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	width: 100%;
	padding: 45px 50px 55px;
	position: absolute;
	left: 0;
	background-color: #fff;
	z-index: 101;
	margin-top: 40px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .close-cal-modal,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .close-cal-modal {
	width: 36px;
	height: 36px;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid #343434;
	position: absolute;
	top: -16px;
	right: -9%;
	transform: translate(-50%);
	text-align: center;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	cursor: pointer;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .close-cal-modal svg,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .close-cal-modal svg {
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	transform: translate(-50%, -50%);
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .close-cal-modal svg path,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .close-cal-modal svg path {
	fill: #e5486a;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail svg,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail svg {
	width: 24px;
	position: absolute;
	margin-top: 2px;
	left: 25px;
	opacity: 1 !important;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail svg path,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail svg path {
	fill: inherit;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail h3,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail h3 {
	font-size: 1.25rem;
	margin-bottom: 20px;
	padding-left: 15px;
	color: #343434;
	text-indent: 0px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-date,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-where,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-desc,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-date,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-where,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-desc {
	font-size: 1rem;
	padding-left: 15px;
	color: #343434;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-date a,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-time a,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-where a,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-desc a,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-date a,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-time a,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-where a,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-desc a {
	font-size: 1rem;
	display: inline-block;
	top: auto;
	overflow: visible;
	font-weight: 400;
	margin: 0;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-date,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-date {
	margin-bottom: 5px;
	display: block;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-where,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-desc,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-where,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-desc {
	margin: 20px 0;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-desc,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-desc {
	white-space: pre-wrap;
	overflow: hidden;
	padding-left: 15px;
	text-indent: 0;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-time {
	display: block;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail p .cal-event-link,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail p .cal-event-link {
	color: #e5486a;
	top: auto;
	margin: 0;
	margin-left: 15px;
	font-size: 1.25rem;
	padding-bottom: 3px;
	padding-right: 30px;
	text-decoration: none;
	border-bottom: 2px solid #e5486a;
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: 100% 45%;
	display: inline-block;
	font-weight: 700;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li {
	background-color: transparent;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li {
	margin: 0 10px 25px 0;
	text-indent: -7px;
	border-radius: 2em;
	padding: 10px 15px;
	background-image: none;
	box-shadow: inset 0 0 0 99999px rgba(255,255,255,0.5);
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a {
	color: #343434;
	font-weight: 700;
	margin-left: 7px;
	top: auto;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-date {
	padding-left: 20px;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail p .cal-event-link {
	margin-left: 17px;
	padding-left: 7px;
}

.cal-body table tbody tr td.cal-date-past {
	display: none;
}

.cal-body table tbody tr td.cal-date-past .cal-content .cal-daily-events ul li a {
	color: #343434;
}

.cal-body table tbody tr td.cal-date-past.hidden {
	display: inline;
}

.cal-body table tbody tr td.cal-date-past.hidden.no-events {
	display: none;
}

.cal-body table tbody tr td .cal-day-show-more {
	display: none;
}

.cal-body table tbody tr td.cal-today {
	display: inline;
}

.cal-body table tbody tr td.cal-today .cal-content .cal-day-number {
	background-image: linear-gradient(to right, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
	color: #fff;
	font-weight: 700;
}

.cal-body table tbody tr td.cal-today .cal-content .cal-daily-events ul li a {
	color: #343434;
}

.cal-body table tbody tr td.cal-today.cal-day-expandable .cal-day-show-more {
	display: none;
}

.cal-body table tbody tr td.no-events {
	display: none;
}

.cal-body table tbody tr td:last-child {
	border-right: none;
}

.cal-body table tbody tr td.cal-day-expandable .cal-day-show-more {
	display: none;
}

.cal-body table tbody tr td:not([data-cal-date]) {
	display: none;
}

.cal-body .cal-subscribe {
	font-size: 1rem;
}

.cal-body .cal-subscribe ul {
	list-style: none;
}

.cal-body .cal-subscribe ul li {
	background-color: transparent;
	margin: 25px 0px;
}

.cal-body .cal-subscribe ul li svg {
	width: 16px;
}

.cal-body .cal-subscribe ul li svg path {
	fill: inherit;
}

.cal-body .cal-subscribe ul li a {
	color: #343434;
	margin-left: 5px;
	top: -2px;
	display: inline-block;
	vertical-align: text-top;
	width: 70%;
	border-color: transparent;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	transition: border-color .2s;
}

.cal-body .cal-subscribe ul li a:hover {
	border-width: 1px;
	border-color: #343434;
}

.accordion-container {
	width: 100%;
	padding: 0 8px;
	margin: 40px 0;
}

.accordion-container .accordion-callout {
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	margin: 8px 0;
	border-radius: 25px;
	overflow: hidden;
	padding-bottom: 50px;
	transition: max-height .4s ease;
}

.accordion-container .accordion-callout .accordion-element {
	display: block;
	padding: 30px;
	max-height: 250px;
	line-height: 150px;
	width: 100%;
	transition: max-height .4s ease;
}

.accordion-container .accordion-callout .accordion-element .accordion-heading-content {
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	width: 100%;
	transition: padding-bottom .4s ease;
}

.accordion-container .accordion-callout .accordion-element .accordion-header {
	color: #e5486a;
	font-weight: 400;
	font-size: 1.875rem;
	margin-bottom: 10px;
}

.accordion-container .accordion-callout .accordion-element .accordion-title {
	font-size: 1.5rem;
	color: #343434;
	line-height: 2rem;
	max-height: 6rem;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: max-height .4s ease;
}

.accordion-container .accordion-callout .accordion-element svg {
	display: none;
}

.accordion-container .accordion-callout .accordion-element:focus {
	outline-offset: -6px;
}

.accordion-container .accordion-callout .accordion-body {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease,padding .4s ease;
}

.accordion-container .accordion-callout .accordion-body h2 {
	font-weight: 400;
	line-height: 1.2em;
}

.accordion-container .accordion-callout .accordion-body h3 {
	line-height: 1.3em;
}

.accordion-container .accordion-callout .accordion-body h4 {
	font-weight: 600;
	line-height: 1.3em;
}

.accordion-container .accordion-callout .accordion-body h5 {
	font-weight: 400;
	line-height: 1.4em;
}

.accordion-container .accordion-callout .accordion-body h6 {
	font-weight: 700;
	line-height: 1.4em;
}

.accordion-container .accordion-callout .accordion-body p {
	margin-bottom: 25px;
	line-height: 1.5em;
}

.accordion-container .accordion-callout .accordion-body ul,
.accordion-container .accordion-callout .accordion-body ol {
	margin-left: 3em;
	margin-bottom: 35px;
	font-size: 20px;
	counter-reset: item;
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
}

.accordion-container .accordion-callout .accordion-body ul li,
.accordion-container .accordion-callout .accordion-body ol li {
	color: #343434;
	line-height: 1.5em;
	margin: 8px 0;
}

.accordion-container .accordion-callout .accordion-body ul li a,
.accordion-container .accordion-callout .accordion-body ol li a {
	color: #e5486a;
	text-decoration: underline;
}

.accordion-container .accordion-callout .accordion-body ul li a:hover,
.accordion-container .accordion-callout .accordion-body ol li a:hover {
	color: #A80025;
}

.accordion-container .accordion-callout .accordion-body ol li {
	list-style-type: none;
	position: relative;
}

.accordion-container .accordion-callout .accordion-body ol li:before {
	content: counter(item) ".";
	counter-increment: item;
	position: absolute;
	left: -2.5em;
	top: 0;
	width: 2em;
	text-align: right;
	color: #e5486a;
}

.accordion-container .accordion-callout .accordion-body img {
	max-width: 100%;
	margin: 25px 0;
}

.accordion-container .accordion-callout .mobile-accordion-toggle {
	display: block;
	height: 60px;
	bottom: 0px;
	left: 0;
	position: absolute;
	width: 100%;
}

.accordion-container .accordion-callout .mobile-accordion-toggle svg {
	width: 36px;
	height: 36px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%);
	transition: transform .4s ease;
}

.accordion-container .accordion-callout.active .accordion-element {
	max-height: 5000px;
}

.accordion-container .accordion-callout.active .accordion-element .accordion-heading-content {
	padding-bottom: 0;
}

.accordion-container .accordion-callout.active .accordion-element .accordion-title {
	max-height: 5000px;
	-webkit-line-clamp: unset;
}

.accordion-container .accordion-callout.active .accordion-body {
	max-height: 5000px;
	padding: 5px 30px 30px;
}

.accordion-container .accordion-callout.active svg {
	transform: translate(-50%) rotate(45deg);
}

@media (min-width: 450px) {

.popup-bubble-content .section-school-card .school-card-button {
	position: absolute;
}

.map-list-toggle {
	right: -93%;
}

.map-list-toggle .map-toggle p,
.map-list-toggle .list-toggle p {
	font-size: 16px;
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle h2 {
	font-size: 22px;
}

.section-school-comparison-filter .filter-section .filter-content .floating-label {
	font-size: 21px;
}

.section-school-comparison-filter .filter-section .filter-content .sorting-box {
	font-size: 18px;
}

.section-profile-page-five .profile-video-callout a .video-callout-details h3 {
	font-size: 2.8em;
}

}

@media (min-width: 768px) {

a[href^="tel:"] {
	color: inherit;
}

.col-2 {
	width: 50%;
	float: left;
}

.col-3 {
	width: 33%;
	float: left;
}

.col-4 {
	width: 25%;
	float: left;
}

.columns-1 {
	column-count: 1;
	column-gap: 0%;
	-moz-column-count: 1;
	-webkit-column-count: 1;
	-ms-column-count: 1;
}

.columns-1 p {
	width: 80%;
}

.columns-2 {
	column-count: 2;
	column-gap: 10%;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	-ms-column-count: 2;
}

.columns-3 {
	column-count: 3;
	column-gap: 10%;
	-moz-column-count: 3;
	-webkit-column-count: 3;
	-ms-column-count: 3;
}

.columns-unit {
	display: table;
	width: 100%;
	-webkit-column-break-inside: avoid;
}

.column-text {
	margin-bottom: 30px;
}

h1 {
	font-size: 2.8em;
}

h2 {
	font-size: 2.4em;
}

h3 {
	font-size: 2em;
}

h4 {
	font-size: 1.8em;
}

h5 {
	font-size: 1.8em;
}

h6 {
	font-size: 1.6em;
}

th,
td,
p {
	font-size: 1.6em;
}

figure img {
	width: 80%;
	margin: 0 10%;
}

figure figcaption {
	margin: 0 10%;
}

.text-button {
	font-size: 1.2em;
}

.text-button svg {
	width: 8px;
	height: 8px;
}

.callout-button {
	min-width: 31%;
	bottom: -8%;
	padding: 2% 8% 2% 3%;
}

.callout-button span {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 6%;
	top: 36%;
}

.callout-button:hover,
.callout-button:focus {
	min-width: 34%;
}

.bps-lightbox.active .bps-lightbox-content {
	height: 90vh;
	margin-top: -45vh;
}

.bps-lightbox .close-video {
	width: 5vw;
	top: 3vw;
}

.password-protected-page {
	position: absolute;
	height: 80px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	left: 2.75%;
	width: 94.5%;
	transition: left .4s,width .4s,height .4s;
}

.password-protected-page.no-banner {
	position: relative;
}

.password-protected-page.protected-search {
	position: relative;
	margin-bottom: -80px;
}

.password-protected-page p {
	padding: 45px 80px 0px;
	text-align: left;
	transition: padding .4s;
}

.maintenance-body header .hidden-info {
	width: 18%;
	text-align: left;
}

.maintenance-body header .hidden-info p {
	color: #fff;
	font-size: 1.3em;
}

.maintenance-body header .hidden-info p a {
	color: #fff;
}

.maintenance-body header .hidden-info .social-media-icons {
	margin-bottom: 9%;
	margin-left: 0;
}

.maintenance-body header .hidden-info .social-media-icons li {
	margin-right: 10px;
}

.maintenance-body header .hidden-info .social-media-icons li a {
	width: 16px;
	height: 16px;
}

.maintenance-body header .hidden-info .social-media-icons li a svg path {
	fill: #fff;
}

.maintenance-body header .bps-logo {
	position: absolute;
	top: 30px;
	left: 3%;
	width: 22%;
	max-width: 145px;
	margin: 0;
}

.maintenance-body .section-dynamic-callouts .row {
	text-align: center;
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 {
	padding: 19%;
	max-width: 56%;
	margin-left: 20%;
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details svg {
	width: 250px;
}

.loading-icon {
	height: 15vh;
	transform: translate(20%, -50%);
}

.search-temp-message {
	width: 80%;
	font-size: 20px;
	padding: 2em;
}

header {
	min-height: 13vh;
	padding: 0;
	margin-top: 0;
	z-index: 0;
}

header .hidden-info {
	display: block;
	max-height: 0px;
	position: absolute;
	top: 130px;
	left: 3%;
	z-index: 0;
	min-width: 15%;
}

header .hidden-info.active {
	opacity: 1;
	max-height: 1000px;
	z-index: 10;
}

header .bps-logo {
	left: 3%;
	width: 22%;
	top: 30px;
	background-image: url("/themes/custom/baltimore/img/BPS-logo-white.svg");
	background-size: contain;
	z-index: 5;
}

header .bps-translogin {
	display: block;
	text-align: right;
	max-width: 80px;
	top: .5em;
}

header .bps-translogin #google_translate_element {
	opacity: 0;
}

header .bps-translogin .lang-rotator,
header .bps-translogin #google_translate_element {
	z-index: 100;
}

header .bps-translogin .lang-rotator>span,
header .bps-translogin #google_translate_element>span {
	right: 0;
}

header .bps-translogin .bps-access {
	top: 10px;
}

header .header-menu {
	position: relative;
	visibility: visible;
}

header .header-menu .beta-header {
	font-size: 12px;
	color: #0093d6;
	position: absolute;
	top: -80%;
	left: 0;
	transform: rotate(0deg);
}

header .header-menu nav>ul {
	transition: max-height .2s,box-shadow .4s,margin-top .2s,visibility 0s ease .4s;
	display: inline-block;
	visibility: visible;
	max-height: 0px;
	overflow: hidden;
	left: 31%;
	max-height: 60px;
	text-align: left;
	margin-top: 55px;
	margin-bottom: 25px;
	z-index: 99;
	min-width: 65%;
	max-width: 530px;
	padding-left: 3%;
	background-color: inherit;
}

header .header-menu nav>ul.active {
	border: 0;
	max-height: 1000px;
	transition: max-height .6s;
	display: inline-block;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-radius: 1em;
	margin-top: 55px;
	margin-bottom: 50px;
	padding-bottom: 30px;
	background: linear-gradient(#f2f2f2 13%, #fff 13%);
}

header .header-menu nav>ul.active .close-nav {
	display: block;
	position: absolute;
	bottom: 7px;
	right: 10px;
	height: 20px;
	width: 20px;
	padding: 0;
}

header .header-menu nav>ul.active>li>a {
	padding: 12px 0;
}

header .header-menu nav>ul.active>li ul {
	opacity: 1;
	visibility: visible;
	transition: visibility 0s ease 0s;
}

header .header-menu nav>ul>li:first-child {
	width: 25%;
}

header .header-menu nav>ul>li:nth-child(2) {
	width: 39%;
}

header .header-menu nav>ul>li:nth-child(3) {
	margin-right: 0;
}

header .header-menu nav>ul>li:last-child {
	display: block;
	height: auto;
	position: absolute;
	bottom: 7px;
	right: 0px;
}

header .header-menu nav>ul>li {
	background: none;
	height: auto;
	display: inline-block;
	vertical-align: top;
	margin-right: 2%;
	width: 29%;
}

header .header-menu nav>ul>li>a.add-arrow {
	background: none;
}

header .header-menu nav>ul>li>a {
	border: 0;
	padding: 20px 0;
	font-size: 1.6em;
	font-weight: 700;
	background: none;
	height: 100%;
}

header .header-menu nav>ul>li ul {
	left: 0;
	display: block;
	opacity: 0;
	margin-top: 15px;
	text-align: left;
	visibility: hidden;
	transition: visibility 0s ease .6s,opacity .6s;
}

header .header-menu nav>ul>li ul li {
	height: auto;
	margin-bottom: 10px;
}

header .header-menu nav>ul>li ul li a {
	border: 0;
	font-size: 1.4em;
	padding: 0;
	top: 0;
	display: inline-block;
}

header .mobile-menu {
	display: none;
}

.path-school-profiles .show-search {
	max-width: 100%;
	display: block;
	position: absolute;
	right: 0;
	top: -65px;
	font-size: 16px;
	color: #707070;
	height: 42px;
	z-index: 101;
	transition: font-size .6s;
}

.path-school-profiles .show-search span {
	display: inline-block;
	width: 50px;
	height: 40px;
	margin-bottom: -14px;
	margin-left: 15px;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	background-image: url("/themes/custom/baltimore/img/search-icon.svg"),linear-gradient(#E39649, #E5466B);
	background-position: center center;
	background-size: 20px, cover;
	background-repeat: no-repeat;
	transition: height .6s,width .6s;
}

.section-search-bar {
	transition: height .4s,padding .4s,margin-top .4s;
}

.section-search-bar div input {
	transition: font-size .4s;
}

.section-search-bar div button {
	transition: height .4s,width .4s;
}

.section-search-bar.grow-search {
	height: 55px;
	padding: 0 20% 0 20%;
	margin-top: -2.5%;
}

.section-search-bar.grow-search div button {
	width: 10%;
	height: 94%;
}

.section-search-bar.grow-search div #search-input:focus ~ .search-input-label,
.section-search-bar.grow-search div #search-input[data-value]:not([data-value=""]) ~ .search-input-label {
	top: 15px;
}

.path-school-profiles .section-search-bar {
	display: block;
	padding: 0 0 0 100%;
	top: -60px;
	margin-top: 0;
	transition: height .4s,padding .4s,margin-top .4s;
}

.path-school-profiles .section-search-bar.active div .hide-search {
	display: block;
	position: absolute;
	right: -125px;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 16px;
	color: #707070;
	z-index: 100;
}

.path-school-profiles .section-search-bar.grow-search {
	height: 55px;
	padding: 0 20% 0 20%;
	margin-top: -.5%;
}

.search-input-label {
	max-width: 85%;
}

header .header-menu-profile {
	display: block;
	text-align: center;
}

header .header-menu-profile a {
	font-size: 1.67vw;
	font-weight: 600;
	color: #e5486a;
}

header .header-menu-profile a span {
	width: 1.25vw;
	height: 1.25vw;
	display: inline-block;
	background-repeat: no-repeat;
	transform: rotate(180deg);
	margin-right: 5px;
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
}

.section-search-bar {
	position: absolute;
	width: 100%;
	margin-top: -2%;
	background-image: none;
	height: 45px;
	padding: 0 22% 0 22%;
}

.section-search-bar div {
	padding: 0 3.75%;
	border: 1px solid #707070;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-search-bar div input {
	width: 85%;
	position: absolute;
	top: 0;
}

.section-search-bar div button {
	width: 8%;
	height: 94%;
	padding: 12px;
	position: absolute;
	right: 2px;
	top: 3%;
}

.section-search-bar div button img {
	width: 15px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.section-primary-landing-callout {
	padding-bottom: 40px;
}

.section-primary-landing-callout .primary-callout {
	width: 94.5%;
}

.section-primary-landing-callout .primary-callout .primary-landing-banner {
	width: 100%;
}

.section-primary-landing-callout .primary-callout .primary-landing-banner .primary-landing-callout p {
	color: #343434;
}

.section-primary-landing-callout .primary-landing-banner {
	width: 94.5%;
	height: 475px;
	max-width: 1815px;
	margin: 0 auto;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	border-radius: 8px;
}

.section-primary-landing-callout .primary-landing-banner>a {
	top: 45%;
}

.section-primary-landing-callout .primary-landing-banner>a span {
	height: 120px;
	width: 120px;
	background-size: 30px;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout {
	position: absolute;
	bottom: -40px;
	top: auto;
	left: 3%;
	height: auto;
	padding: 2% 4% 2% 2.5%;
	margin: 0;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout h1 {
	margin-bottom: 10px;
	line-height: normal;
	float: none;
	max-width: none;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout a {
	margin-left: 20px;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout p {
	max-width: 500px;
}

.section-primary-landing-callout.video-icons .primary-landing-banner .primary-landing-callout h1 {
	max-width: 450px;
	margin-bottom: 15px;
}

.section-primary-landing-callout.profile-page {
	padding-bottom: 0;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout {
	min-width: 70%;
	max-width: 95%;
	bottom: -5.5%;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout .profile-header-school-number {
	float: right;
	text-align: center;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout .profile-header-school-number p {
	width: 102%;
	line-height: 1em;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout .profile-header-school-number h2 {
	margin-bottom: 0;
}

.section-primary-landing-callout.profile-page .primary-landing-banner .primary-landing-callout h1 {
	float: left;
	margin-top: 1%;
	max-width: 75%;
}

.background-circle-banner-container {
	display: block;
	position: absolute;
	z-index: -1;
	overflow: hidden;
	left: -615px;
	height: 900px;
	width: 900px;
	top: -125px;
}

.background-circle-banner-container .background-circle-banner {
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.path-school-profiles .background-circle-banner-container {
	display: block;
	max-height: calc(100vh + 262px);
}

.section-page-intro {
	margin: 80px 9% 0 22%;
}

.section-page-intro h1 {
	margin-bottom: 1%;
}

.internal .section-page-intro {
	margin: 0;
}

.section-four-block-row {
	padding: 0;
	padding-bottom: 14%;
	padding-top: 3%;
}

.section-four-block-row h1 {
	margin: 0 auto;
	margin-bottom: 10%;
	width: 85.5%;
	max-width: 1644px;
}

.section-four-block-row .row {
	max-width: 1688px;
	width: 88%;
	margin: 0 auto;
}

.section-four-block-row .row .col-4 a {
	height: 100%;
	width: 100%;
	display: block;
}

.section-four-block-row .row .col-4 a .feature-block {
	margin: 0 5%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 57% 0;
	border-radius: 8px;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	margin-top: -33%;
}

.section-four-block-row .row .col-4 a .feature-block .feature-block-title {
	position: absolute;
	padding: 9.5% 0;
	bottom: 0;
	border-radius: 0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	box-shadow: none;
}

.section-four-block-row .row .col-4 a .feature-block:hover {
	box-shadow: 4px 6.5px 22px 0px rgba(0,0,0,0.4);
}

.section-four-block-row .row .col-4 a .feature-block:hover .feature-block-title.red-gradient {
	background-image: linear-gradient(to right, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.section-four-block-row .row .col-4 a .feature-block:hover .feature-block-title.orange-gradient {
	background-image: linear-gradient(to right, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.section-four-block-row .row .col-4 a .feature-block:hover .feature-block-title.light-blue-gradient {
	background-image: linear-gradient(to right, rgba(17,112,182,0.9), rgba(46,166,216,0.9), rgba(80,228,255,0.9));
}

.section-four-block-row .row .col-4 a .feature-block:hover .feature-block-title.blue-gradient {
	background-image: linear-gradient(to right, rgba(0,141,206,0.9), rgba(37,198,240,0.9));
}

.section-four-block-row .row .col-4 a:focus-within {
	outline: none;
}

.section-four-block-row .row .col-4 a:focus-within .feature-block {
	box-shadow: 4px 6.5px 22px 0px rgba(0,0,0,0.4);
}

.section-four-block-row .row .col-4 a:focus-within .feature-block .feature-block-title.red-gradient {
	background-image: linear-gradient(to right, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.section-four-block-row .row .col-4 a:focus-within .feature-block .feature-block-title.orange-gradient {
	background-image: linear-gradient(to right, rgba(229,70,107,0.9), rgba(208,115,36,0.9));
}

.section-four-block-row .row .col-4 a:focus-within .feature-block .feature-block-title.light-blue-gradient {
	background-image: linear-gradient(to right, rgba(17,112,182,0.9), rgba(46,166,216,0.9), rgba(80,228,255,0.9));
}

.section-four-block-row .row .col-4 a:focus-within .feature-block .feature-block-title.blue-gradient {
	background-image: linear-gradient(to right, rgba(0,141,206,0.9), rgba(37,198,240,0.9));
}

.background-square-four-block-container {
	position: absolute;
	right: 0%;
	z-index: -1;
	padding: 24%;
	margin-top: -7%;
	overflow: hidden;
}

.background-square-four-block-container .background-square-four-block {
	background-image: linear-gradient(to top, #E5466B, #D07324);
	transform: rotate(165deg);
	border-radius: 8px;
	position: absolute;
	top: 12%;
	right: -9%;
	height: 75%;
	width: 75%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-dynamic-callouts h2 {
	margin-left: 9%;
}

.section-dynamic-callouts .row .dynamic-callout a .callout-button {
	top: 90%;
}

.section-dynamic-callouts {
	padding-top: 40px;
	margin: 0;
}

.section-dynamic-callouts .row {
	max-width: 1574px;
	width: 82%;
	margin: 0 auto;
	text-align: justify;
}

.section-dynamic-callouts .row .dynamic-callout {
	padding: 21%;
	border-radius: 12px;
	margin-bottom: 7%;
	display: inline-block;
}

.section-dynamic-callouts .row .dynamic-callout .color-overlay {
	border-radius: 12px;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details h3 {
	font-size: 3.75vw;
	padding: 2.5% 0;
	margin: 0 4%;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details p {
	font-size: 1.67vw;
	font-weight: 400;
	overflow: hidden;
	margin: 0 4%;
	margin-top: -1.5%;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details span {
	border: 2px solid;
	border-radius: 50%;
	padding: 1.5%;
	margin: 0 4%;
	width: 7vw;
	height: 7vw;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details hr {
	margin: 5% 15%;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 {
	max-width: 47%;
	height: auto;
	padding: 15%;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a .callout-button {
	background-image: none;
	padding: 2.33% 5%;
	transition: padding .4s;
	border-radius: 36px;
	background-size: 0vw;
	width: auto;
	min-width: auto;
	top: 92%;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a .callout-button p {
	font-size: 1.25vw;
	font-weight: 700;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a .callout-button span {
	width: 0;
	height: 1.25vw;
	transition: width .4s;
	position: absolute;
	right: 6%;
	top: 50%;
	transform: translate(0, -50%);
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a:hover .callout-button {
	padding: 2.33% 8% 2.33% 3%;
	text-align: left;
	color: #343434;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a:hover .callout-button span {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	width: 1.25vw;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details h3 {
	font-size: 2.75vw;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details p {
	font-size: 1.6vw;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details span {
	width: 5vw;
	height: 5vw;
	padding: 2.5%;
	border: 1px solid;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 {
	max-width: 30%;
	height: auto;
	max-height: 25px;
	padding: 12%;
	margin: 0;
	margin-bottom: 7%;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a .callout-button {
	background-image: none;
	padding: 2.33% 5%;
	transition: padding .4s;
	border-radius: 36px;
	background-size: 0vw;
	width: auto;
	min-width: auto;
	top: 92%;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a .callout-button p {
	font-size: 1.25vw;
	font-weight: 700;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a .callout-button span {
	width: 0;
	height: 1.25vw;
	transition: width .4s;
	position: absolute;
	right: 6%;
	top: 50%;
	transform: translate(0, -50%);
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a:hover .callout-button {
	padding: 2.33% 8% 2.33% 3%;
	text-align: left;
	color: #343434;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a:hover .callout-button span {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	width: 1.25vw;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details {
	top: 46%;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details h3 {
	font-size: 2.2vw;
	line-height: .9em;
	padding: 4% 0;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details p {
	font-size: 1.33vw;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details span {
	width: 4vw;
	height: 4vw;
	padding: 2.5%;
	border: 1px solid;
}

.section-dynamic-callouts .row .dynamic-callout.no-image .color-overlay.overlay-pink-gradient {
	background-image: linear-gradient(to top, #E5466B, #D07324);
}

.section-dynamic-callouts .row .dynamic-callout.no-image .color-overlay.overlay-pink-gradient:before {
	background-image: linear-gradient(to top, #d33d5f, #bc6112);
}

.section-dynamic-callouts .row .dynamic-callout.no-image .color-overlay.overlay-blue-gradient {
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
}

.section-dynamic-callouts .row .dynamic-callout.no-image .color-overlay.overlay-blue-gradient:before {
	background-image: linear-gradient(to top, #0384bf, #22b1d6);
}

.section-dynamic-callouts .row .clear-block {
	display: inline-block;
	width: 100%;
}

.section-dynamic-callouts.show-bg-shadow {
	margin: 30px 0 10%;
}

.background-square-callout-container {
	display: none;
}

.background-square-callout-container .background-square-callout {
	background-image: linear-gradient(to top, #E5466B, #D07324);
	transform: rotate(-15deg);
	padding: 17%;
	border-radius: 8px;
	position: absolute;
	right: 8%;
	margin-top: -29%;
	z-index: -1;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.background-square-four-block-container {
	display: none;
	position: absolute;
	right: 0%;
	z-index: -1;
	padding: 24%;
	margin-top: -8%;
	overflow: hidden;
}

.background-square-four-block-container .background-square-four-block {
	background-image: linear-gradient(to top, #E5466B, #D07324);
	transform: rotate(165deg);
	border-radius: 8px;
	position: absolute;
	top: 12%;
	right: -9%;
	height: 75%;
	width: 75%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.background-circle-callout-container {
	display: none;
	position: absolute;
	right: 0%;
	padding: 23%;
	margin-top: -36%;
	overflow: hidden;
	z-index: -2;
}

.background-circle-callout-container .background-circle-callout {
	transform: rotate(260deg);
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	position: absolute;
	border-radius: 50%;
	right: -4%;
	bottom: 0%;
	height: 75%;
	width: 75%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-information-blocks .row .col-4 a .information-block div span svg {
	height: 75%;
	width: 75%;
	margin-top: 12.5%;
}

.section-information-blocks {
	padding: 0;
	padding: 60px 0 80px;
}

.section-information-blocks .row {
	max-width: 1652px;
	width: 86%;
	padding: 0 .5%;
}

.section-information-blocks .row h1 {
	margin-bottom: 3.5%;
	margin-left: 1%;
}

.section-information-blocks .row .col-4 a .information-block {
	padding: 46% 0;
	margin: 3.75%;
	border-radius: 24px;
	border: 1px solid #ccd0d1;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	z-index: 100;
}

.section-information-blocks .row .col-4 a .information-block div {
	text-align: center;
	transition: color .4s;
	padding-top: 20%;
}

.section-information-blocks .row .col-4 a .information-block div span {
	height: 7vw;
	width: 7vw;
	padding: 6%;
	margin-bottom: 9%;
	transition: border .4s;
	float: none;
	margin-right: 0;
}

.section-information-blocks .row .col-4 a .information-block div h5 {
	transition: color .4s;
	line-height: 1.1em;
	padding: 0 3%;
	position: relative;
	top: 0;
	left: 0;
	transform: none;
	font-weight: 400;
}

.section-information-blocks .row .col-4 a .information-block:before {
	border-radius: inherit;
	background: linear-gradient(to top right, #075FAC, #2291CB, #3FC5EC);
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -100;
	opacity: 0;
	transition: opacity .4s;
}

.section-information-blocks .row .col-4 a .information-block:hover div {
	color: #fff;
}

.section-information-blocks .row .col-4 a .information-block:hover div span {
	border: 1px solid #fff;
}

.section-information-blocks .row .col-4 a .information-block:hover div span svg {
	fill: #fff;
}

.section-information-blocks .row .col-4 a .information-block:hover div h5 {
	color: #fff;
}

.section-information-blocks .row .col-4 a .information-block:hover:before {
	opacity: 1;
}

.section-information-blocks .row .col-4 a:focus-within {
	outline: none;
}

.section-information-blocks .row .col-4 a:focus-within .information-block div {
	color: #fff;
}

.section-information-blocks .row .col-4 a:focus-within .information-block div span {
	border: 1px solid #fff;
}

.section-information-blocks .row .col-4 a:focus-within .information-block div span svg {
	fill: #fff;
}

.section-information-blocks .row .col-4 a:focus-within .information-block div h5 {
	color: #fff;
}

.section-information-blocks .row .col-4 a:focus-within .information-block:before {
	opacity: 1;
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block div {
	color: #e5486a;
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block:before {
	background: linear-gradient(to top right, #E5466B, #E4625F, #E38550);
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block:hover div {
	color: #fff;
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block:hover div span {
	border: 1px solid #fff;
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block:hover div span svg {
	fill: #fff;
}

.section-information-blocks .row .col-4:nth-child(even) a .information-block:hover div h5 {
	color: #fff;
}

.section-information-blocks .row .col-4:nth-child(even) a:focus-within .information-block div {
	color: #fff;
}

.section-information-blocks .row .col-4:nth-child(even) a:focus-within .information-block div span {
	border: 1px solid #fff;
}

.section-information-blocks .row .col-4:nth-child(even) a:focus-within .information-block div span svg {
	fill: #fff;
}

.section-information-blocks .row .col-4:nth-child(even) a:focus-within .information-block div h5 {
	color: #fff;
}

.section-information-blocks .row .col-4:nth-child(even) a:focus-within .information-block:before {
	opacity: 1;
}

.section-information-blocks .callout-button {
	min-width: 17%;
	padding: 2% 8% 2% 2%;
	bottom: -6%;
}

.section-information-blocks .callout-button:hover,
.section-information-blocks .callout-button:focus {
	color: #e5486a;
	min-width: 20%;
}

.section-information-blocks.show-bg-shadow {
	margin: 30px 0 9%;
}

.background-square-information {
	display: none;
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	transform: rotate(165deg);
	padding: 16%;
	border-radius: 8px;
	position: absolute;
	left: 35%;
	bottom: -6%;
	z-index: -1;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-dynamic-news-block .background-square-news-top-container {
	display: block;
	position: absolute;
	right: 0%;
	padding: 205px;
	top: -15%;
	overflow: hidden;
	z-index: -1;
}

.section-dynamic-news-block .background-square-news-top-container .background-square-news-top {
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	transform: rotate(165deg);
	border-radius: 8px;
	position: absolute;
	right: 0%;
	top: 13%;
	height: 75%;
	width: 100%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-dynamic-news-block .background-square-news-bottom {
	display: block;
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	transform: rotate(165deg);
	padding: 180px;
	border-radius: 8px;
	position: absolute;
	right: 9%;
	bottom: -5%;
	z-index: -2;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-dynamic-news-block .background-circle-information {
	display: block;
	padding: 350px;
	background-image: linear-gradient(to top, #E5466B, #D07324);
	transform: rotate(230deg);
	position: absolute;
	border-radius: 50%;
	left: -450px;
	bottom: -146px;
	z-index: -1;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-dynamic-news-block {
	padding-top: 40px;
	padding-bottom: 100px;
	box-shadow: 0px 0px 11px 2px rgba(0,0,0,0.1);
	margin: 7% 0;
}

.section-dynamic-news-block .row {
	max-width: 1608px;
	width: 83.75%;
	margin: 0 auto;
}

.section-dynamic-news-block .row h2 {
	margin-bottom: 5.5%;
	margin-left: 2.5%;
}

.section-dynamic-news-block .row .col-3 a .dynamic-news-block {
	padding-bottom: 3%;
	margin: 0 8%;
}

.section-dynamic-news-block .row .col-3 a .dynamic-news-block p {
	margin-bottom: 5%;
}

.section-dynamic-news-block .row .col-3 a .dynamic-news-block h2 {
	margin-left: 0;
	margin-bottom: 7%;
}

.section-dynamic-news-block .row .col-3 a .dynamic-news-block h5 {
	margin-bottom: 10%;
}

.js-pager__items {
	margin-top: -28px;
}

.js-pager__items li {
	margin: 0 30px;
}

.section-social-media-block {
	padding: 50px 0;
}

.section-social-media-block h2 {
	text-align: center;
	margin-bottom: 3.5%;
}

.section-social-media-block .row {
	width: 91%;
	max-width: 1749px;
	margin: 0 auto;
}

.section-social-media-block .row .col-3 {
	margin-bottom: 40px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.section-social-media-block .row .col-3 a .social-media-block {
	width: auto;
	margin: 0 4.25%;
	padding-bottom: 9%;
}

.section-social-media-block .row .col-3 a .social-media-block p {
	font-size: 1.75vw;
	margin-top: 10%;
	width: 65%;
}

.section-social-media-block .row .col-3 a .social-media-block div {
	padding: 34%;
	margin: 18% auto 5.5% auto;
}

.section-social-media-block .row .col-3 a .social-media-block span {
	width: 3vw;
	height: 3vw;
	top: 3%;
}

.section-social-media-block .row .col-3 a .social-media-block span svg {
	height: 100%;
	width: 100%;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block span {
	width: 2.5vw;
	height: 2.5vw;
	top: 3.75%;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block span svg {
	height: 2.5vw;
	width: 2.5vw;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block p {
	margin-top: 0;
	padding: 6%;
	width: 100%;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block div {
	margin-top: 18%;
	padding: 40%;
}

.section-social-media-block .row .col-3 a .social-media-block.instagram-block p,
.section-social-media-block .row .col-3 a .social-media-block.other-block p {
	margin-top: 0;
	padding: 18.1% 6% 6% 6%;
	width: 100%;
}

.section-social-media-block .row .col-3 a .social-media-block.instagram-block div,
.section-social-media-block .row .col-3 a .social-media-block.other-block div {
	margin-top: 18%;
	padding: 34%;
}

footer .footer-callout .footer-callout-wrap.has-link>a,
.footer .footer-callout .footer-callout-wrap.has-link>a {
	padding-top: 100px;
	padding-bottom: 6%;
}

footer .footer-callout .footer-callout-wrap:not(.has-link),
.footer .footer-callout .footer-callout-wrap:not(.has-link) {
	padding-top: 6%;
	padding-bottom: 6%;
}

footer,
.footer {
	padding-top: 3%;
}

footer .footer-box,
.footer .footer-box {
	padding: 3% 25px .7%;
	width: 50%;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-top-right-radius: 8px;
	background-color: #fff;
}

footer .footer-box .footer-content,
.footer .footer-box .footer-content {
	width: 100%;
}

footer .footer-box .footer-content .bps-logo,
.footer .footer-box .footer-content .bps-logo {
	height: 3.75vw;
	margin-bottom: 12px;
}

footer .footer-box .footer-content .bps-logo span,
.footer .footer-box .footer-content .bps-logo span {
	background-position: left;
}

footer .footer-box .footer-content h4,
.footer .footer-box .footer-content h4 {
	font-size: 1.25vw;
	width: 90%;
}

footer .footer-box .footer-content h6+p,
.footer .footer-box .footer-content h6+p {
	margin-bottom: 5px;
}

footer .footer-box .footer-content p,
.footer .footer-box .footer-content p {
	font-size: .8vw;
	width: auto;
	margin-bottom: 6.5%;
}

footer .footer-box .footer-content .social-media-icons,
.footer .footer-box .footer-content .social-media-icons {
	margin-bottom: 15px;
}

footer .footer-box .footer-content .social-media-icons li,
.footer .footer-box .footer-content .social-media-icons li {
	margin-right: 3.75%;
}

footer .footer-box .footer-content .social-media-icons li a,
.footer .footer-box .footer-content .social-media-icons li a {
	width: 2.25vw;
	height: 2.25vw;
}

footer .footer-box .footer-content .social-media-icons li a span,
.footer .footer-box .footer-content .social-media-icons li a span {
	font-size: .8vw;
}

footer .footer-callout,
.footer .footer-callout {
	width: 50%;
	float: right;
	margin-top: 5%;
	position: absolute;
	right: 0;
	bottom: 0;
}

footer .footer-callout h3,
.footer .footer-callout h3 {
	font-size: 2.5vw;
}

.section-comparison-tool-landing .row {
	width: 80%;
	margin: 0 auto;
	margin-top: 7%;
}

.section-comparison-tool-landing .row .section-page-intro {
	margin-top: 0;
}

.section-comparison-tool-landing .row .section-page-intro p {
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.section-comparison-tool-landing .row .section-school-tool-options {
	margin-top: 9%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row {
	max-width: 900px;
	margin: 0 auto;
	width: 80%;
	margin-top: 6%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option {
	padding: 16%;
	width: 45%;
	margin-right: 10%;
	border-radius: 12px;
	margin-bottom: 10%;
	height: auto;
	float: left;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option p {
	font-size: 18px;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option a .option-details h2 {
	padding: 2.5% 0;
	margin: 0 4%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option a .option-details svg {
	height: 6vw;
	width: 6vw;
	padding: 6%;
	margin-bottom: 5%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option:nth-child(2) {
	margin-right: 0;
}

.section-i-am-a-menu.active {
	right: auto;
	height: auto;
	background-color: inherit;
}

.section-i-am-a-menu.hide {
	height: auto;
}

.section-i-am-a-menu {
	display: inline-block;
	position: absolute;
	top: 7px;
	padding: 5px 0;
	max-height: inherit;
	width: 68%;
	margin-left: 24%;
	z-index: 120;
	right: auto;
	height: auto;
	background-color: inherit;
}

.section-i-am-a-menu .subnav ul {
	text-align: center;
}

.section-i-am-a-menu .subnav ul li {
	font-size: 14px;
	padding: 0 7px;
	width: auto;
}

.section-i-am-a-menu .subnav ul li a {
	font-size: 14px;
	padding: 0;
	border: 0;
	padding-bottom: 4px;
	height: auto;
}

.section-i-am-a-menu .subnav ul li a::after {
	content: '';
	position: absolute;
	left: 0%;
	display: inline-block;
	height: 1em;
	width: 100%;
	border-bottom: 2px solid;
	border-image: linear-gradient(to right, #E39649 0%, #E5466B 100%);
	border-image-slice: 1;
	margin-top: 3px;
	border-left: 0px;
	border-right: 0px;
	border-top: 0px;
}

.section-i-am-a-menu .subnav ul li:first-child {
	padding: 0;
	border: 0;
	font-size: 14px;
}

.section-i-am-a-menu .subnav ul li:nth-child(4) a::after,
.section-i-am-a-menu .subnav ul li:nth-child(5) a::after {
	border-image: linear-gradient(to right, #075FAC 0%, #50E4FF 100%);
	border-image-slice: 1;
}

.school-tool-elements {
	height: 100vh;
}

.school-tool-elements .school-card-area {
	float: none;
	padding-bottom: 0;
	padding-top: 0;
}

.section-error-message {
	width: 400px;
	left: 50%;
	margin-left: -200px;
}

.show-filter .section-error-message {
	margin-left: 0;
}

.info-window.multiple {
	width: 700px;
	background-color: #fff;
	padding: 50px 0 40px;
	text-align: center;
	border-radius: 8px;
	border: 1px solid #e5486a;
}

.info-window.multiple .section-school-card {
	margin: 0 15px;
}

.info-window.multiple .section-school-card .close-x-map {
	display: none;
}

.info-window.multiple .section-school-card .link-blocker {
	display: none;
}

.info-window.multiple .close-x-map {
	transition: border-color .2s;
	display: block;
	z-index: 102;
	width: 28px;
	height: 28px;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid;
	border-color: #343434;
	position: absolute;
	top: -15px;
	right: -16px;
	text-align: center;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	cursor: pointer;
}

.info-window.multiple .close-x-map svg {
	transition: width .2s,height .2s;
	width: 9px;
	height: 9px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.info-window.multiple .close-x-map:hover,
.info-window.multiple .close-x-map:focus {
	border-color: #e5486a;
}

.info-window.multiple .close-x-map:hover svg,
.info-window.multiple .close-x-map:focus svg {
	width: 10px;
	height: 10px;
}

.info-window .section-school-card {
	min-width: 300px;
}

.section-school-card {
	width: 300px;
	display: inline-block;
	margin: 0 20px 10em;
	vertical-align: top;
}

.hide-filter .section-school-card {
	width: 300px;
}

.section-school-card .school-card-header .tab {
	width: 150px;
}

.section-school-card .school-card-header .tab .school-profile-link {
	padding-left: 10px;
}

.section-school-card .school-card-header:hover .tab .school-profile-link span,
.section-school-card .school-card-header:focus .tab .school-profile-link span {
	margin-left: 25px;
}

.section-school-card .school-card-content .col-left .school-address {
	font-size: 1.4em;
}

.section-school-card .school-card-content .col-left .school-phone-number {
	font-size: 1.4em;
}

.section-school-card .school-card-content .school-card-button {
	font-size: 1.4em;
}

.gm-style-iw .section-school-card .school-card-content .school-card-button {
	width: 40%;
}

.gm-style-iw .section-school-card .school-card-content .school-card-button span {
	top: 30%;
}

.school-tool-elements {
	box-shadow: 0px -7px 5px -5px rgba(0,0,0,0.1);
}

.school-tool-elements .school-card-area {
	margin-left: 380px;
	width: auto;
	padding-top: 25px;
	transition: margin-left .6s;
	padding-top: 85px;
	text-align: center;
}

.school-tool-elements.hide-filter .school-card-area {
	margin-left: 0px;
}

.school-tool-elements.hide-filter.comparing-1 .school-card-area {
	padding-left: 50vw;
	text-align: left;
}

.school-tool-elements.hide-filter .caret-twist {
	transform: rotate(180deg) translate(50%, 50%) !important;
	transition: transform .4s ease-in-out;
}

.section-school-card .school-card-header {
	width: 100%;
	padding: 3% 4%;
}

.section-school-card .school-card-header .school-number {
	margin-bottom: 1.75%;
}

.section-school-card .school-card-content {
	padding-left: 4.75%;
	padding-top: 2em;
	padding-bottom: 3em;
}

.section-school-card .school-card-content .col-left {
	float: left;
	width: 60%;
	padding-right: 3%;
}

.section-school-card .school-card-content .col-left .school-directions {
	display: inline-block;
}

.section-school-card .school-card-content .col-left .school-directions span {
	width: 14px;
	height: 14px;
}

.section-school-card .school-card-content .col-left .school-address {
	margin: 5% 0;
}

.section-school-card .school-card-content .col-left hr {
	width: 85%;
}

.section-school-card .school-card-content .col-left .school-phone-number {
	margin-top: 5%;
	margin-bottom: 25px;
}

.section-school-card .school-card-content .col-right {
	display: block;
	float: left;
	width: 40%;
	padding-bottom: 0;
	padding-right: 1%;
}

.section-school-card .school-card-content .col-right .school-principal {
	margin-bottom: 20%;
	padding-right: 0;
}

.section-school-card .school-card-content .col-right .school-grades-served {
	margin-bottom: 10px;
}

.section-school-card .school-card-content .school-card-button {
	width: 45%;
	padding: 3% 4%;
	position: absolute;
	bottom: -9%;
	transition: background-color .2s,color .2s;
}

.section-school-card .school-card-content .school-card-button span {
	width: 20px;
	height: 20px;
	object-fit: cover;
	right: 10%;
	top: 30%;
}

.section-school-card .school-card-content .school-card-button:hover {
	background-color: #707070;
	color: #fff;
}

.section-school-card .school-card-content .school-card-button:hover span {
	background-image: url("/themes/custom/baltimore/img/compare-white.svg");
}

.section-pinned-school .toggle-dropdown.mobile-comparison-card {
	display: none;
}

.section-pinned-school-area {
	font-size: 1em;
	display: block;
	padding: 0;
	height: 100%;
	min-height: 1100px;
	width: 0vw;
	margin-left: 0;
	float: left;
	z-index: 2;
	transition: width .2s,margin-left .2s;
}

.show-filter[data-show="map"] .section-pinned-school-area,
.hide-filter .section-pinned-school-area {
	margin-left: 0;
}

.show-filter[data-show="map"].comparing-1 .section-pinned-school-area,
.show-filter[data-show="map"].comparing-2 .section-pinned-school-area,
.section-pinned-school-area .show-filter[data-show="map"].comparing-3,
.show-filter[data-show="list"] .section-pinned-school-area {
	margin-left: 380px;
}

.compare-max-3.comparing-1 .section-pinned-school-area {
	width: 33vw;
}

.compare-max-3.show-filter.comparing-1 .section-pinned-school-area {
	width: calc(66vw - 380px);
}

.compare-max-3.comparing-2 .section-pinned-school-area {
	width: 66vw;
}

.compare-max-3.show-filter.comparing-2 .section-pinned-school-area {
	width: calc(66vw - 380px);
	margin-bottom: 65px;
}

.compare-max-3.comparing-3 .section-pinned-school-area {
	width: 100vw;
}

.show-filter.compare-max-3.comparing-3 .section-pinned-school-area {
	width: calc(100vw - 380px);
}

.compare-max-2.comparing-1.hide-filter[data-show="list"] .section-pinned-school-area {
	width: 50vw;
}

.compare-max-2.comparing-1.hide-filter[data-show="list"] .section-pinned-school-area.fixed-bottom {
	position: fixed;
	bottom: 100px;
	z-index: 2;
}

.compare-max-2.comparing-1.hide-filter[data-show="list"] .section-pinned-school-area .pinned-school-area {
	text-align: right;
}

.compare-max-2.comparing-1[data-show="map"] .section-pinned-school-area {
	width: 50vw;
}

.compare-max-2.show-filter.comparing-1 .section-pinned-school-area {
	width: calc(50vw - 380px);
}

.compare-max-2.comparing-2 .section-pinned-school-area {
	width: 100vw;
}

.compare-max-2.show-filter.comparing-1 .section-pinned-school-area,
.compare-max-2.show-filter.comparing-2 .section-pinned-school-area {
	width: calc(100vw - 380px);
}

.compare-max-2.show-filter.comparing-1 .section-pinned-school-area .pinned-school-area,
.compare-max-2.show-filter.comparing-2 .section-pinned-school-area .pinned-school-area {
	text-align: center;
}

.compare-pinned-schools-area {
	display: none;
}

.pinned-school-area {
	overflow-y: inherit;
	white-space: normal;
	background: none;
	margin-top: 75px;
	text-align: center;
	padding: 0 0 25px;
	background-color: #F7F7F7;
}

.pinned-school-swipe {
	display: none;
}

.section-pinned-school {
	margin: 0 10%;
	padding: 1% 15px 5em 15px;
	z-index: 2;
	text-align: left;
}

.comparing-1.hide-filter .section-pinned-school {
	width: 300px;
}

.comparing-1.show-filter .section-pinned-school {
	width: 300px;
	margin-bottom: 50px;
}

.comparing-2.hide-filter .section-pinned-school {
	width: 300px;
	margin: 0 2%;
}

.comparing-2.show-filter .section-pinned-school {
	width: 300px;
	margin-bottom: 50px;
}

.comparing-3 .section-pinned-school {
	width: 220px;
	margin: 0 2%;
}

.section-pinned-school .close-x {
	width: 28px;
	height: 28px;
	top: 0%;
	right: -5%;
	margin-top: -5%;
	padding-top: 3%;
	left: auto;
	transform: none;
}

.section-pinned-school .close-x svg {
	width: 9px;
	height: 9px;
}

.section-pinned-school .close-x:hover {
	border: 2px solid;
	border-color: #e5486a;
	transition: border-color .4s;
}

.section-pinned-school .school-number {
	margin-bottom: 3.25%;
}

.section-pinned-school .school-name {
	margin-bottom: 4.5%;
}

.section-pinned-school .school-image-large {
	padding-bottom: 58%;
	margin-bottom: 2%;
}

.section-pinned-school .school-image-large div {
	display: none;
}

.section-pinned-school .school-image-small {
	display: inline-block;
	padding-bottom: 33%;
	background-position: center center;
	background-size: cover;
	border-radius: 8px;
	width: 49%;
	float: left;
	margin-bottom: 5%;
}

.section-pinned-school .school-type {
	width: 100%;
	margin-bottom: 7.5%;
}

.section-pinned-school .school-grades-served {
	margin-bottom: 5%;
	color: #343434;
}

.section-pinned-school .school-map {
	display: inline-block;
	height: 25vh;
	width: 100%;
	border-radius: 8px;
	margin-bottom: 3.5%;
}

.section-pinned-school .school-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-pinned-school .school-map .pinned-map-marker {
	width: 24px;
	height: 24px;
	object-fit: contain;
	position: absolute;
	z-index: 3;
	top: 38%;
	left: 48%;
}

.section-pinned-school .school-address {
	margin-bottom: 4.5%;
	width: 65%;
}

.section-pinned-school hr {
	width: 65%;
}

.section-pinned-school .school-phone-number {
	margin-top: 4.5%;
	margin-bottom: 10%;
}

.section-pinned-school .school-directions {
	display: block;
	color: #0093d6;
	border-bottom: 1px solid;
	padding-bottom: 1px;
	float: right;
	margin-top: 4%;
}

.section-pinned-school .school-directions span {
	background-image: url("/themes/custom/baltimore/img/map-icon.svg");
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	background-position: center;
	display: inline-block;
	margin-right: 5px;
}

.section-pinned-school .school-directions:hover {
	color: #005C86;
}

.section-pinned-school .school-directions:hover span {
	background-image: url("/themes/custom/baltimore/img/map-icon-hover.svg");
}

.section-pinned-school .col-left {
	display: inline-block;
	float: left;
	width: 50%;
	padding-right: 5%;
}

.section-pinned-school .col-left .school-principal {
	margin-bottom: 20%;
}

.section-pinned-school .col-left .school-grades-served {
	margin-bottom: 25%;
}

.section-pinned-school .col-right {
	display: inline-block;
	float: left;
	width: 48%;
	padding-bottom: 5%;
}

.section-pinned-school .col-right p {
	margin-bottom: 3%;
}

.section-pinned-school .col-right .school-programming {
	margin-left: 20%;
}

.section-pinned-school .col-right .school-programming li {
	list-style-type: initial;
}

.section-pinned-school .additional-info {
	display: none;
}

.section-pinned-school .callout-button {
	width: 75%;
	bottom: -2%;
	padding: 4% 8% 4% 4%;
	text-align: left;
}

.section-pinned-school .callout-button p {
	font-weight: 600;
}

.section-pinned-school .callout-button .mobile-text {
	display: none;
}

.section-pinned-school .callout-button .large-screen-text {
	font-size: 1em;
	display: block;
}

.section-pinned-school .callout-button span {
	width: 14px;
	height: 14px;
	top: 33%;
}

.section-pinned-school .callout-button:hover {
	width: 85%;
	transition: width .4s;
}

.section-pinned-school .callout-button:hover p {
	color: #e5486a;
	transition: color .4s;
}

.path-school-profiles header {
	padding-bottom: 3vh;
}

#map {
	height: 100vh;
}

.map-list-toggle {
	position: absolute;
	transition: right .4s;
	top: 14px;
	right: -240px;
	bottom: auto;
	width: auto;
	height: auto;
	margin-top: -2%;
}

.map-list-toggle .map-toggle,
.map-list-toggle .list-toggle {
	line-height: normal;
	float: none;
}

.map-list-toggle .map-toggle,
.map-list-toggle .list-toggle {
	height: 31px;
	float: left;
	padding: 8px 9px;
	cursor: pointer;
	transition: width .2s;
}

.map-list-toggle .map-toggle svg,
.map-list-toggle .list-toggle svg {
	position: relative;
	top: 6px;
	margin-top: 0;
	left: 7px;
	width: 18px;
	height: 18px;
}

.map-list-toggle .map-toggle p,
.map-list-toggle .list-toggle p {
	font-size: 14px;
	padding-left: 27px;
}

.map-list-toggle .map-toggle span {
	width: 32px;
}

.map-list-toggle .map-toggle {
	margin-left: 0;
	border-radius: 0;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.map-list-toggle .map-toggle svg {
	position: absolute;
	top: 7px;
}

.map-list-toggle .list-toggle span {
	width: 32px;
}

.map-list-toggle .list-toggle {
	width: 105px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	border-left: 1px solid #707070;
}

.map-list-toggle .list-toggle p {
	position: absolute;
	top: 8px;
}

.show-filter .section-school-comparison-filter .map-list-toggle {
	display: block;
}

.hide-filter .section-school-comparison-filter .toggle-filter {
	position: absolute;
	top: 0;
	padding: 25px;
	left: 100%;
	height: 55px;
}

.hide-filter .section-school-comparison-filter .toggle-filter svg {
	top: 50%;
	width: 18px;
	height: 18px;
	margin-left: 0;
	transform: rotate(180deg) translate(50%, 50%);
}

.hide-filter .section-school-comparison-filter .map-list-toggle {
	right: -280px;
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle {
	position: relative;
	right: 0;
	width: 100%;
	margin: 0 -15px;
	box-shadow: none;
	background-image: linear-gradient(#D07324, #E5466B);
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle h2 {
	font-size: 22px;
	width: 100%;
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle h2 span:first-child {
	display: block;
}

.hide-filter .section-school-comparison-filter .filter-section .schools-compare-toggle h2 span:last-child {
	display: none;
}

.section-school-comparison-filter {
	position: absolute;
	width: 380px;
	top: 0;
	margin-top: 0;
	z-index: 3;
	border-top: 0;
	display: block;
	transition: margin-left .4s ease-in-out;
	left: 0;
}

.section-school-comparison-filter.fixed-top,
.section-school-comparison-filter.fixed-bottom {
	position: fixed;
}

.section-school-comparison-filter.fixed-top.fixed-bottom,
.section-school-comparison-filter.fixed-bottom.fixed-bottom {
	top: auto;
	bottom: 0;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
}

.section-school-comparison-filter.fixed-top.fixed-bottom .map-list-toggle,
.section-school-comparison-filter.fixed-bottom.fixed-bottom .map-list-toggle {
	position: fixed;
	top: 33px;
	left: 400px;
	right: auto;
	bottom: auto;
}

.section-school-comparison-filter.fixed-top.fixed-top,
.section-school-comparison-filter.fixed-bottom.fixed-top {
	top: 0;
	bottom: auto;
}

.show-filter .section-school-comparison-filter {
	margin-left: 0;
}

.hide-filter .section-school-comparison-filter {
	margin-left: -380px;
}

.hide-filter .section-school-comparison-filter .toggle-filter {
	left: 100%;
}

.hide-filter[data-show="map"] .section-school-comparison-filter .school-filter-form {
	max-height: 100vh;
	overflow: hidden;
}

.section-school-comparison-filter .filter-section+.filter-section {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	white-space: nowrap;
}

.section-school-comparison-filter .filter-section .schools-compare-toggle {
	padding: 12px 20px;
	height: auto;
	margin: 0 -15px;
	width: 380px;
}

.section-school-comparison-filter .filter-section .icon-open-close {
	width: 10px;
	height: 10px;
	line-height: 3px;
	top: 32px;
}

.section-school-comparison-filter .filter-section h2 {
	font-size: 22px;
}

.section-school-comparison-filter .filter-section .filter-content .school-search-container {
	padding: 0 25px 25px;
}

.section-school-comparison-filter .filter-section .filter-content .filter-clear-all {
	margin-bottom: 5%;
	padding-bottom: 1%;
}

.section-school-comparison-filter .filter-section .filter-content .school-search:focus ~ .floating-label,
.section-school-comparison-filter .filter-section .filter-content .school-search[data-value]:not([data-value=""]) ~ .floating-label {
	left: 102px;
}

.section-school-comparison-filter .filter-section .filter-content .school-search {
	height: 54px;
	padding-left: 65px;
}

.section-school-comparison-filter .filter-section .filter-content .school-search-button {
	left: 29px;
	top: 4px;
	height: 46px;
	width: 46px;
}

.section-school-comparison-filter .filter-section .filter-content .floating-label {
	font-size: 15px;
	left: 78px;
	top: 19px;
}

.section-school-comparison-filter .filter-section .filter-content .zoned-school-search-button {
	margin-left: -80px;
	margin-top: 8px;
}

.section-school-comparison-filter .filter-section .filter-content .my-location-search {
	padding-top: 14px;
}

.section-school-comparison-filter .filter-section .filter-content .my-location-search span {
	width: 14px;
	height: 14px;
	top: 50%;
}

.section-school-comparison-filter .filter-section .filter-content .my-location-search.loading-animation span {
	top: 40%;
	left: 0%;
}

.section-school-comparison-filter .filter-section .filter-content .school-filter-grade,
.section-school-comparison-filter .filter-section .filter-content .school-filter-CTE,
.section-school-comparison-filter .filter-section .filter-content .school-filter-program,
.section-school-comparison-filter .filter-section .filter-content .school-filter-management,
.section-school-comparison-filter .filter-section .filter-content .school-filter-enrollment {
	padding: 25px 0 17px 25px;
	margin: 0px;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row a {
	width: 50%;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row .see-filter-text {
	margin-left: -25px;
}

.section-school-comparison-filter .filter-section .filter-content .filter-table .filter-row .icon-open-close {
	height: 12px;
	width: 12px;
	margin-top: 3px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li label.checked span {
	width: 12px;
	height: 12px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown ul li ul li label.checked span {
	width: 12px;
	height: 12px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label.checked span,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.management ul li label.checked span,
.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.enrollment ul li label.checked span {
	width: 14px;
	height: 14px;
}

.section-school-comparison-filter .filter-section .filter-options.school-filter-dropdown.programs ul li label.checked span {
	width: 14px;
	height: 14px;
}

#map {
	display: none;
	margin-bottom: 0;
}

.map-key {
	display: block;
	position: absolute;
	width: 160px;
	border: 1px solid #707070;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
	background-color: #fff;
	z-index: 1;
	bottom: 22px;
	right: 62px;
	padding: 0 0 0 5px;
}

[data-show="list"] .map-key {
	display: none;
}

.map-key .map-key-unit {
	display: block;
	line-height: 20px;
	margin: 8px 0;
}

.map-key .map-key-unit svg,
.map-key .map-key-unit img,
.map-key .map-key-unit p {
	display: inline-block;
}

.map-key .map-key-unit img,
.map-key .map-key-unit svg {
	width: 20px;
	height: 20px;
	margin-bottom: -5px;
}

.map-key .map-key-unit p {
	font-size: 15px;
	width: 80%;
}

.hide {
	display: none;
}

.show {
	display: block;
}

.section-school-comparison-filter .toggle-filter {
	width: 11%;
	padding: 25px;
	left: 85%;
	top: 0px;
}

.section-school-comparison-filter .toggle-filter svg {
	width: 18px;
	height: 18px;
}

.section-school-comparison-filter .school-comparison-filter-content {
	padding: 0 7%;
}

.section-school-comparison-filter .school-comparison-filter-content .toggle-dropdown.main {
	right: 7%;
	margin-top: -15%;
}

.section-school-comparison-filter .school-comparison-filter-content .additional-filters-content .toggle-dropdown {
	right: 0%;
	margin-top: -8%;
}

.section-school-comparison-filter .school-comparison-filter-content .see-less-filters,
.section-school-comparison-filter .school-comparison-filter-content .see-more-filters,
.section-school-comparison-filter .school-comparison-filter-content .filter-line {
	display: none;
}

.section-school-comparison-filter .school-comparison-filter-content .school-filter-dropdown.programs .select-list-item span {
	width: 11px;
	height: 12px;
	left: -5.5%;
	bottom: 20%;
}

.section-school-comparison-filter .apply-filters-button {
	display: none;
}

.section-profile-page-one dd,
.section-profile-page-one dt {
	font-size: 1.6em;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .official-state-grade-band-title,
.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .profile-official-state-grade-band {
	font-size: 2em;
}

.section-profile-page-one .row .col-left .profile-data-box dt .term-definition,
.section-profile-page-one .row .col-left .profile-data-box dd .term-definition,
.section-profile-page-one .row .col-left .profile-data-box .term-label .term-definition {
	top: 25px;
	left: -50px;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-marker {
	width: 24px;
	height: 24px;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions {
	bottom: -6%;
	font-size: 1.6em;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions span {
	height: 16px;
	width: 16px;
	margin-bottom: -1%;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-address,
.section-profile-page-one .row .col-right .profile-map-data .profile-phone-number {
	font-size: 1.8em;
	margin-bottom: 15px;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-address {
	padding-bottom: 3%;
}

.section-profile-page-one {
	margin-top: 0;
}

.section-profile-page-one .row {
	width: 100%;
	margin: 0 auto;
	padding: 9.5% 4% 5% 4%;
	max-width: 1920px;
}

.section-profile-page-one .row .primary-landing-callout {
	width: 95%;
	max-width: 95%;
}

.section-profile-page-one .row .primary-landing-callout .profile-header-school-number {
	float: right;
	text-align: center;
}

.section-profile-page-one .row .primary-landing-callout .profile-header-school-number p {
	width: 102%;
	line-height: 1em;
}

.section-profile-page-one .row .primary-landing-callout .profile-header-school-number h2 {
	margin-bottom: 0;
}

.section-profile-page-one .row .primary-landing-callout h1 {
	float: left;
	margin-top: 1%;
	max-width: 80%;
}

.section-profile-page-one .row .col-left {
	width: 54%;
	margin-right: 4%;
	float: left;
}

.section-profile-page-one .row .col-left .section-page-intro {
	width: 100%;
	margin: 0;
	margin-left: 3%;
	margin-bottom: 3.5%;
}

.section-profile-page-one .row .col-left .profile-data-box {
	width: 95%;
	margin: 0;
	margin-bottom: 4%;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout {
	padding: 4.5% 4% 3.5% 4%;
	margin-bottom: 2.5%;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout h5 {
	margin-bottom: 2%;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout+dl {
	padding-left: 4%;
}

.section-profile-page-one .row .col-left .profile-data-box dd span,
.section-profile-page-one .row .col-left .profile-data-box dt span {
	width: 12px;
	height: 12px;
}

.section-profile-page-one .row .col-left .profile-data-box dd span.title-i-svg,
.section-profile-page-one .row .col-left .profile-data-box dd span.uniform-svg,
.section-profile-page-one .row .col-left .profile-data-box dt span.title-i-svg,
.section-profile-page-one .row .col-left .profile-data-box dt span.uniform-svg {
	width: 10px;
	height: 12px;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-school-type-h3 {
	padding-left: 2%;
}

.section-profile-page-one .row .col-left .text-button {
	margin-left: 4%;
	margin-bottom: 3%;
}

.section-profile-page-one .row .col-left .text-button svg {
	width: 12px;
	height: 12px;
}

.section-profile-page-one .row .col-left .profile-apple-app,
.section-profile-page-one .row .col-left .profile-android-app {
	margin-left: 4%;
}

.section-profile-page-one .row .col-left .profile-apple-app p,
.section-profile-page-one .row .col-left .profile-android-app p {
	margin-bottom: 1.75%;
	margin-left: 4%;
}

.section-profile-page-one .row .col-left .profile-apple-app span,
.section-profile-page-one .row .col-left .profile-android-app span {
	height: 16px;
	width: 16px;
	top: 10%;
}

.section-profile-page-one .row .col-left .profile-android-app {
	margin-bottom: 4.25%;
}

.section-profile-page-one .row .col-left .social-media-icons {
	margin-left: 0;
	padding-left: 4%;
}

.section-profile-page-one .row .col-left .social-media-icons li {
	margin-right: 3%;
}

.section-profile-page-one .row .col-left .social-media-icons li a {
	width: 20px;
	height: 20px;
}

.section-profile-page-one .row .col-right {
	width: 39%;
	float: right;
}

.section-profile-page-one .row .col-right .profile-map {
	height: auto;
	width: 100%;
	margin: 0;
	margin-bottom: 6%;
}

.section-profile-page-one .row .col-right .profile-map-data {
	width: 100%;
	margin: 10% 0;
}

.section-profile-page-one .row .col-right .profile-map-data h5 {
	margin-bottom: 3%;
}

.section-profile-page-one .row .col-right .profile-map-data dt span,
.section-profile-page-one .row .col-right .profile-map-data dd span {
	width: 12px;
	height: 12px;
}

.section-profile-page-one .row .col-right .profile-map-data dt span.cln-svg,
.section-profile-page-one .row .col-right .profile-map-data dd span.cln-svg {
	width: 16px;
	height: 10px;
}

.section-profile-page-two h2 {
	font-size: 1.8em;
}

.section-profile-page-two h3 {
	font-size: 1.8em;
}

.section-profile-page-two ul {
	font-size: 16px;
}

.section-profile-page-two .row .col-left .profile-school-category.no-image {
	padding: 30px 0;
	box-shadow: none;
	background-image: url("/themes/custom/baltimore/img/enrichment-placeholder.JPG");
}

.section-profile-page-two .row .col-left .profile-school-category.no-image .profile-school-category-title {
	padding: 20px;
	border-radius: 8px;
}

.section-profile-page-two .row .col-right .profile-school-category.no-image {
	background-image: url("/themes/custom/baltimore/img/academics-placeholder.JPG");
	padding: 30px 0;
	box-shadow: none;
}

.section-profile-page-two .row .col-right .profile-school-category.no-image .profile-school-category-title {
	padding: 20px 10px;
	border-radius: 8px;
}

.section-profile-page-two {
	padding-bottom: 40px;
}

.section-profile-page-two .row {
	width: 100%;
	margin: 0 auto;
	max-width: 1920px;
	padding: 5% 5% 0% 5%;
}

.section-profile-page-two .row .profile-school-category {
	width: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 8px;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-profile-page-two .row .profile-school-category .profile-school-category-title {
	position: absolute;
	bottom: 0;
	border-radius: 0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	box-shadow: 0;
}

.section-profile-page-two .row .col-left {
	width: 62%;
	margin-right: 3%;
	float: left;
}

.section-profile-page-two .row .col-left .profile-school-category {
	padding: 24% 0;
	margin-bottom: 4%;
}

.section-profile-page-two .row .col-left .profile-school-category .profile-school-category-title {
	padding: 3.5% 0;
	padding-left: 5%;
}

.section-profile-page-two .row .col-right {
	width: 35%;
	float: left;
}

.section-profile-page-two .row .col-right .profile-school-category {
	padding: 42.85% 0;
	margin-bottom: 6.5%;
}

.section-profile-page-two .row .col-right .profile-school-category .profile-school-category-title {
	padding: 6.75% 0;
	padding-left: 6%;
}

.section-profile-page-three {
	padding-top: 6%;
	padding-bottom: 8.5%;
}

.section-profile-page-three h2 {
	margin-bottom: 2%;
}

.section-profile-page-three .row {
	width: 85%;
}

.section-profile-page-three .row p {
	margin-bottom: 2%;
}

.section-profile-page-three .row .callout-button {
	width: 37%;
	padding: 2.5% 6% 2.5% 3%;
}

.section-profile-page-three .row .callout-button h5 {
	font-size: 2em;
	margin: 0;
}

.section-profile-page-three .row .callout-button span {
	width: 16px;
	height: 16px;
}

.section-profile-page-four {
	padding: 40px 0 60px;
}

.section-profile-page-four .row .profile-school-links {
	width: 85%;
	margin: 0 auto;
}

.section-profile-page-four .row .profile-school-links li a {
	margin: 0 1.5%;
	margin-bottom: 2%;
	padding: 2% 0;
	padding-left: 6%;
	padding-right: 2.5%;
	min-width: 0;
}

.section-profile-page-four .row .profile-school-links li a span {
	width: 16px;
	height: 16px;
	left: 7%;
}

.section-profile-page-four .row .profile-school-links li a p {
	line-height: 1em;
}

.section-profile-page-four .row h4 {
	margin-bottom: 0.75%;
	margin-left: 0;
	text-align: center;
}

.section-profile-page-four .row p {
	line-height: 1.5em;
	margin-left: 0;
	text-align: center;
	width: 33%;
	margin: 0 auto;
}

.section-profile-page-five {
	padding: 60px 0;
}

.section-profile-page-five .profile-video-callout {
	width: 82.5%;
	max-width: 1584px;
	padding: 23.5% 0;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-profile-page-five .profile-video-callout a {
	top: 15.5%;
	left: 13.5%;
	width: 73%;
	height: 69%;
}

.section-profile-page-six {
	padding-top: 6%;
	padding-bottom: 7%;
}

.section-profile-page-six .slider-previous,
.section-profile-page-six .slider-next {
	position: absolute;
	height: 300px;
	width: 150px;
	z-index: 99;
	cursor: pointer;
}

.section-profile-page-six .slider-previous span,
.section-profile-page-six .slider-next span {
	background-image: url("/themes/custom/baltimore/img/left-arrow.svg");
	background-repeat: no-repeat;
	width: 35px;
	height: 40px;
	background-color: #fff;
	background-size: 14px;
	background-position: 55% center;
	position: absolute;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	top: 50%;
	transform: translate(0, -50%);
	transition: width .4s;
}

.section-profile-page-six .slider-previous:hover span,
.section-profile-page-six .slider-next:hover span {
	width: 55px;
}

.section-profile-page-six .slider-next {
	right: 0;
	top: 15.5%;
}

.section-profile-page-six .slider-next span {
	background-image: url("/themes/custom/baltimore/img/right-arrow.svg");
	background-position: 45% center;
	border-radius: 0;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	right: 0;
}

.section-profile-page-six .slider-row {
	margin: 0;
	overflow-x: hidden;
	white-space: nowrap;
}

.section-profile-page-six .slider-row .profile-slider-image {
	width: 50%;
	max-width: 1065.6px;
	padding: 0 2%;
	margin-bottom: 0;
	height: 300px;
}

.section-profile-page-six p {
	display: none;
}

.search-block-form+.section-body-copy {
	padding: 120px 0 60px;
}

.section-body-copy {
	padding: 60px 0;
}

.section-body-copy .section-header {
	margin: 0 14% 30px;
}

.section-body-copy img {
	max-width: 400px;
}

.section-body-copy img[data-align="right"] {
	float: right;
	margin: 25px 0px 25px 30px;
}

.section-body-copy img[data-align="left"] {
	float: left;
	margin: 25px 30px 25px 0px;
}

.section-body-copy img[data-align="center"] {
	margin: 35px auto;
	display: block;
	max-width: 100%;
}

.section-body-copy.quote-block .row blockquote {
	width: 80%;
	margin: 0 auto;
	font-size: 2.4em;
}

.section-body-copy .row {
	margin: 0 14%;
}

.section-body-copy .row ul,
.section-body-copy .row ol {
	font-size: 16px;
}

.section-body-copy .row .faq-question {
	font-size: 2em;
}

.section-body-copy .row .faq-question:first-child {
	margin-top: 0;
}

.section-body-copy .row table caption {
	font-size: 2em;
	padding-left: 10px;
}

.section-body-copy .row table th {
	display: table-cell;
	text-align: left;
	font-weight: 700;
	padding: 5px 25px 5px 10px;
	border: 1px solid #8D8D8D !important;
	border-right: 0 !important;
	border-top: 0 !important;
}

.section-body-copy .row table th:first-child {
	border-left: 0 !important;
}

.section-body-copy .row table th p {
	font-weight: 700;
	margin: 0;
}

.section-body-copy .row table th[colspan="4"] {
	display: table-cell;
}

.section-body-copy .row table tbody {
	display: table-row-group;
}

.section-body-copy .row table tbody tr td .cell-content {
	float: none;
	font-weight: 400;
}

.section-body-copy .row table tbody tr td .cell-content p {
	font-weight: 400;
}

.section-body-copy .row table tbody tr td {
	float: none;
	width: auto;
	max-width: none;
	display: table-cell;
	text-align: left;
	padding: 5px 25px 5px 10px;
	border: 1px solid #8D8D8D !important;
	border-right: 0 !important;
	border-top: 0 !important;
}

.section-body-copy .row table tbody tr td p {
	margin: 0;
}

.section-body-copy .row table tbody tr td:last-child {
	margin-bottom: 0;
}

.section-body-copy .row table tbody tr td.highlighted {
	background-color: #F9E9DA !important;
}

.section-body-copy .row table .cell-label {
	display: none;
}

.section-body-copy .row blockquote p {
	width: 70%;
}

.section-body-copy .row.press-release-row.two-column {
	columns: 2;
	column-gap: 40px;
}

.section-body-copy .row.press-release-row .month-section {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.section-body-copy.contact-information {
	padding: 20px 0 40px;
	margin-top: -25px;
}

.section-body-copy.contact-information .row {
	margin: 0 10% 0 28%;
}

.section-body-copy.contact-information .row div.three-block {
	width: 50%;
	float: left;
}

.section-body-copy.contact-information .row .col-4 {
	padding-right: 2%;
	width: 100%;
	margin-bottom: 7.3em;
}

.section-body-copy.contact-information .row .col-4 p {
	padding-right: 15px;
}

.section-body-copy.contact-information .row .col-4.contact-block {
	margin-top: -1.3em;
	max-width: 50%;
}

.section-body-copy.contact-information .row .col-4.contact-block p {
	padding: 0;
}

.section-body-copy.story-date .row {
	margin: 0px 14%;
}

.section-body-copy.fun-fact-container .row h3 {
	font-size: 1.6em;
	margin-bottom: 10px;
}

.section-body-copy.fun-fact-container .row p {
	font-size: 2.8em;
}

.section-flexible-content {
	padding: 50px 0;
}

.section-flexible-content+.section-flexible-content {
	padding-top: 0;
	margin-top: -50px;
}

.section-flexible-content+.section-flexible-content h2 {
	margin-top: 50px;
}

.section-flexible-content h2 {
	margin-bottom: 50px;
}

.section-flexible-content .row .flexible-content-block {
	width: 16%;
	margin: 0 4% 4em;
	display: inline-block;
}

.section-flexible-content .row .flexible-content-block svg {
	width: 40px;
	height: 40px;
}

.section-flexible-content .row .flexible-content-block .flexible-data {
	font-size: 3.6em;
}

.section-flexible-content .row .flexible-content-block .flexible-title {
	font-size: 1.6em;
}

.section-statistics h2 {
	font-size: 16px;
}

.section-statistics p {
	font-size: 28px;
}

.section-i-am-a-links {
	padding: 50px 0;
}

.section-i-am-a-links h2 {
	text-align: center;
}

.section-i-am-a-links p {
	text-align: center;
	width: 45%;
}

.section-i-am-a-links .row {
	text-align: center;
	margin: 0 10%;
}

.section-i-am-a-links .row ul.columns-2 {
	display: block;
	margin-left: 20%;
}

.section-i-am-a-links .row ul.columns-3 {
	display: block;
	margin-left: 10%;
}

.section-i-am-a-links.show-bg-shadow.links-number-1,
.section-i-am-a-links.show-bg-shadow.links-number-4 {
	margin: 30px 0 60px;
}

.section-i-am-a-links.show-bg-shadow.links-number-1 .background-square-links-top-container,
.section-i-am-a-links.show-bg-shadow.links-number-4 .background-square-links-top-container {
	display: block;
	position: absolute;
	right: 0%;
	padding: 90px;
	bottom: -16%;
	overflow: hidden;
	z-index: -1;
}

.section-i-am-a-links.show-bg-shadow.links-number-1 .background-square-links-top-container .background-square-links-top,
.section-i-am-a-links.show-bg-shadow.links-number-4 .background-square-links-top-container .background-square-links-top {
	background-image: linear-gradient(to top, #E5466B, #D07324);
	transform: rotate(197deg);
	border-radius: 8px;
	position: absolute;
	right: -6%;
	bottom: 16%;
	height: 75%;
	width: 100%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-i-am-a-links.show-bg-shadow.links-number-2,
.section-i-am-a-links.show-bg-shadow.links-number-5 {
	margin: 30px 0 50px;
}

.section-i-am-a-links.show-bg-shadow.links-number-2 .background-circle-links-container,
.section-i-am-a-links.show-bg-shadow.links-number-5 .background-circle-links-container {
	display: block;
	position: absolute;
	left: 1%;
	bottom: -12%;
	width: 250px;
	height: 100px;
	margin: 0;
	overflow: hidden;
	z-index: -2;
}

.section-i-am-a-links.show-bg-shadow.links-number-2 .background-circle-links-container .background-circle-links,
.section-i-am-a-links.show-bg-shadow.links-number-5 .background-circle-links-container .background-circle-links {
	transform: rotate(0deg);
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	position: absolute;
	border-radius: 50%;
	left: 0%;
	bottom: 6%;
	height: 95%;
	width: 85%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-i-am-a-links.show-bg-shadow.links-number-3,
.section-i-am-a-links.show-bg-shadow.links-number-6 {
	margin: 70px 0 60px;
}

.section-i-am-a-links.show-bg-shadow.links-number-3 .background-circle-links-container,
.section-i-am-a-links.show-bg-shadow.links-number-6 .background-circle-links-container {
	display: block;
	position: absolute;
	right: 3%;
	top: -17%;
	width: 330px;
	height: 200px;
	margin: 0;
	overflow: hidden;
	z-index: -2;
}

.section-i-am-a-links.show-bg-shadow.links-number-3 .background-circle-links-container .background-circle-links,
.section-i-am-a-links.show-bg-shadow.links-number-6 .background-circle-links-container .background-circle-links {
	transform: rotate(180deg);
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	position: absolute;
	border-radius: 50%;
	right: -4%;
	bottom: 0%;
	height: 95%;
	width: 95%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-i-am-a-links.show-bg-shadow.links-number-3 .background-square-links-top-container,
.section-i-am-a-links.show-bg-shadow.links-number-6 .background-square-links-top-container {
	display: block;
	position: absolute;
	right: 0%;
	padding: 125px;
	top: -16%;
	overflow: hidden;
	z-index: -1;
}

.section-i-am-a-links.show-bg-shadow.links-number-3 .background-square-links-top-container .background-square-links-top,
.section-i-am-a-links.show-bg-shadow.links-number-6 .background-square-links-top-container .background-square-links-top {
	background-image: linear-gradient(to top, #E5466B, #D07324);
	transform: rotate(165deg);
	border-radius: 8px;
	position: absolute;
	right: -6%;
	top: 15%;
	height: 75%;
	width: 100%;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-i-am-a-links.show-bg-shadow.links-number-3 .background-square-links-bottom,
.section-i-am-a-links.show-bg-shadow.links-number-6 .background-square-links-bottom {
	display: block;
	background-image: linear-gradient(to top, #E5466B, #D07324);
	transform: rotate(165deg);
	padding: 125px;
	border-radius: 8px;
	position: absolute;
	right: 9%;
	bottom: -5%;
	z-index: -2;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-campus-portal.show-bg-shadow {
	margin: 30px 0 8%;
}

.section-campus-portal .row .col-left {
	width: 60%;
	margin-right: 10%;
	float: left;
}

.section-campus-portal .row .col-left p {
	font-size: 1.6em;
}

.section-campus-portal .row .col-right .dynamic-callout {
	max-width: 225px;
}

.section-campus-portal .row .col-right .dynamic-callout a .callout-details h3 {
	font-size: 2.8em;
}

.section-campus-portal .row .col-right {
	width: 30%;
	float: left;
	margin-top: 0;
}

.background-square-image-text {
	display: none;
	background-image: linear-gradient(to top, #008DCE, #25C6F0);
	transform: rotate(255deg);
	padding: 16%;
	border-radius: 8px;
	position: absolute;
	left: 4%;
	bottom: -6%;
	z-index: -1;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.a-z-container {
	padding-bottom: 50px;
}

.a-z-container h1 {
	top: 65px;
}

.a-z-row {
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	margin: 0 7%;
	top: 125px;
	border-radius: 2em;
	background-color: #fff;
	padding-bottom: 75px;
	margin-bottom: 125px;
}

.glossary-filter {
	display: table;
}

.glossary-filter-mobile {
	display: none;
}

.glossary-result {
	width: 65%;
	margin: 30px 10%;
}

.glossary-result a p {
	margin-bottom: 25px;
}

.search-active .search-result-wrapper {
	width: 85%;
	border-top-left-radius: 2em;
	border-top-right-radius: 2em;
	margin: 0 auto;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	padding-top: 75px;
}

.search-active .search-result-wrapper .close-search-results {
	top: 75px;
}

.search-active .search-result-wrapper .search-result-page h3 {
	margin-left: 10%;
}

.search-active .search-result-wrapper #search-results {
	width: 80%;
}

.search-active .search-result-wrapper #search-results li h4 span {
	height: 14px;
	width: 14px;
	margin-left: 7px;
}

.search-active .search-result-wrapper #search-results li h4 {
	max-width: none;
}

.search-active .search-result-wrapper #search-results li p {
	width: 80%;
}

.search-active .search-result-wrapper #search-results li:hover {
	background-position-y: center;
}

.images-section h1 {
	margin: 0 14% 30px;
}

.images-section .image-blocks {
	margin: 0 14% 40px;
}

.images-section .image-blocks .image-block {
	border-radius: 12px;
}

.contact-forms {
	font-size: 1.6em;
	padding: 40px 12% 10px;
}

.contact-forms .background-square-links-bottom {
	display: none;
	background-image: linear-gradient(to top, #E5466B, #D07324);
	transform: rotate(200deg);
	padding: 125px;
	border-radius: 8px;
	position: absolute;
	left: 9%;
	bottom: -8%;
	z-index: -2;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.contact-forms div.address-container-inline>.form-item,
.contact-forms .field--type-datetime div.form-item {
	float: left;
	width: 48%;
	margin-right: 0;
}

.contact-forms div.address-container-inline>.form-item:first-child,
.contact-forms .field--type-datetime div.form-item:first-child {
	margin-right: 4%;
}

.contact-forms .js-form-type-radio,
.contact-forms .js-form-type-checkbox {
	display: inline-block;
	width: 49%;
}

.contact-forms .js-form-type-radio label::before,
.contact-forms .js-form-type-checkbox label::before {
	height: 16px;
	width: 16px;
}

.contact-forms .js-form-type-radio label::after,
.contact-forms .js-form-type-checkbox label::after {
	height: 12px;
	width: 12px;
}

.contact-forms .js-form-type-checkbox label::after {
	height: 8px;
	width: 16px;
}

.contact-forms .js-form-type-checkbox input:checked+label::after {
	top: 0px;
}

.contact-forms .form-actions input[type="submit"][data-drupal-selector="edit-preview"] {
	position: relative;
	transform: none;
	top: initial;
	left: auto;
	margin-top: 0;
}

.contact-forms .form-actions input[type="submit"].button--primary {
	float: right;
	margin-left: 10px;
}

.contact-forms .preview div {
	display: table;
}

.contact-forms .preview div div {
	display: table-cell;
	vertical-align: top;
}

.contact-forms .preview {
	padding: 40px;
}

.user-login-form {
	font-size: 1.6em;
	margin: 0 auto 4em;
	max-width: none;
	border-radius: 0;
	padding: 100px 15% 25em;
}

.user-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.user-login-form select,
.user-login-form textarea {
	width: 60%;
}

.user-login-form .form-actions {
	left: auto;
	transform: translate(0);
	display: block;
}

.user-login-form .form-actions input[type="submit"][data-drupal-selector="edit-preview"] {
	position: relative;
	transform: none;
	top: initial;
	left: auto;
	margin-top: 0;
}

.user-login-form .form-actions input[type="submit"].button--primary {
	float: right;
	margin-left: 10px;
}

.view-alerts {
	text-align: center;
}

.view-alerts .alert-close {
	z-index: 1000;
	color: #e5486a;
	border-bottom: 2px solid #e5486a;
	width: auto;
	padding-right: 25px;
	background-image: url("/themes/custom/baltimore/img/up-arrow-red.svg");
}

.view-alerts .alert-icon {
	width: 25px;
	height: 25px;
}

.view-alerts {
	background-size: 12px;
	background-position-x: 3%;
	height: 35px;
}

.view-alerts .view-header {
	padding-left: 7%;
	padding-top: 8px;
	font-size: 16px;
	text-align: left;
}

.view-alerts .view-content {
	text-align: left;
	width: 75%;
}

.view-alerts .view-content .views-row {
	margin-bottom: 80px;
}

.view-alerts .view-content .views-row:last-child {
	margin-bottom: 60px;
}

.view-alerts .view-content .views-row>div {
	display: table-cell;
	padding: 0 0 0 55px;
}

.view-alerts .view-content .views-row>div.alert-left ul,
.view-alerts .view-content .views-row>div.alert-left ol {
	font-size: 16px;
}

.view-alerts .view-content .views-row>div.alert-left {
	width: 80%;
	border-right: 1px solid #ccd0d1;
}

.view-alerts .view-content .views-row>div.alert-right {
	vertical-align: middle;
	width: 20%;
	text-align: center;
	padding: 0 30px;
}

.view-alerts .view-content .views-row.close {
	top: 20px;
	margin: 0;
}

.view-alerts .view-content .views-row.close div.alert-left {
	width: 75%;
}

.view-alerts .view-content .views-row.close div.alert-right {
	width: 25%;
	padding: 0 10px;
}

.view-alerts .view-content .views-row .alert-level {
	width: 30px;
	height: 36px;
	background-size: 18px;
}

.view-alerts .view-content .views-row .views-field-body {
	width: 80%;
	margin-bottom: 0;
}

.view-alerts.active {
	height: 150vh;
	width: 100vw;
	background: linear-gradient(#A6253A 13%, rgba(255,255,255,0.94) 13%);
	position: absolute;
	z-index: 999;
	max-height: initial;
}

.view-alerts.active .alert-icon {
	top: 2%;
}

.view-alerts.active .view-content {
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-radius: 2em;
	margin-top: 40px;
}

.view-alerts.active .view-content>div {
	padding: 75px 0px 0px;
}

.section-image-50-50 h2 {
	padding-left: 25px;
}

.section-image-50-50 .row {
	display: table;
	padding: 0;
	width: 90%;
	max-width: 1900px;
	margin: 0 auto;
}

.section-image-50-50 .row .col-left,
.section-image-50-50 .row .col-right {
	width: 50%;
	padding: 0 25px;
	display: table-cell;
	vertical-align: top;
}

.section-image-50-50 .row .col-left .image-50-50,
.section-image-50-50 .row .col-right .image-50-50 {
	width: auto;
	margin: 7px 0;
	box-shadow: 2px 3.5px 11px 0px rgba(0,0,0,0.2);
}

.section-image-50-50 .row .col-left ul,
.section-image-50-50 .row .col-left ol,
.section-image-50-50 .row .col-right ul,
.section-image-50-50 .row .col-right ol {
	font-size: 16px;
}

.section-image-50-50.show-bg-shadow {
	margin: 50px 0;
}

.cal-body {
	padding: 0;
	width: 100%;
	margin: 0 auto 30px;
}

.cal-body.show-bg-shadow {
	padding: 50px 0;
}

.cal-body .cal-cover.active {
	display: none;
}

.cal-body .cal-header {
	margin: 20px auto 30px;
	width: 94.5%;
}

.cal-body .cal-header button {
	margin-bottom: 40px;
}

.cal-body .cal-header .cal-month {
	display: inline;
	margin: 0 45px;
	top: 8px;
}

.cal-body .cal-header label {
	display: inline-block;
	background-size: 18px;
	margin-right: 30px;
	font-size: 1rem;
	margin-bottom: 10px;
}

.cal-body .cal-header label .cal-name {
	margin-left: 7px;
	top: auto;
}

.cal-body .cal-header label::before {
	height: 16px;
	width: 16px;
}

.cal-body .cal-header label::after {
	height: 15px;
	border-left-width: 18px;
	width: 0px;
}

.cal-body .cal-header .cal-back,
.cal-body .cal-header .cal-next {
	width: 20px;
	height: 20px;
}

.cal-body .cal-header .cal-back {
	margin: 0 25px 0 30px;
}

.cal-body .cal-header .cal-next {
	margin: 0 0 0 5px;
}

.cal-body .cal-show-past-events {
	display: none;
}

.cal-body table {
	border: 1px solid #DEDEDE;
	border-radius: 12px;
	background-color: #fff;
	margin: 0 auto;
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	width: 94.5%;
}

.cal-body table thead {
	display: table-header-group;
	text-align: center;
}

.cal-body table thead tr td {
	width: 12.5vw;
	border-right: 1px solid #DEDEDE;
}

.cal-body table thead tr td:last-child {
	border-right: none;
}

.cal-body table thead tr td .cal-day-label {
	font-size: 1rem;
}

.cal-body table tbody tr td {
	display: table-cell;
	width: 12.5vw;
	border: 1px solid #DEDEDE;
	vertical-align: top;
	text-align: center;
	border-top: none;
	border-left: none;
	height: 135px;
	background-color: #fff;
}

.cal-body table tbody tr td:last-child {
	border-right: none;
}

.cal-body table tbody tr td .cal-content {
	border: none;
	margin: 0;
	padding: 0;
}

.cal-body table tbody tr td .cal-content .cal-day-text {
	display: none;
}

.cal-body table tbody tr td .cal-content .cal-day-number {
	font-size: 1rem;
	width: 100%;
	display: block;
	padding: 3px 0;
	margin-bottom: 2px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul {
	max-width: 12vw;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li {
	text-align: left;
	max-width: 100%;
	padding-left: 13px;
	margin-bottom: 6px;
	margin-left: 7px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li svg,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li svg {
	width: 10px;
	position: absolute;
	left: 0;
	top: 3px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li a,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a {
	font-weight: 600;
	font-size: .875rem;
	top: auto;
	margin: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: block;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li a .cal-event-time-value,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a .cal-event-time-value {
	font-size: .75rem;
	margin: 0;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li a .cal-event-summary-value,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a .cal-event-summary-value {
	display: initial;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail {
	width: 300px;
	left: 120%;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .close-cal-modal,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .close-cal-modal {
	width: 28px;
	height: 28px;
	top: 3px;
	right: -4%;
	margin-top: -5%;
	padding-top: 3%;
	left: auto;
	transform: none;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .close-cal-modal svg,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .close-cal-modal svg {
	width: 9px;
	height: 9px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .close-cal-modal:hover,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .close-cal-modal:hover {
	border: 2px solid;
	border-color: #e5486a;
	transition: border-color .4s;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail svg,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail svg {
	width: 20px;
	margin-top: 42px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail h3,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail h3 {
	padding-left: 10px;
	margin-bottom: 15px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-date,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-where,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-desc,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-date,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-where,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-desc {
	padding-left: 10px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-where,
.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail .cal-event-desc,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-time,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-where,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail .cal-event-desc {
	margin: 15px 0;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail p .cal-event-link,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail p .cal-event-link {
	margin-left: 10px;
	padding-right: 20px;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul {
	max-width: 12.5vw;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li {
	text-indent: 0;
	text-align: left;
	padding: 2px 6px;
	max-width: 100%;
	margin: 3px 4px 3px 4px;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a {
	font-weight: 400;
	margin: 0;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail p .cal-event-link {
	padding-left: 0;
}

.cal-body table tbody tr td.cal-date-past {
	display: table-cell;
}

.cal-body table tbody tr td.cal-date-past .cal-content .cal-daily-events ul li svg {
	opacity: .7;
}

.cal-body table tbody tr td.cal-date-past .cal-content .cal-daily-events ul li a {
	color: rgba(112,112,112,0.75);
}

.cal-body table tbody tr td.cal-date-past .cal-content .cal-fullday-events ul li {
	box-shadow: inset 0 0 0 99999px rgba(255,255,255,0.7);
}

.cal-body table tbody tr td.cal-date-past .cal-content .cal-fullday-events ul li a {
	color: rgba(52,52,52,0.75);
}

.cal-body table tbody tr td.cal-today {
	display: table-cell;
	border: 1px solid #707070;
}

.cal-body table tbody tr td.cal-today .cal-content .cal-fullday-events ul li {
	box-shadow: inset 0 0 0 99999px rgba(255,255,255,0.5);
}

.cal-body table tbody tr td.cal-today.cal-day-expandable .cal-day-show-more {
	display: block;
	bottom: -0.5px;
	border-bottom: 1px solid #707070;
}

.cal-body table tbody tr td.no-events {
	display: table-cell;
}

.cal-body table tbody tr td:first-child .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:first-child .cal-content .cal-fullday-events ul li .cal-event-detail {
	left: -15px;
}

.cal-body table tbody tr td:last-child .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:last-child .cal-content .cal-fullday-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(6) .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(6) .cal-content .cal-fullday-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(5) .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(5) .cal-content .cal-fullday-events ul li .cal-event-detail {
	left: auto;
	right: 120%;
}

.cal-body table tbody tr td.cal-day-expandable .cal-content {
	height: 115px;
}

.cal-body table tbody tr td.cal-day-expandable .cal-day-show-more {
	display: block;
	color: #e5486a;
	font-size: .9rem;
	font-weight: 600;
	position: absolute;
	bottom: -0.5px;
	border-bottom: 1px solid #DEDEDE;
	padding-bottom: 1px;
	background-color: #fff;
	left: 50%;
	width: 99%;
	transform: translate(-50%);
}

.cal-body table tbody tr td.cal-day-expandable.cal-day-expand .cal-content {
	height: auto;
	padding-bottom: 22px;
}

.cal-body table tbody tr td:not([data-cal-date]) {
	background-color: #f2f2f2;
	display: table-cell;
}

.cal-body .cal-subscribe {
	width: 94.5%;
	margin: 25px auto 0;
}

.cal-body .cal-subscribe ul li {
	margin: 15px 0px;
	padding-left: 16px;
}

.cal-body .cal-subscribe ul li svg {
	position: absolute;
	left: 0;
	top: 0;
}

.cal-body .cal-subscribe ul li a {
	top: -1px;
	width: auto;
}

.accordion-container {
	padding: 0 20px;
}

.accordion-container .accordion-callout {
	border-radius: 8px;
	margin: 20px 0;
	padding-bottom: 0;
}

.accordion-container .accordion-callout .accordion-element {
	padding: 30px;
	line-height: 120px;
}

.accordion-container .accordion-callout .accordion-element .accordion-header {
	margin-bottom: 5px;
}

.accordion-container .accordion-callout .accordion-element .accordion-title {
	line-height: 2rem;
	max-height: 4rem;
	-webkit-line-clamp: 2;
	padding-right: 10%;
}

.accordion-container .accordion-callout .accordion-element svg {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	bottom: auto;
	top: 70px;
	left: auto;
	right: 40px;
	transform: none;
	transition: transform .4s ease;
}

.accordion-container .accordion-callout .accordion-body ul,
.accordion-container .accordion-callout .accordion-body ol {
	font-size: 16px;
}

.accordion-container .accordion-callout .accordion-body img {
	max-width: 400px;
}

.accordion-container .accordion-callout .accordion-body img[data-align="right"] {
	float: right;
	margin: 25px 0px 25px 30px;
}

.accordion-container .accordion-callout .accordion-body img[data-align="left"] {
	float: left;
	margin: 25px 30px 25px 0px;
}

.accordion-container .accordion-callout .accordion-body img[data-align="center"] {
	margin: 35px auto;
	display: block;
	max-width: 100%;
}

.accordion-container .accordion-callout .mobile-accordion-toggle {
	display: none;
}

.accordion-container .accordion-callout.active .accordion-element svg {
	transform: rotate(45deg);
}

}

@media (min-width: 768px) and (min-width: 1024px) {

.maintenance-body header .hidden-info p {
	font-size: 1.8em;
}

}

@media (min-width: 768px) and (min-width: 1250px) {

.maintenance-body header .hidden-info p {
	font-size: 2em;
	margin-bottom: 20px;
}

.path-school-profiles .show-search.active {
	font-size: 0px;
}

.path-school-profiles .show-search.active span {
	width: 0px;
	height: 0px;
}

}

@media (min-width: 768px) and (min-width: 1920px) {

.maintenance-body header .hidden-info p {
	font-size: 2.4em;
}

.path-school-profiles .show-search.active {
	font-size: 0px;
}

}

@media (min-width: 768px) and (min-width: 768px) {

.path-school-profiles .show-search.active {
	outline: 0;
	font-size: 0px;
	transition: font-size .2s;
}

.path-school-profiles .show-search.active span {
	width: 0px;
	height: 0px;
	transition: height .2s,width .2s;
}

.cal-body table tbody tr td.cal-today .cal-content .cal-fullday-events ul li a {
	color: #343434;
}

}

@media (min-width: 1024px) {

h1 {
	font-size: 3.6em;
}

h2 {
	font-size: 2.8em;
}

h3 {
	font-size: 2.4em;
}

h4 {
	font-size: 2.2em;
}

h5 {
	font-size: 2em;
}

h6 {
	font-size: 2em;
}

th,
td,
p {
	font-size: 1.8em;
}

.maintenance-body header .hidden-info .social-media-icons li a {
	width: 18px;
	height: 18px;
}

.maintenance-body header .bps-logo {
	width: 28%;
	max-width: 225px;
}

header .hidden-info {
	top: 170px;
}

header .hidden-info p {
	font-size: 1.8em;
}

header .hidden-info .social-media-icons li a {
	width: 18px;
	height: 18px;
}

header .bps-logo {
	width: 28%;
	max-width: 225px;
}

header .header-menu .beta-header {
	font-size: 14px;
}

header .header-menu nav>ul {
	margin-bottom: 50px;
	max-width: 700px;
}

header .header-menu nav>ul>li>a {
	font-size: 2em;
}

header .header-menu nav>ul>li ul li a {
	font-size: 1.8em;
}

.section-search-bar div button img {
	width: 18px;
}

.path-school-profiles .section-search-bar.active div {
	padding: 0 25px;
}

.background-circle-banner-container {
	left: -525px;
}

.section-dynamic-news-block {
	padding-top: 60px;
	padding-bottom: 100px;
}

.section-dynamic-news-block {
	padding-top: 70px;
	padding-bottom: 120px;
}

.section-dynamic-news-block .background-circle-information {
	padding: 385px;
	bottom: -130px;
	left: -420px;
}

footer .footer-callout .footer-callout-wrap.has-link>a,
.footer .footer-callout .footer-callout-wrap.has-link>a {
	min-height: 350px;
	padding-top: 120px;
	padding-bottom: 8%;
}

footer .footer-callout .footer-callout-wrap:not(.has-link),
.footer .footer-callout .footer-callout-wrap:not(.has-link) {
	min-height: 250px;
	padding-top: 8%;
	padding-bottom: 8%;
}

footer .footer-box,
.footer .footer-box {
	padding: 3% 3% .7%;
	width: 40%;
}

footer .footer-callout,
.footer .footer-callout {
	width: 60%;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option p {
	font-size: 20px;
}

.section-i-am-a-menu .subnav ul li {
	padding: 0 12px;
}

.section-i-am-a-menu .subnav ul li a {
	font-size: 15px;
}

.section-i-am-a-menu .subnav ul li:first-child {
	font-size: 15px;
}

.school-tool-elements.hide-filter.comparing-1 .school-card-area {
	padding-left: 38vw;
	text-align: left;
}

.school-tool-elements.hide-filter.comparing-2 .school-card-area {
	padding-left: 66vw;
	text-align: left;
}

.section-school-card {
	width: 300px;
	margin: 0 10px 10em;
}

.hide-filter .section-school-card {
	width: 300px;
	margin: 0 15px 10em;
}

.compare-max-3.show-filter.comparing-1 .section-school-card,
.compare-max-3.show-filter.comparing-2 .section-school-card {
	width: 300px;
	margin: 0 10px 10em;
}

.compare-max-3.show-filter.comparing-1 .section-pinned-school-area {
	width: calc(68vw - 380px);
}

.compare-max-3.hide-filter.comparing-1[data-show="list"] .section-pinned-school-area {
	width: 38vw;
}

.compare-max-3.hide-filter.comparing-1[data-show="list"] .section-pinned-school-area.fixed-bottom {
	bottom: 100px;
	position: fixed;
	z-index: 2;
}

.compare-max-3.hide-filter.comparing-1[data-show="list"] .section-pinned-school-area .pinned-school-area {
	text-align: right;
}

.compare-max-3.hide-filter.comparing-2[data-show="list"] .section-pinned-school-area {
	width: 66vw;
}

.compare-max-3.hide-filter.comparing-2[data-show="list"] .section-pinned-school-area.fixed-bottom {
	bottom: 100px;
	position: fixed;
	z-index: 2;
}

.compare-max-3.hide-filter.comparing-2[data-show="list"] .section-pinned-school-area .pinned-school-area {
	text-align: right;
}

.compare-max-3.show-filter.comparing-2 .section-pinned-school-area {
	width: calc(100vw - 380px);
	margin-bottom: 65px;
}

.section-pinned-school {
	margin: 0 5%;
}

.comparing-1.hide-filter .section-pinned-school {
	width: 300px;
}

.comparing-1.show-filter .section-pinned-school {
	width: 300px;
	margin-bottom: 50px;
}

.comparing-2.hide-filter .section-pinned-school {
	width: 300px;
	margin: 0 2%;
}

.comparing-2.show-filter .section-pinned-school {
	width: 300px;
	margin: 0 2% 40px;
}

.comparing-3.hide-filter .section-pinned-school {
	width: 300px;
	margin: 0 2%;
}

.comparing-3.show-filter .section-pinned-school {
	width: 300px;
	margin: 0 2% 40px;
}

.section-pinned-school .school-map .pinned-map-marker {
	width: 28px;
	height: 28px;
}

.section-pinned-school .callout-button {
	width: 75%;
}

.section-school-comparison-filter input,
.section-school-comparison-filter p {
	font-size: 18px;
}

.section-profile-page-one dd,
.section-profile-page-one dt {
	font-size: 2em;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .official-state-grade-band-title,
.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .profile-official-state-grade-band {
	font-size: 2.4em;
}

.section-profile-page-one .row .col-left .profile-data-box dt .term-definition,
.section-profile-page-one .row .col-left .profile-data-box dd .term-definition,
.section-profile-page-one .row .col-left .profile-data-box .term-label .term-definition {
	width: 375px;
}

.section-profile-page-one .row .col-left .social-media-icons li a {
	width: 24px;
	height: 24px;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-marker {
	width: 28px;
	height: 28px;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions {
	font-size: 1.8em;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions span {
	height: 18px;
	width: 18px;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-address,
.section-profile-page-one .row .col-right .profile-map-data .profile-phone-number {
	font-size: 2em;
}

.section-profile-page-two h2 {
	font-size: 2.2em;
}

.section-profile-page-two h3 {
	font-size: 2em;
}

.section-profile-page-two ul {
	font-size: 2em;
}

.section-profile-page-two .row .col-left .profile-school-category.no-image {
	padding: 32px 0;
}

.section-profile-page-two .row .col-right .profile-school-category.no-image {
	padding: 32px 0;
}

.section-profile-page-three h2 {
	font-size: 2.4em;
}

.section-profile-page-three .row .callout-button h5 {
	font-size: 2.4em;
}

.section-profile-page-three .row .callout-button span {
	width: 20px;
	height: 20px;
}

.section-profile-page-four .row .profile-school-links li a span {
	width: 18px;
	height: 18px;
}

.section-profile-page-five .profile-video-callout a .video-callout-details span {
	width: 42px;
	height: 42px;
}

.section-profile-page-six .slider-previous,
.section-profile-page-six .slider-next {
	height: 350px;
}

.section-profile-page-six .slider-row .profile-slider-image {
	height: 350px;
}

.section-body-copy img {
	max-width: 475px;
}

.section-body-copy.quote-block .row blockquote {
	width: 75%;
	font-size: 2.8em;
}

.section-body-copy .row ul,
.section-body-copy .row ol {
	font-size: 18px;
}

.section-body-copy .row .faq-question {
	font-size: 2.4em;
}

.section-body-copy .row table caption {
	font-size: 2.6em;
}

.section-body-copy .row blockquote p {
	width: 65%;
}

.section-body-copy.contact-information .row {
	margin: 0 5% 0 20%;
}

.section-body-copy.contact-information .row div.three-block {
	width: auto;
	float: none;
}

.section-body-copy.contact-information .row .col-4 {
	width: 25%;
	margin-bottom: 40px;
}

.section-body-copy.contact-information .row .col-4 p {
	font-size: 1.5em;
}

.section-body-copy.contact-information .row .col-4.contact-block {
	max-width: 25%;
}

.section-body-copy.fun-fact-container .row h3 {
	margin-bottom: 10px;
}

.section-body-copy.fun-fact-container .row p {
	font-size: 3.6em;
}

.section-flexible-content .row .flexible-content-block svg {
	width: 50px;
	height: 50px;
}

.section-flexible-content .row .flexible-content-block .flexible-data {
	font-size: 4.4em;
}

.section-flexible-content .row .flexible-content-block .flexible-title {
	font-size: 1.8em;
}

.section-statistics h2 {
	font-size: 18px;
}

.section-statistics p {
	font-size: 36px;
}

.section-campus-portal .row .col-left h2 {
	margin: 40px 0;
}

.section-campus-portal .row .col-left p {
	font-size: 2em;
}

.section-campus-portal .row .col-right .dynamic-callout {
	margin: 20% auto 15%;
	max-width: 275px;
}

.section-campus-portal .row .col-right .dynamic-callout a .callout-details h3 {
	font-size: 3.6em;
}

.glossary-filter {
	top: -15px;
	height: 30px;
}

.glossary-filter span {
	width: 30px;
}

.glossary-filter span a .glossary-letter {
	font-size: 2em;
	height: 30px;
}

.search-active .search-result-wrapper #search-results li h4 span {
	height: 16px;
	width: 16px;
}

.contact-forms {
	font-size: 1.8em;
	padding: 40px 15% 20px;
}

.contact-forms .js-form-type-checkbox input:checked+label::after {
	top: 2px;
}

.user-login-form {
	font-size: 1.8em;
}

.view-alerts .view-content .views-row {
	margin-bottom: 100px;
}

.view-alerts .view-content .views-row:last-child {
	margin-bottom: 60px;
}

.view-alerts .view-content .views-row>div.alert-left ul,
.view-alerts .view-content .views-row>div.alert-left ol {
	font-size: 18px;
}

.view-alerts .view-content .views-row.close div.alert-left {
	width: 80%;
}

.view-alerts .view-content .views-row.close div.alert-right {
	width: 20%;
	padding: 0 15px;
}

.section-image-50-50 .row .col-left .image-50-50,
.section-image-50-50 .row .col-right .image-50-50 {
	min-height: 300px;
}

.section-image-50-50 .row .col-left ul,
.section-image-50-50 .row .col-left ol,
.section-image-50-50 .row .col-right ul,
.section-image-50-50 .row .col-right ol {
	font-size: 18px;
}

.cal-body table tbody tr td {
	height: 145px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail {
	width: 400px;
}

.cal-body table tbody tr td.cal-day-expandable .cal-day-show-more {
	padding-top: 5px;
}

.accordion-container {
	width: 90%;
	margin: 60px auto;
}

.accordion-container .accordion-callout .accordion-body ul,
.accordion-container .accordion-callout .accordion-body ol {
	font-size: 18px;
}

.accordion-container .accordion-callout .accordion-body img {
	max-width: 475px;
}

}

@media (min-width: 1250px) {

.column-text {
	column-count: 2;
	column-gap: 10%;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	-ms-column-count: 2;
}

h1 {
	font-size: 4.4em;
}

h2 {
	font-size: 3.6em;
}

h3 {
	font-size: 2.8em;
}

h4 {
	font-size: 2.6em;
}

h5 {
	font-size: 2.4em;
}

h6 {
	font-size: 2.4em;
}

th,
td,
p {
	font-size: 2em;
}

figure figcaption {
	font-size: 2em;
}

.text-button {
	font-size: 1.5em;
}

.callout-button span {
	width: 18px;
	height: 18px;
}

.password-protected-page {
	height: 100px;
	left: 5%;
	width: 90%;
}

.password-protected-page.protected-search {
	margin-bottom: -100px;
}

.password-protected-page p {
	padding: 60px 100px 0px;
}

.password-protected-page span {
	height: 22px;
	width: 64px;
}

.maintenance-body header .hidden-info .social-media-icons li a {
	width: 20px;
	height: 20px;
}

.maintenance-body header .hidden-info .social-media-icons li a {
	width: 24px;
	height: 24px;
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 {
	padding: 200px 0;
	max-width: 60%;
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details h3 {
	font-size: 42px;
}

.maintenance-body .section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details p {
	font-size: 24px;
}

.loading-icon {
	transform: translate(10%, -100%);
}

header .hidden-info p {
	font-size: 2em;
	margin-bottom: 20px;
}

header .hidden-info .social-media-icons li a {
	width: 20px;
	height: 20px;
}

header .hidden-info .social-media-icons li a {
	width: 24px;
	height: 24px;
}

header .bps-translogin {
	max-width: none;
	z-index: 125;
}

header .bps-translogin .lang-rotator {
	min-width: 80px;
}

header .bps-translogin .bps-access {
	top: -2px;
	margin-left: 1em;
}

header .header-menu .beta-header {
	font-size: 16px;
}

header .header-menu nav>ul {
	width: 62%;
	min-width: 62%;
	margin-bottom: 60px;
	margin-top: 50px;
	max-width: initial;
}

header .header-menu nav>ul.active {
	margin-top: 50px;
}

header .header-menu nav>ul.active .close-nav svg {
	width: 20px;
}

header .header-menu nav>ul>li>a {
	font-size: 2.2em;
}

header .header-menu nav>ul>li ul li a {
	font-size: 2em;
}

.path-school-profiles .show-search {
	top: -75px;
	font-size: 20px;
	height: 55px;
}

.path-school-profiles .show-search span {
	margin-bottom: -17px;
	background-size: 24px, cover;
	width: 55px;
	height: 50px;
}

.section-search-bar {
	height: 55px;
}

.section-search-bar div input {
	font-size: 2em;
}

.section-search-bar div button img {
	width: 22px;
}

.section-search-bar div button {
	padding: 1.4em;
}

.section-search-bar.grow-search {
	height: 65px;
	margin-top: -2%;
}

.section-search-bar.grow-search div input {
	font-size: 2.4em;
}

.section-search-bar.grow-search div #search-input:focus ~ .search-input-label,
.section-search-bar.grow-search div #search-input[data-value]:not([data-value=""]) ~ .search-input-label {
	top: 20px;
	left: 10px;
	font-size: 1.6em;
}

.path-school-profiles .section-search-bar {
	top: -70px;
}

.path-school-profiles .section-search-bar {
	top: -75px;
}

.path-school-profiles .section-search-bar.active div .hide-search {
	font-size: 20px;
	right: -150px;
}

.path-school-profiles .section-search-bar.active div .hide-search span {
	width: 16px;
	height: 16px;
}

.path-school-profiles .section-search-bar.grow-search {
	height: 65px;
}

#search-input:focus ~ .search-input-label,
#search-input[data-value]:not([data-value=""]) ~ .search-input-label {
	top: 16px;
	left: 10px;
	font-size: 1.4em;
}

.search-input-label {
	font-size: 2.2em;
}

.section-primary-landing-callout {
	padding-bottom: 80px;
}

.section-primary-landing-callout .primary-callout {
	width: 90%;
}

.section-primary-landing-callout .primary-callout .primary-landing-banner {
	width: 100%;
}

.section-primary-landing-callout .primary-landing-banner {
	height: 525px;
	width: 90%;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout {
	bottom: -60px;
}

.background-circle-banner-container {
	left: -565px;
	height: 1000px;
	width: 1000px;
}

.section-page-intro {
	margin: 100px 9% 0 22%;
}

.section-dynamic-news-block .background-circle-information {
	padding: 450px;
	left: -500px;
}

.js-pager__items {
	margin-top: -30px;
}

.js-pager__items li {
	margin: 0 50px;
}

.js-pager__items li .callout-button {
	padding: 18px 55px 18px 20px;
}

.js-pager__items li .callout-button.previous {
	padding: 18px 20px 15px 55px;
}

footer .footer-callout .footer-callout-wrap.has-link>a,
.footer .footer-callout .footer-callout-wrap.has-link>a {
	min-height: 400px;
	padding-top: 150px;
	padding-bottom: 10%;
}

footer .footer-callout .footer-callout-wrap:not(.has-link),
.footer .footer-callout .footer-callout-wrap:not(.has-link) {
	min-height: 325px;
	padding-top: 10%;
	padding-bottom: 10%;
}

footer,
.footer {
	padding-top: 3%;
}

footer .footer-box,
.footer .footer-box {
	padding: 3% 4% .7%;
	width: 40%;
	box-shadow: 2px 3.5px 14px 4px rgba(0,0,0,0.1);
	border-top-right-radius: 8px;
	background-color: #fff;
}

footer .footer-box .footer-content,
.footer .footer-box .footer-content {
	width: 100%;
}

footer .footer-box .footer-content .bps-logo,
.footer .footer-box .footer-content .bps-logo {
	height: 3.75vw;
	margin-bottom: 6.5%;
}

footer .footer-box .footer-content .bps-logo span,
.footer .footer-box .footer-content .bps-logo span {
	background-position: left;
}

footer .footer-box .footer-content h4,
.footer .footer-box .footer-content h4 {
	font-size: 1.25vw;
	width: 90%;
}

footer .footer-box .footer-content p,
.footer .footer-box .footer-content p {
	font-size: .8vw;
	width: auto;
	margin-bottom: 6.5%;
}

footer .footer-box .footer-content .social-media-icons,
.footer .footer-box .footer-content .social-media-icons {
	margin-bottom: 8.5%;
}

footer .footer-box .footer-content .social-media-icons li,
.footer .footer-box .footer-content .social-media-icons li {
	margin-right: 3.75%;
}

footer .footer-box .footer-content .social-media-icons li a,
.footer .footer-box .footer-content .social-media-icons li a {
	width: 2.25vw;
	height: 2.25vw;
}

footer .footer-box .footer-content .social-media-icons li a span,
.footer .footer-box .footer-content .social-media-icons li a span {
	font-size: .8vw;
}

footer .footer-callout,
.footer .footer-callout {
	width: 60%;
	float: right;
	margin-top: 5%;
	position: absolute;
	right: 0;
	bottom: 0;
}

footer .footer-callout h3,
.footer .footer-callout h3 {
	font-size: 2.5vw;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option p {
	font-size: 24px;
}

.section-i-am-a-menu .subnav ul li a {
	font-size: 16px;
}

.section-i-am-a-menu .subnav ul li:first-child {
	font-size: 16px;
}

.school-tool-elements.hide-filter.comparing-1 .school-card-area {
	padding-left: 33vw;
	text-align: left;
}

.school-tool-elements.hide-filter.comparing-2 .school-card-area {
	padding-left: 53vw;
	text-align: left;
}

.section-school-card {
	font-size: 1.1em;
	width: 300px;
}

.hide-filter .section-school-card {
	width: 300px;
}

.compare-max-3.show-filter.comparing-1 .section-school-card,
.compare-max-3.show-filter.comparing-2 .section-school-card {
	width: 300px;
	margin: 0 15px 10em;
}

.section-school-card .school-card-content .col-left {
	width: 62.5%;
}

.section-school-card .school-card-content .col-right {
	width: 37.5%;
}

.section-school-card .school-card-content .school-card-button {
	width: 40%;
}

.section-school-card .school-card-content .school-card-button span {
	width: 18px;
	height: 18px;
}

.compare-max-3.show-filter.comparing-1 .section-pinned-school-area {
	width: calc(52vw - 380px);
}

.compare-max-3.show-filter.comparing-1 .section-pinned-school-area .pinned-school-area {
	text-align: right;
}

.compare-max-3.hide-filter.comparing-1[data-show="list"] .section-pinned-school-area {
	width: 33vw;
}

.compare-max-3.hide-filter.comparing-1[data-show="list"] .section-pinned-school-area .pinned-school-area {
	text-align: right;
}

.compare-max-3.hide-filter.comparing-2[data-show="list"] .section-pinned-school-area {
	width: 53vw;
}

.comparing-1.hide-filter .section-pinned-school {
	width: 300px;
}

.comparing-1.show-filter .section-pinned-school {
	width: 300px;
}

.comparing-2.hide-filter .section-pinned-school {
	width: 300px;
}

.comparing-2.show-filter .section-pinned-school {
	width: 300px;
}

.comparing-3.hide-filter .section-pinned-school {
	width: 300px;
}

.comparing-3.show-filter .section-pinned-school {
	width: 300px;
}

.section-pinned-school .has-CTE-pathway.active span,
.section-pinned-school .has-AP.active span {
	width: 16px;
	height: 16px;
}

.section-pinned-school .school-map .pinned-map-marker {
	width: 36px;
	height: 36px;
}

.section-pinned-school-area {
	font-size: 1.3em;
}

.section-pinned-school .callout-button {
	min-width: 53%;
}

.section-profile-page-one dd,
.section-profile-page-one dt {
	font-size: 2.4em;
}

.section-profile-page-one .row .primary-landing-callout {
	min-width: 70%;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .official-state-grade-band-title,
.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .profile-official-state-grade-band {
	font-size: 2.8em;
}

.section-profile-page-one .row .col-left .profile-data-box dt span.title-i-svg,
.section-profile-page-one .row .col-left .profile-data-box dt span.uniform-svg,
.section-profile-page-one .row .col-left .profile-data-box dd span.title-i-svg,
.section-profile-page-one .row .col-left .profile-data-box dd span.uniform-svg,
.section-profile-page-one .row .col-left .profile-data-box .term-label span.title-i-svg,
.section-profile-page-one .row .col-left .profile-data-box .term-label span.uniform-svg {
	width: 16px;
	height: 18px;
}

.section-profile-page-one .row .col-left .profile-data-box dt .term-definition,
.section-profile-page-one .row .col-left .profile-data-box dd .term-definition,
.section-profile-page-one .row .col-left .profile-data-box .term-label .term-definition {
	width: 475px;
	top: 35px;
	font-size: 1.25rem;
}

.section-profile-page-one .row .col-left .text-button svg {
	width: 16px;
	height: 16px;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-marker {
	width: 36px;
	height: 36px;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions {
	font-size: 2.2em;
}

.section-profile-page-one .row .col-right .profile-map .profile-map-directions span {
	height: 20px;
	width: 20px;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-address,
.section-profile-page-one .row .col-right .profile-map-data .profile-phone-number {
	font-size: 2.4em;
}

.section-profile-page-one .row .col-right .profile-map-data dd span.cln-svg,
.section-profile-page-one .row .col-right .profile-map-data dt span.cln-svg {
	width: 18px;
	height: 12px;
}

.section-profile-page-one .row {
	padding: 9.5% 5% 5%;
}

.section-profile-page-one .row .col-left {
	width: 55%;
	margin-right: 5%;
}

.section-profile-page-one .row .col-left .section-page-intro {
	width: 90%;
}

.section-profile-page-one .row .col-left .profile-data-box dd span,
.section-profile-page-one .row .col-left .profile-data-box dt span {
	width: 16px;
	height: 16px;
}

.section-profile-page-one .row .col-left .profile-apple-app span,
.section-profile-page-one .row .col-left .profile-android-app span {
	height: 18px;
	width: 18px;
}

.section-profile-page-one .row .col-left .social-media-icons li {
	margin-right: 2.25%;
}

.section-profile-page-one .row .col-left .social-media-icons li a {
	width: 28px;
	height: 28px;
}

.section-profile-page-one .row .col-right {
	width: 40%;
}

.section-profile-page-one .row .col-right .profile-map-data dd span,
.section-profile-page-one .row .col-right .profile-map-data dt span {
	width: 16px;
	height: 16px;
}

.section-profile-page-two h2 {
	font-size: 2.6em;
}

.section-profile-page-two h3 {
	font-size: 2.4em;
}

.section-profile-page-two ul {
	font-size: 2.4em;
}

.section-profile-page-two .row .col-left .profile-school-category.no-image {
	padding: 40px 0;
}

.section-profile-page-two .row .col-left .profile-school-category.no-image .profile-school-category-title {
	padding: 25px;
}

.section-profile-page-two .row .col-right .profile-school-category.no-image {
	padding: 40px 0;
}

.section-profile-page-two .row .col-right .profile-school-category.no-image .profile-school-category-title {
	padding: 25px;
}

.section-profile-page-three h2 {
	font-size: 3.4em;
}

.section-profile-page-three .row .callout-button {
	width: 40%;
}

.section-profile-page-three .row .callout-button h5 {
	font-size: 3.4em;
}

.section-profile-page-three .row .callout-button span {
	width: 28px;
	height: 28px;
}

.section-profile-page-four .row .profile-school-links {
	width: 75%;
}

.section-profile-page-four .row .profile-school-links li a span {
	width: 20px;
	height: 20px;
}

.section-profile-page-five .profile-video-callout a .video-callout-details span {
	width: 50px;
	height: 50px;
}

.section-profile-page-six .slider-previous,
.section-profile-page-six .slider-next {
	height: 450px;
}

.section-profile-page-six .slider-row .profile-slider-image {
	height: 450px;
}

.section-body-copy h2.year:not(:first-child) {
	margin-top: 150px;
}

.section-body-copy h2.year {
	font-size: 5.2em;
}

.section-body-copy img {
	max-width: 575px;
}

.section-body-copy.quote-block .row blockquote {
	width: 70%;
	font-size: 3.6em;
}

.section-body-copy .row h2.year {
	font-size: 5.2em;
}

.section-body-copy .row ul,
.section-body-copy .row ol {
	font-size: 20px;
}

.section-body-copy .row .faq-question {
	font-size: 2.8em;
	margin-top: 60px;
}

.section-body-copy .row .google-calendar iframe {
	width: 85%;
	min-width: 800px;
	height: 700px;
}

.section-body-copy .row table caption {
	font-size: 3.2em;
}

.section-body-copy .row table th {
	padding: 5px 35px 5px 10px;
}

.section-body-copy .row table tbody tr td {
	padding: 5px 35px 5px 10px;
}

.section-body-copy .row blockquote p {
	width: 60%;
}

.section-body-copy.contact-information .row {
	margin: 0 7% 0 20%;
}

.section-body-copy.contact-information .row .col-4 p {
	padding-right: 25px;
	font-size: 1.6em;
}

.section-body-copy.contact-information .row .col-4.contact-block {
	padding: 25px 50px 25px 25px;
}

.section-body-copy.fun-fact-container .row h3 {
	font-size: 2em;
	margin-bottom: 15px;
}

.section-body-copy.fun-fact-container .row p {
	font-size: 4.8em;
}

.section-flexible-content .row .flexible-content-block svg {
	width: 65px;
	height: 65px;
}

.section-flexible-content .row .flexible-content-block .flexible-data {
	font-size: 6em;
}

.section-flexible-content .row .flexible-content-block .flexible-title {
	font-size: 2.4em;
}

.section-statistics h2 {
	font-size: 20px;
}

.section-statistics p {
	font-size: 48px;
}

.section-i-am-a-links .row ul li a {
	font-size: 18px;
}

.section-i-am-a-links .row ul li a:hover span,
.section-i-am-a-links .row ul li a:focus span {
	height: 12px;
	width: 12px;
}

.section-campus-portal {
	padding: 75px 0 50px;
}

.section-campus-portal .row .col-left p {
	font-size: 2.4em;
}

.section-campus-portal .row .col-right .dynamic-callout {
	max-width: 350px;
}

.section-campus-portal .row .col-right .dynamic-callout a .callout-details h3 {
	font-size: 4.5em;
}

.a-z-container h1 {
	top: 75px;
}

.a-z-container .no-results {
	font-size: 20px;
}

.a-z-row {
	top: 150px;
	margin-bottom: 200px;
}

.glossary-filter {
	top: -20px;
	height: 40px;
}

.glossary-filter span {
	width: 40px;
}

.glossary-filter span a .glossary-letter {
	font-size: 2.4em;
	height: 40px;
}

.glossary-result {
	width: 50%;
	margin: 50px 15%;
}

.search-active .search-result-wrapper .close-search-results {
	top: 90px;
}

.search-active .search-result-wrapper {
	padding-top: 90px;
}

.search-active .search-result-wrapper #search-results li h4 span {
	height: 18px;
	width: 18px;
	margin-left: 10px;
}

.search-active .search-result-wrapper #search-results li h4 span {
	height: 22px;
	width: 22px;
	margin-left: 14px;
}

.images-section .image-blocks .image-block {
	height: 800px;
}

.contact-forms {
	font-size: 2em;
	padding: 40px 20% 20px;
}

.contact-forms .js-form-type-radio label::before,
.contact-forms .js-form-type-checkbox label::before {
	height: 18px;
	width: 18px;
}

.contact-forms .js-form-type-radio label::after,
.contact-forms .js-form-type-checkbox label::after {
	height: 14px;
	width: 14px;
}

.contact-forms .js-form-type-checkbox label::after {
	height: 10px;
	width: 18px;
	border-left: 4px solid #e5486a;
	border-bottom: 4px solid #e5486a;
}

.contact-forms .js-form-type-checkbox input:checked+label::after {
	top: 1px;
}

.user-login-form {
	font-size: 2em;
}

.view-alerts {
	background-size: 16px;
	height: 40px;
}

.view-alerts .view-header {
	padding-top: 8px;
	font-size: 18px;
}

.view-alerts .view-content .views-row {
	margin-bottom: 120px;
}

.view-alerts .view-content .views-row:last-child {
	margin-bottom: 60px;
}

.view-alerts .view-content .views-row>div.alert-left ul,
.view-alerts .view-content .views-row>div.alert-left ol {
	font-size: 20px;
}

.view-alerts .view-content .views-row .alert-level {
	width: 34px;
	height: 43px;
	background-size: 20px;
	top: -10px;
}

.view-alerts .view-content .views-row .views-field-title {
	font-size: 22px;
}

.section-image-50-50 h2 {
	padding-left: 35px;
}

.section-image-50-50 .row .col-left,
.section-image-50-50 .row .col-right {
	padding: 0 35px;
}

.section-image-50-50 .row .col-left .image-50-50,
.section-image-50-50 .row .col-right .image-50-50 {
	min-height: 375px;
}

.section-image-50-50 .row .col-left ul,
.section-image-50-50 .row .col-left ol,
.section-image-50-50 .row .col-right ul,
.section-image-50-50 .row .col-right ol {
	font-size: 20px;
}

.cal-body .cal-header {
	width: 90%;
}

.cal-body table {
	width: 90%;
}

.cal-body table tbody tr td {
	height: 170px;
}

.cal-body table tbody tr td .cal-content .cal-day-number {
	margin-bottom: 10px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li {
	margin-bottom: 9px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li svg,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li svg {
	top: 4px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li a,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li a {
	top: 1px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail {
	left: 115%;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li {
	margin-bottom: 7px;
}

.cal-body table tbody tr td:last-child .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:last-child .cal-content .cal-fullday-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(6) .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(6) .cal-content .cal-fullday-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(5) .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(5) .cal-content .cal-fullday-events ul li .cal-event-detail {
	right: 115%;
}

.cal-body table tbody tr td.cal-day-expandable .cal-day-show-more {
	padding-top: 13px;
	font-size: 1rem;
}

.cal-body table tbody tr td.cal-day-expandable.cal-day-expand .cal-content {
	padding-bottom: 27px;
}

.cal-body .cal-subscribe {
	width: 90%;
}

.accordion-container {
	max-width: 1574px;
	width: 82%;
}

.accordion-container .accordion-callout {
	margin: 25px 0;
}

.accordion-container .accordion-callout .accordion-element {
	padding: 40px;
	line-height: 100px;
}

.accordion-container .accordion-callout .accordion-element .accordion-header {
	font-size: 2.25rem;
}

.accordion-container .accordion-callout .accordion-element .accordion-title {
	font-size: 2rem;
	line-height: 2.75rem;
	max-height: 2.75rem;
	-webkit-line-clamp: 1;
}

.accordion-container .accordion-callout .accordion-element svg {
	width: 46px;
	height: 46px;
	top: 65px;
}

.accordion-container .accordion-callout .accordion-body {
	padding: 0 40px;
}

.accordion-container .accordion-callout .accordion-body ul,
.accordion-container .accordion-callout .accordion-body ol {
	font-size: 20px;
}

.accordion-container .accordion-callout .accordion-body img {
	max-width: 575px;
}

.accordion-container .accordion-callout.active .accordion-body {
	padding: 5px 40px 40px;
}

}

@media (min-width: 1920px) {

.column-text {
	column-count: 3;
	column-gap: 5%;
	-moz-column-count: 3;
	-webkit-column-count: 3;
	-ms-column-count: 3;
}

h1 {
	font-size: 5.2em;
}

h2 {
	font-size: 4.4em;
}

h3 {
	font-size: 3.2em;
}

h4 {
	font-size: 3.2em;
}

h5 {
	font-size: 3em;
}

h6 {
	font-size: 2.6em;
}

th,
td,
p {
	font-size: 2.4em;
}

.text-button {
	font-size: 1.6em;
}

.text-button svg {
	width: 10px;
	height: 10px;
}

.password-protected-page {
	position: relative;
	height: 115px;
	left: auto;
	width: 85%;
	margin: 0 auto -15px;
	max-width: 1815px;
}

.password-protected-page.protected-search {
	margin-bottom: -115px;
}

.password-protected-page p {
	padding: 65px 140px 0px;
}

.password-protected-page span {
	height: 25px;
	width: 72px;
}

.loading-icon {
	transform: translate(-50%, -50%);
}

header .hidden-info p {
	font-size: 2.4em;
}

header .bps-translogin .lang-rotator {
	min-width: 90px;
}

header .bps-translogin .lang-rotator>span,
header .bps-translogin #google_translate_element>span {
	font-size: 19px;
}

header .bps-translogin .bps-access {
	top: 0;
	font-size: 19px;
}

header .header-menu nav>ul {
	max-width: 1100px;
}

header .header-menu nav>ul>li>a {
	font-size: 2.6em;
}

header .header-menu nav>ul>li ul li a {
	font-size: 2.4em;
}

.path-school-profiles .show-search {
	font-size: 24px;
}

.section-search-bar {
	height: 65px;
}

.section-search-bar div input {
	font-size: 2.8em;
}

.section-search-bar div button img {
	width: 28px;
}

.section-search-bar div button {
	padding: 1.6em;
}

.section-search-bar.grow-search {
	height: 75px;
}

.section-search-bar.grow-search div input {
	font-size: 3.2em;
}

.section-search-bar.grow-search div #search-input:focus ~ .search-input-label,
.section-search-bar.grow-search div #search-input[data-value]:not([data-value=""]) ~ .search-input-label {
	top: 24px;
}

.path-school-profiles .section-search-bar.active div {
	padding: 0 40px;
}

.path-school-profiles .section-search-bar.active div .hide-search {
	font-size: 24px;
	right: -180px;
}

.path-school-profiles .section-search-bar.active div .hide-search span {
	width: 18px;
	height: 18px;
}

.path-school-profiles .section-search-bar.grow-search {
	height: 75px;
}

#search-input:focus ~ .search-input-label,
#search-input[data-value]:not([data-value=""]) ~ .search-input-label {
	top: 20px;
	font-size: 1.5em;
}

.search-input-label {
	font-size: 2.6em;
}

header #google_translate_element .goog-te-gadget {
	display: none;
}

header #google_translate_element .goog-te-gadget-simple {
	border-bottom: 2px solid #e5486a;
}

header #google_translate_element .goog-te-gadget-simple .goog-te-combo {
	font-size: 19px;
	background-size: 12px 12px;
}

.section-search-bar div {
	padding: 0 40px;
	max-width: 1500px;
	margin: 0 auto;
}

.section-primary-landing-callout .primary-callout {
	width: 85%;
	max-width: 1815px;
}

.section-primary-landing-callout .primary-callout .primary-landing-banner {
	width: 100%;
}

.section-primary-landing-callout .primary-landing-banner {
	height: 625px;
	width: 85%;
}

.background-circle-banner-container {
	left: -650px;
	height: 1200px;
	width: 1200px;
}

.section-page-intro h1 {
	max-width: 1075px;
	margin: 0 auto;
	margin-bottom: 1%;
}

.section-page-intro p {
	max-width: 1075px;
	margin: 0 auto;
}

.section-four-block-row {
	padding-bottom: 292px;
}

.section-four-block-row h1 {
	margin-bottom: 180px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a .callout-button p {
	font-size: 24px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a .callout-button p {
	font-size: 24px;
}

.section-dynamic-callouts .row .dynamic-callout a .callout-button p {
	font-size: 40px;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details h3 {
	font-size: 72px;
}

.section-dynamic-callouts .row .dynamic-callout .callout-details p {
	font-size: 32px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a .callout-button p {
	font-size: 24px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 a:hover .callout-button span {
	width: 18px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details h3 {
	font-size: 52px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details p {
	font-size: 32px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-2 .callout-details span {
	width: 100px;
	height: 100px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a .callout-button p {
	font-size: 24px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 a:hover .callout-button span {
	width: 18px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details h3 {
	font-size: 45px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details p {
	font-size: 30px;
}

.section-dynamic-callouts .row .dynamic-callout.columns-3 .callout-details span {
	width: 90px;
	height: 90px;
}

.section-information-blocks .row .col-4 a .information-block div span {
	height: 130px;
	width: 130px;
}

.section-information-blocks {
	padding-bottom: 130px;
	margin-top: 300px;
}

.section-information-blocks .row .col-4 a .information-block {
	padding: 188.5px;
}

.section-information-blocks .callout-button {
	background-size: 36px;
	padding: 35px 38px;
	min-width: 341px;
}

.section-dynamic-news-block .background-circle-information {
	padding: 520px;
	left: -540px;
}

.js-pager__items {
	margin-top: -32px;
}

.section-social-media-block .row .col-3 a .social-media-block span {
	height: 52px;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block span svg {
	height: 52px;
}

.section-social-media-block .row .col-3 a .social-media-block p {
	font-size: 3.5em;
}

.section-social-media-block .row .col-3 a .social-media-block.facebook-block {
	background-size: 45px;
}

footer .footer-callout .footer-callout-wrap.has-link>a,
.footer .footer-callout .footer-callout-wrap.has-link>a {
	min-height: 450px;
	padding-top: 10%;
}

footer .footer-callout .footer-callout-wrap:not(.has-link),
.footer .footer-callout .footer-callout-wrap:not(.has-link) {
	min-height: 350px;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option a .option-details svg {
	height: 100px;
	width: 100px;
}

.section-comparison-tool-landing .row .section-school-tool-options .row .school-tool-option p {
	font-size: 28px;
}

.school-tool-elements.hide-filter.comparing-1 .school-card-area {
	padding-left: 25vw;
	text-align: left;
}

.school-tool-elements.hide-filter.comparing-2 .school-card-area {
	padding-left: 50vw;
	text-align: left;
}

.section-error-message p {
	font-size: 24px;
}

.section-school-card {
	font-size: 1.3em;
	width: 350px;
}

.hide-filter .section-school-card {
	width: 350px;
}

.compare-max-3.show-filter.comparing-1 .section-school-card,
.compare-max-3.show-filter.comparing-2 .section-school-card {
	width: 350px;
}

.section-school-card .school-card-header .tab .school-profile-link {
	font-size: 1em;
}

.section-school-card.zoned-school .school-card-content .zoned-school-alert,
.section-school-card.zoned-school .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school .school-card-content .zoned-school-alert-middle,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school-elem .school-card-content .zoned-school-alert-middle,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-elem,
.section-school-card.zoned-school-middle .school-card-content .zoned-school-alert-middle {
	left: 67%;
	bottom: 5%;
}

.compare-max-3.show-filter.comparing-1 .section-pinned-school-area {
	width: calc(42vw - 380px);
}

.compare-max-3.show-filter.comparing-1 .section-pinned-school-area .pinned-school-area {
	text-align: right;
}

.compare-max-3.hide-filter.comparing-1[data-show="list"] .section-pinned-school-area {
	width: 25vw;
}

.compare-max-3.hide-filter.comparing-1[data-show="list"] .section-pinned-school-area .pinned-school-area {
	text-align: right;
}

.compare-max-3.hide-filter.comparing-2[data-show="list"] .section-pinned-school-area {
	width: 50vw;
}

.compare-max-3.show-filter.comparing-2 .section-pinned-school-area {
	width: calc(60vw - 380px);
}

.comparing-1.hide-filter .section-pinned-school {
	width: 350px;
}

.comparing-1.show-filter .section-pinned-school {
	width: 350px;
}

.comparing-2.hide-filter .section-pinned-school {
	width: 350px;
}

.comparing-2.show-filter .section-pinned-school {
	width: 350px;
}

.comparing-3.hide-filter .section-pinned-school {
	width: 350px;
}

.comparing-3.show-filter .section-pinned-school {
	width: 350px;
}

.section-profile-page-one dd,
.section-profile-page-one dt {
	font-size: 3em;
}

.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .official-state-grade-band-title,
.section-profile-page-one .row .col-left .profile-data-box .profile-data-callout .profile-official-state-grade-band {
	font-size: 3.6em;
}

.section-profile-page-one .row .col-left .profile-data-box dt .term-definition,
.section-profile-page-one .row .col-left .profile-data-box dd .term-definition,
.section-profile-page-one .row .col-left .profile-data-box .term-label .term-definition {
	width: 575px;
	top: 40px;
	font-size: 1.5rem;
}

.section-profile-page-one .row .col-right .profile-map-data .profile-address,
.section-profile-page-one .row .col-right .profile-map-data .profile-phone-number {
	font-size: 3em;
}

.section-profile-page-two h2 {
	font-size: 3.2em;
}

.section-profile-page-two h3 {
	font-size: 3em;
}

.section-profile-page-two .row .col-left .profile-school-category.no-image {
	padding: 48px 0;
}

.section-profile-page-two .row .col-left .profile-school-category.no-image .profile-school-category-title {
	padding: 30px;
}

.section-profile-page-two .row .col-right .profile-school-category.no-image {
	padding: 48px 0;
}

.section-profile-page-two .row .col-right .profile-school-category.no-image .profile-school-category-title {
	padding: 30px;
}

.section-profile-page-three h2 {
	font-size: 4em;
}

.section-profile-page-three .row .callout-button h5 {
	font-size: 4em;
}

.section-profile-page-three .row .callout-button span {
	width: 32px;
	height: 32px;
}

.section-profile-page-four .row .profile-school-links li a span {
	width: 24px;
	height: 24px;
}

.section-profile-page-five .profile-video-callout a .video-callout-details span {
	width: 64px;
	height: 64px;
}

.section-profile-page-five .profile-video-callout {
	padding: 450px 0;
}

.section-profile-page-six .slider-previous,
.section-profile-page-six .slider-next {
	height: 575px;
}

.section-profile-page-six .slider-row .profile-slider-image {
	height: 575px;
}

.section-body-copy img {
	max-width: 675px;
}

.section-body-copy.quote-block .row blockquote {
	font-size: 4em;
}

.section-body-copy .row ul,
.section-body-copy .row ol {
	font-size: 24px;
}

.section-body-copy .row .faq-question {
	font-size: 3.8em;
}

.section-body-copy .row .google-calendar iframe {
	width: 80%;
	height: 800px;
	max-width: 1300px;
}

.section-body-copy .row table caption {
	font-size: 4em;
}

.section-body-copy.contact-information .row {
	margin: 0 12% 0 30%;
}

.section-body-copy.contact-information .row .col-4 p {
	font-size: 1.8em;
}

.section-body-copy.fun-fact-container .row h3 {
	font-size: 2.4em;
	margin-bottom: 20px;
}

.section-body-copy.fun-fact-container .row p {
	font-size: 6.2em;
}

.section-flexible-content h2 {
	margin-bottom: 75px;
}

.section-flexible-content .row .flexible-content-block svg {
	width: 95px;
	height: 95px;
}

.section-flexible-content .row .flexible-content-block .flexible-data {
	font-size: 8em;
}

.section-flexible-content .row .flexible-content-block .flexible-title {
	font-size: 2.8em;
}

.section-statistics h2 {
	font-size: 24px;
}

.section-statistics p {
	font-size: 62px;
}

.section-i-am-a-links .row ul li a {
	font-size: 20px;
}

.section-i-am-a-links .row ul li a:hover span,
.section-i-am-a-links .row ul li a:focus span {
	height: 14px;
	width: 14px;
}

.section-campus-portal {
	padding: 100px 0 50px;
}

.section-campus-portal .row .col-left p {
	font-size: 3em;
}

.section-campus-portal .row .col-right .dynamic-callout {
	max-width: 450px;
}

.section-campus-portal .row .col-right .dynamic-callout a .callout-details h3 {
	font-size: 5em;
}

.a-z-container h1 {
	top: 100px;
}

.a-z-container .no-results {
	font-size: 24px;
}

.a-z-row {
	top: 200px;
	margin-bottom: 275px;
}

.glossary-filter {
	top: -29px;
	height: 58px;
}

.glossary-filter span {
	width: 58px;
}

.glossary-filter span a .glossary-letter {
	font-size: 3.2em;
	height: 58px;
}

.glossary-result a .a-z-link {
	font-size: 18px;
}

.glossary-result a .a-z-link span {
	font-size: 12px;
}

.images-section .image-blocks .image-block {
	max-width: 1400px;
	margin: 0 auto;
}

.contact-forms {
	font-size: 2.4em;
}

.contact-forms .js-form-type-radio label::before,
.contact-forms .js-form-type-checkbox label::before {
	height: 22px;
	width: 22px;
}

.contact-forms .js-form-type-radio label::after,
.contact-forms .js-form-type-checkbox label::after {
	height: 18px;
	width: 18px;
}

.contact-forms .js-form-type-checkbox label::after {
	height: 12px;
	width: 20px;
}

.user-login-form {
	font-size: 2.4em;
}

.view-alerts .view-content .views-row>div.alert-left ul,
.view-alerts .view-content .views-row>div.alert-left ol {
	font-size: 24px;
}

.view-alerts .view-content .views-row .views-field-title {
	font-size: 26px;
}

.section-image-50-50 h2 {
	padding-left: 50px;
	max-width: 1900px;
	width: 90%;
	margin: 0 auto 30px;
}

.section-image-50-50 .row .col-left,
.section-image-50-50 .row .col-right {
	padding: 0 50px;
}

.section-image-50-50 .row .col-left .image-50-50,
.section-image-50-50 .row .col-right .image-50-50 {
	min-height: 450px;
}

.section-image-50-50 .row .col-left ul,
.section-image-50-50 .row .col-left ol,
.section-image-50-50 .row .col-right ul,
.section-image-50-50 .row .col-right ol {
	font-size: 24px;
}

.cal-body .cal-header {
	max-width: 1815px;
	width: 85%;
}

.cal-body .cal-header .cal-month {
	margin: 0 55px;
}

.cal-body .cal-header .cal-back {
	margin: 0 25px 0 45px;
}

.cal-body table {
	max-width: 1815px;
	width: 85%;
}

.cal-body table tbody tr td {
	min-width: 250px;
	width: 250px;
	height: 200px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul {
	max-width: 240px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li {
	margin-bottom: 10px;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td .cal-content .cal-fullday-events ul li .cal-event-detail {
	width: 450px;
	left: 110%;
}

.cal-body table tbody tr td .cal-content .cal-daily-events ul li {
	margin-bottom: 20px;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul {
	max-width: 242px;
}

.cal-body table tbody tr td .cal-content .cal-fullday-events ul li {
	margin-bottom: 17px;
}

.cal-body table tbody tr td:last-child .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:last-child .cal-content .cal-fullday-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(6) .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(6) .cal-content .cal-fullday-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(5) .cal-content .cal-daily-events ul li .cal-event-detail,
.cal-body table tbody tr td:nth-child(5) .cal-content .cal-fullday-events ul li .cal-event-detail {
	right: 110%;
}

.cal-body table tbody tr td.cal-day-expandable .cal-day-show-more {
	font-size: 1.25rem;
	padding-top: 5px;
}

.cal-body .cal-subscribe {
	max-width: 1815px;
	width: 85%;
}

.accordion-container .accordion-callout .accordion-element .accordion-header {
	font-size: 2.5rem;
}

.accordion-container .accordion-callout .accordion-element .accordion-title {
	font-size: 2.375rem;
}

.accordion-container .accordion-callout .accordion-body ul,
.accordion-container .accordion-callout .accordion-body ol {
	font-size: 24px;
}

.accordion-container .accordion-callout .accordion-body img {
	max-width: 675px;
}

}

@media print {

.header-menu,
.section-search-bar,
.background-circle-banner-container,
.background-square-four-block-container,
.story-date,
.section-i-am-a-links,
.section-information-blocks,
.section-dynamic-callouts,
.section-social-media-block,
.section-four-block-row,
.images-section,
.section-profile-page-five,
.background-square-news-top-container,
.background-square-news-bottom,
.background-circle-information,
.background-square-image-text,
.contact-forms,
.user-login-form,
.section-dynamic-news-block,
footer {
	display: none !important;
	height: 0 !important;
}

img {
	max-width: 500px;
	page-break-inside: avoid;
	margin-bottom: 0;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li:before {
	color: #343434 !important;
}

.section-flexible-content {
	page-break-inside: avoid !important;
}

.section-flexible-content .flexible-data {
	color: #343434 !important;
}

.section-flexible-content svg {
	fill: #343434 !important;
}

.section-campus-portal {
	padding: 0;
	margin: 0;
}

header {
	min-height: 6vh !important;
}

header .bps-logo {
	background-image: url("/themes/custom/baltimore/img/BPS-logo.svg") !important;
	max-width: none;
	left: 0;
}

.section-page-intro {
	margin: 0 !important;
}

.section-primary-landing-callout .primary-landing-banner {
	visibility: hidden !important;
	height: auto !important;
	width: 100%;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout {
	position: relative;
	display: block;
	margin-bottom: 25px !important;
	bottom: 0;
	left: 0;
	visibility: visible !important;
	box-shadow: none;
	background: none;
	padding-left: 0;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout h1 {
	font-size: 40px !important;
}

.section-primary-landing-callout .primary-landing-banner .primary-landing-callout a {
	display: none !important;
}

.section-body-copy {
	padding: 25px 0 !important;
}

.section-body-copy .section-header {
	margin: 0 0 30px;
	font-size: 40px !important;
}

.section-body-copy .row {
	margin: 0;
}

.section-body-copy .row table caption {
	font-size: 28px !important;
}

.section-body-copy .row p {
	font-size: 18px !important;
}

.section-body-copy .quote-block .row blockquote {
	font-size: 32px !important;
}

.section-body-copy .fun-fact-container .row p {
	font-size: 36px !important;
}

.show-bg-shadow,
.section-dynamic-news-block {
	box-shadow: none !important;
}

}

@keyframes openbox {

0% {
	max-height: 0;
}

99% {
	max-height: 75vh;
}

100% {
	max-height: none;
}

}

@keyframes closebox {

0% {
	max-height: 75vh;
}

100% {
	max-height: 0;
}

}

@keyframes rotation {

0% {
	transform: rotate(0deg);
}

100% {
	transform: rotate(359deg);
}

}

