/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --primary_color: #29abe2;
  --secondary_color: #f25359;
}

body {
  font-family: "Poppins", "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--primary_color);
  text-decoration: none;
}
* {
  margin: 0;
  box-sizing: border-box;
}
:before,
:after {
  box-sizing: border-box;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
a:hover {
  color: var(--secondary_color);
  text-decoration: none;
}
.v-center {
  align-items: center;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1em;
}

.title {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: 700;
}
.title:hover {
  background-color: var(--primary_color);
  color: #fff;
}
@media (min-width: 768px) {
  .title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .title {
    font-size: 24px;
  }
}
/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary_color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary_color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primary_color);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Topbar Area
--------------------------------------------------------------*/
.top-bar-area {
  padding: 10px 0;
  overflow: hidden;
}

.deptHeading {
  margin: 0 auto 60px;
  transform: rotate(-3deg);
  color: white;
  text-align: left;
  font-size: 2.0rem;
  line-height: 4rem;
  text-shadow: 0 1px 0 hsl(52,7%,20%), 0 2px 0 hsl(52,7%,18%), 0 3px 0 hsl(52,7%,16%), 0 4px 0 hsl(52,7%,14%), 0 5px 0 hsl(52,7%,12%), 0 6px 0 hsl(52,7%,10%), 0 7px 0 hsl(52,7%,8%), 0 8px 0 hsl(52,7%,6%), 0 0 5px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.2), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.2), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.3);
}
@media (max-width: 768px) {
  .top-bar-area{
    display: none;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--primary_color);
}

#header .logo img {
  max-height: 40px;
}

/**
* Get Startet Button
*/
.btn-with-bg {
  margin-left: 22px;
  background: var(--primary_color);
  color: #fff;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  display: inline-block;
}

.btn-with-bg:hover {
  background: var(--secondary_color);
  color: #fff;
}

@media (max-width: 768px) {
  .btn-with-bg {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li:hover{
    color: white;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #37423b;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  /*color: var(--primary_color);*/
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}



.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 220px;
}

.navbar .dropdown ul a {
  padding: 15px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  border-bottom: solid 1px #f5f5f5;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}



.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #37423b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}


@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .navbar li a{
    border-bottom: solid 1px #f5f5f5;
    padding: 15px 0;
    margin: 0 15px;
  }
  .navbar .dropdown ul{
    box-shadow: none;
  }

  .navbar-mobile .dropdown ul a{
    color: #adadad;
    margin-left: 25px;
  }
  .navbar-mobile .dropdown-active ul a{
    color: #9b9b9b;
    margin-left: 35px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 0;
  bottom: 15px;
  left: 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 0px;
  font-size: 15px;
  color: #37423b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  /* color: var(--primary_color); */
  padding-left: 15px;
  color: #ffffff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
}

.navbar-mobile .dropdown ul li {
  min-width: 220px;
}

.navbar-mobile .dropdown ul a {
  padding: 15px 10px 15px 0;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  padding-left: 15px;
  color: #ffffff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f7f6;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #37423b;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .section-title h2 {
    font-size: 18px;
  }
  .section-title a {
    font-size: 14px;
  }
}

.section-title-sidebar {
  border-left: 5px solid var(--secondary_color);
  padding-left: 1rem;
}


/*--------------------------------------------------------------
# Breadcrum Section
--------------------------------------------------------------*/
.breadcrumb-area{
  padding: 90px 50px 50px 0px;
}
.shadow {
  position: relative;
  z-index: 1;
}
.shadow.dark::after{
  background: #000000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.breadcrumb-area .breadcrumb {
  background: transparent none repeat scroll 0 0;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  padding-top: 15px;
}
.breadcrumb-area .breadcrumb li:first-child{
  padding-left: 0;
}
.breadcrumb-area .breadcrumb li{
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.breadcrumb-area .breadcrumb a,
.breadcrumb-area .breadcrumb li{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb>li {
  display: inline-block;
}
.breadcrumb-area .breadcrumb li i {
  margin-right: 5px;
}
.breadcrumb-area .breadcrumb li:last-child {
  padding-right: 0;
}
.breadcrumb-area .breadcrumb li.active a{
  color: #ffb606;
}


/*--------------------------------------------------------------
# Faulty Member List
--------------------------------------------------------------*/
.teacher-wrap{
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(0, 0, 0, 0.8);
}

.teacher-wrap .user-img{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
}


.faculty-member .faculty-member-item .single-item{
  margin-bottom: 30px;
}
.faculty-member .faculty-member-item .item{
  position: relative;
  z-index: 1;
  background: #ffffff;
  box-shadow: 0 0 10px #cccccc;
}
.faculty-member .faculty-member-item .item .thumb{
  padding: 30px;
}
.faculty-member .faculty-member-item .item .thumb img{
  box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
  padding: 5px;
  border-radius: 50%;
}
.faculty-member .faculty-member-item .item .thumb img:hover{
  border: 2px solid var(--primary_color);
}
.faculty-member .faculty-member-item .item .thumb img{
  height: 200px;
  width: 200px;
  margin: auto;
}

.faculty-member .faculty-member-item .item .info {
  padding: 30px;
  background: var(--primary_color) none repeat scroll 0 0;
}
.faculty-member .faculty-member-item .item .info {
  padding: 30px;
  border-top: 1px solid #e7e7e7;
}
.min-height-60px {
  height: 60px;
}
.faculty-member .faculty-member-item .item .info h4 {
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 600;
}
.faculty-member .faculty-member-item .item .info span {
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
}

.btn-dark.border {
  background-color: transparent;
  color: var(--primary_color);
  border: 2px solid var(--primary_color);
}
.btn.circle {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.btn-dark.border:hover {
  background-color: var(--primary_color);
  color: #ffffff !important;
  border: 2px solid var(--primary_color);
}
.faculty-member .faculty-member-item .item .footer-meta a{
  font-size: 14px;
  font-weight: 500;
}


/*--------------------------------------------------------------
# Faculty Members Details Page
--------------------------------------------------------------*/

.faculty-member-details .tab-info .nav-pills li {
  margin-right: 5px;
}
.faculty-member-details .tab-info .nav-pills li button {
  background: #f1f1f1;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: inherit;
  padding: 8px 30px;
  color: #002147;
  cursor: pointer;
}
.faculty-member-details .tab-info .nav-pills li button.active {
  background: #ffb606;
  color: #002147;
}
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
.faculty-member-details table {
  margin-top: -10px;
  margin-bottom: 0;
}
.faculty-member-details table tr th{
  font-size: 14px;
}
.faculty-member-details table tr td{
  padding: 15px;
  font-size: 13px;
}
.faculty-member-details .thumd-picture {
  position: relative;
  z-index: 1;
}
.faculty-member-details .info-details {
  padding: 30px;
  text-align: center;
  border: 1px solid #e7e7e7;
  border-top: 2px solid #ffb606;
}
.faculty-member-details .info-details h4{
  text-transform: uppercase;
  font-weight: 600;
}
.faculty-member-details .info-details ul {
  border-top: 1px solid #e7e7e7;
  padding-top: 25px;
}

/*--------------------------------------------------------------
# CSE Department
--------------------------------------------------------------*/
.slider-section .item {
  height: 80vh;
  position: relative;
}
.slider-section .item.small_slider {
    height: 35vh !important;
    position: relative;
}
.slider-section .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-section .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}
.slider-section .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
.slider-section .item .cover .header-content h3 {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
}
.slider-section .item .cover .header-content h2 {
  font-size: 44px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}
.slider-section .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.slider-section .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider-section .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider-section .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.slider-section .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.3) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.slider-section .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
.slider-section .owl-nav .owl-prev:focus {
  outline: 0;
}
.slider-section .owl-nav .owl-prev:hover {
  background: #000 !important;
}
.slider-section .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.3) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.slider-section .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
.slider-section .owl-nav .owl-next:focus {
  outline: 0;
}
.slider-section .owl-nav .owl-next:hover {
  background: #000 !important;
}
.slider-section:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.slider-section:hover .owl-next {
  right: 0px;
  opacity: 1;
}
@media (max-width: 991px) {
  .slider-section .item .cover .header-content h2 {
    font-size: 22px;
  }
  .slider-section .item .cover .header-content h1 {
    font-size: 36px;
  }
  .slider-section .item .cover .header-content h4 {
    font-size: 18px;
  }
  .slider-section .item .cover .header-content{
    padding: 30px;
  }
}


.features-area .features .item a{
  display: block;
  padding: 50px 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #ffffff;
  transition: all 0.5s ease;
}
.features-area .features .item a:hover{
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.features-area .features .item a h4 {
  text-transform: capitalize;
  font-weight: 700;
  color: #000;
}
.features-area .features .item a p {
  margin: 0;
  color: #000;
}
.chair-img {
  height: 200px!important;
  background: #ffffff;
  padding: 5px;
  padding-right: 20px !important;
  padding-bottom: 15px !important;
  float: left!important;
  width: 200px!important;
}


.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}
.site-heading h2 {
  display: inline-block;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}
.site-heading h2::before {
  background: #ffb606 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  width: 40px;
}

@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
    align-items: start;
}

/* medium and up screens */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

/*.weekly-top-items .top-courses {*/
/*  padding-right: 20px;*/
/*}*/
.weekly-top-items .top-courses .heading {
  padding: 20px;
  border: 1px solid #e7e7e7;
  margin-bottom: 30px;
}
.weekly-top-items .top-courses .heading h3, .weekly-top-items .top-courses .heading h4 {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: -5px;
}
.top-course-items .item {
  overflow: hidden!important;
}

.top-course-items .item {
  border: 1px solid rgb(224, 224, 224);
  border-radius: 10px;
  background: #ffffff;
}
.top-course-items .item .thumb {
  position: relative;
  z-index: 1;
}


.card-img-height {
  height: 200px;
}
.top-course-items .item .thumb::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 50%;
  width: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%) repeat scroll 0 0;
}
.top-course-items .item .info {
  padding: 30px;
}
.top-course-items .item .info h4 {
  text-transform: capitalize;
  font-weight: 600;
}

.bn-font{
  font-family: "Hind Siliguri";
}
.top-course-items .footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e7e7e7;
  margin-top: 20px;
  padding-top: 25px;
}
.top-course-items .footer-meta a{
  width: 100%;
}


.event-area .event-items .item {
  display: flex;
  box-shadow: 0 0 10px #cccccc;
  margin-bottom: 30px;
}
.event-area .event-items .item:last-child {
  margin-bottom: 0;
}
.event-area .event-items .item .thumb {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.event-area .event-items .item .info-box {
  padding: 50px 35px;
  display: flex;
}
.event-area .event-items .item .info-box .date {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  min-width: 75px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: -3px;
}
.event-area .event-items .item .info-box .date strong {
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
  color: #ffb606;
  display: block;
}
.event-area .event-items .item .info-box .content {
  padding-left: 30px;
  margin-left: 30px;
  position: relative;
  z-index: 1;
}
.event-area .event-items .item .info-box .content h4 {
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
  margin-top: -3px;
}

.event-area .event-items .item .info-box .content ul {
  margin-bottom: 15px;
}
.event-area .event-items .item .info-box .content ul li {
  display: inline-block;
  margin-right: 12px;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}
.event-area .event-items .item .info-box .content ul li::after {
  position: absolute;
  right: 0;
  top: 5px;
  content: "";
  height: 20px;
  width: 1px;
  background: #e7e7e7;
}
.event-area .event-items .item .info-box .content .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.event-area .event-items .item .info-box .content .bottom a:last-child {
  text-transform: capitalize;
  font-weight: 600;
}
.event-area .more-btn {
  margin-top: 50px;
  float: left;
  width: 100%;
}
.btn-theme {
  background-color: var(--primary_color);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.btn-theme:hover {
  color: var(--primary_color);
    background: white;
  border: 1px solid var(--primary_color);
}


.top-author h4 {
  text-align: center;
  background: #f1f1f1;
  margin: 0;
  padding: 15px;
  border: 1px solid #e7e7e7;
  font-weight: 600;
  text-transform: uppercase;
}
.top-author .author-items {
  padding: 30px;
  border: 1px solid #e7e7e7;
  border-top: none;
  overflow: hidden;
}
.top-author .author-items .item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e7e7e7;
}
.top-author .author-items .item h5 a {
  color: #000;
  font-size: 18px;
  font-family: "Hind Siliguri";
}
.top-author .author-items .item h5 a:hover {
  color: var(--primary_color);
}
.top-course-items .footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e7e7e7;
  margin-top: 20px;
  padding-top: 25px;
}
.author-items>a {
  display: inline-block;
  padding: 8px 40px;
  border: 2px solid #e7e7e7;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 3px;
}


.bg-fixed {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}
.shadow.dark-hard::after {
  background: #000000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.fun-factor-area .fun-fact {
  margin: 1rem 0;
}
.fun-factor-area .fun-fact .icon i {
  display: inline-block;
  font-size: 40px;
  color: #ffb606;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.fun-factor-area .fun-fact .info span {
  display: block;
}

.fun-factor-area .fun-fact .info {
  margin-top: 25px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.fun-factor-area .fun-fact .info .timer {
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.fun-factor-area .fun-fact .info .medium {
  margin-top: 10px;
  font-weight: 600;
  font-size: large;
  letter-spacing: 0.6px;
}

.fun-factor-area .item:last-child {
  border: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.color-bg {
    position: relative;
    justify-content: center;
    align-items: center;
    background: var(--primary_color) none repeat scroll 0 0;
}

.color-bg::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-image: url(../img/logo.png); */
    background-position: center center;
    background-size: 250px;
    background-repeat: no-repeat;
    opacity: 40%;
}

.top-bar-area .address-info.text-left li::after {
  position: absolute;
  right: 0;
  top: 15%;
  content: "";
  height: 70%;
  width: 1px;
  background: #e7e7e7;
}
footer .f-items .f-item h4 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 30px;
}
footer .f-items .info-box a{
  color: #fff;
}
footer .f-item.popular-courses>ul>li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
footer .f-item.popular-courses>ul>li a{
  color: #fff;
}
footer .footer-bottom .link a{
  color: #ffb606;
}

/* new css started for head ane event section */
.head-name {
    margin: 0 auto;
    line-height: 1.4;
}

.head-name strong {
    display: block;
    margin-bottom: 5px;
}

/* Text styles */
.text-head {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .head-name {
        font-size: 16px;
    }
}

/* Event Section Responsive Styles */
.event-items .item {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.event-items .thumb {
    min-height: 250px;
    background-position: center;
    background-size: cover;
}

@media (max-width: 767px) {
    .event-items .item {
        flex-direction: column;
    }
    
    .event-items .thumb {
        width: 100%;
        min-height: 200px;
    }
    
    .event-items .info {
        width: 100%;
    }
}
