body {
    padding-top: 0px;
    /*background: #fff;*/
    background-image:url(../img/bg.jpg);
    font-family: 'Ubuntu Condensed', sans-serif;
    font-weight: 400;
    color: #282828;
    line-height: 20px;
}
.animate-tile1{
    opacity:0;
    transform:translateX(-150px);
    transition: all 1s ease;
}
.animate-tile2{
    opacity:0;
    transform:translateX(150px);
    transition: all 1s ease;
}

.Burungle-clg{
    background:#0f054c;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 5px 30px 86px;
    margin: 10px 0 0 0;
    border-radius: 0 30px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}
.Burungle-clg:before{
    content: "";
    background: #fff;
    width: calc(100% - 10px);
    height: 100%;
    border-radius: 0 30px 0 30px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    position: absolute;
    top: -10px;
    left: 0;
    z-index: -1;
}
.Burungle-clg .Burungle-icon{
    color: #fff;
    background:#0f054c;
    font-size: 25px;
    width: 70%;
    padding: 8px 0 6px;
    margin: 0 0 35px -30px;
    border-radius: 0 50px 50px 0;
    box-shadow: -5px 5px 5px 0px rgba(0,0,0,0.2) inset;
}
.title{
    color:#040f0f;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.title:after{
    content: '';
    background-color:#0f054c;
    height: 2px;
    width: 60%;
    margin: 5px auto 0;
    display: block;
    clear: both;
}
.description{
    color: #999;
    font-size: 17px;
    font-weight: 500;
    line-height: 29px;
    text-align: justify;
    margin: 0 0 25px;
    font-family: 'Ubuntu Condensed', sans-serif;
}
.read-more{
    color: #999;
    font-size: 13px;
    transition: all 0.3s ease 0s;
}
.read-more i{ font-size: 11px; }
.read-more:hover{
    color: #ff9901;
    text-decoration: underline;
}
.college-desk{
    background:#0f054c;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    padding: 15px 0;
    border-radius: 15px;
    overflow: hidden;
}
.college-desk .icon{
    background-color: #fff;
    padding: 5px 0;
    margin: 0 0 15px;
    list-style: none;
}
.college-desk .icon li{
    display: inline-block;
    margin: 0 13px;
}
.college-desk .icon li a{
    color: #000;
    font-size: 18px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
}
.college-desk .icon li a:hover{
    color: #fff;
    background-color: #00C64B;
    text-shadow: 0 0 5px #333;
}
.college-desk .desk-icon{
    background-color:rgb(255,255,255);
    width:160px;
    height:160px;
    margin: 0 auto 15px;
    border: 10px solid transparent;
    box-shadow: 0 0 25px -7px #222;
    border-radius: 50%;
    overflow: hidden;
}
.college-desk .desk-icon img{
    width: 100%;
    height: auto;
}
.college-desk .title{
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 15px;
    margin: 0 0 3px;
}
.college-desk .title span{ font-weight: 600; }
.college-desk .post{
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 0 15px;
    margin: 0 0 10px;
    display: block;
}
.college-desk .desk-content{
    background-color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 24px;
    padding: 7px 12px;
    margin: 0 15px;
    list-style: none;
    border-radius: 10px;
}
@media screen and (max-width:359px){
    .college-desk.icon li{ margin: 0 5px; }
}
.clg-mentor{
    width:100%;
    display:flex;
    justify-content:center;
}
.services-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}
  
  
.services-box {
  color: #0f054c;
  text-align: center;
  text-transform: capitalize;
  border: 1px solid #0f054c;
  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;
   
}
.services-box:hover .icon img {
  animation: bounce 0.6s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.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;
    }
}
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 30px;
    list-style: none;
    background-color: #333333;
    border-radius: 4px;
    box-shadow: 1px 1px 7px;
    margin-top: 11px;
}
.breadcrumb>li {
    display: inline-block;
}
.breadcrumb li+li:before {
  padding: 8px;
  color: white;
  content: "\00bb";
}
.breadcrumb .active {
  color:#fff;
}
.breadcrumb_link_color{
	color:#fff;
}
.breadcrumb_link_color:hover{
	color:#fff;
}
.quick_feeds ul {
    padding-left: 0px;
    margin-bottom: 0px;
}
.quick_feeds ul li {
    display: inline-block;
}
.quick_feeds li {
    list-style: none;
}
.quick_feeds a {
    color: #fff;
}
.quick_feeds a:hover{
	color:#fff;
	text-decoration:none;
}
.social_media_icon  {
    padding-left:0px;
}
.social_media_icon li {
    padding-left: 20px;
	display: inline-block;
}
.social_media_icon i{
	transition: all 1s;
}
.facebook_icon:hover{
	transition-duration: 1s;
	transform: rotate(360deg);
}
.twitter_icon:hover{
	transition-duration: 1s;
	transform: rotate(360deg);
}
.google_plus_icon:hover{
	transition-duration: 1s;
	transform: rotate(360deg);
}
.linkedin_icon:hover{
	transition-duration: 1s;
	transform: rotate(360deg);
}
.instagram_icon:hover{
	transition-duration: 1s;
	transform: rotate(360deg);
}
.contact_top{
	color:#0f054c;
}
.contact_top:hover{
	color:#fff;
	text-decoration:none;
}
.header_top_border{
	border-top: 5px solid #0f054c;
}
.header_top{
	background:#D3D3D3;
	padding: 10px;
}
.header_top_border p{
	margin-bottom:0px;
	color:#0f054c;
}
.middle_header h5{
	color:#000;
	margin-top: 3px;
	 font-family: 'Ubuntu Condensed', sans-serif;
}
.middle_header h2{
	color:#0f054c;
    font-weight: bold;
    font-family: 'Ubuntu Condensed', sans-serif;
}
.flash {
    animation-name: flash;
    animation-duration: 0.6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}
@keyframes flash {
    from {color: white;}
    to {color: #0060ad;}
}
.top_points_2 {
    font-weight: bold;
    margin-top: 26px;
    background: #0060ad;
    color: #fff;
    padding: 6px;
    border-radius: 5px;
}

.noticeSlider {
    padding: 0;
    background:#002540;
    margin-top: 0;
    color: #fff;
    border: 1px solid #002540;
    padding: 2px 15px;
    overflow: hidden;
}
.cards img{
	width: 45%;
    border-radius: 50%;
    border: 1px solid #000;
}


.list_image > li {
    border-bottom: 1px solid #ababab;
    padding: 5px;
}
.list_image a {
    color: #fff;
}

.inner_table th,td{
	font-size:18px;
}
.inner_list_image {
    list-style-image: url(../img/caret.jpg);
    
}
.inner_list_image > li {
    border-bottom: 2px solid #333333;
    padding: 5px;
}
.inner_list_image a {
    color:#0D4677;
    font-size: 17px;
}
.readmore_text {
    transition: all .5s;
}
.readmore_text:hover {
    font-size:16px;
}
.heading_span{
	color: #fff;
    background:#0D4677;
    padding: 8px;
    font-weight: normal;
    margin-left:-18px;
    border-radius:5px;
}

.footer {
    background: #363636;
    padding-top: 20px;
}
.copy_right {
    background: #ddd;
    padding: 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:#D3D3D3;
}
.news-title {
  width: 150px;
  text-align: center;
  background:#0f054c;
  position: absolute;
  z-index: 10;
  height: 50px;
}
.news-title:after {
  position: absolute;
  content: "";
  right: -39px;
  border-left: 20px solid #0f054c;
  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-family: Times New Roman, Helvetica, sans-serif;
  
}
.news marquee {
  font-size: 20px;
  margin-top: 15px;
}
.news-content p {
  margin-right: 41px;
  display: inline;
  color:#F60100;
}
.testimonial{
    text-align: center;
   background-image: url(../images/winner_bg.jpg);
}
.testimonial .pic{
    margin-bottom: 35px;
}
.testimonial .pic > img{
    border-radius: 50%;
    padding:10px;
}

.testimonial-description{
    font-style: italic;
    color:#000;
}
.testimonial .testimonial-title{
    color:#000;
    font-style: normal;
    font-size: 17px;
    line-height: 22px;
    text-transform: capitalize;
}
.testimonial-title > small{
    color:#000;
    font-style: normal;
    font-size: 17px;
    line-height: 22px;
}
.admin{
    padding: 70px 20px 30px;
    margin: 50px 0 110px;
    background: #0f054c;
    text-align: center;
    position: relative;
}


