/* @font-face {
    font-family: 'neo_sans_stdregular';
    src: url('../fonts/neo_sans_std_regular-webfont.woff2') format('woff2'),
         url('../fonts/neo_sans_std_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

} */

body {
  font-family: 'Open Sans', sans-serif;
  /* font-family: 'neo_sans_stdregular'; */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  background-color: #fff;
  /* color: #545454; */
}

html, body {
  width: 100vw;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
  outline: none !important;
}
a:hover {
  color: var(--theme-color);
}

* {
  outline: none !important;
  outline: 0 !important;
}

.arrow-link {
  font-weight: 600;
  display: inline-flex;
}
.arrow-link .bi {
  margin-left: 10px;
  transition: all 0.3s;
}
.arrow-link:hover .bi {
  transform: translateX(5px);
}

button {
  text-transform: uppercase;
  font-weight: 300;
}

:root {
  --theme-color: #e3342e;
  --text-color: rgba(0,0,0,.7);
  --theme-color-2: #d4af37;
  --text-regular: 'Montserrat', sans-serif;
  --oswald: 'Oswald', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}
.oswald {font-family: 'Oswald', sans-serif;}
.theme-color {color: var(--theme-color);}

img {max-width: 100%;}

.btn {border-radius: 0;}
.btn-theme {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
  font-family: var(--oswald);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  padding: 16px 30px;
  letter-spacing: 2px;
}
.btnn {
  font-family: var(--oswald);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  padding: 16px 30px;
  letter-spacing: 2px;
}
.btn-theme:hover {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}
@media (min-width:1400px) {
  .container {
    max-width: 1180px !important;
  }
}

/*===========================
 HEADER 
 ==========================*/

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
header, header a {
  color: #fff !important;
}
.navbar {
  padding: 0;
}
.navbar-brand {
  max-width: 210px;
  padding: 0;
  transition: all ease 0.3s;
}

.navbar-nav {background: #fff;}

.navbar-expand-lg .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.navbar-expand-lg .navbar-nav .dropdown:hover .dropdown-menu .dropdown-item {
  color: #000 !important;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: initial;
  color: #000 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 10px 0;
  margin: 0 20px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  position: relative;
  transition: all ease0.3s;
  color: #fff;
}
.navbar-expand-lg .navbar-nav .nav-link.home .bi {
  font-size: 20px;
  margin-top: -5px;
}

.navbar-expand-lg .navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.3s;
  transform: scaleX(0);
  transform-origin: left;
}

/* .navbar-toggler {
  position: relative;
  margin-top: -10px;
  width: 30px;
    height: 30px;
} */
/* .navbar-toggler {
  position: absolute;
  top: 40px;
  right: 15px;
  width: 30px;
  height: 30px;
  z-index: 1;
  border: none;
}
.shrink .navbar-toggler {
  top: 22px;
} */
/* @media (max-width:767px) {
  .navbar-toggler {
    top: 22px;
  }
  .shrink .navbar-toggler {
    top: 22px;
  }
}
.navbar-toggler:focus {
  border: none;
  box-shadow: none;
} */

/* .navbar-toggler span {
  width: 100%;
  height: 2px;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
} */

/* .navbar-toggler span.top {
  top: 0px;
}

.navbar-toggler span.middle {
  top: 10px;
}

.navbar-toggler span.bottom {
  top: 20px;
} */
.social-nav a {
  color: #fff;
}

.searchbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: #fff;
  transform: translateY(-100%);
  transition: all 0.3s;
}
.searchbar.visible {
  transform: translateY(0);
}
.searchbar .form-control {
  height: 49px;
}
.searchbar .btn-theme:hover {
  background: #000;
}

/* Shrink */
.shrink {
  background: #fff;
  border-bottom: solid 1px #ddd;
  z-index: 3;
}
/* .shrink .navbar-brand {
  max-width: 150px;
} */
header.shrink, header.shrink a {
  color: #000 !important;
}

/* Style-2 */
header.style-2 {
  background: #fff;
  border-bottom: solid 1px #ddd;
  z-index: 3;
}
header.style-2, header.style-2 a {
  color: #000 !important;
}

@media (max-width: 767px) {
  .navbar-brand {
    max-width: 150px;
  }
  .navbar-collapse {
    background: var(--theme-color);
  }
  .searchbar .btn-theme {
    width: 100%;
  }
}
.searchbar .form-control {
  border-color: var(--theme-color);
}
.desktop-search {
  /* border: solid 1px #ccc; */
  border-radius: 5px;
  justify-content: flex-end;
  width: 50px;
  transition: all 0.5s;
}
.desktop-search .form-control {
  /* border: none;
  width: 0;
  background: transparent;
  padding: 0 40px 0 10px;
  transition: width 0.3s;
  margin-right: -30px;*/
  border-radius: 5px; 
  border: none;
}
.desktop-search.active {
  width: 200px;
  box-shadow: none;
  border: solid 1px var(--theme-color);
}
.desktop-search label {
  padding: 10px;
  position: relative;
  z-index: 1;
}
.desktop-search .form-control:focus {
  box-shadow: none;
}
/* .desktop-search .form-control:focus {
  width: 200px;
  box-shadow: none;
  border: solid 1px #ccc;
} */
/* .desktop-search .form-control:focus {
  width: 100%;
  padding: 0 10px;
} */

@media (max-width:991px) {
  .searchbox {
    position: absolute;
    top: 30px;
    right: 60px;
  }
  .shrink .searchbox {
    top: 10px;
  }
}
@media (max-width:767px) {
  .searchbox {
    top: 10px;
  }
  .shrink .searchbox {
    top: 10px;
  }
}

/*===========================
 FOOTER 
 ==========================*/
 .footer {
  background: #000;
  color: #fff;
  padding: 30px 0 10px;
  font-size: 13px;
  z-index: 1;
  position: relative;
 }
 .footer a {
  color: #fff;
 }
 .footer h6 {
  font-family: var(--oswald);
  font-size: 18px;
  border-bottom: solid 1px rgba(255,255,255,0.7);
  padding-bottom: 10px;
  margin-bottom: 20px;
 }
 .footer ul {
  list-style: none;
  padding-left: 0;
 }
 .footer ul li {
  margin-bottom: 10px;
  
}
/* .footer .form-control {
 background: #333;
 color: #fff;
 border: none;
} */
.footer .btn-theme:hover {
  background: #333 !important;
 }
 .essar {max-width: 180px;}
/*===========================
 HERO 
 ==========================*/
.hero {
  width: 100%;
  height: 85vh;
  overflow: hidden;
  position: relative;
  padding-top:158px;
}
/* .hero .single-carousel {
  max-height: 100vh;
} */
.hero .single-carousel .hero-slide {
  position: relative;
  height: 85vh;
}
.hero .single-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.hero-slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:rgba(0, 0, 0, 0.35);
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-text, .hero-text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: #fff;
}
.hero-content {
  max-width: 600px;
}
.event-badge {
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--oswald);
  transform: rotate(-5deg);
  font-size: 0.875rem;
}
.event-badge.over-image {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
}
.event-text, .event-type {
  display: inline-block;
  padding: 5px;
  line-height: 1;
}
.event-text {
  background: #fff;
  color: #000;
  padding-bottom: 7px;
}
.event-type {
  background: #e3342e;
  color: #fff;;
  margin-left: 10px;
  top: -5px;
  position: relative;
}
.video-text h1, .hero-title {
  font-size: 50px;
  margin: 30px 0;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-content p {
  font-size: 18px;
}
.dtv {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.dtv-icon {
  width: 25px;
  margin-right: 15px;
}
.dtv .bi {
  color: var(--theme-color);
  margin-right: 15px;
}
.hero .dtv {
  font-size: 20px;
  font-weight: 300;
  margin-top: 15px;
}
.hero .dtv .bi {
  font-size: 30px;
}

@media (max-width: 767px) {
  .video-text h1 {
    font-size: 30px;
  }
  .hero .dtv {
    font-size: 16px;
    margin-top: 5px;
  }
}


.hero.style-2 {
  height: auto;
  max-height: 75vh;
  background: #fff;
}
.hero.style-2:before {
  display: none;
}
/* .hero.style-2 .hero-image {
  position: relative;
  padding-top: 66.66%;
  width: 70%;
} */
.hero.style-2 .hero-image img {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}
.hero.style-2 .hero-content-container {
  display: flex;
  justify-content: space-between;
}
.hero.style-2 .hero-content {
  flex: 0 0 450px;
  padding: 30px 30px 30px;
  display: flex;
  /* align-items: center; */
}
.hero.style-2 .hero-content h1 {
  font-size: calc(1.1rem + 1.5vw);
}
@media (max-width: 991px) {
  .hero.style-2 {
    height: auto;
    max-height: 100%;
    background: #fff;
  }
  .hero.style-2 .hero-content-container {
    flex-direction: column;
  }
  .hero.style-2 .hero-content {
    flex: 0 0 100%;
    padding: 30px;
    max-width: 100%;
  }
}

.hero.inner {
  height: auto;
  height: 85vh;
}
.hero.inner.md {
  height: 60vh;
}
.hero.inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero.inner .video-text {
  top: auto;
  bottom: 20px;
  transform: translateY(0);
}

/*===========================
 CONTENT 
 ==========================*/
.section {
  padding: 40px 0;
  overflow: hidden;
}
@media (max-width:767px) {
  .section {padding: 30px 0;}
}

.heading {
  font-size:1.4rem;
}

/* Event Card
======================= */
.event-card {
  position: relative;
  background-color: #fff;
  margin-bottom: 30px;
}
.archive-slider .event-card {
  max-width: 400px;
  display: inline-block;
  border: solid 1px #eee;
  background: #fff;
  transition: all 0.3s;
}
.archive-slider .slick-track {
  display: flex !important;
}
.archive-slider .slick-slide {
  padding-right: 20px;
  padding-left: 20px;
  height: inherit !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-view-all {
  width: 250px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card-inner {
  background-color: #fff;
  transition: all 0.3s;
  border: solid 1px transparent;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.event-card:hover .event-card-inner {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transform: translate(0) !important;
  border-color: #ddd;
}
.event-card-image {
  position: relative;
  /* padding-top: 100%; */
}
.event-card-image img {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
}
.event-content {
  padding: 20px;
}
.event-date-time {
  border-bottom: solid 1px #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
.event-day {
  font-family: var(--oswald);
  font-size: 40px;
  font-weight: 600;
}
.event-month-year, .event-geners {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.event-time {
  font-family: var(--oswald);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.event-date {
  padding-top: 20px;
  font-size: 13px;
}
.event-time .to {
  font-size: 14px;
  font-weight: 300;
  padding: 5px;
  display: inline-block;
}
.event-geners {
  padding-top: 5px;
}
.event-title {
  margin: 15px 0;
  font-size: 20px;
  /* font-weight: 700; */
  /* font-family: var(--body-font); */
  color: #000;
  height: 50px;
}
.event-location {
  font-size: 11px;
  display: flex;
}
.event-location .bi {
  margin-right: 5px;
}
.event-read-more {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-top: 24px;
  font-size: 13px;
  opacity: 0;
  transition: all 0.3s;
  /* color: var(--theme-color); */
}
.event-read-more .bi {
  margin-right: 10px;
  font-size: 24px;
  transform: translate(-15px);
  transition: all 0.3s;
}
.event-card:hover .event-read-more {
  opacity: 1;
}
.event-card:hover .event-read-more .bi {
  transform: translate(0px);
}

.event-btns-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-top: 24px;
  font-size: 13px;
}
.event-btns-container .btn {
  width: 100%;
  padding: 14px 5px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-family: var(--oswald);
  letter-spacing: 1px;
}

.about-container {
  background: url(../images/about.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}
.about-content {
  padding: 100px 60px;
  color: #fff;
  background: rgba(39,39,38,.75);
  line-height: 1.7;
  letter-spacing: 0.5px;
}
.about-content p {
  font-weight: 300;
}

@media (max-width: 767px) {
  .about-content {
    padding: 60px 30px;
  }
  .event-read-more {
    opacity: 1;
  }
  .event-read-more .bi {
    transform: translate(0px);
  }
  .event-card .event-card-inner {
    border-color: #ddd;
  }
  .archive-slider .slick-slide {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* Event Card Style 2
======================= */
.event-card.style-2, .style-2.hover-card {
  background-color: #fff !important;
}
.event-card.style-2:hover .event-card-inner, .style-2.hover-card:hover .inner {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transform: translate(0) !important;
  border-color: #ddd;
}
/* ========================== */
/* Event card horizontal / list view
==================================== */
.event-card.style-2.list {
  display: flex;
  max-width: 100%;
}
.event-card.style-2.list .event-card-inner {
  display: flex;
}
.event-card.style-2.list .event-card-inner .event-image {
  width: 40%;
  height: 100%;
}
.event-card.style-2.list .event-card-inner .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
}
.subtitle {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
}

.whats-on-section {
  position: relative;
}
.whats-on-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pattern-1.jpg) repeat;
  opacity: 0.3;
  z-index: -1;
}


.whats-on-item {
  padding: 0 1.875rem ;
  position: relative;
}
.whats-on-date {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--oswald);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.whats-on-date .day-text {
  color: #000;
}
.whats-on-date .day, .whats-on-date .month-year {
  color: var(--theme-color);
}
.whats-on-date .day {
  font-size: 40px;
  font-weight: 700;
}
.whats-on-image, .archive-image {
  position: relative;
  padding-top: 56.66%;
}
.archive-image.big {
  padding-top: 66.66%;
}
.whats-on-image img, .archive-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .whats-on-content {
  padding: 30px 0;
} */
.whats-on-content .title {
  padding: 30px 0;
  margin: 0;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  font-size: 30px;
}
@media (min-width:1200px) {
  .slider-arrows .prev {
    margin-left: -35px;
  }
  .slider-arrows .next {
    margin-right: -35px;
  }
}
@media (max-width:767px) {
  .slider-arrows a {
    width: 25px;
  }
}


.archive-card {
  background: #000;
  height: 100%;
}
.archive-card-inner {
  background: #fff;
  border: solid 1px #000;
  position: relative;
  padding: 10px;
  height: 100%;
}
.archive-card .title {
  font-size: 20 px;
}

.hover-card {
  background: #000;
}
.inner {
  transition: all 0.3s;
  background: #fff;
}
.hover-card:hover .inner {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transform: translate(0) !important;
  border-color: #ddd;
}
.archive-more {
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--oswald);
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center ;
}
.archive-more .bi {
  font-size: 24px;
  margin-right: 10px;
}


.newsletter-box {
  padding: 60px;
  background: #eee;
  color: #000;
}

.form-control, .form-select {
  border-radius: 0;
}
.newsletter-box .form-control {
  background: #fff;
  border-color: #fff;
}
.newsletter-box .btn {
  padding: 11px 30px;
  width: 100%;
}

.bg-gray {
  background: #eee;
}
.status-container {
  text-align: center;
}
.status-count {
  font-family: var(--oswald);
  font-size: 60px;
  font-weight: 700;
}
.status-text {
  text-transform: uppercase;
}

.partnership-slider .slide {
  padding: 0 10px;
}
.logo-box {
  border: solid 1px #000;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.partnership-slider img {
  max-width: 100%;
}

.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider .slick-slide {
    height: inherit !important;
    transform: scale(0.8);
    opacity: 0.7;
    transition: all 0.3s;
    z-index: 1;
}
.testimonials-slider .slick-slide.slick-current {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}
.testimonials-slider .slide {
  /*padding: 10px;*/
  margin: 0 -10px;
}
.testi-box {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 0;
  background: #fff;
}
.testi-box-inner {
  border: solid 1px #000;
  padding: 30px;
  height: 100%;
}
.testimonials-slider .slick-slide.slick-current .testi-box-inner {
  /*border: solid 1px #fff;*/
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}
.testimonials {
  font-size: 15px;
  line-height: 1.8;
}
.testimonials h4 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}
.testimonials span {
  font-size: 40px;
  font-family: 'Arial';
  display: inline-block;
  margin-top: 15px;
  max-width: 40px;
  margin-right: 20px;
}
.testi-user-container {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.testi-user-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.testi-user-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-family: var(--oswald);
  text-transform: uppercase;
  font-weight: 600;
}
.tud {
  font-size: 13px;
}

@media (max-width:991px) {
  .testi-box-inner {
    padding: 30px;
  }
}

/* =================================================== */
.slick-prev:before, .slick-next:before {
  font-family: "bootstrap-icons";
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: #666;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: 0;
  z-index: 1;
}
.slick-next {
  right: 0;
}
.slick-prev:before {
  content: '\f284';
}
.slick-next:before {
  content: '\f285';
}

.single-carousel .slick-prev,
.single-carousel .slick-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 50%;
}
.single-carousel .slick-prev:before, .single-carousel .slick-next:before {
  color: #fff;
}
.single-carousel .slick-prev {
  left: 25px;
}
.single-carousel .slick-next {
  right: 35px;
}
@media (min-width:992px) {
  .slick-prev {
    left: -25px;
  }
  .slick-next {
    right: -25px;
  }
}


.slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 !important;
  padding: 0 5px !important;
  width: auto !important;
  height: auto !important;
}
.slick-dots button {
  display: block;
  width: 10px !important;
  height: 10px !important;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #ccc !important;
  text-indent: -9999px;
  padding: 0 !important;
}
.slick-dots button:before {
  display: none;
}
.slick-dots li.slick-active button {
  background-color: var(--theme-color) !important;
}
/* =================================================== */

.about-text p {
  padding: 0 50px;
}
.about-text .about-border {
  padding: 0 50px;
  border-left: solid 6px #000;
}
.about-text .about-border p {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
}

.offering-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px;
  /* border: solid 1px #f4f4f4; */
  transition: all 0.3s;
  position: relative;
  border-radius: 10px;

  background: #eee;
}
/* .offering-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  z-index: -1;
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
}
.offering-box:hover:before {
  transform: scaleX(1);
} */
.offering-box:hover img {
  filter: invert(1);
}
.invert-img {filter: invert(1);}
.offering-box:hover {
  background: var(--theme-color);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.offering-image {
  width: 80px;
  min-height: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.offering-image img {
  max-width: 100%;
  transition: all 0.3s;
}
.offering-title {
  margin-top: 15px;
  font-size: 16px;
  text-transform: uppercase;
}

.series-logo .offering-box:hover {
  background: #eee;
  box-shadow: none;
}
.series-logo .offering-box:hover img {
  filter: initial;
}
.series-logo .offering-image {
  width: auto;
}
.series-logo .offering-image img {
  width: auto;
  height: 120px;
}

.series-container .card:hover a {
  color: #000;
}

/* =========================
Event Details
========================= */
.breadcrumb li, .breadcrumb a {
  color: #fff !important;
  font-size: 0.85rem;
}
.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}
.breadcrumb.dark li, .breadcrumb.dark a {
  color: #000 !important;
}
.breadcrumb.dark .breadcrumb-item::before {
  color: #000 !important;
}

.event-details-venue-container .dtv .bi {
  font-size: 20px;
  margin-top: -6px;
}
.event-details-venue-container .dtv label, .dtv label {
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--body-font);
  font-size: 0.8rem;
}
.event-details-venue-container .dtv span {
  font-size: 1.2rem;
  line-height: 1.2;
}
.event-details-image {
  position: relative;
}
.event-details-image:before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 100%;
  height: 100%;
  background: url(../images/pattern-2.png) repeat bottom left;
  background-size: 40%;
  z-index: -1;
}

.faculty-slider .slick-track {
  margin: 0 !important;
}
.faculty-slider .slide {
  padding: 0 10px;
}

.faculty-slider .slide {
  padding: 0 10px;
}
.faculty-card {
  margin-top: 10px;
  position: relative;
}
.faculty-card .inner {
  background: transparent;
}
.faculty-slider .slick-list {
  overflow: visible ;
}
.faculty-image {
  position: relative;
  padding-top: 100%;
  margin-bottom: 30px;
}
.faculty-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faculty-card-content {
  padding: 0px 15px 15px 15px;
}
.faculty-card-content h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.faculty-card-content .designation {
  margin-bottom: 5px;
}
.faculty-card-content .email {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}
/* .faculty-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(205,45,127);
  background: linear-gradient(315deg, rgba(205,45,127,0.9) 0%, rgba(227,52,46,0.7) 100%);
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.faculty-description p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #fff;
  transition: all 0.3s;
  transform: translateY(20px);
}
.faculty-description strong {
  color: #fff;
  transition: all 0.5s;
  transform: translateY(20px);
  display: inline-block;
}
.faculty-card:hover .faculty-description {
  visibility: visible;
  opacity: 1;
}
.faculty-card:hover .faculty-description p, .faculty-card:hover .faculty-description strong {
  transform: translateY(0);
} */
@media (min-width:992px) {
  .faculty-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(257,52,46, 0.6); */
    background: rgb(0,0,0);
    /*background: linear-gradient(315deg, rgba(205,45,127,0.9) 0%, rgba(227,52,46,0.7) 100%);*/
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
  }
  .faculty-description p {
    overflow: hidden; 
    display: -webkit-box !important;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    color: #fff;
    transition: all 0.3s;
    transform: translateY(20px);
  }
  .faculty-description strong {
    color: #fff;
    transition: all 0.5s;
    transform: translateY(20px);
    display: inline-block;
  }
  .faculty-card:hover .faculty-description {
    visibility: visible;
    opacity: 1;
  }
  .faculty-card:hover .faculty-description p, .faculty-card:hover .faculty-description strong {
    transform: translateY(0);
  }
}
.faculty-card-content p {
  /* overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
  line-height: 1.4; */
  display: none;
}
/* @media (max-width:992px) {
  .faculty-card-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.9rem;
    line-height: 1.4;
    display: none;
  }
} */
#faculty-name-b {
  margin-bottom: 20px;
}
#faculty-description p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.faculty-card-content .btn-link, .link {
  text-decoration: none;
  font-weight: 600;
  color: var(--theme-color);
}
.faculty-card-content .btn-link .bi, .link .bi {
  margin-left: 5px;
  /* font-size: 13px; */
  font-weight: 800;
  transition: all 0.3s;
}
/* .faculty-card-content .btn-link:hover {
  color: #000;
} */
.faculty-card-content .btn-link:hover .bi, .link:hover .bi {
  margin-left: 10px;
}
.faculty-section .slide-arrows {
  position: relative;
}

.faculty-section .slick-arrow {
  border: none !important;
}

.gallery-box {
  position: relative;
  padding-top: 56.66%;
  overflow: hidden;
}
.gallery-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.gallery-box:hover img {
  transform: scale(1.2);
}

.right-border {
  border-right: solid 1px #000;
}
.fs-7 {
  font-size: 13px;
}
.oco-border {
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  padding: 5px 0;
}
.oco-border:hover, .offering-box:hover .oco-border {
  color: #fff;
}
.oco-border:not(:last-child) {
  border-right: solid 1px #ddd;
}

@media (min-width:992px) {
  .av-border {
    border-left: solid 1px #ddd;
  }
}

.sticky-newsletter {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--theme-color);
  color: #fff;
  padding: 7px 10px;
  line-height: 1.3;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.sticky-newsletter i {
  font-size: 16px;
}
.sticky-newsletter span {
  border-left: solid 1px #fff;
  padding-left: 8px;
  margin-left: 8px;
}
.sticky-newsletter:hover {
  color: #fff;
}
@media (max-width: 767px) {  
  .sticky-newsletter {
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 10px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sticky-newsletter i {
    font-size: 24px;
  }
  .sticky-newsletter span {
    display: none;
  }
}

.register-section {
  position: relative;
}
.register-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #eee;
  z-index: -1;
}
.register-box {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.register-image {
  position: relative;
  overflow: hidden;
}
.register-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register-form {
  padding: 30px;
}
.datepicker {
  position: relative;
  background: url(../images/date.png) no-repeat 95% center;
  background-size: 15px;
}

.form-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  font-weight: 600;
}
.form-control, .form-select, .form-check-label {
  font-size: 13px;
}

.half-img {
  position: relative;
  overflow: hidden;
}
.half-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================
Masonary
======================== */
.masonry-container {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
    
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  /* border-radius: 15px; */
}
.masonry-item .view-details-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masonry-item .view-details-btn .btn {
  border: solid 1px #fff;
  border-radius: 4px;
  color: #fff;
}
.masonry-item:hover .view-details-btn {
  opacity: 1;
  visibility: visible;
}
.masonry-item img {
  transition: all 0.3s;
  display:block;
  width: 100%;
}
.masonry-item:hover img {
  transform: scale(1.05);
}

.gallery-description {
  margin-top: 15px;
}
.masonry-item .gallery-description {
  display: none;
}

@media (max-width:767px) {  
  .masonry-container {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
      
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}


.mvv-image {
  margin-top: 30px;
  padding-bottom: 100%;
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.mvv-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.series-box {
  display: flex;
  height: 100%;
  min-height: 200px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: solid 1px #ddd;
}
.series-box img {
  max-width: 200px;
  transition: all .8s cubic-bezier(0,0,.25,1);
}
.series-box .btn {
  padding: 10px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transition: all .4s cubic-bezier(0,0,.25,1);
  transform: translateY(50px);
  background: #333;
  border-color: #333;
}
.series-box:hover {
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); */
  /* border-color: var(--theme-color); */
  color: initial;
}
.series-box:hover img {
  scale: 1.05;
}
.series-box:hover .btn {
  transform: translateY(0);
}

.sb .title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}
.series-box-image {
  min-height: 100px;
  display: flex;
  align-items: center;
}
.series-box-image img {
  max-width: 130px;
}

@media (max-width:767px) {
  .series-details-container .img-fluid {
    max-width: 90%;
  }
}

.nav-pills .nav-link {
  background: transparent;
  border: solid 2px #eee;
  border-radius: 50px !important;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  padding: 12px 20px;
  margin: 0 5px;
  transition: all 0.5s;
}
.nav-pills .nav-link:hover {
  background: #eee;
}
.nav-pills .nav-link.active {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
.tab-content .event-btns-container .btn {
  width: 100%;
}

.wwd-slide {
  padding: 10px 5px;
}
.wwd-slide .archive-image {
  padding-top: 70%;
}
.wwd-slide .archive-card-inner {
  padding: 0;
  border: none;
}
.wwd-slide .archive-card-inner .title {
  font-size: 18px;
}
.wwd-slide .archive-card-inner p {
  line-height: 1.4;
}

.wwd-card {
  position: relative;
}
.wwd-card-image {
  position: relative;
  /* padding-top: 100%; */
  overflow: hidden;
}
.wwd-card-image img {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
  transition: all .8s cubic-bezier(0,0,.25,1)
}
.wwd-card:hover .wwd-card-image img {
  scale: 1.1;
}
.wwd-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  padding: 50px 20px 20px;
  transition: all .8s cubic-bezier(0,0,.25,1)
}
.wwd-card:hover .wwd-card-content {
  padding-bottom: 40px;
}
.wwd-card-content .title {
  font-size: 20px;
  font-weight: 400;
}
.wwd-card-content p {
  /* font-size: 14px; */
  line-height: 1.4;
  margin-bottom: 0;
}

.zoom-image {
  overflow: hidden;
}
.zoom-image img {
  transition: all 0.3s;
}
.event-card:hover .zoom-image img {
  scale: 1.1;
}
.no-shadow .event-card-inner {
  border: none;
}
.no-shadow:hover .event-card-inner {
  box-shadow: none;
  border: none;
}

.parallax-video {
  height: 100%;
  position: relative;
}
@media (min-width:1200px) {
  .parallax-video {
    min-height: 500px;
  }
  .parallax-video video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -999;
  }
}
.bg-white {background: #fff;}

/* .partnership-slider-2 {
  margin: 4px;
} */
.partnership-slider-2 .slick-list {
  margin: 1px;
}
.partnership-slider-2 .slide {
  padding: 1px;
}
.logo-box {
  padding: 15px;
  text-align: center;
}
.logo-conetnt .heading {
  font-size: 18px;
}
.logo-conetnt p {
  line-height: 1.4;
}

.genre-card, .genre-card:hover {
  border: solid 1px #eee !important;
  background: #fff;
}
.genre-card-image {
  position: relative;
  /* padding-bottom: 84%; */
}
.genre-card-image img {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
.genre-card .card-body {
  padding: 15px 30px;
}
.genre-card .dtv label {
  line-height: 1;
}
.genre-card-buttons {
  margin-top: 30px;
}
.genre-card-buttons .btn {
  margin-right: 20px;
}
@media (max-width:767px) {
  .genre-card {
    border: solid 1px #ddd;
  }
}
@media (max-width:500px) {  
  .genre-card .card-body {
    padding: 15px;
  }
  .genre-card-buttons {
    display: flex;
    justify-content: space-between;
  }
  .genre-card-buttons .btn {
    flex: 1;
    padding: 16px;
    margin: 0 4px;
  }
}


.sticky-bl {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--theme-color);
  color: #fff;
  padding: 7px 10px;
  line-height: 1.3;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-size: 16px;
}
/*.sticky-bl span {
  border-left: solid 1px #fff;
  padding-left: 8px;
  margin-left: 8px;
}*/
.sticky-bl:hover {
  color: #fff;
}
/*@media (max-width: 767px) {  
  .sticky-bl {
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 10px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sticky-bl i {
    font-size: 24px;
  }
  .sticky-bl span {
    display: none;
  }
}*/
@media (max-width:767px) {
  .sticky-bl {
    padding: 11px 20px;
    border-radius: 50px;
    bottom: 27px;
  }
}


.logo-text {
  position: absolute;
  top: 170px;
  left: 0;
  width: 100%;
}
.logo-text .heading {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.parallax {
  /* The image used */
  background-image: url("../images/greek-3537517.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.opera {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.opera:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* z-index: -1; */
}


/* ============ 05-01-2023 =========== */
.page-offset {
  padding-top: 170px;
}
@media (max-width:767px) {
  .page-offset {
    padding-top: 150px;
  }
}
.contact-form .form-control {
  min-height: 45px;
}

.header-strip {
  padding: 7px 15px;
  background: #000;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.events-slider .slick-slide {
  padding: 7px 10px;
}
.events-slider .slick-track {
  display: flex;
}
.events-slider .slick-slide {
  height: inherit !important;
}

/* Event card new css */
.event-card {
  display: flex;
  height: 100%;
}
.event-card-inner {
  padding-bottom: 65px;
}
.event-card:hover .event-card-inner {
  transform: none !important;
}
.event-card-inner {
  width: 100%;
  
}
.event-btns-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
}

.single-carousel .slick-dots {bottom: 0 ! important;}
/* ====================================== */

.mvv-box {
  padding: 40px 0 20px;
}
@media (max-width:767px) {
  .mvv-box {
    padding: 30px 0;
    border-bottom: solid 1px #ddd;
  }
  .flag-slider .slick-next {right: -40px;}
  .flag-slider .slick-prev {left: -40px;}
}
