body {
	max-width:100%;
	overflow-x: hidden;
}

a.col {
	font-size:1.25em!important;
}
.nav-link {
	font-size: 1.25em!important;
}

.ul-h2 {
	text-align: center;
	padding-top:1%;
}

.col-10.body-wrapper{
	position: relative;
	width:90%;
	margin: 0 auto;
	padding: 2% 0;
}

.aa-icon-link{
	text-decoration: none;
}

.aa-icon-container {
	position: relative;
	width: 100%;
	padding: 2% 0;
}

.col-4.aa-icon {
	display: inline-grid;
	position: relative;
	width: 24%;
	text-decoration: none;
	color: rgb(11,35,65);
	text-align: center;
	transform: scale(.8);
	transition: transform .25s ease;
}

.col-4.aa-icon:hover {
	transform: scale(.9);
	
}

.aa-btn {
	display: block;
	position: relative;
	width:25%;
	background-color: rgb(11,35,65);
	color: #fff;
	padding: 1%;
	text-align: center;
	margin: 0 auto;
	font-size:1.2rem;
}

.aa-btn:hover, .aa-btn:focus {
	background-color: rgb(204,78,11);
	color: #fff;
}

.banner-image {
	display: block;
	position: relative;
	width:100%;
}

.accordion-button {
	font-size:1em;
}

.accordion-body {
	font-size:1.2em;
}

.achieve-icon {
	display: block;
	position: relative;
	width:60%;
	left: 20%;
	padding-bottom:3%;
}

.text-container {
  display: inline-flex;
  flex-direction: column;
  height: 2.5rem;
  overflow: hidden;
}

.text-container span {
  height: 2.3rem;
  color: rgb(204,78,11);
  animation: moveUp 7.5s linear infinite;
}

@keyframes moveUp {
  0% {
    transform: translateY(0);
  }
  
  5% {
    transform: translateY(0);
  }

  15% {
    transform: translateY(-2.3rem);
  }

  25% {
    transform: translateY(-2.3rem);
  }

  35% {
    transform: translateY(-4.6rem);
  }

  45% {
    transform: translateY(-4.6rem);
  }

  55% {
    transform: translateY(-6.9rem);
  }

  65% {
    transform: translateY(-6.9rem);
  }

  75% {
    transform: translateY(-9.2rem);
  }

  95% {
    transform: translateY(-9.2rem);
  }

  100% {
    transform: translateY(0);
  }
}

/* ------------------------ QEP Revised --------------------*/
.orange-bg {
	display: block;
	position: relative;
	width:100%;
	min-height:32rem;
	padding:2%;
	background-color:rgb(204,78,11);
	text-align: center;
	color:#fff;
}

strong.blue {
	color:rgb(11,35,65);
	font-weight: 700;
}

p.big {
	font-size:2rem;
}

p.bigger {
	font-size:6rem;
}

.obj-box-contain {
	display: block;
	position: relative;
	width:100%;
	text-align: center;
	bottom:12rem;
}

.col-4.obj-box {
	display: inline-grid;
	position: relative;
	width:28%;
	min-height:33rem;
	margin:2%;
	padding:2%;
	background-color:#fff;
	box-shadow: 5px 5px 15px #000;
}

.obj-num {
	color:rgb(204,78,11);
	font-weight: 900;
}

.btn-contain {
	display: block;
	position: relative;
	bottom:7rem;
}

.btn-contain a {
		text-decoration: none;
	}

.col-3.btn-box {
	display: inline-block;
	position: relative;
	width:23%;
	margin: .75%;
	min-height:10rem;
	background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.one {
	background-image: url("../images/icons/InsiteLab_a.png");
}

.one:hover {
	background-image: url("../images/icons/InsiteLab_b.png");
}

.two {
	background-image: url("../images/icons/AdvisoryCouncil_a.png");
}

.two:hover {
	background-image: url("../images/icons/AdvisoryCouncil_B.png");
}

.three {
	background-image: url("../images/icons/Community of Practice_a.png");
}

.three:hover {
	background-image: url("../images/icons/Community of Practice_b.png");
}

.four {
	background-image: url("../images/icons/Career Discovery and Success_a.png");
}

.four:hover {
	background-image: url("../images/icons/Career Discovery and Success_b.png");
}

.col-12.news-section {
	display: block;
	position: relative;
	bottom:4rem;
}

.col-10.news-wrapper {
	display: block;
	position: relative;
	width:90%;
	margin: 0 auto;
}
.news {
	overflow-x: hidden;
}
h2.section-header, h2.section-title, h2.title01 {
    padding: .5% 0;
    color: #fff;
    background-color: rgb(11,35,65);
    text-align: center;
}

/* ------------ Slider Test -------------*/

#news-slider{
    margin-top: 80px;
}
.post-slide{
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
}
.post-slide .post-img{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -12px 15px 8px 15px;
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
    transform: scale(1,1);
    transition:transform 0.2s linear;
}
.post-slide:hover .post-img img{
    transform: scale(1.1,1.1);
}
.post-slide .over-layer{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
    background: linear-gradient(-45deg, rgba(6,190,244,0.75) 0%, rgba(45,112,253,0.6) 100%);
    transition:all 0.50s linear;
}
.post-slide:hover .over-layer{
    opacity:1;
    text-decoration:none;
}
.post-slide .over-layer i{
    position: relative;
    top:45%;
    text-align:center;
    display: block;
    color:#fff;
    font-size:25px;
}
.post-slide .post-content{
    background:#fff;
    padding: 2px 20px 40px;
    border-radius: 15px;
}
.post-slide .post-title a{
    font-size:15px;
    font-weight:bold;
    color:#333;
    display: inline-block;
    text-transform:uppercase;
    transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover{
    text-decoration: none;
    color:#3498db;
}
.post-slide .post-description{
    line-height:24px;
    color:#808080;
    margin-bottom:25px;
}
.post-slide .post-date{
    color:#a9a9a9;
    font-size: 14px;
}
.post-slide .post-date i{
    font-size:20px;
    margin-right:8px;
    color: #CFDACE;
}
.post-slide .read-more{
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}
.post-slide .read-more:hover{
    background: #3498db;
    text-decoration:none;
    color:#fff;
}
.owl-item {
	display: inline-block;
}
.owl-controls{
	display: block;
	position: relative;
    text-align:center;
    margin-top:20px;
	min-height:5rem;
	bottom:23rem;
}
.owl-controls .owl-buttons{
	display: block;
	position: relative;
    text-align:center;
    margin-top:20px;
}
.owl-controls .owl-buttons .owl-prev{
    background: #fff;
    position: absolute;
    top:-13%;
    left:15px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    transition: background 0.5s ease 0s;
	border:3px solid rgb(204,78,11);
	display: none; /* -- Remove when more news articles are add --*/
}
.owl-controls .owl-buttons .owl-next{
    background: #fff;
    position: absolute;
    top:-13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    transition: background 0.5s ease 0s;
	border:3px solid rgb(204,78,11);
	display: none; /* -- Remove when more news articles are add --*/
}

.owl-controls .owl-buttons .owl-prev:hover, .owl-controls .owl-buttons .owl-next:hover {
	background:rgb(231,233,236);
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
    content:"\f104";
    font-family: FontAwesome;
    color: #333;
    font-size:30px;
	display: none; /* -- Remove when more news articles are add --*/
}
.owl-controls .owl-buttons .owl-next:after{
    content:"\f105";
}
@media only screen and (max-width:1280px) {
    .post-slide .post-content{
        padding: 0px 15px 25px 15px;
    }
}

/* ---------------------------------------------------------- */

.bottom-btn-contain {
	display: block;
	position: relative;
	bottom:5rem;
}

a.col-6 {
	display: inline-block;
	position: relative;
	width:40%;
	padding:2%;
	margin: 0 4%;
	background-color: rgb(204,78,11);
	text-decoration: none;
}

a.col-6:hover {
	display: inline-block;
	position: relative;
	width:40%;
	padding:2%;
	margin: 0 4%;
	background-color: rgb(11,35,65);
	text-decoration: none;
}

.bottom-btn {
	text-align: center;
	text-transform: uppercase;
	color:#fff;
	font-size:2rem;
}
/* ---------------------- Media Query ---------------- */
/* -------------- About ---------------*/

.col-3.icon-about{
	position: relative;
	display: inline-block;
	width:25%;
	text-transform: uppercase;
	padding:1%;
	margin: 0%;
	color: rgb(11,35,65);
}

.col-3.icon-about a {
	color:rgb(11,35,65);
}

.col-3.icon-about a:hover, .col-3.icon-about a:focus, span.name-title:hover, span.name-title:focus{
	color:#e86100;
}

@media only screen and (max-width: 2560px) {
  
}

@media only screen and (max-width: 1920px) {
  
}


@media only screen and (max-width: 1536px) {
  	.obj-box-contain{
		bottom:5rem;
	}
	
	.btn-contain {
		bottom: 4rem;
	}
}

@media only screen and (max-width: 1440px) {
  	.obj-box-contain{
		bottom:5rem;
	}
	
	.btn-contain {
		bottom: 4rem;
	}
}

@media only screen and (max-width: 1366px) {
  	p.bigger {
		font-size:5rem;
	}
	
	p.bigger {
		font-size:5rem;
	}
	
	.obj-box-contain{
		bottom:5rem;
	}
	
	.btn-contain {
		bottom: 4rem;
	}
}
@media only screen and (max-width: 1280px) {
  	p.big {
		font-size:1.25rem;
	}
	
	p.bigger {
		font-size:2.5rem;
	}
	
	.obj-box-contain{
		bottom:12rem;
	}
	
	.col-4.obj-box {
		width:100%;
		margin: 2% 0;
		box-shadow: 0px 5px 15px #000;
	}
	
	.btn-contain {
		bottom: 10rem;
	}
	
	.btn-contain a {
		text-decoration: none;
	}
	
	.col-3.btn-box {
		width:45%;
		min-height: 9rem;
		left:3%;
	}
	
	.col-12.news-section {
		bottom:9rem;
	}
}
@media only screen and (max-width: 962px) {
  	a.col-6 {
	display: inline-block;
	position: relative;
	width:100%;
	padding:2%;
	margin: 2% 0;
	background-color: rgb(204,78,11);
	text-decoration: none;
}
}
@media only screen and (max-width: 800px) {
  	p.big {
		font-size:1.25rem;
	}
	
	p.bigger {
		font-size:2.5rem;
	}
	
	.obj-box-contain{
		bottom:12rem;
	}
	
	.col-4.obj-box {
		width:100%;
		margin: 2% 0;
		box-shadow: 0px 5px 15px #000;
	}
	
	.btn-contain {
		bottom: 10rem;
	}
	
	.btn-contain a {
		text-decoration: none;
	}
	
	.col-3.btn-box {
		width:45%;
		min-height: 9rem;
		left:3%;
	}
	
	.col-12.news-section {
		bottom:9rem;
	}
}

@media only screen and (max-width: 768px) {
  	p.big {
		font-size:1rem;
	}
	
	p.bigger {
		font-size:2rem;
	}
	
	.obj-box-contain{
		bottom:12rem;
	}
	
	.col-4.obj-box {
		width:100%;
		margin: 2% 0;
		box-shadow: 0px 5px 15px #000;
	}
	
	.btn-contain {
		bottom: 10rem;
	}
	
	.btn-contain a {
		text-decoration: none;
	}
	
	.col-3.btn-box {
		width:45%;
		min-height: 9rem;
		left:3%;
	}
	
	.col-12.news-section {
		bottom:9rem;
	}
}

@media only screen and (max-width: 601px) {
  
}

@media only screen and (max-width: 414px) {
  	p.big {
		font-size:1rem;
	}
	
	p.bigger {
		font-size:2rem;
	}
	
	.obj-box-contain{
		bottom:5rem;
	}
	
	.col-4.obj-box {
		width:100%;
		margin: 2% 0;
		box-shadow: 0px 5px 15px #000;
	}
	
	.btn-contain {
		bottom: 3rem;
	}
	
	.btn-contain a {
		text-decoration: none;
	}
	
	.col-3.btn-box {
		width:70%;
		min-height: 9rem;
		left:15%;
	}
	
	.col-12.news-section {
		bottom:2rem;
	}

}

@media only screen and (max-width: 375px) {
  	p.big {
		font-size:1rem;
	}
	
	p.bigger {
		font-size:2rem;
	}
	
	.obj-box-contain{
		bottom:5rem;
	}
	
	.col-4.obj-box {
		width:100%;
		margin: 2% 0;
		box-shadow: 0px 5px 15px #000;
	}
	
	.btn-contain {
		bottom: 3rem;
	}
	
	.btn-contain a {
		text-decoration: none;
	}
	
	.col-3.btn-box {
		width:70%;
		min-height: 9rem;
		left:15%;
	}
	
	.col-12.news-section {
		bottom:2rem;
	}
}

@media only screen and (max-width: 360px) {
	p.big {
		font-size:1rem;
	}
	
	p.bigger {
		font-size:2rem;
	}
	
	.obj-box-contain{
		bottom:5rem;
	}
	
	.col-4.obj-box {
		width:100%;
		margin: 2% 0;
		box-shadow: 0px 5px 15px #000;
	}
	
	.btn-contain {
		bottom: 3rem;
	}
	
	.btn-contain a {
		text-decoration: none;
	}
	
	.col-3.btn-box {
		width:70%;
		min-height: 9rem;
		left:15%;
	}
	
	.col-12.news-section {
		bottom:2rem;
	}
}