*{
  font-family: 'Roboto';
  src: url('path-to-your-fonts/Roboto-Regular.ttf') format('truetype');

}
      
      /* Custom arrow styles */
    .carousel-control-prev,
    .carousel-control-next {
      background-color:darkgrey;
      color:black;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 2px;
      font-size: 1.5rem;
      transition: background-color 0.3s ease;
    }

    /* Add hover effect for better visibility */
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background-color: darkgray;
    }

    /* Remove the default outline */
    .carousel-control-prev:focus,
    .carousel-control-next:focus {
      outline: none;
      box-shadow: none;
    }

    /* Add hover effect for custom controls */
    .custom-control:hover {
      background-color: rgba(0, 0, 0, 0.6);
    }

    /* Position the previous control */
    .carousel-control-prev.custom-control {
      left: 5px;
    }

    /* Position the next control */
    .carousel-control-next.custom-control {
      right: 5px;
    }
      
    #welcometoclg {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
     
    }
    
    #welcome {
      font-size: 32px;
      text-align: center;
    }
    
    #welcome-text {
      font-size: 35px;
      text-align: center;
      color: #FF5722;
      
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    #welcome-text::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #FF5722;
      margin: 10px auto;
    }
    
      .welcome-rotate {
        animation: rotateWelcome 2s ease-in-out infinite;
      }
      
      .faculty-down {
        animation: animateFaculty 2s ease-in-out infinite;
      }
      
      @keyframes rotateWelcome {
        0% {
          transform: rotate(0deg);
        }
        50% {
          transform: rotate(-180deg);
        }
        100% {
          transform: rotate(-360deg);
        }
      }
      
      @keyframes animateFaculty {
        0% {
          opacity: 0;
          transform: translateY(-50px);
        }
        50% {
          opacity: 1;
          transform: translateY(0);
        }
        100% {
          opacity: 0;
          transform: translateY(50px);
        }
      }
      

      .col-md-8,
      .col-sm-8 {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
      padding-left: 55px;
      padding-right: 15px;
      }
      
    


      
      .embed-responsive .embed-responsive-item,
      .embed-responsive iframe,
      .embed-responsive embed,
      .embed-responsive object,
      .embed-responsive video {
        width: 100%;
        height: 100%;
      }
      
      .centered-block {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
      }
      
      .block {
        width:750px;
        height: 500px;
        background-color: white;
        text-align: left;
        padding: 20px;
        font-size: 16px;
      }
      
      .block p {
        color:black;
        animation: fade-in 2s ease-in-out;
      }
      
      @keyframes fade-in {
        0% { opacity: 0; transform: translateY(20px); }
        100% { opacity: 1; transform: translateY(0); }
      }


      
      

      img {
       padding: 3px;
       

      }

     
      .snip1578 {
        font-family: 'Open Sans', Arial, sans-serif;
        position: relative;
        display: inline-block;
        margin: 10px;
        min-width: 230px;
        max-width: 315px;
        width: 100%;
        color: white;
        text-align: left;
        font-size: 16px;
        background: #004b40;
        border-radius: 5px;
      }
      
      .snip1578 ,
      .snip1578:before,
      .snip1578:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
      }
      
      .snip1578 img {
        max-width: 35%;
        margin-top: -15px;
        margin-left: 60%;
        margin-bottom: 15px;
        backface-visibility: hidden;
        vertical-align: top;
        border-radius: 5px;
      }
      
      .snip1578 figcaption {
        position: absolute;
        top: 0;
        right: 40%;
        left: 0;
        bottom: 0;
        padding: 15px;
      }
      
      .snip1578 h3 {
        margin: 0;
        font-size: 1.1em;
        font-weight: normal;
      }
      
      .snip1578 .icons {
        font-size: 1.6rem;
      }
      
      .snip1578 .icons a {
        color: #ccc;
      }
      
      .snip1578 .icons a:hover {
        color: #2980b9;
      }
      
      
      
   
   .carousel-placement {
    position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 36px;
  perspective: 2500px;
  margin: 0 50px;
  }

  .carousel__container {
    white-space: nowrap;
    margin: 70px 0px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .categories__title {
    color: rgb(77, 55, 102);
    font-size: 28px;
    position: absolute;
    padding-left: 30px;
  }

  .carousel-item-placement {
  
    background-color: #004b40;
    overflow: hidden;
    margin-right: 10px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: 700ms all;
    transition: 700ms all;
    -webkit-transform-origin: center left;
    transform-origin: center left;
    position: relative;
  }

  .carousel-item-placement:hover ~ .carousel-item-placement {
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  .carousel__container:hover .carousel-item-placement {
    opacity: 0.3;
  }

  .carousel__container:hover .carousel-item-placement:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }

  .carousel-item__img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 250px;

  }
  @media (max-width: 576px) {
    .carousel-item__img  {
      height: 315px;
    }
  }

  .carousel-item__details {
    font-size: 10px;
    opacity: 0;
    -webkit-transition: 450ms opacity;
    transition: 450ms opacity;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .carousel-item__details:hover {
    opacity: 1;
  }

  .carousel-item__details span {
    font-size: 0.9rem;
  
  }

  .carousel-item__details .controls {
    padding-top: 180px;
  }

  .carousel-item__details .carousel-item__details--title,
  .carousel-item__details--subtitle {
    color: #fff;
    margin: 5px 0;
  }

  /* Media Query for XS View */
  @media (max-width: 576px) {
    .carousel-placement {
      padding-left: 0;
    }

    .carousel__container {
      display: flex;
      overflow-x: auto;
    }

    .carousel-item-placement {
      flex: 0 0 auto;
      margin-right: 10px;
    }

    .carousel-item-placement:hover ~ .carousel-item-placement {
      -webkit-transform: none;
      transform: none;
    }

    .carousel__container:hover .carousel-item-placement {
      opacity: 1;
    }

    .carousel__container:hover .carousel-item-placement:hover {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }



   /* D8fff4, #004b40*/

/*#2a342a*/

.footer {
  position: relative;
  width: 100%;
  background:#004b40;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 25px;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 15px;
  color: #fff;
 
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 12px;
  font-weight: 300;
}




@media (max-width: 768px) {
  .footer {
    padding: 40px;
  }
  
  .menu {
    flex-direction: column;
    margin: 30px 0;
  }
  
  .menu__item {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .social-icon__link,
  .menu__link {
    font-size: 1.2rem;
  }
  
  .footer p {
    font-size: 0.8rem;
  }
 
  
  .menu__item {
    margin: 0; /* Remove the default margin */
    padding: 0; /* Remove the default padding */
  }
}



  #welcometoclg{
    margin-top: 50px;
  }

  @media only screen and (min-width: 577px) and (max-width:840px) {
    #welcometoclg{
      margin-top: 50px;
    }
  }

  @media (max-width: 576px) {
    #welcometoclg{
      margin-top: 80px;
    }
  }

.nav-link {
  color: black;
  font-family: 'Libre Baskerville', serif;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}


#fh5co-course ,
#fh5co-course-categories,
#fh5co-register{
  padding: 3em 0;
  clear: both;
}
@media screen and (max-width: 768px) {
  #fh5co-course,
  #fh5co-course-categories,
  #fh5co-register {
    padding: 3em 0;
  }
}

.course {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  margin-bottom: 30px;
}

.course .desc, .course .course-img {
  width: 50%;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .course .desc, .course .course-img {
    width: 100%;
  }
}
.course .course-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .course .course-img {
    height: 270px;
  }
}
.course .desc {
  padding: 1.7em;
  background: #fafafa;
}
.course .desc h3 {
  font-size: 18px;
  font-weight: 400;
}
.course .desc h3 a {
  color: #000;
}
.course .desc .date {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}
.course .desc .btn-course {
  border: 2px solid #C63E04 !important;
  background: transparent;
  color: #C63E04 !important;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 11px 15px !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.course .desc .btn-course:hover {
  background: #C63E04 !important;
  color: white !important;
}
.course:hover .course-img {
  -webkit-box-shadow: inset -70px 0px 77px 11px rgba(0, 0, 0, 0.74);
  -moz-box-shadow: inset -70px 0px 77px 11px rgba(0, 0, 0, 0.74);
  box-shadow: inset -70px 0px 77px 11px rgba(0, 0, 0, 0.74);
}

.desc{
   font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #828282;
  background: #fff;
}

#fh5co-register {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
#fh5co-register .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: rgba(0, 0, 0, 0.5);
}
 #fh5co-register h3, #fh5co-register p {
  color: #fff;
}
#fh5co-register .btn-reg {
  background: transparent;
  border: 2px solid #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.btn.btn-lg {
  padding: 18px 36px !important;
}

.btn-primary {
  background: #2D6CDF;
  color: #fff;
  border: 2px solid #2D6CDF;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #437be2 !important;
  border-color: #437be2 !important;
}
.btn-primary.btn-outline {
  background: transparent;
  color: #2D6CDF;
  border: 2px solid #2D6CDF;
}
.btn-primary.btn-outline:hover, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:active {
  background: #2D6CDF;
  color: #fff;
}

.fh5co-heading {
  margin-bottom: 20px;
}


   /* Set the background image */
   .hero-wrap {
    position: relative;
    background-size: cover;
    background-position: center center;
    height: 300px; /* Adjust the height as per your requirement */
  }
  
  /* Overlay to create a darkened effect on the background image */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity and color as needed */
  }
  
  /* Center the content vertically and horizontally */
  #header {
    position: relative;
    z-index: 2; /* Bring the content above the overlay */
    text-align: center;
    color: #fff; /* Set the text color */
    padding-top: 150px; /* Adjust the spacing from the top as needed */
  }
  
  /* Style the header text */
  .bread {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  /* Style the breadcrumb links */
  .breadcrumbs {
    font-size: 18px;
    margin-top: 20px;
  }
  
  .breadcrumbs a {
    color: #fff;
    text-decoration: none;
  }
  
  .breadcrumbs a:not(:last-child):after {
    content: " > ";
    margin-left: 5px;
  }
  
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
  

  .js .animate-box {
    opacity: 0;
  }


.fh5co-heading h2 {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #000;
  text-transform: uppercase;
  position: relative;
}
.fh5co-heading h2:after {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  width: 50px;
  height: 1px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.08);
}
.fh5co-heading p {
  font-size: 14px;
}

#fh5co-testimonial .fh5co-heading {
  margin-bottom: 3em;
}
#fh5co-testimonial .fh5co-heading h2 {
  color: #fff;
  margin-bottom: 20px !important;
}
#fh5co-testimonial .fh5co-heading h2:after {
  background: transparent !important;
}
#fh5co-testimonial .fh5co-heading p {
  color: rgba(255, 255, 255, 0.5);
}
#fh5co-testimonial .fh5co-heading span {
  padding: 7px 15px;
  position: relative;
}
#fh5co-testimonial .fh5co-heading span:before {
  position: absolute;
  top: 24px;
  left: -40px;
  content: '';
  width: 40px;
  height: 1px;
  background: white;
}
#fh5co-testimonial .fh5co-heading span:after {
  position: absolute;
  top: 24px;
  right: -40px;
  content: '';
  width: 40px;
  height: 1px;
  background: white;
}


.services {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.services h3 {
  font-size: 18px;
  font-weight: 400;
}
.services h3 a {
  color: #000;
}
.services .icon {
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.04);
  display: table;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 992px) {
  .services .icon {
    margin: 0 auto 30px auto;
  }
}
.services .icon i {
  display: table-cell;
  vertical-align: middle;
  font-size: 40px;
  line-height: 40px;
  color: #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.services:hover .icon, .services:focus .icon {
  background: #2D6CDF;
}
.services:hover .icon i, .services:focus .icon i {
  color: #fff;
}
.fh5co-counters .icon i {
  font-size: 45px;
  color: #fff;
}

.course .desc, .course .course-img {
  width: 50%;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .course .desc, .course .course-img {
    width: 100%;
  }
}
.course .course-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .course .course-img {
    height: 270px;
  }
}


/* Define the slide-up animation */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation to the specified class */
.slide-up {
  animation: slide-up 2s ease-out;
}


  .animation-wrapper .col-md-4 {
    opacity: 0; /* Set initial opacity to 0 to hide the elements before animation */
    transform: translateX(-100%); /* Start the elements outside the viewport */
    animation: slideInLeft 0.5s forwards; /* Apply the animation with 0.5 seconds duration */
  }

  /* Keyframes for the slide-in-left animation */
  @keyframes slideInLeft {
    to {
      opacity: 1; /* At the end of the animation, set opacity to 1 to show the elements */
      transform: translateX(0); /* Move the elements back to their original position */
    }
  }


  
  
.counting {
  background-color:#1e2c4c;
  color: #fff;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px 50px;
  text-align: center;
}

.counter {
  font-size: 40px;
  margin-top: 10px;
}

@media screen and (max-width: 1200px)
{
  .counting{
    flex-wrap: wrap;
  }
}

@media (max-width: 580px) {
  .counting {
    flex-wrap: wrap;
  }

  .counter-container {
    flex-basis: 10%; 
  }
}



.infra {
  --color: rgba(30, 30, 30);
  --bgColor: rgba(245, 245, 245);
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 2rem;
  font-family: "Exo 2", sans-serif;
  color: var(--color);
  background: var(--bgColor);
}


ol {
  width: min(60rem, 90%);
  margin-inline: auto;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;

  list-style: none;
  counter-reset: stepnr;
}

li:nth-child(6n + 1) { --accent-color: #b8df4e }
li:nth-child(6n + 2) { --accent-color: #4cbccb }
li:nth-child(6n + 3) { --accent-color: #7197d3 }
li:nth-child(6n + 4) { --accent-color: #ae78cb }
li:nth-child(6n + 5) { --accent-color: #7dc7a4 }
li:nth-child(6n + 6) { --accent-color: #f078c2 }

ol li {
  counter-increment: stepnr;
  width: 18rem;
  --borderS: 2rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc(var(--borderS) + 2rem);
  position: relative;
}
ol li::before,
ol li::after {
  inset: 0;
  position: absolute;
  border-radius: 50%;
  border: var(--borderS) solid var(--bgColor);
  line-height: 1.1;
}
ol li::before {
  content: counter(stepnr);
  color: var(--accent-color);
  padding-left: 9rem;
  font-size: 10rem;
  font-weight: 700;
  overflow: hidden;
}

#list::before{
  content: counter(stepnr);
  color: var(--accent-color);
  padding-left: 6.5rem;
  font-size: 8rem;
  font-weight: 700;
  overflow: hidden;
}
ol li::after {
  content: "";
  filter: drop-shadow(-0.25rem 0.25rem 0.0675rem rgba(0, 0, 0, 0.75)) blur(5px);
}

ol li > * { width: 7.5rem }
ol li .icon { font-size: 2rem; color: var(--accent-color); text-align: center }
ol li .title { font-size: 30px; font-weight: 500 }
ol li .descr { font-size: 0.8rem; font-weight: 300 }


.fh5co-contact-info ul {
  padding: 0;
  margin: 0;
}
.fh5co-contact-info ul li {
  padding: 0 0 0 40px;
  margin: 0 0 30px 0;
  list-style: none;
  position: relative;
  color: rgba(0, 0, 0, 0.8);
}
.fh5co-contact-info ul li:before {
  color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  top: .05em;
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fh5co-contact-info ul li a {
  color: rgba(0, 0, 0, 0.8);
}






  
  