body {
    padding-top: 0px;
    background: #fff;
    font-family: Aparajita, sans-serif;
    font-weight: 400;
    color: #282828;
    line-height: 23px;
	font-size: 18px;
}
.header-clg{
    background-image:url(..img/bg.jpg);
}
.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding-left:140px;
}

.main-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  transform: perspective(500px) rotateY(-42deg);
  -webkit-transform: perspective(500px) rotateY(-42deg);
  -moz-transform: perspective(500px) rotateY(-42deg);
  -ms-transform: perspective(500px) rotateY(-42deg);
  -o-transform: perspective(500px) rotateY(-42deg);
  animation-name: rotate-windows;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

.main-div div {
  background-color: #00adef;
}

@keyframes rotate-windows {
  0% {
    transform: perspective(500px) rotateY(-42deg);
    -webkit-transform: perspective(500px) rotateY(-42deg);
    -moz-transform: perspective(500px) rotateY(-42deg);
    -ms-transform: perspective(500px) rotateY(-42deg);
    -o-transform: perspective(500px) rotateY(-42deg);
  }
  50% {
    transform: perspective(500px) rotateY(0deg);
    -webkit-transform: perspective(500px) rotateY(42deg);
    -moz-transform: perspective(500px) rotateY(42deg);
    -ms-transform: perspective(500px) rotateY(42deg);
    -o-transform: perspective(500px) rotateY(42deg);
  }
  100% {
    transform: perspective(500px) rotateY(-42deg);
    -webkit-transform: perspective(500px) rotateY(-42deg);
    -moz-transform: perspective(500px) rotateY(-42deg);
    -ms-transform: perspective(500px) rotateY(-42deg);
    -o-transform: perspective(500px) rotateY(-42deg);
  }
}
#AboutArticle {
    position: relative;
    min-width: 800px;
    max-width: 800px;
    background-color: var(--Surface);
    z-index: 1;
    padding: 20px;
    margin: 20px 0px;
    border-radius: 5px;
}

#AboutArticle:hover > #About img{
    left: 600px;
    transition: all .6s ease;
}

#AboutArticle:hover > #About #AboutMe { 
    width: 0;
    transition: all .6s ease;
}

#AboutArticle:hover > #About #AboutInfo {
    width: 555px;
    transition: all .6s ease;
}

#About {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
}

#About img {
    position: absolute;
    left: 0;
    border-radius: 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 1);
    transition: all .6s ease;
  width: 200px;
  height: 300px;
}

#AboutMe h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    
}

#AboutMe h1::first-letter {
    font-size: 25px;
}

#AboutMe {
    overflow: hidden;
    position: absolute;
    width: 590px;
    min-height: 300px;
    max-height: 300px;
    right: 0;
    transition: all .6s ease;
    
}

#AboutMe div {
    position: absolute;
    overflow: hidden;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    text-align: justify;
    min-width: 550px;
    max-width: 550px;
    min-height: 100%;
    max-height: 100%;
    border: 1px solid #8e9681;
    
}

#AboutInfoText span h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
     border: 1px solid #8e9681;
}

#AboutInfoText span h1::first-letter {
    font-size: 25px;
}

#AboutInfo {
    position: relative;
    text-align: center;
    overflow: hidden;
    width: 0;
    min-height: 300px;
    max-height: 300px;
    padding: 0;
    margin: 0;
    right: 0;
    transition: all .6s ease;
}

#AboutInfo #AboutInfoText span > *{
    display: inline-block;
    text-decoration: none;
    color: var(--OnBackground);
    padding: 0;
    margin: 0;
}

#AboutInfo #AboutInfoText {
    position: absolute;
    overflow: hidden;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 0px;
    row-gap: 0px;
    min-width: 555px;
    max-width: 555px;
    min-height: 300px;
    max-height: 300px;
}
#team {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 3;
}
.card {
  width: 33%;
  min-width: 250px;
  height: 250px;
  overflow: hidden;
  position: relative;
  margin: 0 0.5% 1% 0;
  display: inline-block;
}
.card:nth-of-type(3n) {
  margin-right: 0;
}
.card img {
  width: 50%;
  min-height: 50%;
  transition: all 0.9s;
  
}
.card:hover img {
  transform: scale(1.2, 1.2);
}
.data {
  position: absolute;
  bottom: 5%;
  background: #fff;
  text-align: center;
  width: 90%;
  height: 80px;
  overflow: hidden;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 10px 5%;
  box-sizing: border-box;
  opacity: 0.8;
  transition: all 0.4s;
}

.card:hover .data {
  width: 100%;
  height: 100%;
  bottom: 0;
  opacity: 0.9;
  padding: 90px 10%;
}

.data h2 {
  margin: 0 0 5px 0;
  transition: color 0.4s;
}

.data p {
  opacity: 0;
  text-align: justify;
  transition: all 0.2s;
 
}

.card:hover .data p,
.card:hover .data a {
  opacity: 1;
}

.data a {
  color: #333;
  text-decoration: none;
  padding: 20px;
  opacity: 0;
}
.data a:hover,
.card:hover h2 {
  color: #38c;
}

@media (max-width: 799px) {
  .card {
    width: 100%;
    margin-right: 0;
  }
}
.box {
  display: inline-block;
  float: left;
  height: 200px;
  overflow: hidden;
  width: 20%;

  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  transition: width 1s;
}
.box.home {
  background-color: #2d89ef;
}
.box.about {
  background-color: #00a300;
}
.box.portfolio {
  background-color: #e3a21a;
}
.box.services {
  background-color: #9f00a7;
}
.box.contact {
  background-color: #ee1111;
}

.box a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  height: 100%;
  display: block;
  padding-top: 50px;
}

.box span {
  display: block;
  position: relative;
  top: 10%;
  text-align: center;

  -webkit-transition: top 1s;
  -moz-transition: top 1s;
  transition: top 1s;
}
.nav{
    width:100%;
}
.nav:hover .box {
  width: 10%;
}

.nav .box:hover {
  width: 30%;
}

.box:hover span {
  top: 0%;
}
#slideshow {
  margin: 80px auto;
  position: relative;
  width: 800px;
  height: 400px;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}

#slideshow > div {
  position: absolute;
}
pimg {
  width: 800px;
  height: 400px;
  border-radius: 10px;
}
.animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 40px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.ticker {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  bottom: 0px;
  right: 0px;
  z-index: 20;
}

.news {
  width: 100%;
  background: #ffd700;
}
.news-title {
  width: 150px;
  text-align: center;
  background: #c8102e;
  position: absolute;
  z-index: 10;
  height: 50px;
}
.news-title:after {
  position: absolute;
  content: "";
  right: -39px;
  border-left: 20px solid #c8102e;
  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;
}
.icons{
	transition: all .5s;
}
.icons:hover{
	transform:rotate(20deg);
}
.inner_list_image {
    list-style-image: url(../img/caret.jpg);
     /*background-color:#D3D3D3;*/
     /*color:#D0417E;*/
}
.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 #000;
    padding: 5px;
}
.list_inner_img a {
    color: #000;
    font-size: 14px;
}

.footer {
    background-image:url(../img_new/cmk_bg.jpg);
	padding-top: 30px;
  padding-bottom: 30px;
  font-family: Aparajita
}
.footer p {
    color: #fff;
    margin-bottom: 0.5rem;
}
.copy_right {
    background: #ddd;
    padding: 10px;
    font-family: Aparajita
}
#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(../img_new/achivements.jpg) no-repeat 0 0 / cover;
    color: #ffffff;
    border: 1px solid #13637d;
    padding: 20px 15px;
    overflow: hidden;
}
.noticeSlider{
	padding: 0;
    margin: 0;
    background:#515665;
    color: #ffffff;
    border: 1px solid #13637d;
    padding: 20px 15px;
    overflow: hidden;
}
.list_image a {
    color: #fff;
}
.quick_icons img{
	width:43%;
	transition: all .5s;
}
.quick_icons {
	padding: 10px;
    background:#999999;
    height: 124px;
}
.quick_icons img:hover {
    transform: scale(1.2);
}
/*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 ;
  font-family: Aparajita;
}

.breadCrumbs {
   position: relative;
   list-style: none;
   padding-left: 0px;
   height: 41px;
   margin-bottom: 15px;
   margin-top: 19px;
}

.breadCrumbs li {
  position: relative;
  float: left;
  font-family: Aparajita;
}

.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;
    
}






