body {
  color: #ffffff;
  background-color: #ffffff;
  background-image: url("../img/fondo.jpg");
  font-family: 'Montserrat';font-size: 22px;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #ffffff;
}

a:hover {
  text-decoration: none;
}

.header {
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
}

.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

.index-page.scrolled .header {
  background: rgba(0,0,0); 
}

/*--------------------------------------------------------------
#Section
--------------------------------------------------------------*/

.pos-3 {
  background: rgb(40, 53, 43, 0.7);
  opacity: 8;
}

.section1 {
  position: relative;
}

/*--------------------------------------------------------------
#Section djcrew
--------------------------------------------------------------*/

.carousel-item img {
  width: 200px;
  float: left;
  margin: 10px;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: transparent;
  border-color: transparent;
}

.djcrew {
  position: relative;
    bottom: 37px;
}

.djcrew .nav-tabs {
  border: 0;
}

.djcrew .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.djcrew .nav-item:last-child {
  margin-bottom: 0;
}

.djcrew .nav-link {
  transition: 0.3s;
}


.academi .nav-tabs {
  border: 0;
}

.col1, .col2 {
  width: 50%;
}

.row {
 display: flex;
 width: 100%;
}

.image {
  width: 200px; /* O el tamaño que desees */
  height: auto;
  filter: grayscale(100%); /* Imagen en blanco y negro por defecto */
  transition: filter 0.3s ease-in-out; /* Transición suave para el cambio de filtro */
}

.image:hover {
  filter: grayscale(0%); /* Al pasar el mouse, quitar el filtro de escala de grises */
}

@import url('https://fonts.googleapis.com/css?family=Montserrat');



:root {
  --marquee-width: 80vw;
  --marquee-height: 20vh;
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 5s);
}

.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  color: #eee;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); 
  white-space: nowrap;
}

.marquee-content li img {
  width: 40%;
}

/*--------------------------------------------------------------
/* academi Section */
/*--------------------------------------------------------------*/

.academi .nav-tabs {
  border: 0;
}

/*--------------------------------------------------------------
/* Soundrental Section */
/*--------------------------------------------------------------*/

.soundrental {
  display: flex;
  justify-content: center;
  text-align: center !important;
}

/*--------------------------------------------------------------
/* Contact Section */
/*--------------------------------------------------------------*/

.contact {
  width: 80%;
  margin: auto;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #020204;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  opacity: 0.9;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  background-image: url(../img/preloader.gif);
  width: 390px !important;
  height: 390px !important;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  background-color: #000;
}

.scroll-top i {
  font-size: 24px;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #fff;
  color: #000;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
  scroll-margin-top: 100px;
  overflow: clip;
}
