#main-container {
    display: flex;
    flex-direction: column;
    background-size: cover;
    height: 85vh; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: repeat-x; 
    background-size: contain; 
    width: 100%;

    align-items: end;
    justify-content: center;

    box-sizing: border-box;
}
#upper-part{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
#right-column{
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 30%;
    box-sizing: border-box;
      align-items: center;
    justify-content: center;
}

#left-column{
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 30%;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
}


#middle-column{
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-self: flex-end;
    flex: 40%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 4rem;
}


#lower-part{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 10rem;
    background-color: var(--brown-color);
    box-sizing: border-box;
}





.bottom-filler{
    width: 100%;
    height: 100%;
    background-color: var(--brown-color);
}
#blurb{
    width: 35rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
#blurb h1{
    text-align: center;
    font-size: 4em;
    margin-bottom: 0;
    font-weight: 200;
    color: white;
    letter-spacing: 0.1em;
    margin-bottom: 5rem;
}
#blurb p{
    font-size: x-large;
    text-align: center;
    padding: 0.8rem;
    margin-top: 0;
    letter-spacing: 0.2em;
    color: white;

}

.stretch{
    -webkit-transform:scale(1,1.25); /* Safari and Chrome */
    -moz-transform:scale(1,1.25); /* Firefox */
    -ms-transform:scale(1,1.25);/* IE 9 */
    -o-transform:scale(1,1.25); /* Opera */
    transform:scale(1,1.25); /* W3C */
}

#logos{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 35vw;
    min-width: 538px;
    max-width: 672px;
    margin-bottom: 3em;
}
.logo-container{
    flex: 3.33;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.logo-container p{
    text-align: center;
    font-size: large;
    font-style: italic;
    margin-top: 0;
    font-weight: bold;
    color: var(--brown-color);
}
.logo {
    height: 8rem;
    width: 8rem;
    display: inline-block;
    vertical-align: top;
    background-size: contain;
    background-repeat: no-repeat;
}

#SVR-logo{
    height: 7rem;
    width:12rem;
}
#EAO-logo{
    height: 7.4rem;
}

.socials-logo {
    height: 2rem;
    width: 2rem;
    filter: invert(89%) sepia(26%) saturate(1126%) hue-rotate(346deg) brightness(109%) contrast(92%);
    display: inline-block;
    vertical-align: top;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

#footer-socials{
    background:none
}

#socials-twitter{
    background-size: 3.5rem;

}

#socials-tiktok{
    background-size: 8.5rem;

}
#socials-youtube{
    background-size: 8.5rem;

}

#socials-instagram{
    background-size: 6.5rem;

}

#socials-facebook{
    background-size: 8.5rem;

}

.video-gallery-button{
    background-color: var(--brown-color);
    color: white;
    border: 3px solid white;
    margin-top: 32px;
    margin-bottom: 16px;
    padding: 1rem 2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
}
.video-gallery-button span{
    font-size:xx-large;
    font-weight: bold;
    font-style: italic;
}

.video-gallery-button svg{
    width: 2rem;
    margin-right: 10px;
}

.video-gallery-button:hover path{
    fill:var(--yellow-color);
    -webkit-transition: fill 200ms linear;
    -ms-transition: fill 200ms linear;
    transition: fill 200ms linear;
}
.video-gallery-button:hover span{
    color:var(--yellow-color);
    -webkit-transition: color 200ms linear;
    -ms-transition: color 200ms linear;
    transition: color 200ms linear;
}
.video-gallery-button:hover {
    border-color:var(--yellow-color);
    cursor: pointer;
    -webkit-transition: border-color 200ms linear;
    -ms-transition: border-color 200ms linear;
    transition: border-color 200ms linear;
}

#body-shot{
    max-width: 400px;
    height: auto;
    object-fit: cover;
}
article{
    background-color: var(--brown-color);
}

.carousel {
  position: absolute;
  top:  25%;
  left: 0;
  width: 100%;
  z-index: 0; /* fondo */
  overflow: hidden;
}

.carousel-track {
  display: flex;
  animation: scroll 60s linear infinite;
}

.carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* black with 40% opacity */
  z-index: 1;
  pointer-events: none; /* allows clicks to pass through */
}

.carousel-track img {
  height: 40vh;
  width: auto;
  flex-shrink: 0;
  
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-80%);
  }
}

.center-image{
    max-height: 100%;
    flex-grow: 1;
}

    .center-image-mobile{
       display: none;
    }

.social-logos-wrapper{
     list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 15vh;
          padding-left: 7vw;
      margin-right: -9vw;
}


.social-logos-wrapper svg{
    fill: white;
}
.text-fader {
  height: 40px;
  font-size: x-large;
  color: white;
  text-align: center;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
      padding-bottom: 15vh;
      padding-right: 10vw;
      margin-left: -9vw;


}

#fading-text {
    font-weight: bold;
        font-style: italic;

  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

@keyframes fade {
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #main-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: end;
        background-repeat: no-repeat;
        background-size: 100vw;
        justify-content: center;
        padding-bottom: 0;
        box-sizing: border-box;
    }
    .social-logos-wrapper{
        display: none;    
    }

    .center-image{
        display: none;
        width: 100%;
    }

    
    .center-image-mobile{
        width: 100%;
        display: block;
    }



    .carousel{
        display: none;        
    }


    #upper-part {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
    }

    #middle-column{
        flex: 70%;
        justify-content: start;
        margin-top: 1rem;
    }

    #right-column{

    flex: 30%;
    z-index: 0;

    }

    
#left-column{
        display: none;

}

.text-fader{
    margin: auto;
    padding: 0;
    font-size: medium;
    padding: 0 10vw;

}

#fading-text{
        border: 2px white solid;
        padding: 1rem;

}



    #lower-part{
        padding-bottom: 0;
    }

    #blurb {
        width: 100%;
    }
    #blurb h1{
        margin-bottom: 10px;
        margin-top: 3em;
        margin-right: 0;
        padding: 5px;
        font-size: x-large;
    }

    #blurb p {
        text-align: center;
        padding: 15px 30px;
        font-size: medium;
    }

    .socials-logo {
        height: 2rem;
        width: 2rem;
        filter: invert(89%) sepia(26%) saturate(1126%) hue-rotate(346deg) brightness(109%) contrast(92%);
        display: inline-block;
        vertical-align: top;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    #logos {
        justify-content: center;
        min-width: initial;
    }

    .logo-container {
        justify-content: space-evenly;
        align-items: center;
        max-height: 180px;
        flex: 0.333;
    }
    .logo-container p{
        display: none;
    }
    .logo {
        width: 5rem;
        height: 7rem;
        margin-left: 1rem;
        margin-right: 0.5rem;
    }
    #SVR-logo{
        height: 5.3rem;
        width: 6.5rem;
        margin-bottom: 0;
    }
#EAO-logo{
    height: 6.5rem;
}
    .video-gallery-button {
        width: initial;
        border: none;
    }
    #body-shot{
        max-width: 175px;
    }

    .linea-amarilla { width: max-content; height: 5px; /* Ajusta el grosor de la línea */ background-color: yellow; /* Color de la línea */ margin: 10px 0; /* Espacio alrededor de la línea */321}

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) {

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}




/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}
