  
/*


montserrat ---> Montserrat Regular
montserrat bold ---> Montserrat Semi-bold

montserrat-bold ---> Monterrat Black


*/



@font-face {
  font-family: "Robust ICG";
  src: url("/css/fonts/robusticgbold.woff2") format("woff2"),
       url("/css/fonts/robusticgbold.woff") format("woff");
}

@font-face {
  font-family: "montserrat";
  src: url("/css/fonts/montserrat-regular-webfont.woff2") format("woff2"),
       url("/css/fonts/montserrat-regular-webfont.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "montserrat";
  src: url("/css/fonts/montserrat-semibold-webfont.woff2") format("woff2"),
       url("/css/fonts/montserrat-semibold-webfont.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "montserrat-bold";
  src: url("/css/fonts/montserrat-extrabold-webfont.woff2") format("woff2"),
       url("/css/fonts/montserrat-extrabold-webfont.woff") format("woff");
  font-weight: bold;
}




html{}
body{
    color: /css/0C233F;
    font-family: montserrat;
}
p{}
h1,h2,h3,h4,h5,h6{
    font-family: montserrat-bold;
    font-weight: bold;
}
a{
    color: /css/0070B9;
}
a:hover{
    text-decoration: none;
}

.fnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.navLgo {
    height: 65px;
	position:relative;z-index:101;
}
.navbar {
    display: flex;
    display: -ms-flexbox;
    background-color: /css/fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    position: relative;
    padding:8px 0;
}
.navlogo {
    padding-right: 3%;
}
.navlinks {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nlink {
    text-align: center;
    position: relative;
}
.nlink:before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width:0%;
    height: 6px;
    background-color: rgba(12, 35, 63, 0.4);
    transition: all ease 0.25s;
    user-select: none;
    pointer-events: none;
}
.nlink:hover:before {
    width: 100%;
}


.nlink:hover .navsublink, .nlink:hover{
	visibility:visible;
	z-index:100;
}
/* same as above, but was causing firefox to not process the parts it understood :/ */
.nlink:has(a:focus) .navsublink, .nlink:has(a:focus){
	visibility:visible;
	z-index:100;
}
.navsublink {
	visibility:hidden;
	position:fixed;
	left:0;
	width:100vw;
	background-color:/css/0C233F;
	color:/css/FFC62F;
    transition: all ease 0.25s;
	z-index:99;
	padding:2em;
	
	flex-grow: 1;
	display: flex;
	align-items: normal;
	justify-content: space-evenly;
	text-align:left;
	border-top: 27px solid /css/FFF;
}
.navsublink>div {
	border-left:1px solid /css/ECECEC;
	/* padding-left:10vw; */
	flex-grow: 1;
	display:flex;
	justify-content:center;
}
.navsublink>div:first-child {
	border-left:0;
	padding-left:0;
}
.nlink:hover .fa-caret-down, .nlink .fa-chevron-down {
	visibility:hidden;
	display:none;
}
.nlink:hover .fa-chevron-down, .nlink .fa-caret-down {
	visibility:visible;
	display:inline-block;
}
.navsublink h1 {
	color:/css/FFC62F !important;
	font-size:20px;
}
.navsublink ul {
	padding-left:0;
}
.navsublink li a {
	color:/css/FFF !important;
}
.navsublink li {
	list-style:none;
}


.nlink a {
    color: /css/0C233F;
    display: inline-block;
    line-height: 1.1em;
    padding: 5px 8px;
}
.nbtns {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    padding-left: 3%;
	z-index:101;
}
.navbtn a {
    border: 2px solid /css/0070B9;
    margin-right: 10px;
    display: inline-block;
}
.navbtn a span {
    color: /css/0070B9;
    font-weight: bold;
    text-transform: uppercase;
    padding: 7px 7px 7px;
    position: relative;
    min-width: 80px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: /css/fff;
    line-height: 1em;
    font-size: 1.1rem;
    font-family: montserrat-bold;
    overflow: hidden;
    z-index: 2;
    transition: all ease 0.25s;
}
.navbtn.navbtn-full a span {
    background-color: /css/0070B9;
    color: /css/fff;
}
.navsearch a {
    color: /css/707070;
    font-size: 1.3em;
}
.navtop {
    background-color: /css/0C223F;
}
.ntlinks {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: flex-end;
}
.ntlinks a {
    color: /css/fff;
    padding: 4px 5px;
    margin: 0px 7px;
}
.ntlinks .nthighlight {
    background-color: /css/0070B9;
    margin-right: 0;
    padding: 4px 10px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.navbar > .container {
    z-index: 100;
}
.navMobile {
    position: absolute;
    top: -105vh;
    left: 0;
    background-color: rgba(0, 112, 185,0.9);
    width: 100vw;
    height: 100vh;
    z-index: -1;
    padding: 86px 0 75px;
    opacity: 0;
    transition: all ease 0.25s;
    backdrop-filter: blur(3px);
    --webkit-backdrop-filter: blur(3px);
    /*overflow: hidden;*/
}
.navMobile.NMopen {
    opacity: 1;
    top:0vh;
}
.navMobileWrap {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    justify-content: space-between;
}
.NMSearch {
    position: relative;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.NMSForm {
    width:100%;
}
.nmsformin {
    position: relative;
}
.nmsforminput input {
    width: 100%;
    padding: 6px 12px;
    border: none;
    font-size: 1.1em;
    background-color: rgba(12, 35, 63, 0.65);
    color: /css/fff;
}
.nmsforminput input::placeholder {
    color: /css/fff;
}
.nmsforminput input:-ms-input-placeholder {
    color: /css/fff;
}
.nmsforminput input::-ms-input-placeholder {
    color: /css/fff;
}

.nmi1 {
    flex: 9% 0 0;
    -ms-flex: 9% 0 0;
}
.nmi2 {
    flex: 33% 0 0;
    -ms-flex: 33% 0 0;
}
.nmi3 {
    flex: 8% 0 0;
    -ms-flex: 8% 0 0;
}
.nmi4 {
    flex: 19% 0 0;
    -ms-flex: 19% 0 0;
}
.nmi5 {
    flex: 9% 0 0;
    -ms-flex: 9% 0 0;
}
.nmi6 {
    flex: 9% 0 0;
    -ms-flex: 9% 0 0;
}

.nmi1, .nmi2, .nmi3, .nmi4, .nmi5, .nmi6, .nmi7 {
    /*border-top: 1px solid red;
    border-bottom: 1px solid red;*/
}
.nmsformsubmit {
    position: absolute;
    top: 0;
    right:0;
    height: 100%;
    width:40px;
    display: flex;
    display: -ms-flexbox;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.nmsformsubmit input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width:100%;
    opacity: 0;
    z-index: 3;
}
.nmsformsubmit svg {
    color: /css/fff
}
.NM-FullW {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    text-align: center;
}
.NM-FullW a {
    width: 100%;
    border-bottom: 2px solid /css/707070;
    border-left: 2px solid /css/707070;
    border-right: 2px solid /css/707070;
    color: /css/707070;
    padding: 7px 3px;
}
.NM-FullW a:first-child {
    border-top: 2px solid /css/707070;
}
.NM-3 {
    display: flex;
    display: -ms-flexbox;
}
.NM-3 a {
    background-color: /css/0C233F;
    color: /css/fff;
    text-align: center;
    padding: 9px 3px;
    border-left: 1px solid /css/0070B9;
    flex: 33.4% 0 0;
    -ms-flex: 33.4% 0 0;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-transform: uppercase;
}
.NM-3.nmi3 a {
    color: /css/FFC62F;
    font-weight: bold;
    text-transform: uppercase;
}
.NM-3 a:first-child {
    border-left: none;
}
.NM-2stack {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    padding: 15px 15px;
}
.NM-2stack a {
    flex: 50% 0 0;
    -ms-flex: 50% 0 0;
    height: 50%;
    padding: 9px 8px;
    text-align: center;
    color: /css/fff;
    font-family: montserrat;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
}
.NM-2stack a:nth-child(1), .NM-2stack a:nth-child(3) {
    border-right: 1px solid /css/0C233F;
}
.NM-2stack a:nth-child(2), .NM-2stack a:nth-child(4) {
    border-left: 1px solid /css/0C233F;
}
.NM-2stack a:nth-child(1), .NM-2stack a:nth-child(2) {
    border-bottom: 1px solid /css/0C233F;
}
.NM-2stack a:nth-child(3), .NM-2stack a:nth-child(4) {
    border-top: 1px solid /css/0C233F;
}
.NM-social {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
}
.NM-social a {
    color: /css/0C233F;
    font-size: 2em;
    min-width: 35px;
    text-align: center;
}
.NToggle {
    font-size: 2em;
    cursor: pointer;
}
.NToggle .fa-times {
    display: none;
}
.NToggle.NToggled .fa-times {
    display: block;
}
.NToggle.NToggled .fa-bars {
    display: none;
}
/css/top {
    position: relative;
    padding-top: 113px;
    width:100%;
}
.NMActive {
    overflow: hidden;
}
.fixaspect {
    width:100%;
    height: 0px;
    padding-bottom: 52.65%;
    position: relative;
}
.fixaspect video {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
}
.fixaspect iframe {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
}
.HHVid {
    width:60%;
    margin-bottom: -12%;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
}
.HHead {
    padding:30px 0 0;
    position: relative;
    overflow: hidden;
	margin-bottom: 1.5em;
}
.HHead:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width:100%;
    height:50px;
    z-index: 2;
	/*
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='/css/00ffffff', endColorstr='/css/ffffff',GradientType=0 );
	*/
}
.bracketed {
    position: relative;
    display:block;
    margin:auto;
}
.brackets {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    z-index: 2;
    opacity: 0.4;
    pointer-events: none;
}
.bracket1 {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 110%;
    border: 25px solid /css/FFC62F;
    border-right: none;
    transition: all ease-out 1s;
}
.bracket2 {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 110%;
    border: 25px solid /css/FFC62F;
    border-left: none;
    transition: all ease-out 1s;
}
.bracketMedia>iframe {
	max-width:100%;
}
.HHead > .container {
    position: relative;
    height: 100%;
    padding-bottom: 40px;
}
.HHMain {
    position: relative;
    z-index: 3;
    padding: 65px 20px 30px;
    display: flex;
    display: -ms-flexbox;
    width: 470px;
    max-width: 87%;
    margin-left: auto;
    margin-bottom: -50px;
    right: 5%;
    bottom: 30px;
}
.HHANY {
    font-family: Robust ICG;
    position: absolute;
    top: -11px;
    left: 2%;
}
.HHANY p {
    font-size: 3.5em;
    padding-right: 10px;
    margin:0;
    line-height: 1em;
}
.HHANY p span {
    color: /css/FFC62F;
}
.HHanytxt h1 {
    text-transform: uppercase;
}

.HHanytxt h1 span {
    position: absolute;
    top: 0;
    left: 15%;
    width:100%;
    overflow: hidden;
}
.HHanytxt {
    flex-grow: 1;
}
.HHBG {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background-image: radial-gradient(/css/999 5%, transparent 0);
    background-size: 35px 35px;*/
}
.HHCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ntl-parent {
    position: relative;
    overflow: hidden;
}
.ntl-child {
    position: relative;
    width:100%;
}
.HHanyDesc p {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    color: /css/fff;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    padding-left: 20%;
}
.HHanytxt h1 {
    position: relative;
    overflow: hidden;
    transition: all ease 1s;
    height: 0;
    color: /css/fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.HHanytxt h1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    background-color: /css/FFC62F;
    height: 33px;
    z-index: -1;
}
.HHanyDesc {
    position: relative;
    overflow: hidden;
    transition: all ease 1s;
    height: 0;
}
.HHlink {
    display: flex;
    display: -ms-flexbox;
    justify-content: flex-end;
    position: relative;
    z-index: 4
}
.HHlink a {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    background-color: /css/0070B9;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
    padding: 5px 10px 5px 15px;
}
.HHlink p {
    color: /css/fff;
    margin-bottom: 0;
    text-transform: uppercase;
    padding-right: 15px;
    font-size: 1.1em;
}
.HHL-icon {
    font-size: 1rem;
    width: 30px;
    text-align: center;
    height: 30px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    border: 2px solid /css/FFC62F;
    color: /css/FFC62F;
    transition: all ease 0.25s;
}
.sintro p {
    color: /css/707070;
    font-family: montserrat-bold;
    font-size: 1.25em;
    text-transform: uppercase;
}
.schoolBox {
    background-color: /css/0C233F;
    color: /css/fff;
    padding: 20px 15px 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 2px 7px rgba(0,0,0,0.3);
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    min-height: 110px;
}
.schoolBox p {
    margin:0;
    font-size: 1.25em;
    position: relative;
    z-index: 2;
    transition: all ease 0.5s;
}
.schoolBox .schoolBoxPlus {
    position: absolute;
    bottom: 6px;
    right: 6px;
    line-height: 1em;
    font-size: 1.4em;
}
.schoolBoxY {
    position: absolute;
    bottom: 0;
    right: 0;
    border-right: 10px solid /css/FFC622;
    border-bottom: 10px solid /css/FFC622;
    border-left: 10px solid transparent;
    border-top: 10px solid transparent;
    border-width: 25px;
    transition: all ease 0.5s;
}
.applyBoxes .schoolBox:hover .schoolBoxY {
    border-width:350px;
}
.schoolBox:hover .schoolBoxY {
    border-width:300px;
}
.schoolBox:hover p {
    color: /css/0C233F
}
.padtb100 {
    padding:100px 0;
}
.padt100 {
    padding:100px 0 0;
}
.btn-common {
    display: inline-block;
}
.btncommonin {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    background-color: /css/0C233F;
    padding: 8px 15px;
    color: /css/fff;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.btn-commonarrow {
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.btn-commonarrow.btn-commonarrowback {
    margin-left: 0;
    margin-right: 6px;
}
.btn-commonarrow svg {
    height: 20px;
    width:20px;
    color: /css/FFC622;
    transition: all ease 0.25s;
}
.btn-commontxt {
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: all ease 0.25s;
    padding-right: 10px;
}
.CommonTxt h2 {
    font-family: montserrat;
    font-weight: normal;
}
.pretitle {
    color: /css/0070B9;
    text-transform: uppercase;
    font-size: 1.1em;
    margin:0;
}
.NMSFLINK-wrap {
    position: absolute;
    top: 0;
    left: 100%;
    width:100%;
    height: 100%;
    z-index: 2;
    padding:86px 0 75px;
    background-color: rgba(0, 112, 185,0.9);
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    backdrop-filter: blur(3px);
    --webkit-backdrop-filter: blur(3px);
}
.navMobile.nmsfon {
    left:-100%;
}
.nmsf-back {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    cursor: pointer;
    color: /css/fff;
}
.nmsf-back svg {
    width:35px;
    height: 35px;
    color: /css/fff
}
.nmsf-back p {
    font-family: montserrat-bold;
    text-transform: uppercase;
    margin:0;
    line-height: 1em;
    font-size: 1.3em;
    padding: 5px;
}
.nmsf-links {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    flex-grow: 1;
    align-content: flex-start;
    max-height: 100%;
    height: 100%
}
.nmsf-links a {
    height: 12%;
    flex: 50% 0 0;
    -ms-flex: 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid /css/0C233F;
    padding: 6px;
    text-align: center;
}
.nmsf-links a span {
    line-height: 1em;
    color: /css/fff;
    font-weight: bold;
}
.ndsfbars {
    height: 14px;
    width: 15px;
    position: relative;
    margin-left: 8px;
}
.ndsfbar1 {
    top: 0;
    left: 0;
    bottom: 0;
    margin:auto;
}
.ndsfbar2 {
    top: 0;
    left: 0;
}
.ndsfbar3 {
    bottom: 0;
    left: 0;
}
.ndsfbar1, .ndsfbar2, .ndsfbar3 {
    position: absolute;
    width:100%;
    height: 0.1em;
    background-color: /css/fff;
    transition: all ease 0.15s;
}
.nthighlight:hover .ndsfbar1 {
    width:66%;
}
.nthighlight:hover .ndsfbar3 {
    width:33%;
}
.ndsf {
    position: fixed;
    top: -100%;
    right: 0%;
    width: 100%;
    max-width: 100vw;
    background-color: rgba(0, 112, 185,0.8);
    z-index: 98;
    height: 100%;
    transition: all ease 0.5s;
    padding: 140px 15px 20px;
    backdrop-filter: blur(3px);
    --webkit-backdrop-filter: blur(3px);
}
.ndsf.ndsfon {
    top:0%;
}
.ndsf > .container {
    position: relative;
}
.ndsfclose {
    color: /css/FFC62F;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    font-size: 2.3em;
    font-family: montserrat-bold;
    text-transform: uppercase;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}
.navbtn a span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width:0;
    border-left: 0px solid /css/0070B9;
    border-bottom: 0px solid /css/0070B9;
    border-right: 0px solid transparent;
    border-top: 0px solid transparent;
    transition: all ease 0.5s;
    z-index: -1;
}
.navbtn.navbtn-full a span:before {
    border-left: 0px solid /css/fff;
    border-bottom: 0px solid /css/fff;
}
.navbtn a:hover span:before {
    border-width:100px;
}
.navbtn a:hover span {
    color: /css/fff;
}
.navbtn.navbtn-full a:hover span {
    color: /css/0070B9
}
.testimonialsIn {
    background-color: /css/fff;
    padding:30px 20px;
    max-width: 950px;
    margin:auto;
}
.testimonials {
    padding:40px 0;
}
.testimonialImg {
    text-align: center;
}
.testimonialImg img {
    width:200px;
    margin:auto;
    border-radius: 50%;
}
.wavePath {
	fill: rgba(0,0,0,0.3);
}
.dark-blue .wavePath {
	fill:/css/FFC62F;
}
.PTWave {
    margin-bottom: 10px;
}
.testim {
    padding:0 20px
}
.testim p {
    font-size: 1.5em;
}
.testim .tauthor {
    color: /css/707070;
    text-align: right;
    margin-right: 20%;
    margin-bottom: 0;
    font-size: 1.3em;
}
.commonHeading h2 {
    font-family: montserrat;
    font-weight: normal;
    font-size: 2.3em;
}
.HBlog {
    padding:100px 0 0;
}
.LPostPre {
    color: /css/FFC622;
    text-transform: uppercase;
    font-size: 1.2em;
    margin:6px 0;
    font-family: montserrat;
    font-weight: normal;
}
.LPostTxt h3 {
    font-family: montserrat-bold;
	/*
    text-transform: uppercase;
	*/
    font-size: 1.5em;
    color: /css/0C233F
}
.LPostTxt .LPostDate {
    color: /css/707070;
    font-size: 0.85em;
    margin-bottom: 8px;
}
.btn-round {
    background-color: /css/0070B9;
    color: /css/fff;
    font-family: montserrat-bold;
    text-transform: uppercase;
    padding: 5px 15px;
    border: 2px solid /css/0070B9;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: all ease 0.5s
}
.broundb {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    border-left: 0px solid /css/0C233F;
    border-bottom: 0px solid /css/0C233F;
    border-right: 0px solid transparent;
    border-top: 0px solid transparent;
    transition: all ease 0.5s;
}
.broundtxt {
    position: relative;
    z-index: 2;
    font-size: 1.2em;
}
.LPostImg {
    padding:10px 8px 8px 4px;
    position: relative;
    display: inline-block;
}
.commonHeading {
    margin-bottom: 30px;
}
.LPostCol {
    border-left: 2px solid rgba(112, 112, 112, 0.3);
    padding-top: 8px;
    padding-bottom: 8px;
}
.LPostCol:first-child {
    border-left: none;
}
.LPost {
    position: relative;
    height: 100%;
}
.LPostBtn {
    position: absolute;
    bottom: 0;
    left: 0;
}
.LPostExcerpt a {
    display: inline-block;
    color: /css/0070B9;
    font-family: montserrat-bold;
    text-transform: uppercase;
}
.box5links {
    padding:100px 0 0;
    overflow: hidden;
}
.commonHeading p {
    font-size: 1.2em;
}
.BoxLinkCol a {
    position: relative;
    display: flex;
    flex-direction: column;
    display: -ms-flexbox;
    transition: all ease 0.5s;
    background-size: 145% !important;
    background-repeat: no-repeat !important;
    height: 100%;
}
.BoxLinkCol a:hover {
    background-size: 155% !important;
}
.boxlinktop {
    width:100%;
    height: 0;
    padding-bottom: 260px;
}
.boxlinkbot {
    background-color: rgba(0, 112, 185, 0.51);
    padding-left: 20px;
}
.boxlinkbotin {
    background-color: /css/0C233F;
    padding: 4px 10px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    height: 100%;
}
.boxlinkbotin p {
    margin:0;
    color: /css/fff;
    text-transform: uppercase;
    padding-right: 15px
}
.blbinplus {
    width: 25px;
    min-width: 25px;
    height: 25px;
    border: 1px solid /css/FFC62F;
    margin-left: auto;
    position: relative;
}
.blbinp:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width:70%;
    margin:auto;
    height: 1px;
    background-color: /css/FFC62F;
}
.blbinp:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width:1px;
    margin:auto;
    height: 70%;
    background-color: /css/FFC62F;
}
.BoxLinkCol {
    margin-bottom: 14px;
    padding: 0 7px;
}
.HEvents {
    padding:100px 0 50px;
}
.bgCG {
    position: relative
}
.bgCG > .container {
    z-index: 3;
    position: relative;
}
.bgCG-grad {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='/css/ffffff', endColorstr='/css/00ffffff',GradientType=0 ); /* IE6-9 */
}
.bgCG-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: /css/e8e9e8;
    transition: all ease 0.75s;
}
.elbx {
    padding:15px 15px 30px;
    background-color: /css/0C233F;
    position: relative;
    color: /css/fff;
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.elbx h4 {
    color: /css/FFC62F;
    font-family: montserrat;
    font-weight: normal;
    font-size: 2.5em;
}
.elbx h3 {
    font-family: montserrat-bold;
    font-size: 1.4em;
    text-transform: uppercase;
}
.eldate p {
    margin:0;
}
.elplus {
    width: 25px;
    height: 25px;
    border: 1px solid /css/FFC62F;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.elcol {
    margin-bottom: 20px;
}
.brackets-blue .bracket1, .brackets-blue .bracket2 {
    border-color: /css/0070B9;
}
.brackets-grey .bracket1, .brackets-grey .bracket2 {
    border-color: /css/707070;
}
.dotContain {
    position: absolute;
    height: 100%;
    width:100%;
    top: 0;
    left: 0;
    padding:40px 0;
}
.dotContainin {
    background-color: rgba(255, 198, 47, 0.2);
    position: relative;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
}
.blueDotCard .dotContainin {
    background-color: /css/0C233F
}
.dotCard {
    position: relative;
}
.inCard {
    background-color: /css/fff;
    padding: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.3);
}
.yForm {
    padding:100px 0;
}
.yFormIn {
    background-color: rgba(0,0,0, 0.1);
    text-align: center;
    padding:40px 32px;
}
.yFormInIn {
    max-width: 600px;
    margin:auto;
    text-align: left;
}
.yFormInIn h3 {
    font-family: montserrat;
    font-weight: normal;
}
.CFORM .c-label {
    font-family: montserrat-bold;
    font-size: 1.1rem;
    margin-bottom: 3px;
}
.CFORM .c-choice-option input[type=radio] {
    margin-right: 5px;
}
.CFORM .c-dropdown select {
    background-color: transparent;
    border: 2px solid /css/0C233F;
    padding: 3px 3px;
    margin-bottom: 5px;
    height: 28px;
    border-radius: 0;
}
.CFORM .c-editor input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid /css/0C233F;
    padding: 3px 3px;
    margin-bottom: 5px;
}
.CFORM .c-editor input[type=checkbox] {
    margin-right: 5px
}
.CFORM .c-editor textarea {
    border:2px solid /css/0C233F;
    background-color: transparent;
    padding:5px 8px;
}
.CFORM .c-forms-form {
    outline: none;
}
.CFORM .c-button {
    background-color: /css/0C233F;
    border-radius: 0;
    text-transform: uppercase;
    border: 2px solid /css/0C233F;
    padding: 5px 10px;
    min-width: 150px;
    position: relative;
    overflow: hidden;
    transition: all ease 0.5s;
}
.CFORM .c-button:hover {
    background-color: /css/FFC62F;
    color: /css/0C233F
}
.col-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-5ths {
    flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    max-width:20%;
}
@media (min-width: 576px) {
    .col-sm-5ths {
        flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        max-width:20%;
    }
}
@media (min-width: 768px) {
    .col-md-5ths {
        flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        max-width:20%;
    }
}
@media (min-width: 992px) {
    .col-lg-5ths {
        flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        max-width:20%;
    }
    .fdlastcol {
        max-width: 40%
    }
}
.footer {
    background-color: /css/0C233F;
    padding:60px 0 0px;
    color: /css/fff;
    overflow: hidden;
}
.fdtlink {
    color: /css/FFC62F;
    font-family: montserrat-bold;
    text-transform: uppercase;
}
.fdl {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    margin-top: 8px;
}
.fdl a {
    color: /css/fff;
}
.fdl span {
    color: /css/FFC62F;
    margin-right: 5px;
}
.fdlindent {
    padding-left: 19px;
    margin-top: 12px;
}
.fdli {
    margin-top: 2px;
}
.fdli a {
    color: /css/fff;
}
.fdli span {
    color: /css/0070B9;
    margin-right: 5px;
}
.fdcsf {
    border: 2px solid /css/0070B9;
    color: /css/fff;
    width: 100%;
    position: relative;
    background-color: /css/0070B9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.fdbtns {
    position: relative;
}
.fdcsf .fdbtntxt {
    position: relative;
    z-index: 2;
    color: /css/fff;
    padding: 3px 6px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    transition: all ease 0.5s;
}
.fnavbtns {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    margin:0 -10px 0;
}
.fnavbtns .navbtn {
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    padding: 0 10px;
    margin-top: 10px;
}
.fnavbtns .navbtn a {
    margin-right: 0;
    width:100%;
}
.fdcsfbg {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 0;
    border-left: 0px solid /css/fff;
    border-bottom: 0px solid /css/fff;
    border-right: 0px solid transparent;
    border-top: 0px solid transparent;
    z-index: 1;
    transition: all ease 0.5s;
}
.fdcsf:hover .fdcsfbg {
    border-width: 250px;
}
.fdcsf:hover .fdbtntxt {
    color: /css/0070B9;
}
.fbtn-transparent a span {
    background-color: transparent;
    color: /css/fff;
}
.fbtn-transparent a {
    color: /css/fff;
    border-color: /css/fff;
}
.fdMoreLinks {
    margin-top: 20px;
}
.fdMoreLinks a {
    position: relative;
    color: /css/fff;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.fdMoreLinks a span {
    position: relative;
    padding-bottom: 3px;
    flex-grow: 1;
}
.fdMoreLinks a span:before {
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    width:20%;
    background-color: /css/FFC62F;
    height: 1px;
    transition: all ease 0.25s;
}
.ftoplinks {
    padding:0 0 30px;
    border-bottom: 1px solid /css/707070
}
.fcontact {
    margin-top: 8px;
}
.fcontact p {
    margin:0;
}
.fmidlinks {
    padding:35px 0 0;
}
.fmidheading {
    color: /css/FFC62F;
    font-family: montserrat-bold;
    text-transform: uppercase;
    font-size: 1.1em;
}
.fsocials {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
}
.fsocials a {
    color: /css/fff;
    font-size: 2em;
    margin: 0 7px 5px 0;
    line-height: 1em;
}
.hpot {
    height: 0;
    width:0;
    position: relative;
    overflow: hidden;
}
.hpot input {
    position: absolute;
    left: -9999px;
}
.fsubrow {
    position: relative;
}
.fsubinput input {
    width:100%;
    border:none;
    border-bottom: 2px solid /css/fff;
    padding:3px 5px;
    background-color: transparent;
    color: /css/fff;
}
.fsubsubmit {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.fsubsubmit svg {
    width:30px;
    color: /css/FFC62F;
    height: 30px;
    z-index: 1;
    pointer-events: none;
}
.fsubsubmit input {
    position: absolute;
    top: 0;
    right: 0;
    width:100%;
    height: 100%;
    opacity: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
}
.fbotlinks {
    padding: 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.fbotlinks a {
    color: /css/fff;
    border-left: 1px solid /css/707070;
    padding: 2px 3%;
}
.fbotlinks a:first-child {
    border-left: none;
}
.fmlinks {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    padding:20px 15px;
}
.fmlinks a {
    flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    padding: 5px;
    border-left: 1px solid /css/FFC62F;
    text-align: center;
    color: /css/fff;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
}
.fmlinks a:first-child {
    border-left: none;
}
.fmblinks {
    text-align: center;
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
}
.fmblinks a {
    background-color: /css/0070B9;
    color: /css/fff;
    font-family: montserrat-bold;
    padding:5px;
    min-width: 100px;
    text-transform: uppercase;
    border:1px solid /css/fff;
    border-right: none;
    font-size: 1.2em;
}
.fmblinks a:first-child {
    border-left: none;
}
.fmlogo {
    padding:0 15px;
}
.fmbblinks {
    padding: 0 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.fmbblinks a {
    color: /css/fff;
    padding: 1px 15px;
    border-left: 1px solid /css/707070;
    text-align: center;
    margin-bottom: 5px;
}
.fmbblinks a:first-child {
    border-left: none;
}
.CommonTxt .btn-common {
    margin-bottom: 7px;
}
.PROGRAMS {
    padding:100px 0;
}
.Header {
    position: relative;
    height: 55vh;
    margin-bottom: 15px;
}
.headerbg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.Header > .container {
    position: relative;
    z-index: 2;
    height: 100%;
}
.headerBox {
    position: absolute;
    bottom: -15px;
    left: 15px;
    right:15px;
    display: flex;
    display: -ms-flexbox;
}
.headerBox h1 {
    
    margin:0;
    text-align: center;
}
.headerText {
    background-color: /css/fff;
    padding:15px 30px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
    position: relative;
}
.headerText p {
    margin:0;
}
.bcrumbs {
    padding:30px 0 0;
}
.breadcrumbs {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: /css/707070 !important;
}
.breadcrumbs span {
    color: /css/707070;
    padding:0 3px;
}
.pList {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin:0 -7px;
}
.pItem {
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    padding:0 7px;
    margin-bottom: 14px;
}
.pItemIn {
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
}
.pItemIn > a {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    color: /css/0C233F;
    padding: 15px 15px 15px 25px;
    background: /css/0C233F;
    color: /css/fff;
    height: 90px;
}
.pItem a h3 {
    margin: 0 auto 0 0;
    font-size: 1.2em;
    font-family: montserrat;
    padding-right: 10px;
    color: /css/fff;
}
.pItem a svg {
    font-size: 1.2em;
}
.pbtn .btn-common {
    justify-content: center;
}
.pbtn .btncommonin {
    justify-content: center;
}
.pItemDIn {
    padding: 15px 15px 15px;
    color: /css/fff;
    background: /css/0C233F;
    border-top: 1px solid /css/fff;
}
.pItemDIn a{
	color:/css/FFC62F;
}
.pItemDIn a:hover{
	color:/css/0070B9;
}
.pCheck label {
    display: flex;
    display: -ms-flexbox;
    position: relative;
    margin: 0;
}
.pCheck input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.pCheck p {
    margin:0;
    user-select: none;
}
.pCheckMark {
    width:20px;
    min-width: 20px;
    height: 20px;
    border:1px solid /css/0C233F;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-top: 1px;
}
.pCheckMark svg {
    display: none;
    color: /css/fff;
}

.pCheck input:checked ~ .pCheckMark {
    background-color: /css/0C233F;
}
.pCheck input:checked ~ .pCheckMark svg {
    display: block;
}
.pCheck {
    display: flex;
    display: -ms-flexbox;
    margin-bottom: 5px;
}
.pItem .pProgramType, .pItem .pFormat, .pItem .pSchool, .pItem .pLocation {
    display: none;
}
.pCheckboxes {
    margin: 30px 0;
}
.psearch p {
    margin-bottom: 0;
}
.psearch input {
    border:none;
    border-bottom: 2px solid /css/0C233F;
    padding: 2px 5px;
    width:100%;
}
.psearchinput {
    position: relative;
}
.psearchinput svg {
    position: absolute;
    top: 0;
    right: 2px;
    height: 100%;
    width:25px;
    pointer-events: none;
    user-select: none;
}
.CFORM .c-forms-progress li {
    border-bottom: 2px solid transparent
}
.CFORM .c-forms-progress li.c-page-selected {
    border-bottom: 2px solid /css/FFC62F
}
.pCheckboxes h4 a {
    color: /css/0C233F;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.pCheckboxes h4 a svg {
    margin-left: auto;
}
.pCheckboxes .fa-minus {
    display: block;
}
.pCheckboxes .fa-plus {
    display: none;
}
.pCheckboxes .collapsed .fa-minus {
    display: none;
}
.pCheckboxes .collapsed .fa-plus {
    display: block;
}
.commonHeading h3 {
    color: /css/0070B9;
    text-transform: uppercase;
    font-size: 1.1em;
}
.bigTextCenter {
    font-size: 1.3em;
    text-align: center;
}
.AcalogSection {
    padding: 50px 0 0px;
}
.acalog-program-name, .acalog-program-core-name {
    font-family: montserrat;
    font-weight: normal;
}
h4.acalog-program-core-name {
    font-family: montserrat-bold;
    font-size: 1.3em;
}
.curriculumBot {
    padding:80px 0 0;
}
.bigCenterTxt {
    text-align: center;
    font-size: 1.3em;
}
.centeredBtns {
    text-align: center;
}
.curriculumBot .centeredBtns {
    padding:0px 0 0;
}
/*
disabled on 2021-02-18 - causing weird layout issues (course items wrapping next to each other and looking really ugly)
.acalog-program-core-courses {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin:0 -15px 20px;
}
.acalog-program-core-course {
    flex:0 0 50%;
    -ms-flex: 0 0 50%;
    padding:0 15px;
}
*/

@media (min-width: 991px ) {
    .program-overview-section {
        position: sticky;
        top: 10px;
        z-index: 97;
    }
}



.pCheckboxes > h4 {
    font-size: 1.2em;
}
.palum {
    border: 2px solid /css/0C233F;
    padding: 15px;
}
.palumlist {
    padding:100px 0 0;
}
.palum p {
    margin:0;
}
.palum h5 {
    margin:5px 0 1px
}
.ApplyLinks {
    overflow: hidden;
    padding:30px 0 0;
}
.Accreditation {
    padding:100px 0 0;
}
.blogPosts {
    padding:100px 0 ;
}
.bList {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin:0 -8px;
}
.bLi {
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    padding:0 8px;
    max-width: 50%;
}
.blogPost {
    padding:100px 0 50px;
}
.bpiimg {
    text-align: center;
    margin:auto;
}
.postDate {
    font-family: montserrat;
    color: /css/707070;
    font-weight: normal;
    font-size: 1.1em;
}
.pContactB {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    padding:2px 5px;
    margin-bottom: 5px;
    font-weight: bold;
    color: /css/0C233F
}
.pContactB p {
    margin:0;
}
.pContactB svg {
    font-size: 1.1em;
    margin-right: 6px;
}
.postContacts {
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.schoolBox.postNavPost {
    flex-direction: column;
    align-items: flex-start;
}
.schoolBox .pNP-p {
    font-size: 0.9em;
}
.padb100 {
    padding-bottom: 100px;
}
.padb50 {
    padding-bottom: 50px;
}
.marb100 {
    margin-bottom: 100px;
}
.FACULTY {
    padding:100px 0;
}
.dep-c a {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    color: /css/707070;
}
.dep-c p {
    margin:0;
}
.dep-c svg {
    margin-right: 4px;
    font-size: 1.2em;
}
.dep-c {
    margin-bottom: 10px;
}
.dropFilter {
    margin:30px 0;
}
.dropf {
    width: 100%;
    border: 2px solid /css/0C233F;
    border-radius: 0;
    /* -webkit-appearance: none; */
    padding: 3px;
    color: /css/0C233F;
    font-weight: bold;
    font-size: 1.2em;
}
.Department-Info {
    margin-bottom: 30px
}
.Center-Info {
    margin-bottom: 30px;
}
.dropFilter h4 {
    font-size: 1em;
}
.fList {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin:0 -8px;
}
.fac-i {
    flex:0 0 33.33%;
    -ms-flex: 0 0 33.33%;
    padding:0 8px;
    margin-bottom: 15px
}
.fac-in {
    color: /css/707070;
    padding: 15px;
    height: 100%;
    border: 0px solid /css/0C233F;
    position: relative;
    display: block;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
}
.fac-i p {
    margin:0 0 5px;
}
.fac-i svg {
    font-size: 2em;
}
.fac-i h3 {
    margin: 4px 0 4px;
    font-family: montserrat;
    font-weight: normal;
    font-size: 1.5em;
}
.fac-in a {
    color: /css/707070
}
.headerSm {
    padding: 20px 0;
    border-bottom: 2px solid /css/0C233F;
    text-align: center;
}
.staffBio {
    padding:80px 0;
}
.staffLinks .dep-c {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    align-items: center;
    margin:15px 0;
    font-size: 1.2em;
}
.staffLinks .dep-c a {
    margin-right: 20px;
}
.fac-tags p {
    color: /css/707070;
    margin-bottom: 7px;
}
.fac-tags .fac-th {
    font-weight: bold;
    margin:0;
}
.fac-tags {
    margin-bottom: 20px;
}
.fac-bio {
    margin-bottom: 30px;
}
.ProgramFaculty {
    padding:70px 0 0
}
.row.fac-i {
    padding:0;
}
.todaysEvents {
    padding:50px 0 80px;
}
.calendarS {
    padding:80px 0 0;
}

.equinox .calendar-header {
    background-color: /css/0C233F
}
.month-label {
    color: /css/FFC62F;
}
.catwCo {
    font-weight: bold;
}
.mecal-i a {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    padding: 10px;
    color: /css/0C233F;
    background-color: /css/fff;
    flex-wrap: wrap;
}
.mecal-i a h3.mecdt {
    color: /css/FFC62F;
    margin-right: 15px;
}
.mecal-i a h3.mecnm {
    font-family: montserrat;
    font-weight: normal;
}
.mecal-i a p.meclo {
    flex:0 0 100%;
    -ms-flex: 0 0 100%;
    font-family: montserrat;
    font-weight: normal;
    margin: 0
}
.mecal-i a h3 {
    margin:0;
    font-size: 1.3em;
}
.mecal-i {
    margin-bottom: 9px;
    border-left: 7px solid /css/0C233F;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}
.mecalBtns {
    display: flex;
    display: -ms-flexbox;
    margin:15px -8px 20px;
}
.mecalBtn {
    flex: 0 0 33.33%;
    -ms-flex: 0 0 33.33%;
    padding:0 8px;
    text-align: center;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mecalBtn span {
    padding: 5px;
    border: 2px solid /css/0C233F;
    width: 100%;
    text-transform: uppercase;
    font-family: montserrat-bold;
    font-size: 1.2em;
}

.cevent {
    display: none !important
}
.calendar-actions button {
    border: 2px solid /css/fff;
    color: /css/fff;
    font-family: montserrat-bold;
    text-transform: uppercase;
    background-color: transparent;
    padding: 3px 6px;
    width: 110px;
}
.showFilters {
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: all ease 0.25s;
    justify-content: center;
    cursor: pointer;
    max-height: 100px
}
.showFilters span {
    border:2px solid /css/0C233F;
    width: 100%;
    font-family: montserrat-bold;
    font-size: 1.3em;
    text-align: center;
    padding: 8px 5px;
}
.eventCin {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin-top: 10px;
}
.eventCin a {
    font-size: 1.15em;
    margin-right: 25px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    color: /css/707070;
}
.eventCin a p {
    margin:0;
}
.eventCin a svg {
    margin-right: 8px;
}
.eventBtnBlock {
    padding:80px 0;
}
.ebtnBlock {
    text-align: center;
}
.ebtnBlock a.btn-common {
    margin:15px;
}
.STUDENTORGS {
    padding:80px 0 0;
}
.clubLi > a {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    color: /css/fff;
    background-color: /css/0C233F;
    padding:7px 12px;
    height: 100%;
    justify-content: space-between;
    height: 83px;
}
.clubLi h3 {
    margin: 0 auto 0 0;
    font-size: 1.2em;
    font-family: montserrat;
    padding-right: 8px;
}
.clubLi svg {
    width:30px;
}
.clubList {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin:0 -8px;
}
.clubLi {
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    padding:0 8px;
    margin-bottom:10px;
}
.studentOrgEvents {
    padding:0 0 80px;
}
.programOrgs {
    padding:60px 0 0;
}
.svgTriangle0{clip-path:url(/css/);}
.svgTriangle1{clip-path:url(/css/);fill:url(/css/);}
.svgTriangle2{clip-path:url(/css/SVGID_6_);}
.svgTriangle3{fill:none;stroke:/css/FFC731;stroke-width:1.5;stroke-miterlimit:10;}


.dashTriangle {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width:80px;
    pointer-events: none;
}
.dashTriangle svg {
    width:100%;
}
.blogTriangle {
    width:70px;
    bottom: 0;
    right: 0;
    position: absolute;
    pointer-events: none;
}
.blogTriangle svg {
    width:100%;
}
.padt60 {
    padding-top: 60px;
}
.admissionLinks {
    overflow: hidden;
}
.box4links {
    overflow: hidden;
}
.sReq .pretitle {
    font-family: montserrat-bold;
}
.cusddt {
    display: flex;
    display: -ms-flexbox;
    padding: 5px 10px 5px 15px;
    font-size: 1.2rem;
    cursor: pointer;
}
.cusddt p {
    margin: 0 15px 0 0;
}
.cusdd {
    display: inline-block;
    position: relative;
    width: 330px;
    max-width: 100%;

}
.cusddbin {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    background-color: /css/fff
}
.cusddarrow {
    margin-left: auto;
    border-left: 2px solid /css/0C233F;
    padding: 0 0 0 6px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.customDropdown {
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
    display: inline-block;
}
.cusddbin a {
    padding:5px 15px;
    border-top: 2px solid /css/0C233F;
    transition: all ease 0.1s;
    background-color: transparent;
    color: /css/0C233F;
    font-weight: bold;
}
.cusddb {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
    overflow: hidden;
    max-height: 0px;
    transition: all ease 0.5s;
}
.cusdd-open .cusddb {
    max-height: 200px;
    overflow-y: scroll;
}
.topTYS {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}
.cusddarrow .fa-chevron-up {
    display: none;
}
.cusdd-open .cusddarrow .fa-chevron-up {
    display: block;
}
.cusdd-open .cusddarrow .fa-chevron-down {
    display: none;
}
.TYSlogo {
    margin-bottom: 20px;
    text-align: center;

}
.TYSlogo > a {
    display: inline-block;
    margin:auto;
}
.AccLogos {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px
}
.AccLogo {
    padding:0 15px;
    margin-bottom: 20px;
}
.schoolBoxCol {
    margin-bottom: 20px;
}
.mart100 {
    margin-top: 100px;
}
.smallCTA {
    padding: 50px 0;
    border-top: 1px solid /css/eee;
    border-bottom: 1px solid /css/eee;
    text-align: center;
}
.mealPbtn {
    display: flex;
    display: -ms-flexbox;
}
.mealP {
    background-color: /css/0C233F;
    color: /css/fff;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.5);
}
.mealPbtn {
    color: /css/fff;
    font-size: 1.2em;
    padding:10px 13px;
    font-family: montserrat-bold;
}
.mealPbtn p {
    margin:0;
    padding-right: 10px;
}
.mealParrow {
    color: /css/FFC62F;
    margin-left: auto;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.mealPCin {
    padding:15px 8px 5px;
    border-top: 2px solid /css/FFC62F;
}
.mealPCol {
    margin-bottom: 20px;
}
.mealPbtn.collapsed .fa-chevron-up {
    display: none;
}
.mealPbtn.collapsed .fa-chevron-down {
    display: block;
}
.mealPbtn .fa-chevron-down {
    display: none;
}
.bannerCTA {
    padding:40px 0;
    text-align: center;
    color: /css/fff;
    background-color: /css/0C233F;
}
.mart60 {
    margin-top: 60px;
}
.cpartLinks {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.cpartLink {
    font-family: montserrat-bold;
    font-size: 2rem;
    color: /css/0070B9;
    padding: 2px 2px 2px 0;
    margin-right: 10px;
}
.cparth p {
    color: /css/0C233F;
    font-size: 1.6rem;
    margin:16px 0 0 0;
}
.cparti p {
    margin-bottom: 0;
    color: /css/fff
}
.cparth {
    position: relative;
    display: block;
    text-align: center;
    padding:0 15px;
}
.cparth p {
    color: /css/fff;
    font-weight: bold;
    background: /css/0C233F;
    padding:10px 0;
}
.cparth > div {
    position: relative;
    top: -125px;
}
.spDip {
    margin-bottom: 20px;
    padding-left: 20px;
}
.spDip p {
    margin-bottom: 0;
}
.staffContact p {
    color: /css/FFC62F;
    font-family: montserrat-bold;
}
.spname {
    display: block;
    color: /css/fff;
}
.ccontactbtn {
    color: /css/fff;
    font-size: 1.2em;
    margin-right: 4px;
}
.checklsubh {
    color: /css/FFC62F;
    font-family: montserrat;
    font-size: 1.1rem;
}
.tt-dd {
    background: /css/0C233F;
    color: /css/fff;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.5);
}
.ttddtable .table {
    color: /css/fff;
}
.ndsflinks .ndsfcol {
    height: 17vh;
    position: relative;
    border-top: 2px solid /css/0C233F;
    border-left: 2px solid /css/0C233F;
}
.ndsfcol a {
    color: /css/fff;
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    padding:12px;
    transition: all ease 0.25s;
    background-color: transparent;
}
.ndsfcol a:hover {
    background-color: rgba(0, 112, 185, 0.7)
}
.ndsflinks {
    padding-top: 40px;
}
.ndsfcol:nth-child(1), .ndsfcol:nth-child(2), .ndsfcol:nth-child(3), .ndsfcol:nth-child(4) {
    border-top: none;
}
.ndsfcol:nth-child(1), .ndsfcol:nth-child(5), .ndsfcol:nth-child(9), .ndsfcol:nth-child(13) {
    border-left: none;
}
.ndsfcol a p {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.2em;
}
.ndsfcol a img {
    margin:8px;
    max-height: 75px;
}
.hunderboxes .schoolBoxCol {
    margin-bottom: 0;
}
.bluesplit {
    background-color: /css/0C233F;
}
.btnlightblue .btncommonin {
    background-color: /css/0070B9
}
.bluewave .wavePath {
    fill: /css/0070B9
}
.nmsf-links a img {
    max-height: 100%;
    padding: 5px 5px 5px 5px;
}
.fList2 {
    display: flex;
    display: -ms-flexbox;
    margin:0 -8px;
}
.fList2 > div {
    flex:50% 0 0;
    -ms-flex: 50% 0 0;
    padding:0 8px;
}
.hbvmtxt svg {
    width: 30px;
    margin: 0 0 0 20px;
}
.hbvmin {
    width: 50%;
    background: /css/FFC62F;
    margin-left: auto;
    position: relative;
}
.hbvmin:before {
    content: "";
    position: absolute;
    left: 100%;
    height: 100%;
    width:100vh;
    background:/css/FFC62F;
}
.hbvmtxt {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    color: /css/0C233F;
    padding: 20px;
    font-size: 1.2em;
}
.hb-vm {
    overflow: hidden;
}
.hbvmtxt p {
    margin:0;
}
.Header.Headernoimg {
    height: 20vh;
    background: /css/0C233F;
}
.boxtxtr {
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    padding: 45px 25px 45px 50px;
}
.boxtxtl {
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    padding: 45px 50px 45px 25px;
}
.boxpicl {
    position: relative;
    z-index: 2;
}
.syw-img {
    position: relative;
    z-index: 2;
}
.syw-img img {
    max-height: 100%;
    transition:all ease 1s;
}
.syw-l .syw-in {
    background-color: /css/FFC62F;
    height: 100%;
}
.syw-in {
    position: relative;
    padding: 100px 15px 50px 0;
    margin-top: -50px;
}
.syw-l .syw-in:before {
    content: "";
    position: absolute;
    right: 100%;
    width:100vw;
    background-color: /css/FFC62F;
    height: 100%;
    top: 0;
}
.splityw {
    overflow: hidden;
}
.searchbar {
    position: absolute;
    right: 00%;
    top: -100%;
    transition: all ease 0.3s;
    z-index: -1
}
.searchbar.searchOpen {
    top:100%;
}
.searchdfs {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.searchdfi {
    position: relative;
    z-index: 3;
}
.searchdfi input {
    width:250px;
    border:2px solid /css/0C233F;
    background-color: /css/fff;
    color: /css/0C233F;
    padding:5px;
}
.searchdfsi input {
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.searchdfsi {
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 3;
}
.searchdfs-icon {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    width: 42px;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.allsresults a {
    color: /css/0070B9;
}
.allsresults h2 {
    font-size: 1.2em;
}
.asresult {
    margin:30px 0 50px;
}
.mSearchForm {
    
}
.mSearchForm form {
    position: relative;
    display: inline-block;
}
.beginsearch {
    cursor: pointer;
}
.sdstable thead th {
    background-color: /css/0C233F;
    color: /css/fff;
    vertical-align: middle;
    line-height: 1.2em;
    user-select: none;
    cursor: pointer;
}
.sdstable .sort .fa-chevron-down, .sdstable .sort .fa-chevron-up {
    display: none;
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    margin: auto;
    font-size: 0.6em;
}
.sdstable .sort.asc .fa-chevron-down {
    display: block;
}
.sdstable .sort.desc .fa-chevron-up {
    display: block;
}
.sdstable span.sort {
    padding-right: 20px;
    position: relative;
}
.sds-searchtxt {
    margin:0;
    font-family: montserrat;
    font-weight: bold;
}
.sds-search {
    margin-bottom: 20px;
    border: 2px solid;
    padding: 3px 5px;
}
.sdsm-btn {
    background-color: /css/0C233F;
    color: /css/fff !important;
    padding: 10px 10px;
    display: block;
    font-size: 1.1em;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.sdsm-btn span {
    padding-right: 15px;
}
.sdsm-i {
    margin-bottom: 15px;
}
.sdsm-icon {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    margin-left: auto;
}
.sdsm-btn .fa-minus {
    display: block;
}
.sdsm-btn .fa-plus {
    display: none;
}
.sdsm-btn.collapsed .fa-minus {
    display: none;
}
.sdsm-btn.collapsed .fa-plus {
    display: block;
}
.centeredParain {
    font-size: 1.4em;
    text-align:center;
}
.equinox .event .title {
    overflow-x: unset;
}
.pagination  {
    display: flex;
    display: -ms-flexbox;
}
.pagination li {
    border: 2px solid /css/0C233F;
    display: flex;
    display: -ms-flexbox;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin-right: 5px;
    margin-bottom: 5px;
    position: relative;
}
.pagination li a {
    width: 100%;
    display: block;
    text-align: center;
    color: /css/0C233F;
}
.pagination li.active {
    background-color: /css/0C233F;
    pointer-events: none;
    cursor: unset;
}
.pagination li.active a {
    color: /css/fff;
}
.pagination li.disabled {
    border:none;
    pointer-events: none;
}
.factop {
    position: relative;
}
.factop.factopImg {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    -ms-flex-direction: column;
}
.factopImg img {
    margin: 0 15px 5px 0;
}
.owlWArrows {
    padding:0 30px;
    position: relative;
}
.owlWArrows .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    margin:auto;
    left: 0;
    width:100%;
    height: 0;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.owlWArrows .owl-nav .owl-next {
    margin-left: auto;
}
.owlWArrows .owl-nav button.owl-next, .owlWArrows .owl-nav button.owl-prev {
    font-size: 2em;
}
.FCircle {
    background-color: /css/0C233F;
    color: /css/fff;
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
    overflow: hidden;
}
.FCirclein {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 15px;
}
.FCirclein p {
    margin: 0;
    font-weight: bold;
    line-height: 1.2em;
    font-size: 1em;
}
.paddBottom100 {
    padding-bottom: 100px;
}
.paddBottom0 {
    padding-bottom: 0;
}
.FCirclein .FC-lg {
    font-size: 3em;
    font-family: 'montserrat-bold';
}
.FCircle.FCircle2 {
    background-color: /css/FFC62F;
    color: /css/0C233F;
}
.FCircle.FCircle3 {
    background-color: /css/0070B9;
}
.sds-iframe iframe {
    max-width: 100%;
}
.sds-iframe {
    text-align: center;
}
.nmsf-links a:nth-child(1), .nmsf-links a:nth-child(2) {
    border-top: 2px solid /css/0C233F;
}
.nmsf-links a:nth-child(odd) {
    border-left: 2px solid /css/0C233F;
}
.nmsf-links a:nth-child(even) {
    border-right: 2px solid /css/0C233F;
}
.nmsf-links a:nth-child(15), .nmsf-links a:nth-child(16) {
    border-bottom: 2px solid /css/0C233F;
}
.flogo {
    height: 60px;
}
.fmlogo img {
    height: 60px;
}
.mapContainer /css/map {
    height: 350px;
}
.lotsButtons .btn-common {
    margin-bottom: 5px;
    margin-right: 5px;
}
.scho-dd .mealPCin {
    padding:15px 15px 15px;
}
.buttonbutton {
    border: none;
    background-color: /css/FFC62F;
    color: /css/0C233F;
    margin-bottom: 6px;
    margin-top: 10px;
    padding: 6px 20px;
    text-align: left;
}
.scho-dd /css/result, .scho-dd /css/result2 {
    font-weight: bold;
}
.scho-dd table th {
    padding:5px;
    text-align: left;
}
.scho-dd table td {
    text-align: left;
    padding: 5px;
}
.goBackBtn {
    margin-top: 8px;
}
.nml-dd .mealPC a {
    color: /css/FFC62F;
    font-weight: bold;
    text-decoration: underline;
}
.nml-dd .mealPCin {
    padding:15px;
}
.nml-dd .mealPC .btn-common {
    text-decoration: none;
}
.ddsubh {
    font-family: montserrat;
    font-size: 0.9em;
    margin-top: 5px !important;
    color: /css/FFC62F;
}
.nml-dd .mealPbtn p {
    line-height: 1em;
}
.CommonTxt.text-white .pretitle {
    color: /css/FFC62F;
}
.CommonTxt.text-white .bluewave .wavePath {
    fill: /css/FFC62F;
}
.footersgmin, .footerfifthcolor {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.footersgmin p, .footerfifthcolor p {
    margin:0;
    color: /css/fff;
    font-size: 0.8em;
}
.footersgmin img {
    height: 55px;
}
.footerfifthcolor img {
    height: 1em;
	margin-left:.5em;
}
.cpartbox {
    background-color: /css/0C233F;
    padding:15px;
    text-align: center;
    height: 100%;
}
.cpartbox p {
    margin:0;
    font-weight: bold;
    font-size: 1.1em;
}
.cpartbox a {
    color: /css/fff !important;
}
.cpartl {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin:0 -15px;
}
.cpartcol {
    flex: 0 0 33%;
    -ms-flex: 0 0 33%;
}
.cpartddin {
    padding:0 15px;
}
.cpartddin2 {
    padding:15px;
    background-color: /css/0C233F;
    border-top: 1px solid /css/fff
}
.cpartddin2 a {
    color: /css/fff;
    cursor: unset;
}
.luANYsvg{
    fill:none;
    stroke:/css/FFFFFF;
    stroke-width:2;
    stroke-miterlimit:10;


    stroke-dashoffset: 323.507;
    stroke-dasharray: 0px, 999999px;
}
.HHANY > svg {
    width:200px;
}
.HHBGin {
/*    
    background: /css/ffc62f;
    background: -moz-linear-gradient(left, /css/ffc62f 0%, /css/0070b9 100%); 
    background: -webkit-linear-gradient(left, /css/ffc62f 0%,/css/0070b9 100%); 
    background: linear-gradient(to right, /css/ffc62f 0%,/css/0070b9 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='/css/ffc62f', endColorstr='/css/0070b9',GradientType=1 );
*/
    background-color: /css/0c233f;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.acalogGroup {
    border:2px solid /css/0C233F;
    margin-bottom: 15px;
}
.acalogBtn a {
    padding: 15px;
    color: /css/fff;
    font-size: 1.3em;
    background-color: /css/0C233F;
    display: block;
    font-weight: bold;
    line-height: 1em;

    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.acalogBtn p {
    margin:0;
    padding-right: 5px;
}
.acalogContent {
    padding: 20px 15px;
}
.acalog-program-name {
    display: none;
}
.acalog-program-core-name {
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: underline;
}
.aca-chev svg {
    font-size: 1.3em;
    color: /css/fff;
}
.aca-chev {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.acalogBtn a .fa-chevron-down {
    display: none;
}
.acalogBtn a.collapsed .fa-chevron-down {
    display: block;
}
.acalogBtn a .fa-chevron-up {
    display: block;
}
.acalogBtn a.collapsed .fa-chevron-up {
    display: none;
}
.commonHeading table th, .commonHeading table td {
    padding:5px;
}
.commonHeading table {
    max-width: 100%;
    width:100%;
}
.btns3col a {
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    width:100%;
}
.btns3col a .btncommonin {
    width:100%;
}
.btn3colin {
    display: flex;
    display: -ms-flexbox;
}
.AccLogo {
    flex:0 0 20%;
    -ms-flex: 0 0 20%;
    text-align: center;
}
.flotsBtns {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
}
.flbtn {
    flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    padding: 0 5px;
    margin-bottom: 5px;
}
.flbtn .btn-common {
    width: 100%;
    margin:0;
    height: 100%;
}
.flbtn .btn-common .btncommonin {
    height: 100%;
}
.transferPguides .btn-commontxt {
    text-transform: none;
}
.applyBoxes .schoolBox {
    background-color: /css/0070B9;
    text-align: center;
}
.LPost {
    box-shadow: 0px 1px 6px rgba(0,0,0,0.2);
    padding: 5px 10px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.LPostTxt {
    padding: 0 8px;
}
.pn-btnin {
    padding: 15px;
    background-color: /css/FFC62F;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
}
.pn-btnin p {
    margin: 0;
    color: /css/0C233F;
}
.pn-btnin .pNP-p {
    font-weight: bold;
    font-size: 1.1em;
}
.pn-btnin1 {
    text-align: right;
    justify-content: flex-end;
}
.ekko-lightbox .modal-body {
    padding:0;
}
.yFormBlue .yFormIn {
    background-color: rgba(0, 112, 185, 0.15)
}
.normaldd .mealP .mealPbtn {
    height: 75px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.appBoxArrow {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: /css/FFC62F;
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    font-size: 1.7em;
    padding: 8px;
    z-index: 2;
}
.applyBoxes .schoolBox:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width:0px;
    transition: all ease 0.5s;
    height: 100%;
    z-index: 1;
    background-color: /css/FFC62F;
}
.applyBoxes .schoolBox.appB2:before {
    right:0;
    left: auto;
}
.applyBoxes .schoolBox:hover:before {
    width:100%;
}
.appB1 p {
    text-align: left;
    padding-left: 40px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}
.appB2 p {
    text-align: right;
    padding-right: 40px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}
.schoolBox.appB1, .schoolBox.appB2 {

}
.appBA2 {
    left: auto;
    right: 0;
}
.equinox .week-events .event .title {
    overflow: hidden;
}
.accreditationIFrame {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.HHVid .bracketed {
    display: block;
}
.ProgramHeader .headerBox h1 {
    text-align: left;
}
.HHBGV {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.scholarshipList .mealPbtn {
    min-height: 76px;   
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.LUFORM .form_page {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin:0 -15px;
    align-items: center;
}
.LUFORM .form_question {
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    margin: 0;
    max-width: 50%;
    padding: 0px 15px 25px;
}
.LUFORM .form_header, .LUFORM .form_address, .LUFORM .form_p {
    flex: 0 0 100%;
    -ms-flex:0 0 100%;
    max-width: 100%;
}
.LUFORM {
    padding:20px 0 0;
}
.LUFORM legend, .CFORM legend {
    font-size: 1.1rem;
}
.LUFORM input[type=text],.LUFORM input[type=email], .LUFORM input[type=tel] {
    width:100%;
    border: none;
    border-bottom: 2px solid /css/0C233F;
    background-color: transparent;
    padding:2px 5px;
}
.LUFORM textarea {
    width:100%;
    border: 2px solid /css/0C233F;
    background-color: transparent;
    padding:2px 5px;
}
.LUFORM .form_address.form_layout_stacked select {
    margin-bottom: 15px;
}
.LUFORM .form_question label {
    margin-bottom:3px;
}
.LUTRANSFERFORM .form_checkbox, .LUCOOPFORM .form_checkbox, .LUGENFORM .form_textarea, .LUGENFORM .form_checkbox {
    flex: 0 0 100%;
    -ms-flex:0 0 100%;
    max-width: 100%;
}
.LUFORMFooter p {
    margin: 20px 0 0;
    font-style: italic;
    font-size: 0.8em;
}
.schoSCat {
    margin-bottom: 10px;
}
.ttddtable {
    overflow-x: scroll;
}
.gradadtable.ttddtable .table {
    width:auto;
}
.fsubLabel {
    display: flex;
    display: -ms-flex;
    align-items: center;
    padding:0 8px;
    min-width: 50%;
    margin:5px 0 0;
}
.fsubLabel p {
    margin:0 0 0 5px;
}
.fsubchecks {
    display: flex;
    display: -ms-flex;
    flex-wrap: wrap;
}
.LPost {
	flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
}



















@media (min-width: 1200px) {
    .pItem {
        flex: 0 0 33.33%;
    }
    .HHVid {
        width:55%;
    }
}
@media (max-width: 1199px) {
    .HBlog .LPostCol:nth-child(4) {
        display: none;
    }
}
@media (min-width: 992px) {
    .fallink {
        font-size: 0.8em;
    }
    .LPostExcerpt a:hover {
        color: /css/0C233F
    }
    .boxtxtr {
        margin-left: -60px;
    }
    .boxtxtl {
        margin-right: -60px;
    }
    
    .mealPbtn:hover {
        color: /css/FFC62F
    }
    .cusddbin a:hover {
        background-color: /css/eee;
    }
    .calendarS > .container-fluid {
        padding: 0 50px;
    }
    .bpiimg {
        float: left;
        max-width: 50%;
        padding:0 20px 20px 0;
    }
    .pCheckboxes h4 a {
        border-bottom: 2px solid /css/0C233F;
        padding-bottom: 5px;
    }
    .fdl a:hover, .fdli a:hover {
        text-decoration: underline;
    }
    .btncommonin:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 0;
        width:0;
        border-left: 0px solid /css/FFC622;
        border-bottom: 0px solid /css/FFC622;
        border-right: 0px solid transparent;
        border-top: 0px solid transparent;
        transition: all ease 0.5s;
        z-index: 1;
    }
    .btncommonin:hover:before {
        border-width: 200px;
    }
    .btncommonin:hover .btn-commontxt, .btncommonin:hover .btn-commonarrow svg {
        color: /css/0C233F;
    }
    .HHlink a:hover .HHL-icon {
        background-color: /css/FFC622;
        color: /css/0C233F
    }
    .btn-round:hover .broundb {
        border-width: 200px;
    }
    .btn-round:hover {
        color: /css/fff;
        border-color: /css/0C233F;
    }
    
}
@media (max-width: 991px) {
    .HHANY > svg {
        width:170px;
    }
    .HHanytxt h1:before {
        height: 27px;
    }
    .HBlog .LPostCol:nth-child(3) {
        display: none;
    }
    .syw-l .syw-in:before {
        left: -100%;
        width:250%;
        z-index: -1;
    }
    .boxpicl {
        margin-right: 0;
    }
    .ndsf {
        display: none;
    }
    .calendarS .pfilters {
        transition: all ease 0.25s;
        max-height: 0px;
        overflow: hidden;
    }
    .acalog-program-core-course {
        flex: 0 0 100%;
        -ms-flex:0 0 100%;
    }
    .pCheckboxes {
        margin:20px 0;
    }
    .pCheckboxes h4 a svg {
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
        margin: auto;
    }
    .pCheckboxes h4 a {
        color: /css/0C233F;
        width: 100%;
        border: 2px solid /css/0C233F;
        display: block;
        text-align: center;
        padding: 12px;
        position: relative;
    }
    .schoolBoxCol:nth-child(1) .schoolBox {
        border-right:2px solid /css/fff;
        border-bottom:2px solid /css/fff;
    }
    .schoolBoxCol:nth-child(2) .schoolBox {
        border-bottom:2px solid /css/fff;
    }
    .schoolBoxCol:nth-child(3) .schoolBox {
        border-right:2px solid /css/fff;
    }
    .schoolBox {
        height: 142px;
    }
    .HHVid {
        width: 90%;
        margin-bottom: -1%;
    }
    /css/top {
        padding-top: 81px;
    }
    .navtop, .nbtns, .navlinks {
        display: none;
    }
    .bracket1, .bracket2 {
        border-width:15px;
        width:40px;
    }
    .bracket1 {
        left:-8px;
    }
    .bracket2 {
        right:-8px;
    }
    .HHanytxt h1 {
        font-size: 2em;
    }
}
@media (max-width: 767px) {
    .LUFORM .form_question {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        margin: 0;
        max-width: 100%;
        padding: 0px 15px 20px;
    }
    .cpartcol {
        flex:0 0 100%;
        -ms-flex: 0 0 100%;
    }
    .HBlog .LPostCol:nth-child(2) {
        display: none;
    }
    .dashTriangle {
        bottom: -13px;
        right: -13px;
        width: 70px;
    }
    .clubLi {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }
    .fac-i {
        flex: 0 0 50%;
        -ms-flex: 0 0 50%;
    }
    .bLi {
        flex:0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
    }
    .headerText p {
        text-align: center;
    }
    .pItem {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }
    .fmlinks a:nth-child(1), .fmlinks a:nth-child(2) {
        border-bottom: 1px solid /css/FFC62F;
    }
    .fmlinks a:nth-child(3) {
        border-left: none;
    }
    .fmbblinks .fmbb-break {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        border-left: none;
    }
    .fmbblinks .fmbb-break2 {
        border-left: none;
    }
    .fmlinks a {
        flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        font-size: 1.2em;
        padding:8px 5px;
    }
    .fmblinks a {
        flex: 0 0 33.34%;
        -ms-flex: 0 0 33.34%;
        padding:8px 5px;
    }
    .BoxLinkCol a {
        background:/css/0C233F !important;
    }
    .BoxLinkCol {
        margin-bottom: 0;
        padding:0;
    }
    .boxlinktop {
        padding-bottom: 0;
    }
    .boxlinkbot {
        padding:0;
    }
    .boxlinkbotin {
        height: 80px;
        border: 1px solid /css/fff;
    }
    .box5Linksin .row {
        margin-left: -16px;
        margin-right: -16px;
    }
    .boxlinkbotin p {
        margin-right: 12px;
    }
}
@media (min-width: 768px) {
    /*.adgradcol1 {
        width: 50%;
    }*/
    .boxlinkbot {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        min-height: 56px;
        height: 84px;
    }
    .fmblinks a:first-child {
        border-left: 1px solid /css/fff;
    }
    .fmblinks a:last-child {
        border-right: 1px solid /css/fff;
    }
    .fmblinks a {
        min-width: 150px;
    }
    .pCheck label:hover .pCheckMark {
        background-color: /css/0C233F;
    }
}
@media (max-width: 575px) {
    .ApplyLinks .boxlinkbotin p {
        font-size: 0.9em;
        padding-right: 0px;
    }
    .FCirclein p {
        font-size: 0.9em;
        line-height: 1.1em;
    }
    .FCirclein .FC-lg {
        font-size: 4em;
    }
    .FCircle {
        margin-bottom: 15px;
    }
    .nmsf-links a img {
        padding:0px 5px;
    }
    .HHMain {
        flex-direction: column;
    }
    .HHANY p {
        font-size: 2.5em;
    }
    .schoolBox p {
        font-size: 1.1em;
    }
    .hbvmin {
        width:80%;
    }
    .fac-i {
        flex:100% 0 0;
        -ms-flex: 100% 0 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .navlogo {
        padding-right: 3%;
    }
    .nbtns {
        padding-left: 1%;
    }
    .navLgo {
        height: 40px;
    }
    /css/top {
        padding-top: 88px;
    }
}
@media (max-width: 350px) {
    .navLgo {
        height: 45px;
    }
    /css/top {
        padding-top: 66px;
    }
    .NMSFLINK-wrap {
        padding:66px 0 45px;
    }
    .navMobile {
        padding:75px 0 75px;
    }
    .nmsf-links a span {
        font-size: 0.9em;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cpartcol {
        flex:0 0 50%;
        -ms-flex:0 0 50%;
    }
}

.icon-boxes {
    padding: 50px 20px 20px 20px;
    background-color: /css/0C223F;
    position: relative;
    height: 100%;
}

.icon-boxes img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: absolute;
    top: -55px;
    left: 0;
    right: 0;
    margin: auto;

}

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

.split-column a, .split-column .linklesstext {
    color: /css/fff;
    line-height: 1.4em;
    display: inline-block;
    margin-bottom: 10px;
}
.box-icon {
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    margin: auto;
}

.split-link a {
    color: /css/fff;
} 

.split-link a:hover {
    text-decoration: underline;
}

.img-color-wrapper {
    position: absolute;
    top: -63px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: /css/FFC622;
    height: 90px;
    width: 90px;
    border-radius: 50%;
}


.icon-boxes h5 {
    color: /css/FFC622;
    text-transform: uppercase;
    font-size: 1.125em;
    font-weight: 400;
}

.icon-boxes h3 {
    color: /css/fff;
    font-size: 4em;
}
.icon-boxes a, .icon-boxes .split-link {
    color: /css/fff;
}
.icon-boxes a:hover {
    text-decoration: underline;
}

.box-1, .box-2, .box-3 {
    height: 100%;
}

.form-section {
    background-color: /css/eaeaeb;
    padding-top: 40px;
    padding-bottom: 80px;
}
.form-header-text {
    font-size: 1.25em;
    color: /css/0C223F;
    font-weight: bold;
}

.overview-section-wrapper {
    background-color: /css/FFC622;
}

.option-item {
    font-weight: bold;
    color: /css/0C223F;
    cursor: pointer;
    font-size: 1.25em;
    padding-bottom: 20px;
    padding-top: 20px;
    font-family: 'montserrat-bold';
}

.option-item.active {
    background-color: /css/fff;
    text-decoration: underline;
    border-left: 10px solid /css/FFC622;
    border-right: 10px solid  /css/FFC622;
}
.lower-text {
    font-size: 1.375em;
    font-weight: bold;
    font-family: 'montserrat-bold';

}




.fac-card-heading {
    font-size: 1.8em;
    color: /css/0C223F;
    font-weight: 400;
}
.fac-sub-head {
    color: /css/0070B9;
}
.faculty-all-btn {
    display: inline-block;
    background-color: /css/0070B9;
    border: 2px solid /css/0070B9;
    border-radius: 40px;
    padding: 10px 20px;
    color: /css/fff;
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    font-family: 'montserrat-bold';
    cursor: pointer;
}
a.faculty-all-btn:hover {
    color: /css/fff;
}
.smallheader  {
    font-size: 1.45em;
    color: /css/0070B9;
    font-family: 'montserrat-bold';
}

.smallheading {
    font-size: 1.75em;
    color: /css/0070B9;
    font-weight: bold; 
    font-family: 'montserrat-bold';
}

.multibox {
    background-color: /css/EAEAEB;
    padding-top: 80px;
    padding-bottom: 80px;
}
.mart100 {
    margin-top: 100px;
}
.infobox1 {
    background-color: /css/0C223F;
    padding: 30px;
    height: 100%;
}
.infobox1-text{
    color: /css/fff;
    font-size: 1.125em;
    font-weight: 500;
    padding-top: 10px;
}

.lnameinput, .fnameinput, .femailinput {
    border: none;
    padding: 5px 15px;
    width: 100%;
   
}

.fixed-section {
    position: fixed;
    top: 113px;
    width: 60%;
    z-index: 999;
    transition: ease-in 0.3s;
}

.gold-t {
    color: /css/FFC62F;
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
}

.grey {
    background-color: /css/EAEAEB;
}
.dark-blue{
    background-color: /css/0C233F;
    color: /css/fff;
}
.topMargin0 {
    margin-top: 0;
}
.topMargin80 {
    margin-top: 80px;
}
.topMargin100 {
    margin-top: 100px;
}
.dark-blue h2 {
    color: /css/fff;
}
.white{
    background-color: /css/fff;
}
.dblboxes {
    padding: 30px;
    background-color: /css/0C223F;
    height: 100%;
}

a.square-btn {
    background-color: /css/0C223F;
    color: /css/fff;
    padding: 5px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'montserrat';
    display: inline-block;
}

.nav-row {
    padding-top: 10px;
}

.steps-section {
    padding-top: 80px
}
h2.steps-h2 {
    font-family: "montserrat";
    font-size: 2em;
    font-weight: 400;
}
h2.light-blue-heading {
    color: /css/0070B9;
    text-transform: uppercase;
    font-family: 'montserrat-bold';
    font-weight: bold;
    font-size: 1.25em;
}
.money-text {
    color: /css/fff;
    font-size: 3em;
    font-family: 'montserrat-bold';
}


@media (min-width: 992px) {
    .form-group {
        margin-bottom: 0px;
    }
    .poly-1 {
        display: none;
    }
}

@media (max-width: 991px) {



    .smallheading {
        font-size: 1.375em;
    }
.box-1 {
    padding-top: 70px;
    height: 100%
}
.box-2 {
padding-top: 70px;
height: 100%
}
.box-3 {
padding-top: 70px;
height: 100%
}
.infobox1 {
    margin-top: 20px;
}
.padtb100 {
    padding-top: 50px!important;
}
.poly-1 {
    position: absolute;
    top: 20px;
    left: 25px;
}
}


.dot-heading h2 {
    font-size: 1.8em!important;
}
@media (max-width: 991px) {
    .dot-heading h2 {
        font-size: 1.5em!important;
    }
}


/* fix "Other" checkbox text field from overlapping the checkbox */
.yFormIn .CFORM .c-fillin-text[type="text"] { margin-left:1.6em; }

.modal-dialog{max-width:66%;}

.hidden {display:none;}

.sbstext a {width:50%;text-align:center;}
.sbstext a:last-child {margin-left:50%;}

/* 20231020 - smooth scrolling for anchor links/tags */
html {scroll-behavior:smooth;}

/* 2024-04-05 - cookies and trackers */
/css/cookiesnotice {
	position:-webkit-sticky;
	position:-moz-sticky;
	position:-ms-sticky;
	position:-o-sticky;
	position:sticky;
	bottom:0;left:0;right:0;
	width:100%;
	padding:.5em;
	background-color:/css/ECECEC;
	z-index:999999;
	text-align:center;
}
/css/cookiesnotice .noticetext {
	font-style:italic;
	font-size:smaller;
}
/css/cookiesnotice .dismissbutton {
	background-color:/css/8F8;
	background-color:/css/FFC62F;
	border-radius:.25em;
	padding:.5em;
	cursor:pointer;
	white-space:nowrap;
}
.cookiesnoticedismissed {
	display:none;
}
.gallerypopupimg {
	float:right;
	max-width:50%;
}