* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: none;
    background-color: white;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
}



marquee {

    margin: 0;
    padding: 0;


}


 p {
     font-family: 'Inter', sans-serif;
     font-weight: 700;
     font-size: 4vh;
 }

a {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-style: normal;
    text-decoration: none;
    color: black;

}


a:hover {
    -webkit-font-style: italic;
    font-style: italic;
    -webkit-text-decoration: underline;
    text-decoration: underline;
}

h3 {

        font-family: 'Inter', sans-serif;
    font-weight: 600;
}

h2 {

        font-family: 'Inter', sans-serif;
    font-weight: 900;
}



.maxw {
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    overflow-x: hidden; 
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
}


.maxw img{
    max-height: 100%;
    width: auto;
}


/* Add this CSS rule to your existing styles.css file */

/* Hide the cursor when hovering over clickable elements */
a, button, input[type="submit"], input[type="button"], [role="button"] {
    cursor: none;
}


/* ... (existing code) ... */

.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2001; /* Above the header */
    opacity: 1; /* Initial opacity */
      transition: opacity 0.5s ease-in-out;/* Add a transition for smoother effect */
}

.login-screen.hidden {
    opacity: 0; /* Set opacity to 0 when hidden */
}

.login-container {
    text-align: center;
}

.login-logo {
    height: 23vh; /* Adjust the maximum width as needed */
        margin-top: 4px;
                animation: loginRot 0.8s infinite;
        animation-timing-function: ease-in-out;


}







@keyframes loginRot {
    0% {
        transform: rotate(0deg);

    }


    90%{
        transform: rotate(360deg);

    }

        100%{
        transform: rotate(360deg);

    }
}












nav {

    /* Add your styling for the navigation menu */
}



header {
    position: fixed;
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    padding: 1%;
    transition: top 0.7s ease-in-out;

}

#follow-div {
    margin-left: 1vw;
}

#follow-div2 {
    margin-right: 1vw;
}


.logo, .logo2 {
    width: auto;
    height: 6vh;
}

.logo img, .logo2 img {
    height: 6vh;
    width: auto;
    min-height: 6vh;
    transition: transform 0.5s ease-out;
}

.logo img:hover, .logo2 img:hover {
    height: 8vh;
    width: auto;
    min-height: 8vh;
}


.hero {

    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
      margin: 0;
    padding: 0;
}


#imagesequence{

     position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
      display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
    margin: 0;
  padding: 0;

}




.image-sequence1 {

  background-image: url('image/f1.jpg');
      background-repeat: no-repeat;
    background-size: 1200px;
    background-position: center;


}

.image-sequence2 {

  background-image: url('image/f2.png');
        background-repeat: no-repeat;
    background-size: 1200px;
    background-position: center;
}
.image-sequence3 {

  background-image: url('image/f3.png');
        background-repeat: no-repeat;
    background-size: 1000px;
    background-position: center;
}

.image-sequence4 {

  background-image: url('image/f4.png');
        background-repeat: no-repeat;
    background-size: 1000px;
    background-position: center;
}

.overlay-image {
  position: absolute;
        display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
    margin: 0;
  padding: 0;

  width: 1100px;
  height: 1100px;
  z-index: 1; /* Place the overlay image on top of the rotating images */
}










/* Inside your CSS file */





.stacked-rectangles {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 90;


}

.rectangle {
    width: 74vw;
    height: 20vh; /* Adjust the height as needed */
    margin: 2% 0; /* Adjust spacing between rectangles */


}

.r1{
    margin-left: 5%;
}

.r2{
    margin-right: 5%;
}



.object-in-3d { 
  margin-left: 0vw;
  width: 100vw; 
  height: 100vh; 
 }

.float-center { 
  position: absolute; 
  top: 100%; }

#rec1{
    transition: 1s;
    background-image: url("image/f1.jpg");
    background-size: 100%;
    background-position: center;
    filter: grayscale(100%);
}

#rec1:hover {

    background-color: red;
    width: 80vw;
    height: 20vw;
    filter: grayscale(0%) ;

}

#rec2{
    transition: 1s;
    background-image: url("image/f2.png");
    background-size: 100%;
    background-position: center;
    filter: grayscale(100%);
}

#rec2:hover {

    background-color: red;
    width: 80vw;
    height: 20vw;
    filter: grayscale(0%) ;

}

#rec3{
    transition: 1s;
    background-image: url("image/f3.png");
    background-size: 100%;
    background-position: center;
    filter: grayscale(100%) ;
}

#rec3:hover {

    background-color: red;
    width: 80vw;
    height: 20vw;
    filter: grayscale(0%) ;

}

#rec4{
    transition: 1s;
    background-image: url("image/f4.png");
    background-size: 100%;
    background-position: center;
    filter: grayscale(100%) ;
}

#rec4:hover {

    background-color: red;
    width: 80vw;
    height: 20vw;
    filter: grayscale(0%) ;

}


.what-we-do{
    margin: 12vw;
    margin-top:5% ;

}

/* Inside your existing styles.css file */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Display in 2 columns */
    justify-content: center;
        margin-bottom: 0vh;


}

.gc1{
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
}

.gc2{
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
}


.img-gal {
    width: auto;
    height: 23vh;
    transition: transform 0.2s ease;
    margin-top: 40%;
    justify-content: center;
    justify-items: center;
    justify-self: center;

}

.img-gal:hover {
 
animation: shake3 1s ease-in-out infinite;
}

@keyframes shake3 {
    0%, 100% {
        transform: scale(1.2) translateY(-3px);
    }
    25% {
        transform: scale(1.2) translateY(0px);
    }
    50% {
        transform: scale(1.2) translateY(3px);
    }
    75% {
        transform: scale(1.2) translateY(0px);
    }
}




.who-we-are {
    margin: 12vw;
    margin-top: 5%;
    padding-bottom: 30vh;



}

.members {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Display in 2 columns */
    margin-top: 10vh;
    justify-content: center;
    

}



.m-top{
    margin-top: 60vh;
}




.sec1{
    font-size: 800%;
    border-top-style: solid;
    border-bottom-style: solid;
    border-color: black;
    border-width: 7px;
    left: 0%;
    z-index: 10;


}

.sectxt1{
        margin-top: 2vh;
    margin-bottom: 2vh;
}


footer {
  color: #fff;
  margin: 0%;
  position: fixed;
  bottom: 0;
  width: 100%;
  filter: invert(1);
  mix-blend-mode: difference;
  -webkit-filter: invert(1);
  -webkit-mix-blend-mode: difference;
  z-index: 40;
}

@supports (-webkit-filter: invert(1)) {
  footer {
    -webkit-filter: invert(1);
    -webkit-mix-blend-mode: difference;
    mix-blend-mode: difference;
  }
}

/* Fallback color for other browsers */
@supports not (-webkit-filter: invert(1)) {
  footer {
    color: darkgrey; /* Fallback color */
  }
}


    footer h3 {
      color: black;
      font-size: 15px;
      text-decoration: none;
  }



.elfoter {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 2%;

}

.elfoter h3 {
    margin: 0; /* Remove any default margin for the h3 element */
}

.instagram-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.instagram-links a {
   margin-top: 50%;
}


.ii{

    transition: transform 0.2s ease;
}

.ii:hover {

    transform: scale(1.5);
    animation: shake 0.3s ease-in-out infinite;
}





@keyframes shake {
    0%, 100% {
        transform: scale(1.5) translateX(0);
    }
    25% {
        transform: scale(1.5) translateX(-5px);
    }
    50% {
        transform: scale(1.2) translateX(5px);
    }
    75% {
        transform: scale(1.2) translateX(-0px);
    }
}









#custom-cursor {
  background-color: black;
  
  
  height: 50px;
  width: 50px;
  
  display: block;
  position: absolute;
  top: 0;
  left: 0;

  filter: invert(1);
  mix-blend-mode: difference;
  z-index: 999;
}
    
#custom-cursor {
    animation: rotateCursor 5s linear infinite; /* Adjust the duration (5s) as needed */
}

@keyframes rotateCursor {
    0% {
        transform: scale(1.1) rotate(0deg); 
        border-radius: 0;
    }
    50% {
        transform: scale(0.8) rotate(180deg);

        border-radius: 50%;
    }

    100%{
        transform: scale(1.1) rotate(360deg) ;

        border-radius: 0;
    }
}


/*SECCIÓN P1*/






/* Add this CSS code to your existing styles.css file */

/* ... (existing styles) ... */






/* Existing styles for .horizontal-scroll and .container */
.horizontal-scroll {
  overflow-y: scroll;
  overflow-x: hidden; 
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.container {
  display: inline-block; /* Add this line to make the container inline-block */
  font-size: 0; /* Add this line to remove the default font size and avoid spacing issues */
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS */
      scroll-snap-type: x mandatory;
      display: flex;
      scroll-behavior: smooth;
}



.cont-margin{

    margin-left: 3vw;
}

.i-size {
  height: 82vh;
  margin: 0%;
  margin-top: 9vh;
  margin-left: 0%;

}

.i-size img {
  height: 0%;
  margin: 0;

}

.i-margin {
  margin-left: 10vw;

}

.i-div {
  display: inline-block;
  vertical-align: top;
  margin: 0%;
  margin-left: 10vw;
}

.i-div img {
  display: block;
  margin-top: 30vh;
  height: 37vh;
}





.c-text {
    font-size: 36px;
    display: inline-block;
    vertical-align: top;
    margin: 0%;
    margin-left: 10vw;
    height: auto;
    width: 50vw; /* Set width to 50% */
    box-sizing: border-box;
    margin-right: 5vw;
    word-wrap: break-word;
    white-space: normal; /* Allow text to wrap to the next line */
    margin-top: 10vh;
}


.sig-pag{
  
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: black;
}


        .clickable-text {
            position: absolute;
            right: 20px;
            top: 40%;
            transform: translateY(-50%);
            padding: 10px;
            color: #353535;
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-style: italic;
                text-decoration: none;
                font-size: 24px;
            display: none; /* Initially hidden */
            transition: opacity 6s ease-in-out; /* Smoother transition */
            opacity: 1; /* Initial opacity */
            animation: shake2 2s infinite; /* Shake animation */
        }

           @keyframes shake2 {
        0%, 100% {
            transform: translateX(5px);
        }
        25% {
            transform: translateX(-55px);
        }
        50% {
            transform: translateX(5px);
        }
        75% {
            transform: translateX(-55px);
        }
    }


/*LANDING PAGINA ROPA*/


.galeria_mmmono{

    width: 100vw;
        margin: 0;
    padding: 0;
    font-size: 0;
    overflow: hidden;
}

.galeria_mmmono img{

    width: 100vw;
        margin: 0;
    padding: 0;
}

.subgaleria_mmmono{
       width: 100vw;
       height: 68.1vw;
        display: flex;
    flex-direction: row;
    align-items: center;
        margin: 0;
    padding: 0;
    font-size: 0;
    overflow: hidden;
}

.subgaleria_mmmono img{
    width: auto;
    height: auto;
}

.sgm1{
    width: 45.5vw;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.sgm2{
    width: 54.5vw;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.sgm1 img{
    width: 100%;
}

.sgm2 img{
    width: 100%;
}






 .msection{
    
    width: 100%;
        margin: 0;
    padding: 0;
    font-size: 0;
    overflow: hidden;
 }

 .msection img{

    width: 100%;
        margin: 0;
    padding: 0;

 }




.margenm{

   width: 100vw;
   height: 230%;
   overflow: hidden;
}



 .stacked-rectanglesc {
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 90;


}


 #rec1c{



}

#rec1c:hover {

    width: 60%;


}


 #rec2c{



}

#rec2c:hover {

    width: 60%;


}



.rectanglec {
    width: 55vw;
    height: 100%; /* Adjust the height as needed */
    margin: 2% 0; /* Adjust spacing between rectangles */


}

.r1c{
    margin-left: 28%;
        

}

.r2c{
    margin-right: 0%;
}



.rc1 img:hover{

  width: 200%;

}










/* Add this CSS code to your existing styles.css file */



@media screen and (max-width: 600px) {



    .margenm{

   width: 100vw;
   height: 100%;
   margin-top: -140%;

}

.rectanglec {
    width: 100vw;
    height: 10%; /* Adjust the height as needed */
    margin: 2% 0; /* Adjust spacing between rectangles */



}



 #rec1c{

  margin: 16%;
  width: 70%;



}

#rec1c:hover {

    width: 90%;


}



 #rec2c{

  visibility: hidden;


}



 p {
     font-family: 'Inter', sans-serif;
     font-weight: 650;
     font-size: 3vh;
 }


  .logo img {


    height: 6vh; /* Adjust the maximum height as needed */
    min-height: 6vh;
    transition: transform 0.5s ease-out;
    margin-top: 1vh;
    margin-left: 1vw;
    max-height: 100%;
    width: auto;
}


.logo img:hover {


    height: 8vh; /* Adjust the maximum height as needed */
    min-height: 8vh;
    max-height: 100%;
    width: auto;
}







.hero {

    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
      margin: 0;
    padding: 0;
}


#imagesequence{

     position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
      display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
    margin: 0;
  padding: 0;

}




.image-sequence1 {

  background-image: url('image/f1.jpg');
      background-repeat: no-repeat;
    background-size: 370px;
    background-position: center;


}

.image-sequence2 {

  background-image: url('image/f2.png');
        background-repeat: no-repeat;
    background-size: 370px;
    background-position: center;
}
.image-sequence3 {

  background-image: url('image/f3.png');
        background-repeat: no-repeat;
    background-size: 320px;
    background-position: center;
}

.image-sequence4 {

  background-image: url('image/f4.png');
        background-repeat: no-repeat;
    background-size: 280px;
    background-position: center;
}

.overlay-image {
  position: absolute;
        display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
    margin: 0;
  padding: 0;
  width: 350px;
  height: 350px;
  z-index: 1; /* Place the overlay image on top of the rotating images */
}




    .rectangle {
        width: 70vw; /* Adjust the width for smaller screens */
        height: 10vh; /* Adjust the height for smaller screens */
        margin-top: 5vh;

    }




#rec1{
    transition: 1s;
    background-image: url("image/f1.jpg");
    background-size: 100%;
    background-position: center;
    filter: grayscale(100%);
}

#rec1:hover {

    background-color: red;
    width: 80vw;
    height: 20vh;
    filter: grayscale(0%) ;

}

#rec2{
    transition: 1s;
    background-image: url("image/f2.png");
    background-size: 100%;
    background-position: center;
    filter: grayscale(100%);
}

#rec2:hover {

    background-color: red;
    width: 80vw;
    height: 20vh;
    filter: grayscale(0%) ;

}

#rec3{
    transition: 1s;
    background-image: url("image/f3.png");
    background-size: 100%;
    background-position: center;
    filter: grayscale(100%) ;
}

#rec3:hover {

    background-color: red;
    width: 80vw;
    height: 20vh;
    filter: grayscale(0%) ;

}

#rec4{
    transition: 1s;
    background-image: url("image/f4.png");
    background-size: 100%;
    background-position: center;
    filter: grayscale(100%) ;
}

#rec4:hover {

    background-color: red;
    width: 80vw;
    height: 20vh;
    filter: grayscale(0%) ;

}





.gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Display in 2 columns */
    margin-top: 0vh;
    justify-content: center;
    justify-items: center;
    margin-bottom: 20vh;

}

.img-gal {
    width: auto;
    height: 20vh;
    transition: transform 0.2s ease;
    margin: 0%;
    margin-top: 10vh;


}

.gc1{
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
}

.gc2{
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
}










.i-div img {
  display: block;
  margin-top: 30vh;
  height: 30vh;
}




.cont-margin{

    margin-left: 5vw;
}

.i-size {

  height: 60vh;
  margin: 0%;
  margin-top: 15vh;
  margin-left: 0%;

}

.i-size img {
  height: 0%;
  margin: 0;

}



.i-margin {
  margin-left: 20vw;

}


.c-text {
    font-size: 26px;
    display: inline-block;
    vertical-align: top;
    margin: 0%;
    margin-left: 10vw;
    height: auto;
    width: 90vw; /* Set width to 50% */
    box-sizing: border-box;
    margin-right: 5vw;
    word-wrap: break-word;
    white-space: normal; /* Allow text to wrap to the next line */
    margin-top: 15vh;
}


.members {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Display in 2 columns */
    margin-top: 2vh;
    justify-content: center;


}



.sec1{
    font-size: 300%;
    border-top-style: solid;
    border-bottom-style: solid;
    border-color: black;
    border-width: 7px;
    left: 0%;
    z-index: 10;


}


.m-top{
    margin-top: 40vh;
}

.what-we-do{
    margin: 10vw;
    margin-top:15% ;

}
.who-we-are {
    margin: 10vw;
    margin-top: 15%;


}


    /* Adjust the max-width value based on your desired breakpoint for mobile */
    footer h3 {
        font-size: 8px; /* Set a smaller font size for mobile devices */
    }













}





video::-webkit-media-controls {
  display: none;
}

/* Could Use thise as well for Individual Controls */
video::-webkit-media-controls-play-button {}

video::-webkit-media-controls-volume-slider {}

video::-webkit-media-controls-mute-button {}

video::-webkit-media-controls-timeline {}

video::-webkit-media-controls-current-time-display {}




@media (hover: none) {


  #custom-cursor {
    display: none;
  
  }

}
