/********** Template CSS **********/
@font-face {

    font-family: 'MSReferenceSansSerif';
  
    src: url('fonts/msreferencesansserif.TTF') format('truetype');
    
    
    font-weight: normal;
  
    font-style: normal;
  
  }
@font-face{font-family:'FontAwesome';src:url('fonts/fontawesome-webfont.eot?v=4.7.0');
src:url('fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.7.0') 
format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.7.0') 
format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') 
format('svg');
font-weight:normal;
font-style:normal;
    
}

:root {
    --primary: #F3BD00;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

.topicon{
    margin-top: 5px;
}

.nav-top {
    padding-top: 1rem;
}

.nav-bottom {
    padding-bottom: 1rem;
}

.info-box {
    width: 100%;
    padding: 60px 0 61px 0;        
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;   
}

.ib-dha:hover {
    
}

.ib-dha {
    width: 250px;
    height: 250px;   
    padding-left: 80px;
    padding-top: 50px;  
   
}

.ib-dha h2 {
    font-size: 29px;
    font-weight: 700;
    color: #A9ABAE;
    padding-top: 20px;
}

/* IB-CSS */

.info-box .wrapper {

    position: relative;      
    padding: 0 0 6px 0;      
  }
  
  .info-box .wrapper:before {
  
    content: "";      
    display: block;      
    width: 144px;      
    height: 96%;      
    position: absolute;      
    z-index: 0;    
    left: -10px;      
    top: 10px;      
  }
  
  .info-box .wrapper:after {
  
    content: "";      
    display: block;      
    width: 144px;      
    height: 96%;      
    position: absolute;      
    z-index: 0;    
    right: -6px;      
    top: 10px;      
  }
  
  .info-box article {
  
    text-align: center;      
    padding: 14px 40px 34px 40px;      
    box-sizing: border-box;      
    position: relative;      
  }
  
  .info-box article h2,
  
  .info-box article p {
  
    z-index: 3;      
    position: relative;      
  }
  
  .info-box article h2 {
  
    font-size: 29px;      
    line-height: 20px;      
    font-weight: 700;      
    padding-top: 19px;      
    margin-top: 112px;      
    margin-bottom: 9px;
    color: #A9ABAE;
    font-family: PT Serif;      
  }
  
  .info-box article h2:before {
  
    font-family: 'FontAwesome';      
    font-size: 56px;      
    display: inline-block;      
    padding: 10px;      
    width: 100px;      
    height: 100px;      
    line-height: 67px;      
    color: #ffffff;      
    position: absolute;      
    top: -100px;      
    left: 50%;      
    margin-left: -47px;      
  }
  
  .info-box article p {
  
    color: #8d7a65;      
    margin-bottom: 1px;      
    font-family: 'Tahoma', 'Arial', 'sans-serif';      
  }
  
  .info-box article .shadow {
  
   box-shadow: none !important;      
    position: absolute;      
    width: 100%;      
    height: 100%;      
    bottom: -9px;      
    left: 0;      
  }
  
  .info-box article:nth-child(1) h2:before {
  
    content: "";      
    background:url(../img/cambridge_logo.png);      
    background-repeat:no-repeat;      
  }
  
  .info-box article:nth-child(2) h2:before {
  
    content: "";      
    background:url(../img/olevel_logo.png);      
    background-repeat:no-repeat;      
  }
  
  .info-box article:nth-child(3) h2:before {
  
    content: "";      
    background:url(../img/alevel_logo.png);      
    background-repeat:no-repeat;      
  }
  
  
  .info-box article:nth-child(4) h2:before {
  
   content: " ";      
    background: #006038;      
   background:url(../img/ib_logo.png);      
    background-repeat:no-repeat;      
  }
  .info-box article:before {
  
    content: "";      
    display: block;      
    position: absolute;      
    width: 50%;      
    height: 100%;
    background: #fff;      
    top: 0;      
    left: 0;      
    z-index: 2;      
    -webkit-transition: all 300ms ease-in-out;      
    -moz-transition: all 300ms ease-in-out;      
    -ms-transition: all 300ms ease-in-out;      
    -o-transition: all 300ms ease-in-out;      
    transition: all 300ms ease-in-out;      
    -webkit-transition: all 300ms ease-in-out 300ms ease-in-out;      
    -moz-transition: all 300ms ease-in-out 300ms ease-in-out;      
    -o-transition: all 300ms ease-in-out 300ms ease-in-out;      
    transition: all 300ms ease-in-out 300ms ease-in-out;      
    -webkit-transform: skew(0, 6deg);      
    -moz-transform: skew(0, 6deg);      
    -o-transform: skew(0, 6deg);      
  }
  
  .info-box article:after {
  
    content: "";      
    display: block;      
    position: absolute;      
    width: 100%;      
    height: 100%;
    background: #fff;      
    top: 0;      
    right: 0;      
    z-index: 2;      
    -webkit-transition: all 300ms ease-in-out;      
    -moz-transition: all 300ms ease-in-out;      
    -ms-transition: all 300ms ease-in-out;      
    -o-transition: all 300ms ease-in-out;      
    transition: all 300ms ease-in-out;      
    -webkit-transition: all 300ms ease-in-out 300ms ease-in-out;      
    -moz-transition: all 300ms ease-in-out 300ms ease-in-out;      
    -o-transition: all 300ms ease-in-out 300ms ease-in-out;      
    transition: all 300ms ease-in-out 300ms ease-in-out;      
    -webkit-transform: skew(0, -6deg);      
    -moz-transform: skew(0, -6deg);      
    -o-transform: skew(0, -6deg);      
  }
  
  .info-box article:hover a {
  
    top: 95%;      
  }
  
  .info-box article:hover:after,
  
  .info-box article:hover:before {
  
    background: #fffefb;      
    -webkit-transform: skew(0, 0);      
    -moz-transform: skew(0, 0);      
    -o-transform: skew(0, 0);      
  }
  
  .info-box article:hover .button-figure {
  
    top: 94%;      
  }
  .button-figure {

    display: block;      
    position: absolute;      
    padding: 24px 0 20px 0;      
    text-align: center;      
    width: 110px;      
    color: #ffffff !important;      
    font-size: 14px;      
    font-weight: 700;      
    letter-spacing: 1px;      
    text-transform: uppercase;      
    top: 50%;      
    z-index: 1;      
    left: 50%;      
    margin-left: -55px;      
    -webkit-transition: all 300ms ease-in-out;      
    -moz-transition: all 300ms ease-in-out;      
    -ms-transition: all 300ms ease-in-out;      
    -o-transition: all 300ms ease-in-out;      
    transition: all 300ms ease-in-out;      
    -webkit-transition: all 300ms ease-in-out 300ms ease-in-out;      
    -moz-transition: all 300ms ease-in-out 300ms ease-in-out;      
    -o-transition: all 300ms ease-in-out 300ms ease-in-out;      
    transition: all 300ms ease-in-out 300ms ease-in-out;      
    background: none;      
    border-bottom: none;      
    box-sizing: border-box;      
    overflow: hidden;      
  }
  .button-figure span {

    position: absolute;      
    width: 100%;      
    height: 100%;      
    left: 0;      
    top: 0;      
    z-index: -1;      
  }
  
  .button-figure span:before {
  
    content: "";      
    width: 0;      
    height: 0;      
    border-top: 0 solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 250px solid #f0a900;
    position: absolute;      
    left: 0;      
    bottom: 0;      
  }
  
  .button-figure span:after {
  
    content: "";      
    width: 0;      
    height: 0;      
    border-top: 0 solid transparent;      
    border-bottom: 50px solid transparent;      
    border-right: 250px solid #f0a900;      
    position: absolute;      
    right: 0;      
    bottom: 0;      
  }
  

.college-box {
    width: 100%;
    height: 300px;    
}

.our-college {
    padding: 70px 0px;
    background: #3d3c3c;
    width: 100%;
    height: 309px;    
}

.wrapper {
    max-width: 1100px;  
    margin: 0 auto;  
    box-sizing: border-box;  
  }

  .clearfix:after {
    content: " ";  
    visibility: hidden;  
    display: block;  
    height: 0;  
    clear: both;  
  }

  .col-5 {
    float: left;
    width: 41.66666666666667%;
  }
  .college-box .our-college .text h2 {
    font-size: 27px;  
    margin-bottom: 21px;  
    letter-spacing: -0.3px;  
    font-weight: 700;
    color: #fff;  
  }

  .college-box .our-college .text p {
    font-size: 14px;  
    color: #fff;  
    line-height: 22px;  
    text-align:justify;  
    margin:0px 3px 0px 0px;  
  }

  .col-7 {
    float: left;
    width: 58.333333333333336%;
  }

  .col-12 {
    float: left;
    width: 100%;
  }

  .col-4 {
    float: left;
    width: 33.33333333333333%;
  }
  
  .our-college  article:hover {
    border: 1px solid #f0a900;  
    -webkit-box-shadow: 0 0 0 1px #f0a900;  
    -moz-box-shadow: 0 0 0 1px #f0a900;  
    box-shadow: 0 0 0 1px #f0a900;  
  }

  .our-college  article img{
    border:1px #fff solid;
}

.our-college  article img:hover{
    border: none;
}

.our-college article a {
    display: block;
    position: absolute;
    padding: 24px 3px 20px 3px;
    text-align: center;
    width: 110px;
    color: #ffffff !important;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    top: 50%;
    z-index: -1;
    left: 50%;
    margin-left: -55px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out 300ms ease-in-out;
    transition: all 300ms ease-in-out 300ms ease-in-out;
    background: none;
    border-bottom: none;
    box-sizing: border-box;
    overflow: hidden;

}

.our-college article a span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.our-college  article a span:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 250px solid #f0a900;
    position: absolute;
    left: 0;
    bottom: 0;

}

.our-college  article a span:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-bottom: 50px solid transparent;
    border-right: 250px solid #f0a900;
    position: absolute;
    right: 0;
    bottom: 0;
}

.our-college  article:hover {

    border: 1px solid #f0a900;
    -webkit-box-shadow: 0 0 0 1px #f0a900;
    -moz-box-shadow: 0 0 0 1px #f0a900;
    box-shadow: 0 0 0 1px #f0a900;
}

.our-college  article:hover a {
    top: 94%;
}

.img-responsive{  
   border: solid 2px  #A9ABAE;
   margin-bottom:10px;
   max-width: 99% !important;
}

img.aligncenter {

   box-shadow: 0 1px 5px 9px #a9a9a9;
   display: block;
   margin-left: auto;
   margin-right: auto;
   border: solid 2px #ffffff;
   margin-top: 10px !important;

}	

#cff .cff-link-title a{
    color:#fff !important;
}

.cff-media-link a{
    color:#fff;
}

#cff.cff-default-styles a {
   text-decoration: none;
   color: #fff !important;
}

div.wpcf7 .wpcf7-recaptcha iframe{
height: 80px !important; 
}

.mright {
    margin-right: 10px;
}

.row article:hover {
    border: 1px solid #f0a900;
    -webkit-box-shadow: 0 0 0 1px #f0a900;
    -moz-box-shadow: 0 0 0 1px #f0a900;
    box-shadow: 0 0 0 1px #f0a900;
}

.row article:after {
    content: " ";
    visibility: hidden;  
    display: block;  
    height: 0;  
    clear: both;
}

.row section h3 {
    font-size: 27px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    background-image: url(img/heading-logo.jpg);
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 47px;
    height: 36px;
    padding-top: 16px;
}

.row button a {
    font-size: 0;
    color: transparent;  
    display: block;  
    text-indent: -100%;  
    overflow: hidden;  
    width: 30px;  
    height: 32px;  
    position: absolute;  
    right: 30px;  
    top: 0;  
    z-index: 2;
}

.image  {
    /*border-bottom: 2px solid #fff;*/
    overflow: hidden;

}

footer {
    background: #3d3c3c;  
    color:#ffffff !important;
  
  }

  ul.no-bullets {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .btnf-square,
.btnf-sm-square,
.btnf-lg-square {
    padding: 0;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.nav-left {
    background-color: #3d3c3c; 
    padding-left: 22px; 
    padding-top: 15px; 
    padding-bottom: 50px;
}

.imagefb {
    padding-top: 10px;
}

.article p {
    line-height: 1.7em;
    text-align: justify;
    font-size: small;
}

.article ul > li:before {
    content: "-";  
    margin-right: 4px;  
  }

.article h1 {
    color: #A9ABAE; 
    font-size: 34px;
    font-family: PT Serif !important;
}

.article h2 {
    text-transform: none;
    margin-bottom: .5em;
    font-weight: 700;
    font-size: 20px;
    color: #A9ABAE; 
    font-family: PT Serif;
}

.article ul {
    list-style: none;
    line-height: 1.7em;
    text-align: justify;
    font-size: small;
}

.article h3 {
    text-transform: none;
    margin-bottom: .5em;
    font-weight: 700;
    font-size: 18px;
    color: #A9ABAE; 

}

/*menu Nav*/

  nav ul {
    margin: 0;
    padding: 0;
    float: right;
    z-index: 99999;

}

 nav ul ul {
    float: none;

}

 nav ul li {

    float: left;
    position: relative;

}

  nav ul li a {
    font-family: 'MSReferenceSansSerif';
    font-size: 16px;
    display: inline-block;
    padding: 15px 15.3px 13px 15.3px;
    color: #A9A9A9;
    border-left: 0px solid #efece5;
    white-space: nowrap;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out 300ms ease-in-out;
    transition: all 300ms ease-in-out 300ms ease-in-out;
}

 nav ul li a:hover {
    background: #ffffff !important; 
    color: #f0a900;

}

 nav ul li ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
}

 nav ul li ul li {
    float: none;
    border-bottom: 1px solid #efece5;
}

 nav ul li ul li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    border-left: 0;
    color: #8d7a65;
}

 nav ul li ul li:last-child {
    border-bottom: 0;
}

 nav ul li ul li ul {
    left: 100%;
    top: 0;
}

 nav ul li:hover > ul {
    display: block;
}

 nav ul li.current-menu-item > a {
    background: #ffffff !important;
    color: #f0a900;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  @media (max-width: 600px) {
    nav .menu-icon {
        display: block;    
        text-align: right;    
      }
    
    nav .menu {    
        position: absolute;    
        top: 100%;      
        width: 100%;    
        left: 0;    
      }
    
    nav .menu li {    
        background: #ffffff;    
        display: block;    
        width: 100%;    
        position: relative;    
        border-top: 1px solid #efece5;
    
      }
    
    nav .menu li a {    
        padding: 15px 12px;    
        display: block;
    
      }
    
      nav .menu li > ul {    
        right: 100%;    
        top: 0;    
        left: 0;    
        display: block;    
        font-size: 0.9em;    
        position: relative;
    
      }   
       
  }


.societymain {
    text-align: center;
    border: solid 1px #c7c7c7;
    padding: 10px 0px;
    box-shadow: inset 0 1px 0px 1px #c7c7c7;
  }

 h1 {
    color: #A9ABAE; 
    font-size: 34px;
    font-family: PT Serif !important;
}

.endbutton {
    width: 261px; 
    height: 30px; 
    font-size: 16px; 
    color: #555; 
    background-color: #bdc3c7;
    padding: 3px;
    border-radius: 5px;
}

h2 a {
    color: black;
    position: relative;
    font-size: 27px;
    
}

.Ach-heading {
    display: inline-block; 
    position: relative; 
    background-repeat: no-repeat; 
    padding-left: 47px; 
    height: 45px; 
    color: #A9ABAE; 
    font-family: PT Serif; 
    font-size: 27px; 
    background-image: url(../img/heading-logo.jpg);
    padding-top: 5px;
    
    
    
}


/* mission css */

.our-college-sidebar article:first-child {
    margin-right:10px;    
    width: 49%;    
}
    
.our-college-sidebar article {    
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #f3efe7;
    margin-top: 6px;
    margin-bottom: 16px;
    padding: 46px 28px 22px 28px;
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out 300ms ease-in-out;
    transition: all 300ms ease-in-out 300ms ease-in-out;    
    }
    
    .our-college-sidebar article:nth-child(1) h3:before {    
      content: "\f02d";    
      font-family: 'FontAwesome';    
      color: #ffc51e;    
      font-size: 48px;    
      margin-right: 18px;    
      font-weight: 100;    
      position: absolute;    
      left: 0;    
      top: -10px;    
    }
    
    .our-college-sidebar article:nth-child(2) h3:before {    
      content: "\f19d";    
      font-family: 'FontAwesome';    
      color: #ffc51e;    
      font-size: 48px;    
      margin-right: 18px;    
      font-weight: 100;    
      position: absolute;    
      left: 0;    
      top: -10px;    
    }
    
    .our-college-sidebar article:nth-child(3) {    
      margin-bottom: 0;
    
    }
    
    .our-college-sidebar article:nth-child(3) h3:before {    
      content: "\f108";    
      font-family: 'FontAwesome';    
      color: #ffc51e;    
      font-size: 42px;    
      margin-right: 18px;    
      font-weight: 100;    
      position: absolute;    
      left: 0;    
      top: -6px;    
    }
    
    .our-college-sidebar article h3 {    
      font-size: 23px;    
      margin-bottom: 20px;    
      position: relative;    
      z-index: 2;    
      font-weight: 700;    
      padding-left: 66px;    
    }
    
    .our-college-sidebar article p {    
        font-size: 12px;    
        color: #8d7a65;    
        position: relative;    
        z-index: 2;    
        font-family: 'Tahoma', 'Arial', 'sans-serif';    
        padding-top:3%;    
        text-align: justify;
    
    }
    
    .our-college-sidebar article a {    
      display: block;    
      position: absolute;    
      padding: 24px 20px 20px 20px;    
      color: #ffffff;    
      font-size: 14px;    
      font-weight: 700;    
      letter-spacing: 1px;    
      text-transform: uppercase;    
      top: 50%;    
      z-index: 1;    
      left: 50%;    
      margin-left: -50px;    
      -webkit-transition: all 300ms ease-in-out;    
      -moz-transition: all 300ms ease-in-out;    
      -ms-transition: all 300ms ease-in-out;    
      -o-transition: all 300ms ease-in-out;    
      transition: all 300ms ease-in-out;    
      -webkit-transition: all 300ms ease-in-out 300ms ease-in-out;    
      -moz-transition: all 300ms ease-in-out 300ms ease-in-out;    
      -o-transition: all 300ms ease-in-out 300ms ease-in-out;    
      transition: all 300ms ease-in-out 300ms ease-in-out;    
      overflow: hidden;
    
    }
    
    .our-college-sidebar article a span {    
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;    
    }
    
    .our-college-sidebar article a span:before {    
      content: "";    
      width: 0;    
      height: 0;    
      border-top: 0 solid transparent;    
      border-bottom: 50px solid transparent;    
      border-left: 250px solid #f0a900;    
      position: absolute;    
      left: 0;    
      bottom: 0;    
    }
    
    .our-college-sidebar article a span:after {    
      content: "";    
      width: 0;    
      height: 0;    
      border-top: 0 solid transparent;    
      border-bottom: 50px solid transparent;    
      border-right: 250px solid #f0a900;    
      position: absolute;    
      right: 0;    
      bottom: 0;    
    }
    
    .our-college-sidebar article:hover {    
      border: 1px solid #f0a900;    
      -webkit-box-shadow: 0 0 0 1px #f0a900;    
      -moz-box-shadow: 0 0 0 1px #f0a900;    
      box-shadow: 0 0 0 1px #f0a900;    
    }
    
    .our-college-sidebar article:hover a {    
      top: 94%;    
    }
    
    .our-college-sidebar article:after {    
      content: "";    
      display: block;    
      position: absolute;    
      background: #fffcf5;    
      width: 100%;    
      height: 50%;    
      bottom: 0;    
      left: 0;    
      z-index: 1;    
    }
    
 
    
    