/* Fonts */
@font-face {
	font-family: 'yalenewregular';
	src: url('../webfonts/yalenew-roman-webfont-webfont.woff2') format('woff2'),
			url('../webfonts/yalenew-roman-webfont-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'mallory_lightregular';
	src: url('../webfonts/mallory-light-webfont.woff2') format('woff2'),
			url('../webfonts/mallory-light-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'mallory_mediumregular';
	src: url('../webfonts/mallory-medium-webfont.woff2') format('woff2'),
			url('../webfonts/mallory-medium-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800&display=swap');

html,body,div,span,
h1,h2,h3,h4,h5,h6,
p,blockquote,q,em,img,small,strong,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend{border:0;outline:0;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
ol,ul{list-style:none}
:focus{outline:0}
input,textarea{margin:0;outline:0;}
textarea{overflow:auto; resize:none;}
table{border-collapse:collapse;border-spacing:0}
/* End Reset */

/* html5 */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }


/* Default Font Styles
______________________*/
body, input, select, textarea{
	font-family: 'mallory_lightregular';
	font-size:14px;
	color:#000000;
	line-height:1.3;
}

/* Headings
______________________*/
h1{}
h2{
}
h3{
}
h4{}
h5{}


/* Links
______________________*/
a{
	-webkit-transition: 0.1s ease-out 0.1s;
	-moz-transition: 0.1s ease-out 0.1s;
	transition: 0.1s ease-out 0.1s;
}
a:hover{
	text-decoration:underline;
}

.align-right{
	float:right;
	margin:0 0 18px 30px;
	border:1px solid #dcdcdc;
}
.align-left{
	float:left;
	margin:0 30px 18px 0;
	border:1px solid #dcdcdc;
}

/* input , textarea , button
______________________*/

input, 
textarea,
select{
	display:block;
	width:100%;
	border:1px solid #ccc;
	border-radius:4px;
	box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;
	transition:border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	padding:8px 10px;
	color:#000000;
	font-size:14px;
}
select{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	background:#ffffff url(../images/arrow-ios-downward-outline.png) no-repeat 96% center / 11px 6px;
	cursor:pointer;
	padding:6px 30px 6px 10px;
	color:#000000;
}
input:focus,
select:focus{
	border-color:#66afe9;
	box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

.default-btn{
	border: 1px solid #FE0002;
	border-bottom: 4px solid #FE0002;
	font-size: 14px;
	line-height: 1;
	color: #FE0002;
	font-family: 'mallory_lightregular';
	text-transform: capitalize;
	text-align: center;
	padding: 15px 80px;
	text-decoration: none;
	display: inline-block;
}
.default-btn:hover{
	text-decoration: none;
	background: #FE0002;
	color: #ffffff;
}


.header-top{
	padding: 15px 0;
	text-align: right;
}
.header-top li{
	display: inline-block;
	margin-left: 15px;
}
.header-top li a{
	text-decoration: none;
	font-size: 14px;
	background: #FE0002;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
	display:inline-block;
	font-family: 'yalenewregular';
}
.header-top li a:hover{
	color: black;
}
/* .header-top li a i{
	display: inline-block;
	background: url(../images/search.png) no-repeat;
	background-size: 100% auto;
	width: 18px;
	height: 18px;
	margin-left: 10px;
	vertical-align: bottom;
} */
.header-top li a i.login-icon{
	display: inline-block;
	background: url(../images/login-line.png) no-repeat;
	background-size: 100% auto;
	width: 17px;
	height: 18px;
	margin-left: 10px;
	vertical-align: bottom;
}
.header-top li a.active i.login-icon{
	display: inline-block;
	background: url(../images/login-line-green.png) no-repeat;
	background-size: 100% auto;
	width: 17px;
	height: 18px;
	margin-left: 10px;
	vertical-align: bottom;
}
.header-top li a.active{
	color: #005500;
}
/* #search {
	align-items: center;
	background: rgba(0, 0, 0, 0.975);
	height: 0;
	display: flex;
	justify-content: center;
	opacity: 0;
	position: fixed;
	left: 0;
	top: 0;
	transition: all 0.5s;
	width: 100vw;
	will-change: transform, opacity;
	z-index: -1;
}
#search:target {
	height: 100vh !important;
	opacity: 1;
	width: 100vw !important;
	z-index: 2;
}
#search:target .close-btn {
	display: block;
}
#searchbox {
	background: transparent;
	border-radius: 0;
	border: solid #fff;
	border-width: 0 0 1px 0;
	color: #fff;
	flex: 1 0 auto;
	font-size: 2rem;
	height: 2rem;
	max-width: 50%;
	outline: 0;
	padding: 2rem 1rem;
}
.close-btn {
	display: none;
	color: #fff;
	font-size: 2rem;
	position: absolute;
	top: 0.5rem;
	right: 2rem;
}
.close-btn:hover{
	color: #FE0002;
} */

.header-main{
	padding-bottom: 15px;
}
.header-main .logo a{
	background: url(../images/logo.png) no-repeat;
	background-size: 100% auto;
	display: block;
	text-decoration: none;
	width: 121px;
	height: 96px;
	margin: 0 auto;
}
.menu-section{
	border-top: 1px solid rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	padding: 25px 0 0 0;
	margin-left: 35px;
}
.menu-section .text-logo{
	padding-bottom: 10px;
}
.menu-section .text-logo a{
	background: url(../images/logotext.png) no-repeat;
	background-size: 100% auto;
	display: block;
	text-decoration: none;
	width: 198px;
	height: 31px;
}
.navigation{
	text-align: right;
	position: relative;
}
.navigation .navbar-header{
	display: none;
	position: absolute;
	right: 0;
	top: -33px;
}
.navbar-header .collapse-button {
	background: none;
	border: none;
	height: 40px;
    padding-top: 14px;
	transition: all 450ms ease-out 0s;
	width: auto;
	vertical-align: middle;
	outline: none;
  }
  .navbar-header .collapse-button span {
	display: block;
	width: 28px;
	height: 2px;
	margin-bottom: 7px;
	background: #005500;
  }
  .navbar-header em {
	display: inline-block;
	font-style: normal;
	margin: 3px 0 0 5px;
	vertical-align: middle;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
  }
.navigation li{
	display: inline-block;
	position: relative;
	margin-left: 5px;
}
.navigation li a{
	display: block;
	text-decoration: none;
	font-size: 17px;
	line-height: 1;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	text-transform: capitalize;
	padding: 13px 8px;
	font-family: 'yalenewregular';
}
.navigation li a:hover{
	background: #FE0002;
	color: #ffffff;
}
.navigation li a.active{
	color: #FE0002;
}
.navigation .dropdown-content {
	display: none;
	position: absolute;
	width: 200px;
	z-index: 999;
	padding: 15px;
	background-color: #FE0002;
}
.navigation .dropdown-content a {
	padding:5px;
	text-decoration: none;
	font-size: 12px;
	line-height: 1;
	font-family: 'yalenewregular';
	text-transform: capitalize !important;
	color: #ffffff;
	display: block;
	text-align: left;
}
.navigation .dropdown-content a:hover {
	color: #000000;
}
.navigation li:hover .dropdown-content {	
	display: block;
}
.navigation li:hover a{
	background-color: #FE0002;
	color: #ffffff;
}
#homebanner{
	padding-bottom: 30px;
}
#homebanner .homerbanner-img img{
	display: block;
	width: 100%;
	height: auto;
}
#homebanner .homebanner-content{
	padding: 60px 0 0 0;
}
#homebanner span{
	display: block;
	padding: 0 50px 20px 50px;
	text-transform: uppercase;
	font-family: 'mallory_mediumregular';
	font-size: 14px;
	line-height: 1;
	color: #000000;
}
#homebanner h2{
	color: #005500;
	font-family: 'yalenewregular';
	font-size: 32px;
	padding: 0 50px 25px 50px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	margin-bottom: 30px;
}
#homebanner p{
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	padding: 0 50px 20px 50px;
}
#homebanner a{
	margin: 0 50px;
}
#bannerbot-section{
	background: #F9F9F9;
	padding: 30px 0;
}
#bannerbot-section .box-wrap{
	background: #fff;
	box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.1);
}
#bannerbot-section .box-wrap .box-img img{
	display: block;
	width: 100%;
	height: auto;
}
#bannerbot-section .box-wrap .box-content{
	padding: 15px;
	text-align: center;
	min-height: 200px;
}
#bannerbot-section .box-wrap .box-content h3 a{
	color: #005500;
	font-family: 'yalenewregular';
	font-size: 17px;
	line-height: 24px;
	padding-bottom: 10px;
	text-decoration: none;
	display: block;
}
#bannerbot-section .box-wrap .box-content h3 a:hover{
	color: #FE0002;
	text-decoration: none;
}
#bannerbot-section .box-wrap .box-content p{
	font-size: 12px;
	line-height: 20px;
	color: #000000;
	padding: 0;
}
#getinvolved{
	padding: 50px 0 20px;
	background: url(../images/involved-bg.png) no-repeat;
	background-size: cover;
}
#getinvolved h2{
	color: #ffffff;
	font-family: 'yalenewregular';
	font-size: 32px;
	padding-left: 80px;
}
#getinvolved h2::after{
	content: "";
    background: #FE0002;
    width: 45px;
    height: 3px;
    display: block;
    margin-top: 15px;
}
#getinvolved ul{
	text-align: right;
}
#getinvolved li{
	display: inline-block;
	margin:0 15px 16px 0;
	width: 31%;
}

#getinvolved a
{
	text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 20px 5px;
    text-align: center;
    display: block;
    font-family: 'yalenewregular';
    font-size: 16px;
	margin-bottom: 10px;
}

#getinvolved a:hover
{
	background: #FE0002;
}
#getinvolved li:nth-child(3),
#getinvolved li:nth-child(6){
	margin-right: 0;
}
#getinvolved li a{
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 20px;
	text-align: center;
	display: block;
	font-family: 'yalenewregular';
	font-size: 18px;
}
#getinvolved li span{
	display: block;
	font-family: 'mallory_mediumregular';
	font-size: 14px;
}
#getinvolved li a:hover{
	background: #FE0002;
}


#news{
	padding: 60px 0;
}
#news h2{
	color: #005500;
	font-family: 'yalenewregular';
	font-size: 32px;
	padding-bottom: 35px;
	display: inline-block;
}

.link{
	float: right;
}


.Aboutus .box-content
{
	background: #FE0002;
    padding: 20px 10px;
    text-align: center;
    min-height: 120px;
}

.Aboutus .box-content a
{
	color: #ffffff;
	font-family: 'yalenewregular';
	font-size: 20px;
	text-decoration: none;
}

.Aboutus .box-content a:hover
{
	text-decoration: underline;
}

.Aboutus .box-wrap
{
	margin-bottom: 20px;
}
#news .link a {
	display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    background: white;
    color: #FE0002;
    border: 1px solid #FE0002;
    padding: 5px 20px;
    border-radius: 3px;
    border-bottom: 4px solid #FE0002;
}

.hall-of-fame .content-section ul li
{
	padding-bottom: 5px;
	list-style-type: square;
} 

.music h3
{
color: black;
font-family: 'yalenewregular';
font-size: 25px;
padding: 30px 0px;
line-height: 1;
}

.scrollspy
{
	min-height: auto !important;
}

.music .box-wrap
{
	margin-bottom: 20px;
}

.music .box-content
{
	background: #FE0002;
    padding: 20px 10px;
    text-align: center;
    min-height: 120px;
}

.music .box-content a
{
	color: #ffffff;
	font-family: 'yalenewregular';
	font-size: 20px;
	text-decoration: none;
}

.music .box-content a:hover
{
	text-decoration: underline;
}



.image-wrapper img {

	width: 100%;
  
	display: block;
  
	height: auto;
  
}




#news a:hover {
	background: red;
	color: white;
}
#news h2::after{
	content: "";
    background: #FE0002;
    width: 45px;
    height: 3px;
    display: block;
    margin-top: 15px;
}
#news .box-wrap .box-img img{
	display: block;
	width: 100%;
	height: auto;
}
#news .box-content{
	background: #FE0002;
	padding: 20px 10px;
	text-align: center;
	min-height: 120px;
}
#news .box-content a{
	color: #ffffff;
	font-family: 'yalenewregular';
	font-size: 20px;
	text-decoration: none;
}
#news .box-content a:hover{
	text-decoration: underline;
}
#quicklinks{
	padding: 50px 0 20px;
	background: #005500;
	margin-bottom: 20px;
}
#quicklinks h2{
	color: #ffffff;
	font-family: 'yalenewregular';
	font-size: 32px;
	padding-left: 80px;
}
#quicklinks h2::after{
	content: "";
    background: #FE0002;
    width: 45px;
    height: 3px;
    display: block;
    margin-top: 15px;
}
#quicklinks ul{
	text-align: right;
}
#quicklinks li{
	display: inline-block;
	margin:0 15px 16px 0;
	width: 31%;
}
#quicklinks li:nth-child(3),
#quicklinks li:nth-child(6){
	margin-right: 0;
}
#quicklinks li a{
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 20px 5px;
	text-align: center;
	display: block;
	font-family: 'yalenewregular';
	font-size: 16px;
}
#quicklinks li span{
	display: block;
	font-family: 'mallory_mediumregular';
	font-size: 14px;
}
#quicklinks li a:hover{
	background: #FE0002;
}
.events{
	padding-bottom: 30px;
}
.events:last-child .row{
	display: block;
}
.events:last-child .row .col-sm-6:first-child{
	float: right;
}
.events .event-img img{
	display: block;
	width: 100%;
	height: auto;
}
.events .event-content{
	padding: 60px 0 0 0;
}
.events span{
	display: block;
	padding: 0 50px 20px 50px;
	text-transform: uppercase;
	font-family: 'mallory_mediumregular';
	font-size: 14px;
	line-height: 1;
	color: #000000;
}
.events h2{
	color: #005500;
	font-family: 'yalenewregular';
	font-size: 32px;
	padding: 0 50px 25px 50px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	margin-bottom: 30px;
}
.events p{
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	padding: 0 50px 20px 50px;
}
.events a{
	margin: 0 50px;
}
#metu-section{
	padding-bottom: 20px;
}
#metu-section .metu-wrap{
	border: 1px solid rgba(0, 0, 0, 0.25);
}
.metu-imgwrap{
	position: relative;
}
.metu-imgwrap .metu-img img{
	display: block;
	width: 100%;
	height: auto;
}
.metu-imgwrap .onimg-content{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 100%;
    height: 100%;
    text-align: center;
    padding:40px 75px 10px;
}
.onimg-content h2{
	color: #ffffff;
	font-family: 'yalenewregular';
	font-size: 32px;
	padding-bottom: 15px;
}
.onimg-content p{
	color: #ffffff;
	font-size: 14px;
    line-height: 25px;
    padding-bottom: 20px;
}
.onimg-content span{
	display: inline-block;
    border: 1px solid #fff;
    padding: 3px 0px;
}
.onimg-content a{
	border: 1px solid #ffffff;
	font-size: 14px;
	line-height: 1;
	color: #ffffff;
	font-family: 'mallory_lightregular';
	text-transform: capitalize;
	text-align: center;
	padding: 15px 80px;
	text-decoration: none;
	display: inline-block;
}
.onimg-content a:hover{
	text-decoration: none;
	background: #ffffff;
	color: #FE0002;
}
.metu-content{
	text-align: center;
	padding:40px 75px 10px;
}
.metu-content h2{
	color: #000000;
	font-family: 'yalenewregular';
	font-size: 32px;
	padding-bottom: 15px;
}
.metu-content p{
	color: #000000;
	font-size: 14px;
    line-height: 25px;
    padding-bottom: 20px;
}
#footer-top{
	background: #FE0002;
}
#footer-top ul{
	text-align: center;
}
#footer-top li{
	display: inline-block;
	width: 24%;
}
#footer-top li a{
	display: block;
	padding: 27px 25px 20px 25px;
	text-decoration: none;
	font-family: 'yalenewregular';
	font-size: 14px;
	color: #ffffff;
	position: relative;
}
#footer-top li a::after{
	content: "";
    background: #ffffff;
    width: 1px;
    height: 80%;
    display: block;
    position: absolute;
    right: -2px;
    top: 54%;
    -webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
#footer-top li:hover a{
	background: #fa3b3b;
}
#footer-top li:last-child a::after{
	display: none;
}
#footer-bot{
	padding: 30px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
#footer-bot .footer-logo{
	padding-bottom: 15px;
}
#footer-bot .footer-logo a{
	display: block;
	background: url(../images/foot-logo.png) no-repeat;
	background-size: 100% auto;
	width: 298px;
	height: 53px;
	text-decoration: none;
}
#footer-bot p{
	font-size: 14px;
	color: #000;
	font-family: 'yalenewregular';
}
#footer-bot .socialmedia{
	padding-bottom: 42px;
}
#footer-bot .socialmedia ul{
	text-align: right;
}
#footer-bot .socialmedia li{
	display: inline-block;
	margin-left: 30px;
	vertical-align: middle;
}
#footer-bot .socialmedia li a:hover{
	opacity: 0.7;
}
#footer-bot .socialmedia li a.facebook{
	display: block;
	background: url(../images/facebook.png) no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	text-decoration: none;
}
#footer-bot .socialmedia li a.twitter{
	display: block;
	background: url(../images/twitter-bird.png) no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 20px;
	text-decoration: none;
}
#footer-bot .socialmedia li a.insta{
	display: block;
	background: url(../images/instagram.png) no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	text-decoration: none;
}
#footer-bot .socialmedia li a.youtube{
	display: block;
	background: url(../images/youtube.png) no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 15px;
	text-decoration: none;
}
#footer-bot .otherlink{
	text-align: right;
}
#footer-bot .otherlink ul{
	display: inline-block;
	vertical-align: middle;
}
#footer-bot .otherlink p{
	display: inline-block;
	vertical-align: middle;
}
#footer-bot .otherlink li{
	display: inline-block;
	margin-right: 15px;
}
#footer-bot .otherlink li a{
	color: #000000;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	font-family: 'yalenewregular';
}
#footer-bot .otherlink li a:hover{
	color: #FE0002;
}
#lower-footer{
	padding: 20px 0;
	text-align: center;
}
#lower-footer li{
	display: inline-block;
	margin-right: 15px;
}
#lower-footer li:last-child{
	margin: 0;
}
#lower-footer li a{
	color: #000000;
	font-size: 14px;
	text-decoration: none;
}
#lower-footer li a:hover{
	color: #FE0002;
}
#loginModal .modal-content,
#signUpModal .modal-content{
	background: #FE0002;
	border: none;
}
#loginModal .right-section,
#signUpModal .right-section{
	background: #fff;
	padding: 100px 50px;
	border-radius: 0 .3rem .3rem 0;
}
#loginModal .modal-body,
#signUpModal .modal-body{
	padding: 0;
}
#loginModal .btn-close,
#signUpModal .btn-close{
	box-shadow: none;
	outline: none;
	background: url(../images/modal-close.png) no-repeat;
	background-size: 100% auto;
	width: 25px;
	height: 25px;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 9;
}
#loginModal .right-section h2,
#signUpModal .right-section h2{
	color: #2E384D;
	font-family: 'yalenewregular';
	font-size: 30px;
	margin-bottom: 10px;
}
#loginModal .right-section label,
#signUpModal .right-section label{
	color: #8C98A9;
	display: block;
	font-size: 12px;
	font-family: 'mallory_lightregular';
	margin-bottom: 5px;
}
#loginModal .right-section input,
#signUpModal .right-section input
{
	margin-bottom: 10px;
    color: #2E384D;
    font-size: 13px;
    line-height: 1;
    padding: 10px;
}
#loginModal .right-section .forgot,
#signUpModal .right-section .forgot{
	color: #8C98A9;
	font-family: 'mallory_lightregular';
	text-decoration: none;
	margin: 15px 0;
	font-size: 12px;
}
#loginModal .right-section .forgot:hover,
#signUpModal .right-section .forgot:hover{
	color: #FE0002;
}
#loginModal .right-section .default-btn,
#signUpModal .right-section .default-btn{
	display: block;
	width: 100%;
	background: #FE0002;
	color: white;
	outline: none;
	margin-bottom: 15px;

}
#loginModal .right-section .default-btn:hover
#signUpModal .right-section .default-btn:hover
{
	background: white;
	color: #FE0002;
}


#loginModal .right-section p,
#signUpModal .right-section p{
	color: #8C98A9;
	font-family: 'mallory_lightregular';
	font-size: 12px;
	display: block;
	text-align: center;
}
#loginModal .right-section p a,
#signUpModal .right-section p a{
	color: #2E5BFF;
	font-family: 'mallory_mediumregular';
	text-decoration: none;
}
#loginModal .modal-logo,
#signUpModal .modal-logo{
	padding: 30px;
	margin-bottom: 20px;
}
#loginModal .modal-logo a,
#signUpModal .modal-logo a{
	background: url(../images/modal-logo.png) no-repeat;
	background-size: 100% auto;
	width: 200px;
	height: 57px;
	display: block;
} 
#loginModal .info-img,
#signUpModal .info-img{
	padding: 30px;
}
#loginModal .info-img img,
#signUpModal .info-img img{
	display: block;
	width: 100%;
	height: auto;
}
.modal .right-section .forms{
	display: none;
}
#searchModal .modal-content{
	background: #D9D9D9;
}
#searchModal .btn-close{
	box-shadow: none;
	outline: none;
	background: url(../images/modalclose-2.png) no-repeat;
	background-size: 100% auto;
	width: 25px;
    height: 25px;
    margin: 0;
}
#searchModal .search-wrap{
	width: 720px;
    padding-right: 100px;
    position: relative;
}
#searchModal .search-wrap input{
	padding: 20px 15px;
    line-height: 1;
    font-size: 16px;
    border: none;
    border-radius: 0;
    height: 60px;
}
#searchModal .search-wrap span{
	background: #FE0002;
    padding:16px 30px;
    display: block;
    width: 100px;
    position: absolute;
    right: 0;
    top: 0;
	height: 60px;
}
#searchModal .search-wrap span i.search-2{
	background: url(../images/search-white.png) no-repeat;
	background-size: 100% auto;
	width: 31px;
	height: 29px;
	display: block;
}
#searchModal .modal-header,
#searchModal .modal-body{
	border-bottom: 1px solid #A3A3A3;
	padding: 25px;
}
#searchModal .searchimg img{
	display: block;
    width: 85%;
    height: auto;
    margin: 0 auto;
}
#searchModal .modal-body h3{
	color: #000000;
	font-family: 'yalenewregular';
	margin-bottom: 25px;
	font-size: 24px;
}
#searchModal .modal-body .row{
	margin-bottom: 35px;
}
#searchModal .modal-body .formfooter{
	border-top: 1px solid #A3A3A3;
    padding: 25px 0 0 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
#searchModal .modal-body .formfooter .default-btn{
	background: #FFFFFF;
}
#searchModal .modal-body .formfooter .default-btn:hover{
	color: #fff;
	background: #FE0002;
}
#searchModal .modal-body #searchform{
	position: relative;
}
#searchModal .modal-body input,
#searchModal .modal-body select{
	padding:15px;
    line-height: 1;
    font-size: 16px;
    border: none;
    border-radius: 0;
}
.mainheading{
	background: #FE0002;
}
.mainheading h2{
	color: #fff;
	font-family: 'yalenewregular';
	font-size: 40px;
	padding: 40px;
	line-height: 1;
}
.inner-content{
	padding: 35px 50px;
}
.inner-content .search-search{
    position: relative;
	margin-bottom: 25px;
}
.inner-content .search-search input{
	padding: 20px 100px 15px 15px;
    line-height: 1;
    font-size: 18px;
    border: none;
    border-radius: 0;
    height: 60px;
	font-family: 'yalenewregular';
	color: #000000;
	border: 1px solid #D9D9D9;
}
.inner-content .search-search span{
	background: #000;
    padding:16px 30px;
    display: block;
    width: 100px;
    position: absolute;
    right: 0;
    top: 0;
	height: 60px;
}
.inner-content .search-search span i.search-2{
	background: url(../images/search-white.png) no-repeat;
	background-size: 100% auto;
	width: 31px;
	height: 29px;
	display: block;
}
.inner-content .result-content h5{
	font-family: 'mallory_lightregular';
	color: #000000;
	font-size: 16px;
	margin-left: 25px;
	margin-top: 10px;
}
.inner-content .result-content{
	border-bottom: 1px solid #BFBFBF;
	/* margin-bottom: 25px;
	padding-bottom: 15px; */
}
.inner-content .result-content span{
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
	font-family: 'mallory_lightregular';
	color: #000000;
	font-size: 16px;
}
.inner-content .result-content select{
	display: inline-block;
	vertical-align: middle;
    width: 160px;
	background-color: #F4F4F4;
	border: none;
	padding: 10px 30px 10px 15px;
	box-shadow: none;
}
.inner-content .result-content .col-sm-3{
	text-align: right;
}
.table-wrap{
	margin-bottom: 30px;
}
.table-wrap th,
.table-wrap td{
	padding: 10px 10px;
	color: #000;
	font-size: 13px;
}



.table-wrap th{
	border-top: 1px solid #DDE1E6;
	border-bottom: 1px solid #343A40;
	background: #FBFBFB;
}
.table-wrap thead th:first-child{
	background: #F5F5F5;
	min-width: 130px;
}
.table-wrap td{
	font-family: 'mallory_lightregular';
	font-size: 13px;
}
/* .table-wrap tbody td:first-child{
	background: #FAFAFA;
	min-width: 130px;
} */

.table-wrap td
{
	border-right:1px solid #DBDBDB; 
} 
.table-wrap td a{
	/* color: #0090FF; */
	text-decoration: none;
	color: black;
}
.searchdetail-head{
	border-bottom: 1px solid #8F8F8F;
	padding-bottom: 15px;
}
.searchdetail-head h5{
	color: #000;
	font-family: 'yalenewregular';
	font-size: 22px;
	margin-top: 7px;
}
.searchdetail-head .col-sm-3{
	text-align: right;
}
.searchdetail-head a {
    text-decoration: none;
    background: white;
    color: #FE0002;
    border: 1px solid #FE0002;
    padding: 5px 20px;
    border-radius: 3px;
    border-bottom: 4px solid #FE0002;
  }

  
.searchdetail-head i{
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
    vertical-align: text-bottom;
    line-height: 1;
}
.searchdetail-content{
	padding: 30px 50px;
    border-bottom: 1px solid #8F8F8F;
}
.searchdetail-content h6{
	color: #000;
	font-family: 'yalenewregular';
	font-size: 18px;
	margin-bottom: 7px;
}
.searchdetail-content p{
	font-family: 'mallory_lightregular';
	font-size: 13px;
	color: #000;
	margin: 0;
	word-break: break-all;
}
.searchdetail-content .row{
	margin-bottom: 30px;
}
.searchdetail-content .row:last-child{
	margin-bottom: 0;
}
.empimg-wrap{
	margin-top: 30px;
}
.empimg-wrap .emp-img img{
	display: block;
	width: 100%;
	height: auto;
}
.empimg-wrap span{
	margin-top: 15px;
    border-color: #005500;
    padding: 10px 10px 6px 10px;
    display: block;
    color: #005500 !important;
    line-height: 1;
	background: none !important;
}
.fixed{
	position: relative;
}
#sidebar{
	position: sticky;
    top: 20px;
    left: 0;
}
#sidebar ul{
	padding: 15px 0;
	border-left: 1px solid #707070;
}
#sidebar li{
	display: block;
	margin-left: -3px;
}
#sidebar li a{
	font-family: 'yalenewregular';
    font-size: 14px;
    color: #000;
    padding: 8px 15px;
    display: block;
    text-decoration: none;
	border-left: 4px solid transparent;
	font-weight: 800;
}
#sidebar li:hover a,
#sidebar li.active a{
	color: #FE0002;
	border-left: 4px solid #FE0002;
	font-family: 'yalenewregular';

}
.content-section{
	padding-top: 40px;
	min-height: 400px;
}
.content-section h3{
	color: #005500;
	font-family: 'yalenewregular';
	font-size: 30px;
	margin-bottom: 25px;
}
.content-section p{
	font-family: 'yalenewregular';
    font-size: 17px;
    color: #000;
	line-height: 20px;
	margin-bottom: 15px;
	
}

.content-section p span{
	font-family: 'yalenewregular';
    font-size: 17px;
    color: #000;
	line-height: 20px;
	margin-bottom: 15px;
	
}



.content-section:first-child{
	padding-top: 0;
}
.content-section:last-child{
	padding-bottom: 100px;
}
.content-section .list-style{
	margin-bottom: 20px;
	margin-left: 20px;
}
.content-section .list-style li{
	display: block;
	margin-bottom: 5px;
}
.content-section .list-style li::before{
	content: "";
	background: #FE0002;
	width: 6px;
	height: 6px;
	display: inline-block;
	margin-right: 10px;
	border-radius: 50%;
}
.content-section .contact-img img{
	display: block;
	width: 100%;
	height: auto;
}
.content-section p a{
	color: #FE0002;
}
.content-section h4{
	color: #FE0002;
	font-size: 16px;
	font-family: 'mallory_mediumregular';
	padding: 0 0 10px 50px;
}
.content-section .list-2{
	margin: 0 15px 15px 80px;
}
.content-section .email{
	margin: 0 15px 15px 80px;
	display: block;
	color: #005500;
	font-size: 16px;
	font-family: 'mallory_mediumregular';
	text-decoration: none;
}
.gallery .inner-links{
	display: inline-block;
	width: 230px;
	vertical-align: top;
	margin-right: 30px;
	position: sticky;
    top: 20px;
    left: 0;
}
.gallery .inner-links li{
	display: block;
}
.gallery .inner-links li a{
	display: block;
	color: #000000;
	font-family: 'yalenewregular';
	font-size: 15px;
	text-decoration: none;
	padding: 13px 12px;
	border: 1px solid #FE0002;
}
.gallery .inner-links li:hover a,
.gallery .inner-links li.active a,
.gallery .inner-links li a.active{
	background: #FE0002;
	color: #fff;
}
.gallery .contentsection-wrap{
	display: inline-block;
	width: 68%;
	vertical-align: top;
}
.gallery #sidebar {
    position: static;
}
.gallery #sidebar li{
    cursor: context-menu;
}
.gallery .contentsection-wrap .content-section{
	padding-top:20px;
}
.galleryconent-wrap{
	display: none;
}

#masonry {
	column-count: 1;
	column-gap: 1em;
  }
  

.iti--allow-dropdown input{
    width: 302px;
    padding-left: 50px !important;
}  

.required {
    content:"*";
    color:red;
  }


.Members-area h3
{
	font-size: 20px;
	padding-bottom: 20px;
}

.Members-area h3 a 
{
	text-decoration: none;
	color: #FE0002;
}

.Members-area .inner-content{
	padding:20px 0px 20px 0px;
}

.Members-area a {
    background: #FE0002;
    color: white !important;
    border: 1px solid #FE0002;
    padding: 60px 45px;
    border-radius: 3px;
    border-bottom: 4px solid #FE0002;
    margin-right: 20px;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    width: 260px;
    height: 217px;
    vertical-align: middle;
}
.Members-area a span
{
    font-size:12px;
}

.Members-area a:hover
{
    color:red !important;
    background:white;
    border: 1px solid #FE0002;
}

.our_contributions .content-section >p >b >span {
	font-size: 20px !important;
}

.information
{
	text-align: center;
	height: 130px;
	background-color: red;
}

.information h4
{
	padding: 5px 0px;
    color: white;
    font-size: 16px;
	height: 40px;
}

.information p
{
	color: black;
	padding: 10px 5px;
}

#search_result_count{
	
}

.our_contributions h5{
	font-size: 24px;
	padding-bottom: 20px;
	padding-top: 50px;
	font-family: Raleway;
}


.margin-top 
{
	margin-top: 20px;
}

.left-us .table-wrap .table thead tr
{
background: linear-gradient(266deg, rgba(180,2,2,1) 0%, rgba(235,2,2,1) 100%);
}

.left-us .table-wrap .table thead tr th
{
	font-family: Raleway;
	background: rgba(180,2,2,1);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: white;
	border-right: 1px solid #DBDBDB;
}


.left-us .table-wrap .table tbody td
{
	font-family: Raleway;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: black;
}

.left-us .table-wrap td a
{
	color: rgba(180,2,2,1);
}

.left-us .table-wrap td a:hover
{
	color: black;
}

.left-us .search-search input
{
	background: #F1F1F1;
    color: black;
    height: auto;
    border-radius: 3px;
}

.left-us .search-search span
{
background: #C50C0C;
height: auto;
border-radius: 0px 3px 3px 0px;
padding: 15px 30px 14px 30px;
}


.left-us .main-banner
{
	background: url(../images/leftusBanner.jpg) no-repeat;
	background-size: cover;
	height: 100vh;
	margin-bottom: 50px;
	position: relative;
}

.left-us .main-banner
{
	text-align: center;
}

.left-us h2
{
	color: #fff;
    font-family: 'yalenewregular';
    font-size: 40px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.FirstImg img
{
	width: 50%;
    float: right;
	margin-right: 15px;
	margin-bottom: 40px;
	margin-left: 10px;
}





.about ul
{
	text-decoration: none;
    margin-bottom: 5px;
	list-style-type: circle;
	
}

.about ul li
{
	margin-bottom: 5px;
	margin-left: 15px;
}

.about ul li a
{
	text-decoration: none;
    font-family: 'yalenewregular';
	font-size: 17px;
    color: #FE0002;
}

.Section h5 
{
	font-size: 16px;
    color: black;
    padding-top: 5px;
    text-align: center;
	padding-bottom: 300px;
	font-family: italic;
}

.Section h3
{
	padding-top: 20px;
}




.box-wrap
{
	margin-bottom: 20px;
}

.lastone
{
	float: left !important;
    margin-left: 2% !important;
}

.imageSection 
{
	text-align: center;
}

.Mainheading h5
{
padding-top: 15px;
font-size: 20px;
font-style: italic;
}

.imageSection h3
{
	float: left;
}

.imageSectionNormal 
{
	width: 50%;
	float: right;
	text-align: center;
	margin-left: 10px;
}

.imageSectionNormal h5
{
	font-style: italic;
	padding-top: 15px;
	font-size: 14px;
}

.Mainheading h3
{
	color: #005500;
    font-family: 'yalenewregular';
    font-size: 30px;
    margin-bottom: 15px;
}

.headingpadding h5
{
	padding-bottom: 50px;
}

.table-section table 
{
	width: 45%;
	float: left;
}

.content-section li
{
	font-family: 'yalenewregular';
	font-size: 17px;
}
.content-section li a 
{
	color: #FE0002;
	font-family: 'yalenewregular';
	font-size: 17px;
}

.Mainheading 
{
	text-align: center;
}

.margin-required .imageSectionNormal
{
	margin-bottom: 50px;
}

.Mainheading h4
{
	color: #005500;
    font-family: 'yalenewregular';
    font-size: 24px;
	display:block;
	float: left;
    padding-left: 0px;
}

.Mainheading h6
{
	color: #005500;
    font-family: 'yalenewregular';
    font-size: 20px;
	display:block;
	float: left;
    padding-left: 0px;
}

.scrollspy
{
	text-align:left;
}

.about_metu_pakistan h3
{
	display: block;
	color: #005500;
    font-family: 'yalenewregular';
    font-size: 30px;
}

.paddingss
{
	padding-bottom: 50px;
}

.Bookssection h5 em
{ 
	color:#E20808;
	font-style: normal;
}

.Bookssection
{
	text-align: center;
}

#searchresults .search-search input {
    padding: 8px 100px 8px 15px;
}

#searchresults .left-us .search-search span {
	margin-right: 0px;
}

#searchresults .left-us .search-search span
{
	padding: 7px 30px 7px 30px;
}




.inner-content .search-search span i.search-2 {
	width: 25px;
	height: 25px;
}

.image-at-end
{
	text-align: center;
	padding-top: 30px;
}

.image-at-end h5
{
	color: #000;
    font-family: 'yalenewregular';
    font-size: 18px;
	
}

#searchresults .mainheading a
{
	border: 1px solid #FE0002;
    border-radius: 3px;
    border-bottom: 4px solid #FE0002;
    background: white;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 25%;
    color: red;
    text-decoration: none;
}


#searchresults .mainheading .search-search a
{
	margin-top: 50%;
}

#searchresults .mainheading a:hover
{
	color: black;
}

#searchresults .mainheading h2
{
	display:inline-block;
}

.deceased b
{
	font-size: 35px;
}

.req h3
{
	color: #005500;
    font-family: 'yalenewregular';
    font-size: 30px;
    margin-bottom: 25px;
}

.margin-req
{
	margin-bottom: 50px;
}

.book-outer
{
	padding: 0px 0px 20px 0px;
}

.book h6
{
	font-family: 'Raleway';
	background: white;
    color: black;
   
	padding: 10px 15px;
	font-size: 13px;
	height: 110px;

}
.book p
{
	font-family: 'Raleway';
	background-color: white;
	color: black;
	font-size: 12px;
	padding: 15px 0px;
	height: 115px;
	font-weight: 500;
	border-bottom: 15px solid rgba(180,2,2,1);

}
.book
{
	box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 10%);
	position: relative;
}

.book span
{
	position: absolute;
    top: 0;
    right: 3%;
    background: rgba(180,2,2,1);
    width: 10px;
    height: 40px;
}

.single-line-heading p
{
    padding: 20px 15px;
}
.single-line-heading h6
{
	padding: 40px 15px;
}
.multiple-line-heading h6
{
	padding: 15px 15px;
}

.margin-bottom-needed-here
{
	margin-bottom: 50px;
}

.ourgathering h4
{
	padding-left: 0;
}


.mainheading .search-search
{
	position: relative;
	margin-top: 40px;
} 

.mainheading .search-search span
{
	position: absolute;
    top: -30px;
    right: 0px;

}

.mainheading .search-search span a
{
	padding: 18px 30px 18px 30px !important;
	background: rgba(180,2,2,1) !important;
    width: 20px;
    height: 18px;
    border: none !important;
	color: white !important;
	position: relative;
}

.req h4
{
	color: #005500;
    font-family: 'yalenewregular';
    font-size: 24px;
    margin-bottom: 25px;
}

.mainheading .search-search span i.search-2
{
	width: 25px;
	height: 25px;
	background: url(../images/search-white.png) no-repeat;
    background-size: 100% auto;
	display:block;
	position: absolute;
    top: 18%;
    left: 25%;
}


.mainheading h5
{
	text-align: right;
	color: #fff;
	font-family: 'yalenewregular';
	font-size: 34px;
	padding: 40px 0px;
	line-height: 1;
}	

.ralevanceby 
{
	padding: 20px 0px;
}

.ralevanceby span  
{
color: white;
font-size: 18px;
}

.classreq a
{
	margin-top: 7% !important;
}

.margin-needed-as img
{
	margin-bottom: 50px;
}

.LectureSeries p
{
	font-size: 16px;
    line-height: 22px;
    color: #000000;
	padding-bottom: 50px;
}

.lecture-series-details a
{
	text-decoration: none;
	color: red;
	
}

.content-section p a b span
{
	color: red !important;
	text-decoration: none !important;
}

.imageSectionNormal h5
{
	padding-bottom: 20px;
}


.class-reqired p span
{
	font-size: 16px !important;
    line-height: 22px !important;
    color: #000000 !important;
}


.content h3
{
	font-size: 24px;
}

.headingh h3
{
	font-size: 24px;
}

.Aboutus.memoirs .box-content
{
	min-height: auto;
}

.Aboutus.memoirs
{
	padding: 0px 0px 100px 0px;
}

.Aboutus .box-content
{
	display:table;
	width: 100%;
	min-height: 190px;
}

.Aboutus .box-content a
{
	display: table-cell;
    vertical-align: middle;
}

.Mainheading.lefting 
{
	text-align: left;
	padding:0;
}

.Mainheading.lefting .inner-content
{
	padding: 50px 0px;
}

.first-content
{
	height: 70px;
	padding: 0px 5px;
	display: table;
	width: 100%;
}

.centeringtext
{
	display: table-cell;
    vertical-align: middle;
}
.first-content h6
{
	height:auto;
	padding: 0px 5px;
}

.centeringtextpara
{	
	display: table;
	width: 100%;
}

.centeringtextpara p
{
	display: table-cell;
    vertical-align: middle;
	padding: 0px 5px;
	height: 100px;
}

.about h3
{
	text-align:left;
}

.first-content.second-row
{
	height: 50px;
}

.centeringtextpara.second-row p
{
	height: 105px;
	padding-bottom: 10px;
}

.two-line-heading .first-content {
    height: 60px;
}

.tow-lines-name p
{
	height: 65px;
	padding: 0px 0px;
}

.single-line-name p
{
	height: 40px;
	padding: 0px 0px;
}


.tow-heading-three-discription h6
{
	height: 30px;
    padding: 0px 5px;
}

.tow-heading-three-discription p
{
	padding: 10px 5px;
	height: 95px;
}

.second-row.two-lines h6
{
	height: 30px;
}

.two-lines-text .first-content {
    height: 30px;
}


.two-lines-text .single-line-heading p {
    padding: 10px 15px;
    height: 90px;
}

.fivelinethreetext h6
{
	padding: 0px 5px;
	height: 70px;
}

.fivelinethreetext p
{
padding: 0px;
height: 85px;
}

.fivelinethreetext.sixth h6
{
	height: 95px;
}

.fivelinethreetext.sixth p {
    padding: 0px;
    height: 100px;
}

.Singleline h6
{
	height: 60px;
}

.Singleline p{
	
	height: 55px;
}

.heading-padding h5
{
	height: 120px;
}

.LectureSeries .image-wrapper
{
	height: 175px;
    overflow: hidden;
}

.searchdetail-content p a
{
	color: red;
	text-decoration: none;
}

.padding-required-here
{
	padding: 50px 0px;
}

.padding-required-here label
{
	font-size: 18px;
	padding-bottom: 15px;
	padding-top: 15px;
	font-weight: 600s;
}

.blog
{
    border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 3px;
	padding: 15px;
	margin: 30px 0px;
}

.blog h2
{
	padding-bottom: 15px;
}
.blog h2 a
{
	color: #005500;
    font-family: 'yalenewregular';
    font-size: 32px;	
}


.blog a
{
 color: red;
 text-decoration: none;
}
.header-blog
{
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	margin-bottom: 20px;	
}
 

.comment-section p
{
	display: inline-block;
}

.comment-section h4
{
	display: inline-block;
}

.comment-section h4 a 
{
	color: red;
	text-decoration: none;
	padding: 0px 5px;
}

.blog h2 a:hover
{
	color: red !important;
	cursor: pointer;
	
}

.blogs-details h2
{
	font-family: 'yalenewregular';
    font-size: 32px;
	color: #005500;
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.blogs-details p
{
	font-size: 17px;
	line-height: 22px;
	color: #000000;
	padding-bottom: 10px;
}

.comment-section 
{
	padding: 0px 0px 20px 0px;	
	border-radius: 3px;
}

.comments
{
	padding: 15px;	
}

.comments-header
{
	padding: 5px 0px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}


.comments-header h3
{
	display: inline-block;
	font-size: 18px;
	color: red;
	padding-right: 10px;
}

.comment-new
{
	
	margin: 15px 15px 15px 50px;
    padding: 10px;
}

.comment-new p
{
	font-size: 14px;
}


.comments-header p
{
	display: inline-block;
	font-size: 16px;
	color: #8F8F8F;
}

.comments-footer
{
	text-align: right;
}

.buttons-in
{
	float: right;
}

.comments-header.user h3
{
	font-size: 16px;
}

.comments-header.user p
{
	font-size: 14px;
	padding-bottom: 0px;
}

.buttons-in button
{
	color: white;
	background: red;
	border: none;

}


.height-setting
{
	height: 400px;
	overflow-y: scroll;
}

.height-setting::-webkit-scrollbar {
	width: 7px;
  }
  
  /* Track */
  .height-setting::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
  }
   
  /* Handle */
  .height-setting::-webkit-scrollbar-thumb {
	background: red; 
	border-radius: 10px;
  }
  
  /* Handle on hover */
  .height-setting::-webkit-scrollbar-thumb:hover {
	background: #b30000; 
  }

  .button-setting button
  {
	  background:red;
	  color: white;
	  border: none;
  }
  
  .button-setting
  {
	  text-align: right;
	  margin: 10px 0px;
  }


  .comment-sections
  {
	  margin: 50px 0px;
	
  }

  .myblogs .pagination li a
  {
	text-decoration: none;
    font-size: 14px;
    background: #FE0002 !important;
    color: white !important;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
    font-family: 'yalenewregular';
	margin-top: 10px;
  }
	
	
.backbutton{
    border: 1px solid #FE0002;
    border-radius: 3px;
    border-bottom: 4px solid #FE0002;
    background: white;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 25%;
    color: red;
    text-decoration: none;
}

.backbutton:hover
{
    color:black;
}


  .header-top .dropdown button
  {
	text-decoration: none;
    font-size: 14px;
    background: #FE0002;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-block;
    font-family: 'yalenewregular';
	border: none;	
  } 

  .header-top .dropdown ul
  {
	background-color: red;
  }



.btn-load-more{
	display: block;
    background: #FE0002;
    color: white;
    outline: none;
    border: none;
    text-align: CENTER;
    width: 50%;
    margin: 15px auto;
    border-radius: 12px;
    padding: 10px;
}
#marquee p{
	display:inline-block;
}

#marquee a{
	color:yellow;
}	

.nodata{
	min-height:200px;
}
.nodata h1{
	font-size:25px;
	text-align:center;
	margin-top:70px;
}

.btnSubmit{

    font-size: 14px;
    background: #FE0002;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
	margin-top:20px;
}
.btnSubmit:hover{
    color: white;
}

.actionBtn{
	background-color:#FE0002;
	color:#fff;
	border:none;
}
.paginate_button{
	margin-right:5px !important;
}

.form-group-separated label{
	
	margin-top:10px; 
	float:left;  
	margin-bottom:5px; 
	font-size:18px;
	text-align:left;
}
.form-group-separated p{
	
	padding: 20px;
    color: red;
    font-weight: bold;
    font-size: 17px;
}

.form-group-separated button{
	
	margin-top: 20px;
    float: left;
    background-color: red;
    border: none;
}
.form-group-separated .iti,.form-group-separated .iti > input{
	
	width:100%
}

.select2-container--default .select2-selection--single{
	height: 39px !important;
    padding: 4px !important;
}

.blog_status_button{
	font-size: 12px;
    display: block;
    background-color: grey;
    width: 70px;
    text-align: center;
    padding: 3px;
    border-radius: 20px;
    color: #ffff;
}

#request_update_users_detail button:hover{
	background-color:red !important;
}

.left-aligning .select2-selection__rendered
{
	text-align: left;
}

.label-color
{
	margin: 20px 0px;
}



.label-color label
{
	color: red;
	font-weight: 800;
}

.select2-container--default .select2-selection--single {
	border: 1px solid #ced4da !important; 
}


	@media(min-width: 30em) {
	#masonry {
	  column-count: 3;
	  column-gap: 1em;
	}
  }
  
  @media(min-width: 40em) {
	#masonry {
	  column-count: 3;
	  column-gap: 1em;
	}
  }
  
  @media(min-width: 60em) {
	#masonry {
	  column-count: 3;
	  column-gap: 1em;
	}
  }
  
  @media(min-width: 75em) {
	#masonry {
	  column-count: 3;
	  column-gap: 1em;
	}
  }
  
  .item {
	background-color: none;
	display: inline-block;
	margin: 0 0 1em 0;
	width: 100%;
	cursor: pointer;
  }
  
  .item img {
	max-width: 100%;
	height: auto;
	width: 100%;
	margin-bottom: -4px;
	
	/*idk why but this fix stuff*/
  }

  .scrollbar{
	height: 95vh;
    overflow-y: auto;
	position: sticky;
    top: 20px;
    left: 0;
	margin-bottom: 40px;
}
.force-overflow{
	min-height: 400px;
}
#style-2::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
	border-radius: 2px;
	background-color: #F5F5F5;
}
#style-2::-webkit-scrollbar{
	width: 6px;
	background-color: #F5F5F5;
}
#style-2::-webkit-scrollbar-thumb{
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
	background-color: rgb(78, 78, 78);
}



.fl{ float:left}
.fr{ float:right}
.cl{ clear:both; font-size:0; height:0; }
.clearfix:after {
clear: both;
content: ' ';
display: block;
font-size: 0;
line-height: 0;
visibility: hidden;
width: 0;
height: 0;
}

/* Alignments */
.center { text-align:center }
.right { text-align:right }
.top {vertical-align:top }
.middle { vertical-align:middle }


/* Responsive */
@media (max-width: 1200px){}
@media (max-width: 1024px){

	#news .box-content {
		min-height: 145px;
		display: table;
		width: 100%;
	}

	#news .box-content a {
		display: table-cell;
		vertical-align: middle;
	}

	.header-top {
		padding: 10px 0;
	}
	.header-top li {
		margin-left: 12px;
	}
	.header-top li a{
		font-size: 13px;
	}
	.header-top li a i{
		width: 16px;
		height: 16px;
		margin-left: 6px;
	}
	.header-main {
		padding-bottom: 10px;
		overflow-x: hidden;
	}
	.header-main .logo a{
		width: 105px;
		height: 85px;
	}
	.menu-section{
		padding: 15px 0 0 0;
	}
	.menu-section .text-logo {
		padding-bottom: 5px;
	}
	.menu-section .text-logo a{
		width: 175px;
		height: 28px;
	}
	.navigation li{
		margin-left: 3px;
	}
	.navigation li a{
		font-size: 15px;
		padding: 10px 7px;
	}
	.navigation .dropdown-content{
		width: 150px;
		padding: 10px;
	}
	.navigation .dropdown-content a{
		padding: 5px;
		font-size: 11px;
	}
	#homebanner .homebanner-content {
		padding: 20px 0 0 0;
	}
	#homebanner {
		padding-bottom: 25px;
	}
	#homebanner .homebanner-content {
		padding: 20px 0 0 0;
	}
	#homebanner span{
		padding: 0 25px 20px 25px;
	}
	#homebanner h2{
		padding: 0 25px 25px 25px;
	}
	#homebanner p{
		padding: 0 25px 20px 25px;
	}
	#homebanner a {
		margin: 0 25px;
	}
	#quicklinks li a{
		font-size: 14px;
	}
	#footer-bot .otherlink li {
		margin-right: 10px;
	}
	#footer-bot .otherlink li a{
		font-size: 12px;
	}
	#footer-bot p{
		font-size: 12px;
	}
	#lower-footer li a{
		font-size: 12px;
	}
}
@media (max-width: 768px){

	.backbutton{
		font-size: 12px;
		margin-top: 45px;
	}

	.LectureSeries .image-wrapper {
		height: 100px;
	}
	.header-top {
		padding: 8px 0;
	}
	.header-top li a {
		font-size: 12px;
	}
	.header-top li a i {
		width: 14px;
		height: 14px;
	}
	.header-main .logo a {
		width: 80px;
		height: 65px;
	}
	.menu-section {
		padding: 12px 0 0 0;
	}
	.menu-section .text-logo a {
		width: 125px;
		height: 20px;
	}
	.navigation li {
		margin-left: 0;
	}
	.navigation li a {
		font-size: 12px;
		padding: 6px 3px;
	}
	.navigation .dropdown-content {
		width: 135px;
		padding: 5px;
	}
	.navigation .dropdown-content a {
		padding: 4px;
		font-size: 10px;
	}
	#homebanner .homebanner-content {
		padding: 0;
	}
	#homebanner span {
		padding: 0 0 10px 0;
		font-size: 12px;
	}
	#homebanner h2 {
		padding: 0 0 15px 0;
		font-size: 20px;
		margin-bottom: 15px;
	}
	#homebanner p {
		padding: 0 0 10px 0;
		font-size: 13px;
		line-height: 20px
	}
	#homebanner a {
		margin: 0;
		font-size: 12px;
		padding: 10px 35px;
	}
	#homebanner {
		padding-bottom: 15px;
	}
	#bannerbot-section{
		padding: 15px 0;
	}
	#bannerbot-section .box-wrap .box-content {
		padding: 8px;
		min-height: 235px;
	}
	#bannerbot-section .box-wrap .box-content h3 a{
		font-size: 13px;
    	line-height: 17px;
    	padding-bottom: 5px
	}
	#bannerbot-section .box-wrap .box-content p {
		font-size: 10px;
		line-height: 16px;
		padding: 0;
	}
	#getinvolved{
		padding: 25px 0 20px;
	}
	#getinvolved h2 {
		font-size: 25px;
		padding-left: 20px;
	}
	#getinvolved h2::after{
		width: 40px;
		height: 2px;
		margin-top: 10px;
	}
	#getinvolved li {
		margin: 0 10px 10px 0;
		width: 45%;
	}
	#getinvolved li a{
		padding: 10px 5px;
		font-size: 14px;
	}
	#getinvolved li:nth-child(3), 
	#getinvolved li:nth-child(6){
		margin: 0 10px 10px 0;
	}
	#getinvolved li:nth-child(2), 
	#getinvolved li:nth-child(4),
	#getinvolved li:nth-child(6){
		margin-right: 0;
	}
	#news {
		padding: 25px 0;
	}
	#news h2{
		font-size: 25px;
		padding-bottom: 25px;
	}
	#news h2::after{
		width: 40px;
		height: 2px;
		margin-top: 10px;
	}
	#news .box-content{
		padding: 10px 5px;
		min-height: 100px;
	}
	#news .box-content a{
		font-size: 15px;
		line-height: 20px;
	}
	#quicklinks {
		padding: 25px 0 20px;
	}
	#quicklinks h2{
		font-size: 25px;
		padding-left: 20px;
	}
	#quicklinks h2::after{
		width: 40px;
		height: 2px;
		margin-top: 10px;
	}
	#quicklinks li {
		display: inline-block;
		margin: 0 10px 10px 0;
		width: 30%;
		vertical-align: middle;
	}
	#quicklinks li a {
		font-size: 13px;
		padding: 18px 5px;
	}
	.events {
		padding-bottom: 20px;
	}
	.events .event-content {
		padding: 0;
	}
	.events span{
		padding: 0 0 10px 0;
		font-size: 12px;
	}
	.events h2{
		font-size: 20px;
		padding: 0 0 15px 0;
		margin-bottom: 15px;
	}
	.events p{
		font-size: 13px;
		line-height: 22px;
		padding: 0 0 15px 0;
	}
	.events a {
		margin: 0;
		font-size: 12px;
    	padding: 10px 35px;
	}
	.metu-imgwrap .onimg-content{
		padding: 15px 10px 10px;
	}
	.onimg-content h2,
	.metu-content h2{
		font-size: 20px;
		padding-bottom: 6px;
	}
	.onimg-content p,
	.metu-content p{
		font-size: 12px;
		line-height: 16px;
		padding-bottom: 10px;
	}
	.onimg-content span{
		padding: 1px 0px;
	}
	.onimg-content a,
	.metu-content a{
		padding: 8px 25px;
		font-size: 12px;
	}
	.metu-content{
		padding: 15px 10px 10px;
	}
	#footer-top li a{
		padding: 15px 15px 15px 15px;
		font-size: 12px;
	}
	#footer-bot{
		padding: 15px 0;
	}
	#footer-bot .footer-logo a{
		width: 220px;
		height: 35px;
	}
	#footer-bot p{
		font-size: 12px;
	}
	#footer-bot .socialmedia {
		padding-bottom: 15px;
	}
	#footer-bot .otherlink ul{
		display: block;
	}
	#footer-bot .otherlink li:last-child{
		margin-right: 0;
	}
	#lower-footer {
		padding: 10px 0;
		text-align: center;
	}

	.deceased b {
		font-size: 24px;
	}

	#searchresults .mainheading a {
		margin-top: 50%;
	}
	#searchModal .search-wrap {
		width: 100%;
	}
	
	.gallery .inner-links {
		position: static;
	}

	.blogspageheader .mainheading a{
		margin-top: 30% ;

	}

}
@media (max-width: 640px){	
	.header-top {
		padding: 12px 0;
		text-align: center;
	}
	#searchbox{
		max-width: 90%;
		padding: 10px;
		height: auto;
		font-size: 1.5rem;
	}
	.header-main .logo a{
		margin-bottom: 10px;
	}
	.menu-section {
		padding: 12px 0;
		margin-left: 0;
	}
	.navigation .navbar-header {
		display: block;
	}
	.navigation ul{
		display: none;
		padding: 15px 0 0 0;
    	text-align: left;
	}
	.navigation li {
		display: block;
	}
	.navigation li a {
		font-size: 14px;
		padding: 10px;
	}
	.menu-section .text-logo {
		padding-bottom: 0;
		padding-top: 5px;
	}
	#homebanner .homerbanner-img{
		padding-bottom: 20px;
	}
	#bannerbot-section {
		padding: 20px 0 5px 0;
	}
	.header-main {
		padding-bottom: 15px;
	}
	#bannerbot-section .box-wrap{
		margin-bottom: 15px;
	}
	#bannerbot-section .box-wrap .box-content{
		min-height: inherit;
		padding: 15px;
	}
	#bannerbot-section .box-wrap .box-content h3 a{
		font-size: 15px;
		line-height: 18px;
	}
	#getinvolved {
		padding: 20px 0 5px;
	}
	#getinvolved h2{
		font-size: 20px;
		padding-left: 0;
		padding-bottom: 20px;
	}
	#getinvolved ul {
		text-align: center;
	}
	#getinvolved li {
		margin: 0 8px 10px 0;
		width: 48%;
	}
	#getinvolved li a {
		padding: 10px 5px;
		font-size: 12px;
	}
	#getinvolved li span {
		font-size: 12px;
	}
	#news h2 {
		font-size: 20px;
		padding-bottom: 20px;
	}
	#news .box-content {
		min-height: inherit;
		margin-bottom: 15px;
	}
	#news .box-content a{
		font-size: 14px;
	}
	#news {
		padding: 18px 0 0 0;
	}
	#quicklinks {
		padding: 15px 0 5px;
	}
	#quicklinks h2 {
		font-size: 20px;
		padding-left: 0;
		padding-bottom: 15px;
	}
	#quicklinks ul {
		text-align: center;
	}
	#quicklinks li{
		width: 47%;
	}
	#quicklinks li a {
		font-size: 13px;
		padding: 12px 5px 10px;
	}
	.events .event-img{
		padding-bottom: 20px;
	}
	.events .event-content{
		padding-bottom: 10px;
	}
	.events:last-child .row{
		display: flex;
	}
	.events:last-child .row .col-sm-6:first-child{
		float: none;
	}
	.metu-imgwrap .onimg-content{
		height: auto;
	}
	.metu-content {
		padding: 30px 10px 25px;
	}
	#footer-top li a {
		padding: 13px 5px 10px 5px;
		font-size: 10px;
	}
	#footer-bot {
		padding: 15px 0 0;
		text-align: center;
	}
	#footer-bot .footer-logo {
		padding-bottom: 12px;
	}
	#footer-bot .footer-logo a {
		width: 200px;
		height: 33px;
		margin: 0 auto;
	}
	#footer-bot p {
		font-size: 11px;
		margin-bottom: 13px;
	}
	.onimg-content p, 
	.metu-content p{
		line-height: 20px
	}
	#footer-bot .socialmedia {
		padding-bottom: 12px;
	}
	#footer-bot .socialmedia ul {
		text-align: center;
	}
	#footer-bot .socialmedia li{
		margin-left: 20px;
	}
	#footer-bot .socialmedia li a.facebook{
		width: 15px;
		height: 15px;
	}
	#footer-bot .socialmedia li a.twitter{
		width: 19px;
    	height: 15px;
	}
	#footer-bot .socialmedia li a.insta{
		width: 15px;
		height: 15px;
	}
	#footer-bot .socialmedia li a.youtube{
		width: 20px;
    	height: 15px;
	}
	#footer-bot .otherlink {
		text-align: center;
	}
	#footer-bot .otherlink ul {
		margin-bottom: 5px;
	}
	#lower-footer li {
		margin-right: 10px;
	}
	#lower-footer li a {
		font-size: 11px;
	}

}
@media (max-width: 480px){

	

	.LectureSeries .image-wrapper {
		height: auto;
	}

	#searchresults .mainheading h5 {
		padding: 40px 100px;
	}
	.book {
		margin-bottom: 50px;
	}
	#searchresults .class-reqired #mission .align-right 
	{
		float: none;
		margin: 0;
		border: none;
		width: 100%;
	}

	#mission a 
	{
		word-break: break-all;
	}

	.MsoNormal a
	{
		word-break: break-all;
	}

	#searchresults .content-section
	{
		text-align: left;
	}

	.content-section:last-child {
		padding-bottom: 0px;
	}
	.searchMultiDirectory
	{
		padding: 10px 50px;
	}
	.deceased b {
		font-size: 24px;
		padding: 0px 135px;
	}

	#searchresults .mainheading a {
		margin: 30px 150px;
	}

	#searchModal .search-wrap {
		width: auto;
	}
	#searchresults .mainheading h2 {
		font-size: 26px;
		padding: 20px 85px;
	}	
	.header-main .logo a {
		margin: 0px 0px 5px 0px;
	}

	.header-top{
		padding: 10px 0;
	}
	.header-top li {
		margin-left: 10px;
		margin-bottom: 15px;
	}
	.header-top li a {
		font-size: 10px;
	}
	.header-main .logo a {
		width: 60px;
		height: 48px;
	}
	.menu-section{
		padding: 8px 0;
	}
	.menu-section .text-logo{
		padding:0;
	}
	.menu-section .text-logo a {
		width: 110px;
		height: 18px;
	}
	.navigation .navbar-header{
		position: absolute;
		right: 0;
		top: -17px;
	}
	.navbar-header .collapse-button{
		height: 23px;
    	padding-top: 0;
	}
	.navbar-header .collapse-button span{
		width: 25px;
		height: 2px;
		margin-bottom: 5px;
	}
	.navigation li a {
		font-size: 12px;
		padding: 8px;
	}
	#homebanner span {
		padding: 0 0 5px 0;
		font-size: 10px;
	}
	#homebanner h2 {
		padding: 0 0 11px 0;
		font-size: 16px;
		margin-bottom: 11px;
	}
	#homebanner p {
		padding: 0 0 10px 0;
		font-size: 11px;
		line-height: 18px;
	}
	#homebanner a {
		margin: 0;
		font-size: 10px;
		padding: 6px 20px;
	}
	#bannerbot-section {
		padding: 15px 0 0px 0;
	}
	#getinvolved {
		padding: 15px 0 5px;
	}
	#getinvolved h2 {
		font-size: 16px;
		padding-left: 0;
		padding-bottom: 12px;
	}
	#getinvolved h2::after{
		margin-top: 8px;
	}
	#getinvolved li{
		margin: 0 6px 8px 0;
		width: 47%;
		vertical-align: middle;
	}
	#getinvolved li a {
		padding: 8px 3px;
		font-size: 11px;
	}
	#getinvolved li span {
		font-size: 11px;
	}
	#news {
		padding: 12px 0 0 0;
	}
	#news h2 {
		font-size: 17px;
		padding-bottom: 15px;
	}
	#news h2::after{
		margin-top: 8px;
	}
	#news .box-content a {
		font-size: 13px;
	}
	#quicklinks {
		padding: 12px 0 5px;
	}
	#quicklinks h2 {
		font-size: 17px;
		padding-left: 0;
		padding-bottom: 10px;
	}
	#quicklinks li {
		width: 46%;
	}
	#quicklinks li a {
		font-size: 12px;
		padding: 8px 3px 6px;
	}
	.events span {
		padding: 0 0 5px 0;
		font-size: 10px;
	}
	.events h2 {
		font-size: 16px;
		padding: 0 0 10px 0;
		margin-bottom: 10px;
	}
	.events p {
		font-size: 11px;
		line-height: 19px;
		padding: 0 0 10px 0;
	}
	.events a {
		margin: 0;
		font-size: 10px;
		padding: 7px 25px;
	}
	.events {
		padding-bottom: 10px;
	}
	#metu-section {
		padding-bottom: 15px;
	}
	.metu-imgwrap .onimg-content {
		padding: 10px 10px 10px;
	}
	.onimg-content h2, .metu-content h2 {
		font-size: 16px;
		padding-bottom: 5px;
	}
	.onimg-content p, .metu-content p {
		line-height: 15px;
		font-size: 10px;
		padding-bottom: 5px;
	}
	.onimg-content a, .metu-content a {
		padding: 6px 20px;
		font-size: 10px;
	}
	.metu-content {
		padding: 15px 10px 10px;
	}
	#footer-top li a {
		padding: 10px 2px 7px 2px;
		font-size: 9px;
	}
	#footer-bot {
		padding: 10px 0 0;
		text-align: center;
	}
	#footer-bot .footer-logo {
		padding-bottom: 8px;
	}
	#footer-bot .footer-logo a {
		width: 180px;
		height: 30px;
		margin: 0 auto;
	}
	#footer-bot p {
		font-size: 9px;
		margin-bottom: 7px;
	}
	#footer-bot .socialmedia {
		padding-bottom: 10px;
	}
	#footer-bot .otherlink li {
		margin-right: 5px;
	}
	#footer-bot .otherlink li a {
		font-size: 10px;
	}
	#lower-footer li {
		margin-right: 5px;
	}
	#lower-footer {
		padding: 7px 0;
		text-align: center;
	}
	#lower-footer li a {
		font-size: 9px;
	}

	.Memoirs h2{   
		font-size: 36px !important;
    padding: 20px 100px ;
	}

	.Memoirs a
	{
		margin: 30px 130px !important;
	}

	.gallery .inner-links {
		position: static;
	}

	.backbutton
	{
		margin: 0px 0px 20px 100px;
	}

	.align-right
	{
		width: 100%;
		display: block;
		height: auto;
	}

	.Mainheading h4 {
		text-align: left;
	}
	
	.Mainheading h6 {
		text-align: left;
	}
	.mainheading .search-search {
		overflow: hidden;
	}
	.comments-header {
		padding: 15px 0px;
	}
}

@media (max-width: 320px){

	#searchresults .mainheading h5 {
		padding: 40px 50px;}
	#searchresults .mainheading a {
		margin: 30px 110px !important	;
		margin-top: 0% !important;
	}

	#searchresults .mainheading h2 {
		padding: 20px 50px;
	}

	.mainheading .search-search span {
		position: absolute;
		top: 0px;
		right: -110px;
	}
	
	.deceased b {
		padding: 0px 100px;
	}
}