*,
*:after,
*::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media only screen and (max-width:992px) {
	.scroller {
		overflow-y: scroll;
	}

/* 	html, 
	body, 
	.container,
	.scroller {
		height: 100%;
	} 

 	.scroller {
		overflow-y: scroll;
	}

	.scroller,
	.scroller-inner {
		position: relative;
	}

	.container {
		position: relative;
		overflow: hidden;

	} */
	
} 

.scroller,
.scroller-inner {
	position: relative;
}

.container {
	position: relative;
	overflow: hidden;
	/* background: #34495e; */
	padding-left: 0px!important;
	padding-right: 0px!important;

}

.menu-trigger {
	position: relative;
	padding-left: 60px;
	font-size: 0.9em;
}

.menu-trigger:before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 40px;
	height: 6px;
	background: #fff;
	box-shadow: 0 6px #34495e, 0 12px #fff, 0 18px #34495e, 0 24px #fff;
	content: '';
}

.mp-pusher {
	position: relative;
	left: 0;
	height: 100%;
	
}

.mp-menu {
	position: absolute; /* we can't use fixed here :( */
	top: 126px;
	left: 0;
	z-index: 1;
	width: 300px;
	height: 100%;
	
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.mp-level {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: #336ca6; */
	background-image: linear-gradient(135deg,#d52027, #990000 );
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);

}

/* overlays for pusher and for level that gets covered */
.mp-pusher::after,
.mp-level::after,
.mp-level::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	content: '';
	opacity: 0;
}

.mp-pusher::after,
.mp-level::after {
	background: rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	-moz-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
}

.mp-level::after {
	z-index: -1;
}

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.mp-level.mp-level-overlay {
	cursor: pointer;
}

.mp-level.mp-level-overlay.mp-level::before {
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 1;
}

.mp-pusher,
.mp-level {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/* overlap */
.mp-overlap .mp-level.mp-level-open {
	box-shadow: 1px 0 2px rgba(0,0,0,0.2);
	-webkit-transform: translate3d(-40px, 0, 0);
	-moz-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

/* First level */
.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
	box-shadow: none;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* cover */
.mp-cover .mp-level.mp-level-open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

/* content style */
.mp-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mp-menu h2 {
	margin: 0;
	padding: 1em;
	color: #FFF;
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 300;
	font-size: 2em;
}

.mp-menu.mp-overlap h2::before {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 8px;
	font-size: 75%;
	line-height: 1.8;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.1s 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.1s 0.3s;
	transition: opacity 0.3s, transform 0.1s 0.3s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}

.mp-menu.mp-cover h2 {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 1em;
}

.mp-overlap .mp-level.mp-level-overlay > h2::before {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

.mp-menu ul li > a {
	display: block;
	padding: 0.7em 1em 0.7em 1.8em;
	outline: none;
	box-shadow: inset 0 -1px #ffffff5e;
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	font-size: 1.4em;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	-moz-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}

.mp-menu ul li::before {
	position: absolute;
	left: 10px;
	z-index: -1;
	color: rgba(0,0,0,0.2);
	line-height: 3.5;
}

.mp-level > ul > li:first-child > a {
	/* box-shadow: inset 0 -1px #FFF, inset 0 1px #FFF; */
}

.mp-menu ul li a:hover,
.mp-level > ul > li:first-child > a:hover {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-menu .mp-level.mp-level-overlay > ul > li > a,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-level > ul > li:first-child > a:hover,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0), inset 0 1px rgba(0,0,0,0);
} /* seems like Chrome 34.0.1847.131 needs the second shadow otherwise the transition breaks */

.mp-back {
	background: rgba(0,0,0,0.1);
	outline: none;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	display: block;
	font-size: 0.8em;
	padding: 1em;
	position: relative;
	box-shadow: inset 0 1px rgba(0,0,0,0.1);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}

.mp-back::after {
	font-family: 'linecons';
	position: absolute;
	content: "\e037";
	right: 10px;
	font-size: 1.3em;
	color: rgba(0,0,0,0.3);
}

.mp-menu .mp-level.mp-level-overlay > .mp-back,
.mp-menu .mp-level.mp-level-overlay > .mp-back::after {
	background: transparent;
	box-shadow: none;
	color: transparent;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
/* We'll show the first level only */
.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
	padding-left: 300px;
}

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
	display: none;
}

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {
	display: block;
}


/*Two Boxes Styles start here*/

.twoboxes {
	margin: 20px;
}

.twoboxes .box {
	border: 1px solid #990000;
	padding:20px;
	height: 450px ;

}

.twoboxes .blue-button {
	background: #81c0f6;
	padding:10px;
	color:#000;
	font-family: "Effra", "Effra W01", Helvetica, sans-serif;
	/*margin: 0 auto;*/
	font-weight: bold;
	text-align: center;

}

.twoboxes .blue-button a {
	color: #000;
}

.twoboxes .blue-button a:hover {
	text-decoration: none;

}


.twoboxes .heading {

	font-family: "Effra", "Effra W01", Helvetica, sans-serif;
	font-size: 28px;
	font-weight: bold;

}

.twoboxes .main-heading {
	font-family: "Effra", "Effra W01", Helvetica, sans-serif;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}

.twoboxes .content {
	font-family:  "museo-slab", "Museo Slab", Georgia, serif;
	font-size: 14px;
	font-weight:400;
}

 @media (max-width: 767px) {
 		.twoboxes .box {

 			height: auto;
 		}

 }

 @media (min-width: 768px) and (max-width: 854px) { 
 	.twoboxes .box {

 			height: 550px;
 		}

 }

 @media (min-width: 855px) and (max-width: 1199px) { 
 	.twoboxes .box {

 			height: 500px;
 		}

 }

 @media (min-width: 481px) and (max-width: 767px) { 
 	.twoboxes .blue-button {

 			width: 75%;
 			justify-content: left;
 		}

 }
/*Two Boxes Styles end here*/

/*One Box Styles start here*/

.onebox {
/* 	margin: 20px; */
	margin-bottom:20px;
	position: relative;
  	
}
.onebox .container {
	position:relative;
	overflow:unset;
}

.onebox img {
	width:100%;
}

.onebox .leftbox {
	
	position: absolute;
	top: -600px;
	/*left:100px;*/
	border: 1px solid red;
	background-color: #FFF;
	padding:20px;
	min-height: 550px;
    max-width: 400px;

}


.onebox .heading{
	font-family: "Effra", "Effra W01", Helvetica, sans-serif;
	font-weight: bold;
	font-size: 26px;
    line-height: 28px;
}

.onebox .content {
	font-family:  "museo-slab","Museo Slab", Georgia, serif;
	font-size: 14px;
	font-weight:400;
}

.onebox .blue-button {
	padding:20px 125px;
	font-family: "Effra", "Effra W01", Helvetica, sans-serif;
	font-size:24px;
	text-transform : uppercase;
	background-color: #81c0f6;
	color: #000;
	font-weight:bold;
	text-decoration:none;
	position: absolute;
    left: 100px;
    width: 100%;
    top: -160px;
	display: block;
    text-align: center;
}


 @media (max-width: 991px) { 
 	
 	.onebox .leftbox {
	
 		top:0px;
		position:relative;
		min-height: 200px;
    	max-width: 100%;
	}
	 
	 
	.onebox .blue-button {
		top:0px;
		position:relative;
		left:0px;
		padding:20px 0px;
	}
	 
	
 }

 @media (min-width: 992px) { 
 	.onebox .blue-button {
		left:10%;
		padding:20px 0px;
		
	}

 }



@media (min-width: 1280px) { 
 	
 	.onebox .leftbox {
	
 		top:-800px;
	}
 }

@media (min-width: 1600px) { 
 	
 	.onebox .leftbox {
		
    	top: -1060px;
    	right: -150px;
/*     	max-width: 800px; */
		max-width: 538px;
	}
	
	.onebox .heading {
		    font-size: 38px;
    		line-height: 40px;
	}
	
	.onebox .content {
		font-size: 24px;
	}
	
	.onebox .blue-button {
		left:15%;
	}
	
 }

@media (min-width: 1727px) { 
 	.onebox .blue-button {
 		left:20%;
	}
 }

@media (max-width: 991px) { 
 	.onebox .container {
    
    	overflow: hidden;
}

 }

@media (min-width: 993px) and (max-width: 1279px){
	.onebox .leftbox {
		top: -700px;
		max-width: 100%;
	}
}



/*One Box Styles end here*/


/**/

.student-silhouette-grid .brand-button-simple-class-blue {
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
    background: #81c0f6;
    padding: .8rem 2rem;
    font-weight: bold;
    color: #000;
    margin-top: 30px;
    display: inline-block;
}

/**/

/* Start - Undergraduate Admissions - Zig Zag Content Component Styles */
.sbu-ug-zig-zag-items {
    margin: 2rem 0;
}
.sbu-ug-zig-zag-item {
    display: flex;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
}
.sbu-ug-zig-zag-item:not(:last-child) {
    margin-bottom: 1.5rem;
}
.sbu-ug-zig-zag-item:nth-child(2n) {
    flex-direction: row-reverse;
}
.sbu-ug-zig-zag-item .sbu-zig-zag-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}
.sbu-ug-zig-zag-item .sbu-zig-zag-graphic {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.sbu-ug-zig-zag-item .sbu-zig-zag-graphic a {
    display: block;
}
.sbu-ug-zig-zag-item .sbu-zig-zag-graphic img {
    display: block;
    max-width: 100%;
}
.sbu-ug-zig-zag-item .sbu-zig-zag-title {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 900;
    color: #212529;
    margin-bottom: 0;
}
.sbu-ug-zig-zag-item .sbu-zig-zag-description {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 0;
    margin-top: 1.5rem;
}
.sbu-ug-zig-zag-item .sbu-zig-zag-btn {
    margin-top: 1.5rem;
}
.sbu-ug-zig-zag-item .sbu-zig-zag-btn a {
    display: inline-block;
    background-color: #990000;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.25rem;
    padding: 0.625rem 0.875rem;
    border: 2px solid #990000;
    border-radius: 6px;
    transition: background-color 0.2s cubic-bezier(0.7, 0, 0.2, 1), color 0.2s cubic-bezier(0.7, 0, 0.2, 1);
}
.sbu-ug-zig-zag-item .sbu-zig-zag-btn a:hover {
    background-color: #ffffff;
    color: #990000;
}
@media (max-width: 991px) {
    .sbu-ug-zig-zag-item .sbu-zig-zag-title {
        font-size: 2.25rem;
    }
    .sbu-ug-zig-zag-item .sbu-zig-zag-description,
    .sbu-ug-zig-zag-item .sbu-zig-zag-btn {
        margin-top: 1.25rem;
    }
}
@media (max-width: 850px) {
    .sbu-ug-zig-zag-item .sbu-zig-zag-title {
        font-size: 2rem;
    }
    .sbu-ug-zig-zag-item .sbu-zig-zag-description,
    .sbu-ug-zig-zag-item .sbu-zig-zag-btn {
        margin-top: 1rem;
    }
    .sbu-ug-zig-zag-item .sbu-zig-zag-graphic {
        flex: 0 0 40%;
        max-width: 40%;
    }
}
@media (max-width: 767px) {
    .sbu-ug-zig-zag-items {
        margin: 1rem 0;
    }
    .sbu-ug-zig-zag-item {
        display: block !important;
    }
    .sbu-ug-zig-zag-item .sbu-zig-zag-content {
        padding: 1.5rem;
        padding-bottom: 1.65rem;
    }
    .sbu-ug-zig-zag-item .sbu-zig-zag-graphic {
        flex: 1;
        width: 100%;
        max-width: none;
    }
    .sbu-ug-zig-zag-item .sbu-zig-zag-graphic img {
        margin: 0 auto;
        width: 100%;
        max-width: none;
    }
}
/* End - Undergraduate Admissions - Zig Zag Content Component Styles */

/* Start - Undergraduate Admissions - Image Cards Component Styles */
.sbu-ug-image-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 1.5rem -0.75rem 0 -0.75rem;
}
.sbu-ug-image-cards .sbu-ug-image-card {
    display: block;
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 0.75rem;
    margin-bottom: 1.5rem;
}
.sbu-ug-image-cards .sbu-ug-image-card .sbu-ug-image-card-body {
    margin: 0;
    width: auto;
    height: 100%;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 4px 16px;
    overflow: hidden;
    position: relative;
    background: transparent;
    -webkit-transform: translateY(0);
    -webkit-transition: -webkit-transform 450ms;
    transform: translateY(0);
    transition: transform 450ms;
}
.sbu-ug-image-cards .sbu-ug-image-card:hover .sbu-ug-image-card-body {
    -webkit-transform: translateY(-0.375rem);
    transform: translateY(-0.375rem);
}
.sbu-ug-image-cards .sbu-ug-image-card .sbu-ug-image-card-body::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(23, 23, 23, 0.55), rgba(23, 23, 23, 0.1), rgba(23, 23, 23, 0));
    opacity: 1;
    transition: opacity 450ms;
}
.sbu-ug-image-cards .sbu-ug-image-card:hover .sbu-ug-image-card-body::after {
    opacity: 0.35;
}
.sbu-ug-image-cards .sbu-ug-image-card .sbu-ug-image-card-body img {
    width: 100%;
    height: auto;
}
.sbu-ug-image-cards .sbu-ug-image-card .sbu-ug-image-card-body .sbu-ug-image-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.05rem 1.5rem !important;
    line-height: 1.2;
    font-size: 1.75rem;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    z-index: 10;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.sbu-ug-image-cards .sbu-ug-image-card .sbu-ug-image-card-body .sbu-ug-image-card-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.25rem 0.5rem !important;
    line-height: 1.2;
    font-size: 12px;
    color: #ffffff;
    background-color: rgba(153, 0, 0, 0.9);
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 10;
}
@media only screen and (min-width: 992px) {
    #righthandcontent .sbu-ug-image-cards .sbu-ug-image-card {
		flex: 0 0 25%;
    	width: 25%;
    }
    #righthandcontent .sbu-ug-image-cards .sbu-ug-image-card .sbu-ug-image-card-body .sbu-ug-image-card-title {
        padding: 0.75rem 1.2rem !important;
        line-height: 1.1;
        font-size: 1.25rem;
    }
}
@media only screen and (max-width: 991px) {
    .sbu-ug-image-cards .sbu-ug-image-card {
        flex: 0 0 50%;
        width: 50%;
    }
}
@media only screen and (max-width: 575px) {
    .sbu-ug-image-cards .sbu-ug-image-card {
        flex: 0 0 100%;
        width: 100%;
    }
}
/* End - Undergraduate Admissions - Image Cards Component Styles */















