body {
    padding-top: 0px;
    background: #fff;
    font-family: Times New Roman, Helvetica, sans-serif;
    font-weight: 400;
    color: #282828;
    line-height: 23px;
	font-size: 18px;
}
.header-clg{
    background-image:url(..img/bg.jpg);
}
.serviceBox{
    padding: 1px 2px;
    text-align: center;
    background:#191919;
    border-top: 3px solid #BD8F4D;
    border-bottom: 3px solid #BD8F4D;
    position: relative;
}
.serviceBox:before{
    content: "";
    border-top: 0 solid #BD8F4D;
    border-right: 0 solid transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover:before{
    border-top-width: 78px;
    border-right-width: 78px;
}
.serviceBox:after{
    content: "";
    border-bottom: 0 solid #BD8F4D;
    border-left: 0 solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover:after{
    border-bottom-width: 78px;
    border-left-width: 78px;
}

.serviceBox .title{
    font-size: 20px;
    font-weight: 700;
    color:#BD8F4D;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .title{ letter-spacing: 3px; }
.serviceBox .description{
    font-family: Times New Roman, Helvetica, sans-serif;
    font-size: 15px;
    color:#fff;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 0;
    text-align:justify;
}
.serviceBox .read{
    padding: 30px 0;
}
.serviceBox .read a{
    border: 4px solid #BD8F4D;
    padding: 9px 25px;
    font: 600 14px/18px "arial";
    color:#BD8F4D;
    text-transform: uppercase;
}
.serviceBox .read a:hover{
    background: #BD8F4D;
    color: #fff;
    text-decoration: none;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 30px; }
}
.vvm-mentor{
    color: #222f42;
    background: #fff;
    font-family: 'Muli', sans-serif;
    padding: 20px 190px 20px 20px;
    border: 15px solid #222f42;
    box-shadow: 0 0 0 3px #91b33c inset, 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
}
.vvm-mentor:before{
    content: "";
    background: #91b33c;
    width: 230px;
    border: 15px solid #fefdfa;
    position: absolute;
    top: -15px;
    bottom: -15px;
    right: -16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.vvm-mentor .mentor-icon{
    width: 150px;
    height: 150px;
    border: 10px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    width: 150px;
}
.vvm-mentor .mentor-icon img{
    width: 100%;
    height: auto;
}
.vvm-mentor .mentor-details{
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.vvm-mentor .title{
    font-size: 22px;
    font-weight: 800;
    text-transform:auto;
    margin: 0;
    text-align:center;
}
.vvm-mentor .post{
    font-size: 15px;
    font-weight: 400;
    text-transform:auto;
    text-align:center;
    
}
.services-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-row-gap: 50px;
  grid-column-gap: 20px;
}
  
  
.services-box {
  color: #9e9e9e;
  text-align: center;
  text-transform: capitalize;
  border: 1px solid #2ecc71;
  padding: 15px;
}

.services-title {
  font-weight: normal;
  font-size: 1.2rem;
}
.box{
    position:relative;
    perspective:800px;
    border:4px solid #1167b1;
    overflow: hidden;
}
.box .box-img{
    transform: rotateX(0deg);
    transition: all 0.4s ease 0s;
}
.box:hover .box-img{
    transform: rotateX(80deg);
    transform-origin: center bottom;
}
.box .box-img img{
    width:100%;
    height:100%;
}
.box .box-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align:center;
    background-color: #fff;
    z-index:-1;
    opacity: 0;
    transition: all 0.4s ease 0s;
}
.box:hover .box-content{
    opacity:1;
}
.box .title{
    color:#333;
    font-size:20px;
    margin:0 0 10px 0;
    text-transform:uppercase;
}
.box .description{
    color:#000;
    font-size: 17px;
    line-height:24px;
    margin-bottom:20px;
    text-align:justify;
    
}
.box .read-more{
    background:#1167b1;
    padding:3% 6%;
    color:#fff;
    border:2px solid #1167b1;
    text-transform:capitalize;
    transition:all 0.50s ease 0s;
}
.box .read-more:hover{
    border:2px solid #1167b1;
    text-decoration:none;
    background:#fff;
    color: #1167b1;
}
@media only screen and (max-width: 990px){
    .box{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 480px) {
    .box .title{
        font-size:14px;
    }
    .box .description{
        font-size:12px;
        line-height:20px;
        margin-bottom:14px;
    }
    .box .box-content .read-more{
        padding:5px 10px;
    }
}
.ticker {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  bottom: 0px;
  right: 0px;
  z-index: 20;
}

.news {
  width: 100%;
  background:#ccc;
}
.news-title {
  width: 150px;
  text-align: center;
  background: #03254c;
  position: absolute;
  z-index: 10;
  height: 50px;
}
.news-title:after {
  position: absolute;
  content: "";
  right: -39px;
  border-left: 20px solid #03254c;
  border-top: 28px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 21px solid transparent;
  top: 0px;
}
.news-title h5 {
  font-size:25px;
  margin: 8% 0;
  color: #fff;
  font-weight:700px;
}
.news marquee {
  font-size: 20px;
  margin-top: 15px;
}
.news-content p {
  margin-right: 41px;
  display: inline;
  color: #222;
}
#small{
  font-size: 10px;
}
#medium{
  font-size: 14px;
}
#large{
  font-size: 18px;
}
.lights:hover{
  width: 90%;
}
.sgbau_logo{
  padding-top:15px;
  
}
.home-thumb:hover{
transform: scale(1.1);
}
.home-thumb{
  transition: all 0.3s ease 0s;
}
.home-thumb{

  border-radius: 10px;
  border: 1px solid gray;
  padding: 5px;
  width: 200px;
  height: 184px;

}

.quick_feeds{
 margin-top: 12px; 
}
.social_media_icon i{
	transition: all 1s;
  
}

.quick_feeds li{
	list-style:none;
}
.quick_feeds ul li{
	display: inline-block;
}
.quick_feeds ul{
	padding-left:0px;
	margin-bottom:0px;
  padding-right: 20px;
}
.quick_feeds a{
	color:#fff;
}
.quick_feeds a:hover{
	color:#fff;
	text-decoration:none;
}

.strip{
	background-image:url('../images/strip.png');
	background-repeat: no-repeat;
	padding: 0px;
}
.top-vibes{
	margin-top:10px;
}
.middle_header {
    padding-top: 5px;
    padding-bottom:0px;
	padding-left:0px;
background-image:url('../images/');
}

.button-default {
    padding: 9px 41px;
    background: #333333;
    color: #fff;
    transition: all 0.5s;
}

.button-default:hover {
	background:#e9e8dc;
	color:#000;
	text-decoration:none;
}
.tabs_notice{
	margin-bottom: 0px !important;
    color: white;
    padding: 14px;
}
.nav-tabs a:hover{
	text-decoration:none;
}
.nav-tabs {
    border: 3px solid #e9e8dc;
    border-bottom-left-radius: 8px;
    border-right: none;
    border-top: none;
}

.quick_links{
	padding-bottom:64px;
}
.quick_links p{
	color:#000;
}
.icon img:hover{
  transform: rotate(360deg);
  transition: 2s;
    
    
}
.icon a:hover{
  font-weight: bold;
  transition: 0.3s;

}
.inner_para p{
	font-size: 21px;
    line-height: 30px;
}
.list_inner_img {
    list-style-image: url(../images/bullet_list.jpg);
}
.list_inner_img > li {
    border-bottom: 1px solid #90002182;
    padding: 5px;
}
.list_inner_img a {
    color: #000;
    font-size: 14px;
}
.readmore_text {
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    transition: all .5s;
}
.readmore_text:hover{
	color:#900021;
	font-size:14px;
	text-decoration:none;
	margin-left:10px;
}
.inner_side_bar {
    background-color:#03254c;
    padding: 17px;
    border-top-right-radius: 50px;
    line-height: 20px;
}
.inner_list_image > li {
    border-bottom: 1px solid #F2AA4C;
    padding: 5px;
}
.footer {
    background-image:url(../images/s_texture.jpg);
	padding-top: 30px;
  padding-bottom: 30px;
}
.footer p {
    color: #fff;
    margin-bottom: 0.5rem;
}
.copy_right {
    background: #000;
    padding: 0px;
}
#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#333333;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
	transition: all .5s;
}
#scroll:hover {
    background: linear-gradient(to left, #97101f, #3e0d1e);
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}
#scroll span:hover{
	top:20px;
}
.title_clg h3{
	font-size:45px;
}
.title_clg p{
	line-height: 25px;
}
.title_clg a{
	color:#000;
}
.title_clg a:hover{
	color:#0e7e89;
	text-decoration:none;
}


.achievementsSlider {
    padding: 0;
    margin: 0;
    /* background: #13637d; */
    background: url(../images/achivements.jpg) no-repeat 0 0 / cover;
    color: #ffffff;
    border: 1px solid #13637d;
    padding: 20px 15px;
    overflow: hidden;
}
.noticeSlider{
	padding: 0;
    margin: 0;
    background: linear-gradient(to left, #0e7e89, #0b2a42);
    color: #ffffff;
    border: 1px solid #13637d;
    padding: 20px 15px;
    overflow: hidden;
}
/*breadcum*/
.animation {
  -webkit-transition: all 0.3s ;
  -moz-transition: all 0.3s ;
  -ms-transition: all 0.3s ;
  -o-transition: all 0.3s ;
  transition: all 0.3s ;
}

.breadCrumbs {
   position: relative;
   list-style: none;
   padding-left: 0px;
   height: 41px;
   margin-bottom: 15px;
   margin-top: 19px;
}

.breadCrumbs li {
  position: relative;
  float: left;
}

.breadCrumbs li a,
.breadCrumbs li p {
  display: block;
  padding: 0 10px 0 30px;
  line-height: 40px;
  color: #fff;
  background: #3fabba;
}

.breadCrumbs li:first-child a {
  padding: 0 10px 0 20px;  
}

.breadCrumbs li a:hover {
  
}

.breadCrumbs li.activePage p,
.breadCrumbs li.activePage a {
  background: #333;
}

.breadCrumbs li:after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  display: block;
  width: 0; 
  height: 0; 
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #3fabba;
  z-index: 10;
}

.breadCrumbs li.activePage:after {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #333;
}

/* GIVE EVERY CHILD A DIFFERENT COLOR */
.breadCrumbs li:nth-child(1) a {
  background: #3fabba;
}

.breadCrumbs li:nth-child(1):after {
  border-left: 20px solid #3fabba;
}

.breadCrumbs li:nth-child(2) a {
  background: #46bdcd;
}

.breadCrumbs li:nth-child(2):after {
  border-left: 20px solid #46bdcd;
}

.breadCrumbs li:nth-child(3) a {
  background: #4bd0e2;
}

.breadCrumbs li:nth-child(3):after {
  border-left: 20px solid #333333;
}

.list_para {
    list-style-image: url(../images/bullets.png);
}
.list_para > li {
    border-bottom: 1px solid #333;
    padding: 5px;
}
.list_para a {
    color: #000;
    font-size: 14px;
}
.btn-outlined {
    border-radius: 0;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
            transition: all 0.3s;
}
.btn-outlined.btn-info {
    background: none;
    border: 2px solid #006400;
    color: #3e0d1e;
	text-align:left;
	border-radius: 5px;
	font-size: 20px;
	font-family:bell mt;
}
.btn-outlined.btn-info:hover,
.btn-outlined.btn-info:active {
    color: #FFF;
    background: linear-gradient(to left, #006400, #3e0d1e);
    font-family:bell mt;
}

.label{
    background-color: #a52d4e;
    color: #fff;
    padding: 8px 10px 10px 10px;
    text-align: center;
    font-size: 16px;
    position: relative;
}
.content{
    background-color: #e5fd6066;
    color: black;
    padding: 8px 10px 10px 10px;
    text-align: center;
    font-size: 16px;
    position: relative;
}

.noti {
    font-size: 24px;
    font-weight:bold;
    font-family:bell mt;
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 10px;
    
    padding-left: 10px;
    background: #B85B14;
    padding-top: 7px;
}

.tab-info {
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.2), 0 4px 50px 0 rgba(0, 0, 0, 0.19);
    background-color: #fff;
    border-radius: 5px;
    padding: 35px 14px 29px 12px;
    list-style: none;
    
}
.ncc{
    position:relative;
    overflow: hidden;
    height: 340px;
}
.ncc .ncc-pic > img{
    width: 92%;
    height:auto;
}
.ncc .ncc-profile{
    background:#03254c;
    padding: 0 24px;
    position: absolute;
    right: 0;
    bottom: -46%;
    width: 90%;
    min-height:230px;
    transition: all 0.25s ease 0s;
}
.ncc:hover .ncc-profile{
    bottom:0px;
}
.ncc .ncc-profile:before{
    content: "";
    border-bottom: 30px solid #d78e10;
    border-right: 262px solid transparent;
    position: absolute;
    top:-30px;
    left: 0;
}
.ncc .ncc-title{
    line-height: 22px;
    font-family: serif,Arial;
}
.ncc .ncc-title:after{
    content:"";
    display: block;
    width: 10%;
    border-bottom:4px solid #fff;
    padding-bottom:5px;
}
.ncc .ncc-title a{
    font-size: 23px;
    text-transform: uppercase;
    font-weight:bold;
    color: #fff;
    display: block;
    transition:all 0.2s linear 0s;
}
.ncc .ncc-title a:hover{
    color:#333;
    text-decoration: none;
}
.ncc .ncc-title > small{
    font-size: 16px;
    font-weight: bold;
    color:#fff
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 10s linear infinite;
  -moz-animation: rotating 10s linear infinite;
  -ms-animation: rotating 10s linear infinite;
  -o-animation: rotating 10s linear infinite;
  animation: rotating 10s linear infinite;
}
.circle_img{
	width:20%;
}





