/**
* Template Name: TheEvent - v4.7.0
* Template URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #fff;
  font-family: "Deansgate", sans-serif;
}

a {
  color: #FF0000;
  text-decoration: none;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #FF0000;
  outline: none;
  text-decoration: none;
  transform: translateX(6px);
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Deansgate", sans-serif;
  font-weight: 200;
  margin: 0 0 20px 0;
  padding: 0;
  color: #0e1b4d;
}

.main-page {
  margin-top: 70px;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* G Map */
#map-container {
  position: relative;
}

#map-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#map-container:hover::after {
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
#header.header-scrolled, #header.header-inner {
  background: #FFFFFF;
  height: 70px;
}
#header #logo h1 {
  font-size: 36px;
  margin: 0;
  font-family: "Deansgate", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-top: 5px;
}
#header #logo p span {
  color: #383838;
  padding-top: 5px;
  font-size: 12px;
}

#header #logo p {
  transition: transform 0.4s ease-in-out; /* Move the transition to the non-hover state */
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}
#header #logo img {
  
  margin: 0;
  max-height: 0px;
}
@media (max-width: 992px) {
  #header #logo img {
    max-height: 0px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
	padding-bottom: 28px;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 0px 0 0px 12px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #D8D8D8;
  font-family: "Deansgate", sans-serif;
  font-weight: 300;
  font-size: 12px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 0px 0px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px; 
}
/*-- .navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ED2939;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}*/
/*.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}*/
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #FF0000;
  transform: scale(1.1); /* Adjust the scale value as needed */
  transition: transform 0.3s ease; /* Add a smooth transition */
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #FF0000;	
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #FF0000;
  transform: scale(1.05); /* Slightly smaller scale for dropdown items */
  transition: transform 0.3s ease, color 0.3s ease;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 40px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 12px;
  text-transform: none;
  color: #D8D8D8;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #FF0000;
}
.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: absolute;
  top: 15px;
  right: 15px;
}

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

  .navbar ul {
    display: none;
  }

  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
  }

  .navbar-mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }

  .navbar-mobile li {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #060c22;
    display: block;
    width: 100%;
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
    color: #FF0000;
  }

  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: none;
  }

  .navbar-mobile .dropdown ul li {
    padding: 5px 0;
  }

  .navbar-mobile .dropdown ul a {
    padding: 5px 20px;
    font-size: 14px;
  }

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


/*--------------------------------------------------------------
# Speakers Section PROJECT ---
--------------------------------------------------------------*/

#speakers {
  padding: 60px 0 30px 0;
}
#speakers .speaker {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
}
#speakers .speaker .details {
  background: #FF0000;
  opacity: 90%;
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  text-align: left;
  padding-left: 10px;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
#speakers .speaker .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 15px;
}
#speakers .speaker .details p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}
#speakers .speaker .details .social {
  height: 40px;
}
#speakers .speaker .details .social i {
  line-height: 0;
  margin: 0 2px;
}
#speakers .speaker .details a {
  color: #fff;
}
#speakers .speaker .details a:hover {
  color: #fff;
  font-weight: 600;
}
#speakers .speaker:hover .details {
  bottom: 0;
}

#speakers .speaker img {
  transition: all ease-in-out 0.4s;
}
	
#speakers .speaker:hover img {
  transform: scale(1.1);
}
	
#speakers-details {
  padding: 60px 0;
}
#speakers-details .details h2 {
  color: #112363;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
#speakers-details .details .social {
  margin-bottom: 15px;
}
#speakers-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
#speakers-details .details .social a:hover {
  background: #FF0000;
  color: #fff;
}
#speakers-details .details .social a i {
  font-size: 16px;
  line-height: 0;
}
#speakers-details .details p {
  color: #112363;
  font-size: 15px;
  margin-bottom: 10px;
}


/*-----------------------------------------------------------
# Video Container
-----------------------------------------------------------*/
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Changed to 4:3 aspect ratio to match typical image proportions */
  overflow: hidden;
}

.video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
}

.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 20px solid #000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Add this to ensure consistent sizing with other images */
#speakers-details .col-md-6 img,
#speakers-details .video-container {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .col-md-6 {
    margin-bottom: 20px;
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
  .testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.testimonial-slide {
  display: none;
  padding: 20px;
}
.testimonial-slide.active {
  display: block;
}
.slider-controls {
  text-align: center;
  margin-top: 20px;
}

/* New styles for the buttons */
.prev-btn, .next-btn {
  background-color: #D8D8D8;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
}

.prev-btn:hover, .next-btn:hover {
  background-color: #FF0000;
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Venue Section -- PHOTO-ARRAY
--------------------------------------------------------------*/
#venue {
  padding: 60px 0;
}
#venue .container-fluid {
  margin-bottom: 3px;
}
#venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
#venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
#venue .venue-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 574px) {
  #venue .venue-info h3 {
    font-size: 24px;
  }
}
#venue .venue-info p {
  color: #fff;
  margin-bottom: 0;
}
#venue .venue-gallery-container {
  padding-right: 12px;
}
#venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
#venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}
#venue .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Gallery Section PHOTO SLIDER
--------------------------------------------------------------*/
#gallery {
  padding: 60px;
  overflow: hidden;
}
#gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
#gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #FF0000;
}
#gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF0000;
}
#gallery .swiper-slide-active {
  text-align: center;
}
@media (min-width: 992px) {
  #gallery .swiper-wrapper {
    padding: 40px 0;
  }
  #gallery .swiper-slide-active {
    border: 1px solid #FF0000;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.15);
    margin-top: 6px;
  }
  #gallery .swiper-slide-active img {
  transition: all ease-in-out 0.4s;
}
  #gallery .swiper-slide-active:hover img {
  transform: scale(1.1);
}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 25px 0;
  color: #D8D8D8;
  font-size: 12px;
}
#footer .footer-top {
  background: #fff;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Deansgate", sans-serif;
  font-weight: 700;
  color: #D8D8D8;
}
#footer .footer-top .footer-info img {
  height: 40px;
  margin-bottom: 10px;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Deansgate", sans-serif;
  color: #D8D8D8;
}

#footer .footer-top h4 {
  font-size: 12px;
  color: #080808;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0px;
  
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #FF0000;
  font-size: 18px;
}
#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #080808;
}
#footer .footer-top .footer-links ul a:hover {
  color: #FF0000;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: left;
  padding-top: 30px;
  color: #FF0000;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #080808;
}