
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
/* SELECCIONADOS POR ETIQUETA */
body{
    font-family: prompt,sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.modal-visible{
    overflow: hidden;
}

a{
    text-decoration: none;
    color: inherit;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
img{
    max-width: 100%;
}
li{
    padding: 0.4rem;
    margin: 0 0 0 2rem;
}

/* SELECCIONADOS CON CLASES */

.header{
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 1rem;
    z-index: 100;
}

.header-nav{
    width: 98%;
    height: 3rem;
    background: #1a2456;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 4px 10px rgba(0,0,0, 0.75);
}
.header-nav a{
    color:#efc2b3;
    text-transform: uppercase;
}

.header-nav i{
    cursor: pointer;
}
.header-nav i:hover{
    color: #c78f7d;
   transition: all 0.4s ease;
}

.logo{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 20%;
    min-width: 160px;
}
.logo img{
    margin-left:0.25rem;
}
.logo a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin-left: 0.5rem;
}

.header-nav a:hover {
   color: #c78f7d;
   transition: all 0.4s ease;
} 

.header .ul{
    width: 80%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.header .ul-menu{
    display: none;
    margin-right: -1rem;
}
.ul :nth-child(7){
    margin-right: 1rem;
}
.header .logo{
    display: flex;
    flex-flow: row nowrap;
}
.header i{
    font-size: 1.5rem;
    color: #efc2b3;
}

/* Hidden menu */
.header .modal-layer{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    left: -120vw;
}

.header .menu-modal{
    width: 320px;
    height: 100vh;
    background: #1a2456;
    padding: 1rem;
    position: fixed;
    left: -120vw;
    top: 0;
    transition: all 0.5s ease;
}

.header .menu-logo{
    display: flex;
    width: 100%;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.header .logo-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.menu-modal .ul-none1{
    margin-left: 70px;
    margin-top: 5px;
    border-bottom: 1px solid #121c49;
} 

.menu-modal .ul-none2{
    margin-left: 100px;
    margin-top: 5px;
    border-bottom: 1px solid #121c49;
} 

.header .show-menu{
    left: 0;
}
.header .show-menu-modal{
    left: 0;
    transition: all 0.5s ease;
}

/* MAIN CONTAINER */

.main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 0px;
    max-width: 100%;

}

.main .main-container{
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-container-text{
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 300vh;
    flex-direction: column;
    align-items: center;
}

.main-container-text .bg-image{
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url('../assets/home-hero.jpg');
    background-color: rgba(0,0,0, 0.95);
    background-blend-mode: darken;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: fixed;
    top: 0;
    z-index: -22;
}


.main-container-texts{
    margin-top: 10rem;
    padding: 1rem;
    width: 80vw;
    height: 50vh;
    display: flex;
    flex-direction: column;
}

.main-container-texts-box{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.main-container-text h1{
    color: #efc2b3;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 4.5rem;
    text-align: center;
    letter-spacing: 1px;
    margin: 0;
}
.main-container-text small{
    font-size: 60%;

} 

.main-container-text p{
    color: #efc2b3;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
    margin: 0;    
}

.main-container .main-container-buttons{
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: center;
}

.main-container-buttons a{
    border: none;
    padding: 1rem 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: rgb(33, 37, 41);
    border-radius: 2rem;
    width: 30%;
    background:#efc2b3;
    margin: 1rem;
}

.main-container-buttons a:hover{
    
    background:#FF8D6B;
   
}

/* Section-1 */

.section-1{
    background: #efc2b3;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.section-1 .container-section-1{
    width: 70%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-1 h2{
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.section-1 p{
    color: #1a2456;
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;

}


/* SECTION 2  !! AQUI ES DONDE VA HACERSE EL EFECTO HALF*/

.section-2{
    width: 100%;
    max-width: 100%;
    background: #1a2456;
    display: flex;
    flex-flow: row wrap;
    padding: 0;
    margin: 0;

}

.section-2 .left{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    z-index: 55;
}
.section-2 .right{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;

}

.section-2 .section-2-350vh{
    width: 100%;
    max-width: 100%;
    height: 350vh;
    display: flex;
    flex-direction: column;
}

.section-2 .section-2-400vh{
    width: 100%;
    max-width: 100%;
    height: 400vh;
    display: flex;
    flex-direction: column;
}

.section-2 h3{
    font-size: 2.5rem;
    color: #1a2456;
    font-weight: 500;
    text-transform: uppercase;
}
.section-2 p{
    font-size: 1.1rem;
    color: #1a2456;
    font-weight: 300;
    line-height: 2rem;
}

.left .container-section-2-one{
    width: 100%;
    height: 100vh;
    background: #1a2456;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: sticky;
    top: 0;
    padding: 0;
    margin: 0;
}


.container-section-2-one img{
    width: 70%;
    min-width: 600px;
    height: 100%;
    position: relative;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    
} 



.section-2 .container-section-2-two{
    width: 100%;
    height: 100vh;
    background: #FF8D6B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin: 0;
} 

.container-section-2-two img{
    width: 70%;
    min-width: 600px;
    height: 100%;
    position: relative;
    left: -5px;
    top: 0;
    padding: 0;
    margin: 0;
} 

.right .container-section-2-three{
    width: 100%;
    height: 100vh;
    background: #EFC2B3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.right .text-container-three{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.right .container-section-2-four{
    width: 100%;
    height: 100vh;
    background: #5A7F71;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 0;
    padding: 0;
    margin: 0;
}


.container-section-2-four img{
    width: 70%;
    height: 100%;
    min-width: 600px;
    position: relative;
    left: -5px;
    top: 0;
    padding: 0;
    margin: 0;
} 


.left .container-section-2-five{
    width: 100%;
    height: 100vh;
    background: #efc2b3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.left .text-container-five{
    width: 60%;
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
} 

.left .container-section-2-six{
    width: 100%;
    height: 100vh;
    background: #FF8D6B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: sticky;
    top: 0;
    padding: 0;
    margin: 0;
}

.container-section-2-six img{
    width: 70%;
    height: 100%;
    min-width: 600px;
    position: relative;
    right: 0px;
    top: 0;
    padding: 0;
    margin: 0;
} 

.right .container-section-2-seven{
    width: 100%;
    height: 100vh;
    background: #EFC2B3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.right .text-container-seven{
    width: 60%;
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    padding: 0;
    margin: 0;
} 

.right .container-section-2-eight{
    width: 100%;
    height: 100vh;
    background: #F5B335;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 0;
    padding: 0;
    margin: 0;
}

.container-section-2-eight img{
    width: 70%;
    height: 100%;
    min-width: 600px;
    position: relative;
    left: -5px;
    top: 0;
    padding: 0;
    margin: 0;
} 

.left .container-section-2-nine{
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #EFC2B3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}


.left .text-container-nine{
    width: 60%;
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    margin-bottom: 0;
} 

.left .container-section-2-ten{
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #5A7F71;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    margin: 0;
}

.container-section-2-ten img{
    width: 70%;
    height: 100%;
    min-width: 600px;
    position: relative;
    right: 0px;
    top: 0;
    padding: 0;
    margin: 0;
} 


/* SECTION 3 */


.section-3 {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:#1a2456;
    /* overflow-x: hidden; */

}

.section-3 .container-section-3-one{
    width: 100%;
    max-width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-3 .section-3-one-container{
    width: 70%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    overflow-y: hidden;
    
}

.container-section-3-one h3{
    font-size: 2.25rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 0;
    margin: 0;
    position: relative;
}

.container-section-3-one p{
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #efc2b3;
    padding: 0;
    margin: 0;
    position: relative;
}


/*  SECTION 3 P2 */

.section-3 .container-section-3-two{
    width: 100%;
    max-width: 100%;
    height: 170vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-3 .section-3-two-left{
    width: 50%;
    height: 100%;
}


.container-section-3-two-img{
    width: 100%;
    background: #1a2456;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: sticky;
    top: 15rem;
    margin-bottom: 10rem;
}

.container-section-3-two-img img{
    width: 25%;
    min-width: 200px;
    height: 25%;
    margin-right: 5rem;
}

.container-section-3-two-text{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;

}
.two-text-container{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    left: 2rem;
    bottom: 15rem;
    opacity: 1;
}
 
.texts-s3 h3{
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.texts-s3 p{
    color: #EFC2B3;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.75rem;    
}
.texts-s3 span{
    font-weight: 700;
}

.texts-s3 .three-smaller{
    color: #efc2b3;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;    
}

.container-section-3-three{
    display: flex;
    width: 100%;
    height: 170vh;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;

}
.container-section-3-three-text{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    
}
.container-section-3-three-text .three-text-container{
    width: 60%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.container-section-3-three-img {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.container-section-3-three-img .three-img{
    width: 60%;
    height: 60vh;
    position: sticky;
    top: 10rem;
    margin-left: 5rem;
}

.container-section-3-three-img img{
    width: 100%;
    min-width: 300px;
    height: 100%;
    object-fit: contain;
    padding: 0;
    margin: 0;

}


.container-section-3-four{
    width: 100%;
    height: 150vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

}

.container-section-3-four-img {
    width: 50%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: flex-end;
    position: sticky;
    top: 5rem;
}

.container-section-3-four-img .four-img{
    width: 50%;
    min-width: 420px;
    left: 1rem;
    position: relative;
    transform: rotate(90deg);
}

.container-section-3-four-text{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
/* OVERFLOW */

.container-section-3-four-text .four-text{
    width: 60%;
    position: relative;
    left: 2rem;
    bottom: 8rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.container-section-3-five {
    width: 100%;
    height: 150vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
}

.container-section-3-five-img{
    width: 50%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 10rem;
    margin-bottom: 5rem;
}
.container-section-3-five-img img{
    width: 60%;
    min-width: 320px;
    position: relative;
    left: 5rem;
}

.container-section-3-five-text{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;

}

.container-section-3-five-text .five-container{
    width: 55%;
    display: flex;
    flex-direction: column;
    position: relative;
    right: 1rem;
    bottom: 15rem;
}

.container-section-3-six{
    width: 100%;
    height: 150vh;
    display: flex;
    flex-direction: row;
}
.container-section-3-six-text{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.container-section-3-six-text .six-container{
    width: 60%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    left: 1rem;
    bottom: 6rem;
}

.container-section-3-six-img{
    width: 50%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: sticky;
    top: 10rem;
    margin-bottom: 5rem;
}

.container-section-3-six img{
    width: 50%;
    min-width: 450px;
    transform: rotate(90deg);
}

/* 5 IMAGENES QUE SE UNEN EN MEDIO */

.container-section-3-seven{
    width: 100%;
    height: 250vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.container-section-3-seven .section-3-observed{
    width: 10vw;
    height: 150vh;
    position: absolute;

}


.container-section-3-seven-img{
    width: 100%;
    height: 150vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    overflow: hidden;
}


.container-section-3-seven .container-s3-wrapper{
    width: 100%;
    height: 150vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-section-3-seven .s3-parts-container{
    width: 100%;
    height: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    background: #1a2456;
    position: relative;
    top: 22vh;
}

.container-section-3-seven-img .seven-left-20{
    width: 20%;
    height: 50vh;
    position: relative;
    right: -10px;
}
.container-section-3-seven-img .seven-left-10{
    width: 9.85%;
    height: 50vh;
    position: relative;
    z-index: 3;

}
.container-section-3-seven-img .seven-mid-20{
    width: 20%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    position: relative;
    left: -6px;
    z-index: 2;
}
.seven-mid-20 :nth-child(1){
    opacity: 0;
}


.container-section-3-seven-img .seven-right-20{
    width: 20%;
    height: 50vh;
    position: relative;
    left: -16px;
}

.container-section-3-seven-img img{
    width: 100%;
}

.container-section-3-seven-text{
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: hidden;
    position: relative;
    top: -13vh;
}

.container-section-3-seven-text .seven-container{
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-40vh);
}

.container-section-3-seven-text h2{
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.container-section-3-seven-text p{
    color: #efc2b3;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 2rem;
    text-align: center;
}

.container-section-3-seven-text button{
    color: rgb(33, 37, 41);
    background: #efc2b3;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1rem;
    padding: 0.7rem 2.5rem;
    line-height: 1.8rem;
    border-radius: 50rem;
    cursor: pointer;
    border: none;
}


.container-section-3-seven-text button:hover{
    color: rgb(33, 37, 41);
    background: #c78f7d;
}

/* SECCION 4 */

.section-4{
    width: 100%;
    max-width: 100%;
    min-height: 120vh;
    background: #efc2b3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-4 .container-section-4-texts{
    width: 66%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    align-self: center;
}

.container-section-4-texts h2{
    color: #1a2456;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.container-section-4-texts p{
    color: #1a2456;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 300;
    text-align: center;
}

.slider-wrapper{
    width: 100%;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 0;
    top: 0;
    overflow-x: hidden;
}

.section-4 .container-section-4-slider{
    width: 66vw;
    height: 65vh;
    overflow-x: visible;
    white-space: nowrap;
}

.section-4-one{
    width: 66vw;
    height: 90%;
    margin-right: 5vw;
    display: inline-flex;
    white-space: normal;
    vertical-align: top;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/mono-poster-4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-4-two{
    width: 66vw;
    height: 90%;
    margin-right: 5vw;
    display: inline-flex;
    white-space: normal;
    vertical-align: top;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/mono-poster-3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-4-three{
    width: 66vw;
    height: 90%;
    margin-right: 5vw;
    display: inline-flex;
    white-space: normal;
    vertical-align: top;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/mono-poster-5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-4-four{
    width: 66vw;
    height: 90%;
    margin-right: 5vw;
    display: inline-flex;
    white-space: normal;
    vertical-align: top;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/mono-poster-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.container-section-4-one .section-4-one-content{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background: rgba(255,255,255, 0.85);
    width: 85%;
    height: 60%;
    padding: 2rem;
}

.section-4-one-content h3{
    font-size: 1.55rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #1a2456;
    text-transform: uppercase;
    text-align: center;
}
.section-4-one-content p{
    font-size: 1.15rem;
    font-weight: 300;
    color: #1a2456;
    text-align: center;
}

.section-4-one-content button{
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 2rem;
    padding: 0.4rem 2rem;
    background: #1a2456;
    cursor: pointer;
    color: #fff;
    text-align: center;
}


.section-4-one-content button:hover{
    background: #0d153a;
}

.section-4 .previous-button{
    width: 70px;
    height: 50px;
    background: rgba(255,255,255, 0.25);
    color: #1a2456; 
    font-size: 2rem; 
    font-weight: 700;
    text-align: center;  
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15%;
}

.section-4 .previous-button:hover{
    background: rgba(255,255,255, 0.75); 
    transition: all 0.4s ease;

}

.section-4 .next-button{
    width: 70px;
    height: 50px;
    background: rgba(255,255,255, 0.25);
    color: #1a2456; 
    font-size: 2rem;
    text-align: center;  
    font-weight: 700;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right:15%;

}
.section-4 .next-button:hover{
    background: rgba(255,255,255, 0.75); 
    transition: all 0.4s ease;

}


.section-5{
    width: 100%;
    max-width: 100%;
    height: 350vh;
    background: #1a2456;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
}


.section-5-100vh{
    width: 100%;
    height: 300vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.section-5-sticky{
    width: 100%;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: sticky;
    top: 0px;
}

.section-5 .container-section-5-texts{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-5 .container-section-5-tools{
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    bottom: 0;
    left: 0;

}

.section-5 .container-section-5-overflow{
    width: 11%;
    min-width: 180px;
    position: absolute;
    align-self: center;
    top: 100px;
    overflow: hidden;
}


.container-section-5-tools .tools-container-5{
    width: 18%;
    min-width: 300px;
    align-self: center;
    position: relative;
    top: 20px;
}

.container-section-5-tools #id-lorem{
    width: 2025px;
    position: relative;
    align-self: flex-start;
    left:1.5vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#id-lorem img{
    width: 100px;
    object-fit: cover;
}
#id-lorem :nth-child(8){
    border-radius: 50%;
}


.tools-container{
    width: 150px;
    height: 150vh;
    position: relative;
    top: 28.5vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 7rem;
}

.container-section-5-tools .icon-tool{
    width:  8rem;
    height: 8rem;
    bottom: 5vh;
    opacity: 0;
}

.section-5 h2{
    font-size: 1.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #efc2b3;
    letter-spacing: 2px;
    text-align: center;
}

.section-5 p{
    font-size: 1.5rem;
    font-weight: 300;
    color: #efc2b3;
    text-align: center;
    
}

/* SECTION 6 */

.section-6{
    width: 100%;
    height: 300vh;
    max-width: 100%;

}

.section-6-content{
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
}

.overflow-layer-1{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    padding: 0;
    margin: 0;
    top: 0;
    right:0;
}
.overflow-layer{
    width: 1%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    padding: 0;
    margin: 0;
    top: 0;
    left:0;
}
.section-6 .container-section-6-layer{
    width: 100vw;
    padding: 0;
    margin: 0;
}

.container-section-6-layer .container-section-6-hero{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    padding: 0;
    margin: 0;
}

.section-6 .section-6-100-vh{
    width: 100%;
    height: 100vh;
    position: relative;
}

.section-6 .container-section-6-img{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 0;
    z-index: 55;
}

.section-6 .container-section-6-text{
    width: 45%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0.5);
    bottom: 50vh;
}

.container-section-6-text img{
    width: 60%;
    min-width: 200px;
    object-fit: cover;
}

.container-section-6-text p{
    font-size: 1rem;
    text-align: center;
    color: #efc2b3;
    font-weight: 300;
    margin-bottom: 1rem;
}

.container-section-6-text button{
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    color: #212529;
    background: #efc2b3;
    border: none;
    border-radius: 50rem;
    padding: 1rem 3rem;
}


.container-section-6-text button:hover{
    background: #c78f7d;
}

/* S7 */
.section-7{
    width: 100%;
    background: #efc2b3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0;
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.section-7 .section-7-slider{
    width: 400vw;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    position: relative;
    padding: 0;
    margin: 0;
    top: 0;
    left: -100vw;
}

.section-7 .section-7-slider-title{
    width: 100vw;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.section-7-slider-title .title-wrapper{
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-7-slider-title h2{
    color: #1a2456;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.95rem;
    line-height: 2.25rem;
    font-weight: 600;
}

.section-7-slider .container-section-7-one{
    width: 100vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 5rem;
}

.section-7-slider .container-section-7-one img{
    width: 10rem;
    border-radius: 50%;
    margin-bottom: 3rem;
}

.section-7-slider .slider-text-content{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.section-7-slider .slider-text-content :nth-child(1){
    font-size: 1.75rem;
    line-height: 2rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #1a2456;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.section-7-slider div :nth-child(2){
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #5A7F71;
    font-weight: 300;
    text-align: center;
}

.section-7 .next-button-two{
    width: 70px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 5vw;
    background: rgba(255,255,255, 0.15);
    border: 2px solid gray;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-7 .next-button-two:hover{
    background: rgba(255,255,255, 0.5);
    transition: all 0.4s ease;

}

.section-7 .previous-button-two{
    width: 75px;
    height: 50px;
    position: absolute;
    top: 50%;
    left:5vw;
    background: rgba(255, 255,255, 0.15);
    border: 2px solid gray;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-7 .previous-button-two:hover{
    background: rgba(255,255,255, 0.5);
    transition: all 0.4s ease;

}

.section-8{
    width: 100%;
    background: #efc2b3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.section-8 .section-8-title{
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-8-title h2{
    font-size: 1.85rem;
    text-transform: uppercase;
    color: #1a2456;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 0.5rem;
}


.section-8 .container-section-8-brands{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 5rem;
}

.container-section-8-brands a{
    width: 32.5%;
    height: 30vh;
    padding: 0;
    margin: 0;
}


.container-section-8-brands img{
    width: 100%;
    height: 30vh;
    padding: 0;
    margin: 0;
}

.container-section-8-brands :nth-child(7){
    width: 50%;
    height: 40vh;
    padding: 0;
    margin: 0;
}

.container-section-8-brands :nth-child(7) img{
    width: 100%;
    height: 40vh;
    padding: 0;
    margin: 0;
}

.container-section-8-brands :nth-child(8){
    width: 48.5%;
    height: 40vh;
    padding: 0;
    margin: 0;
}
.container-section-8-brands :nth-child(8) img{
    width: 100%;
    height: 40vh;
    padding: 0;
    margin: 0;
}

.section-8 .container-section-8-console{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    top: 0;
    left: 0;
}
.container-section-8-console .section-8-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}

.container-section-8-console img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.container-section-8-console .container-section-8-texts{
    width: 40%;
    height: 40vh;
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    padding:  0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.container-section-8-texts h3{
    font-size: 1.85rem;
    letter-spacing: 2px;
    color: #1a2456;
    font-weight: 600;
    text-transform: uppercase;
}

.container-section-8-texts p{
    font-size: 1.1rem;
    color: #1a2456;
    font-weight: 300;
}


.container-section-8-texts button{
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    line-height: 0.8rem;
    border: none;
    border-radius: 50rem;
    padding: 1rem 2.5rem;
    color: #fff;
    background: #1a2456;
    font-weight: 700;
    margin-top: 1rem;
}


.container-section-8-texts button:hover{
    background: #0d153a;
    transition: all 0.4s ease;

}


/* FOOTER */

footer{
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1a2456;
    overflow: hidden;
}

footer .footer-container{
    width: 90%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 3rem;
    gap: 2rem;
}

footer .footer-monogram{
    width: 120px;
    display:flex;
    flex-direction: column;
    justify-content: center;

}

.footer-monogram p{
    font-size: 0.9rem;
    color: #efc2b3;
    font-weight: 300;
}

footer .footer-quick-links{
    width: 120px;
    display:flex;
    flex-direction: column;
    justify-content: center;

}

footer .footer-help{
    width: 120px;
    display:flex;
    flex-direction: column;
    justify-content: center;

}

footer h4{
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #efc2b3;
    font-weight: 600;
    margin-bottom: 1rem;
}
footer a{
    font-size: 0.9rem;
    color: #efc2b3;
    font-weight: 300;
}
footer a:hover{
    font-size: 0.9rem;
    color: #c78f7d;
    text-decoration: underline;
    font-weight: 300;
    transition: all 0.4s ease;

}

footer .footer-information{
    width: 120px;
    display:flex;
    flex-direction: column;
    justify-content: center;

}

footer .footer-suscribe{
    width: 90%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display:flex;
    flex-direction: column;
    justify-content: center;
}

.footer-suscribe h4{
    font-size: 0.6rem;
    letter-spacing: 1.2px;
    color: #efc2b3;
}

.footer-suscribe p{
    font-size: 0.85rem;
    color: #efc2b3;
    font-weight: 300;
}

.footer-suscribe .footer-suscribe-form{
    display: flex;
    width: 60%;
}

.footer-suscribe-form .input-text{
    width: 50%;
    height: 30px;
    margin-top: 0.5rem;
    border: 1px solid #efc2b3;
    color: #fff;
    background: none;
    padding: 0.2rem 0.4rem;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-suscribe-form .input-submit{
    width: 27%;
    height: 30px;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    border: 1px solid #efc2b3;
    border-radius: 50rem;
    color: #1a2456;
    background: #efc2b3;
    padding: 0.1rem 1rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    cursor: pointer;
}


.footer-suscribe-form .input-submit:hover{
   opacity: 1;
   transition: all 0.4s ease;

}

footer .footer-contact-me{
    width: 100%;
    display: flex;
    margin-bottom: 0.5rem;
}

.footer-contact-me h3{
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #efc2b3;
}

.footer-suscribe .footer-suscribe-icons{
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;

}

.footer-suscribe-icons i{
    font-size: 1rem;
    text-align: center;
    width: 45px;
    height: 40px;
    color: #1a2456;
    background: #efc2b3;
    padding: 0.75rem;
    border-radius: 50%;
}

.footer-suscribe-icons i:hover{
    background: #c78f7d;
    transition: all 0.4s ease;
    opacity: 0.8;
}


/* BREAKPOINT: 1200px */

@media (max-width:1199px) {
    .container-section-2-one img{
        width: 65%;
        height: 90%;
        min-width: 500px;
    }
        
    .container-section-2-two img{
        width: 65%;
        height: 90%;
        min-width: 500px;
    }
    
    .container-section-2-four img{
        width: 65%;
        height: 90%;
        min-width: 500px;
    }

    .container-section-2-six img{
        width: 65%;
        height: 90%;
        min-width: 500px;
    } 

    .container-section-2-eight img{
        width: 65%;
        height: 90%;
        min-width: 500px;
    } 

    .container-section-2-ten img{
        width: 65%;
        height: 90%;
        min-width: 500px;
    }
    
    .right .text-container-three{
        width: 70%;
    } 

    .right .text-container-seven{
        width: 70%;
    } 

    .left .text-container-nine{
        width: 70%;
    } 

    .left .text-container-five{
        width: 70%;
    } 
    .container-section-3-one h3{
        font-size: 2rem;
    }

    .container-section-3-one p{
        font-size: 2.5rem;
    }

    .container-section-8-brands img{
        width: 100%;
        height: 25vh;
    }

    .section-8 .container-section-8-brands{
        width: 90%;
        gap:0.5rem;
    }

    .container-section-8-brands a{
        width: 32.5%;
        height: 25vh;
    }

    .container-section-8-brands :nth-child(7){
        width: 50%;
        height: 32vh;
    }

    .container-section-8-brands :nth-child(7) img{
        width: 100%;
        height: 32vh;
    }

    .container-section-8-brands :nth-child(8){
        width: 48.5%;
        height: 32vh;
    }
    .container-section-8-brands :nth-child(8) img{
        width: 100%;
        height: 32vh;
    }

}

/* MEDIA QUERY  */
/* BREAKPOINTS: 992 */

@media (max-width:991px) {
            
    .header .ul-none{
        display: none;
    }

    .header .ul-menu{
        display: inline;
    }

    .main-container-texts{
        width: 70vw;
    }
    .main-container-text h1{
        font-size: 3.5rem;
        text-align: center;
        letter-spacing: 1px;
        margin: 0;
    }
    .main-container-text small{
        font-size: 50%;
    } 

    .main-container-text p{
        font-size: 1rem;
    }

    .main-container-buttons a{
        font-size: 0.7rem;
    }
    /* Sticky */

    .container-section-2-one img{
        width: 55%;
        height: 70%;
        min-width: 380px;
    }
        
    .container-section-2-two img{
        width: 55%;
        height: 70%;
        min-width: 380px;
    }
    
    .container-section-2-four img{
        width: 55%;
        height: 70%;
        min-width: 380px;
    }

    .container-section-2-six img{
        width: 55%;
        height: 70%;
        min-width: 380px;
    } 

    .container-section-2-eight img{
        width: 55%;
        height: 70%;
        min-width: 380px;
    } 

    .container-section-2-ten img{
        width: 55%;
        height: 70%;
        min-width: 380px;
    }  


    .right .text-container-three{
        width: 60%;
    } 

    .right .text-container-seven{
        width: 60%;
    } 

    .left .text-container-nine{
        width: 60%;
    } 

    .left .text-container-five{
        width: 60%;
    }

    .section-2 h3{
        font-size: 2.2rem;
    }
    .section-2 p{
        font-size: 1rem;
        line-height: 1.8rem;
    }

    .texts-s3 h3{
        font-size: 1.25rem;
    }
    
    .texts-s3 p{
        font-size: 1.15rem;
        line-height: 1.65rem;    
    }
   

    .container-section-3-six img{
        width: 50%;
        min-width: 320px;
    }


    .container-section-3-five-img img{
        width: 60%;
        min-width: 220px;
        left: 1rem;
    }


    .container-section-3-four-img .four-img{
        width: 50%;
        min-width: 320px;
        left: 3rem;
    }

    .container-section-3-three-img img{
        width: 100%;
        min-width: 150px;
        height: 100%;
    }

    .container-section-3-two-img img{
        width: 25%;
        height: 25%;
        margin-right: 2rem;
    }

    .two-text-container{
        width: 80%;
    }

    /* UNION STICKY */

    .container-section-3-seven-text .seven-container{
        width: 80%;
    }

    .container-section-3-seven-text h2{
        font-size: 1.75rem;
    }

    .container-section-3-seven-text p{
        font-size: 1.05rem;
        line-height: 1.8rem;
    }

    .container-section-3-seven-text button{
        font-size: 0.9rem;
        padding: 0.5rem 2.3rem;
        line-height: 1.7rem;
        border-radius: 50rem;
    }


    .section-4-one-content h3{
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
    .section-4-one-content p{
        font-size: 1rem;
        
    }

    .section-4-one-content button{
        font-size: 0.8rem;
        border-radius: 2rem;
        padding: 0.4rem 2rem;
    }
    .section-5 .container-section-5-texts{
        width: 80%;
    }

    .section-5 h2{
        font-size: 1.75rem;
    }
    
    .section-5 p{
        font-size: 1.25rem;       
    }

    .section-6 .container-section-6-text{
        width: 60%;
    }
    
    .container-section-6-text img{
        width: 40%;
        min-width: 200px;
        object-fit: cover;
    }
    
    .container-section-6-text p{
        font-size: 1rem;
    }
    
    .container-section-6-text button{
        font-size: 0.85rem;
        border-radius: 50rem;
        padding: 0.75rem 2.5rem;
    }

    .section-7-slider .container-section-7-one{
        padding: 2rem;
    }

    .section-7-slider .slider-text-content{
        width: 90%;
    }

    .section-7 .previous-button-two{
        width: 75px;
        height: 50px;
        top: 45%;
        left:5vw;
    }

    .section-7 .next-button-two{
        width: 70px;
        height: 50px;
        top: 45%;
        right: 5vw;
    }


}

/* BREAKPOINT: 768px */

@media (max-width:767px) {


    .main-container-buttons a{
        font-size: 0.6rem;
        padding: 0.8rem 0;
        width: 40%;
    }

    .section-1 .container-section-1{
        width: 60%;
    }
 
    .section-1 h2{
        font-size: 1.5rem;
    }

    .section-1 p{
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .container-section-2-one img{
        width: 55%;
        height: 55%;
        min-width: 280px;
    }
        
    .container-section-2-two img{
        width: 55%;
        height: 55%;
        min-width: 280px;
    }
    
    .container-section-2-four img{
        width: 55%;
        height: 55%;
        min-width: 280px;
    }

    .container-section-2-six img{
        width: 55%;
        height: 55%;
        min-width: 280px;
    } 

    .container-section-2-eight img{
        width: 55%;
        height: 55%;
        min-width: 280px;
    } 

    .container-section-2-ten img{
        width: 55%;
        height: 55%;
        min-width: 280px;
    } 

    .section-2 h3{
        font-size: 1.8rem;
    }
    .section-2 p{
        font-size: 0.9rem;
        line-height: 1.6rem;

    }
    
    .container-section-3-one h3{
        font-size: 1.5rem;
    }

    .container-section-3-one p{
        font-size: 2.25rem;
    }

    /* Sticky hide */
    
    
    .container-section-3-two-img img{
        width: 25%;
        min-width: 150px;
        height: 25%;
    }

    .container-section-3-three-img img{
        width: 80%;
        height: 100%;
        min-width: 120px;
    }

    .container-section-3-three-img .three-img{
        margin-left: 2rem;
    }

    .container-section-3-four-img .four-img{
        width: 50%;
        min-width: 220px;

    }

    .container-section-3-five-img img{
        width: 60%;
        min-width: 100px;
        
    }

    .container-section-3-six img{
        width: 50%;
        min-width: 200px;

    }

    .container-section-3-three-text .three-text-container{
        width: 80%;
        height: 50vh;
    }

    .container-section-3-four-text .four-text{
        width: 80%;
        left: 1rem;
    }
    .container-section-3-five-text .five-container{
        width: 85%;
    }
    /* UNION STICKY */

    .container-section-3-seven-text .seven-container{
        width: 85%;
    }

    .container-section-3-seven-text h2{
        font-size: 1.5rem;
    }

    .container-section-3-seven-text p{
        font-size: 0.95rem;
        line-height: 1.5rem;
    }

    .container-section-3-seven-text button{
        font-size: 0.8rem;
        padding: 0.3rem 2rem;
        line-height: 1.5rem;
        border-radius: 50rem;
    }
    .section-4 .container-section-4-texts{
        width: 90%;
        margin-bottom: 1rem;
    }
    .container-section-4-texts h2{
        font-size: 1.75rem;
    }
    
    .container-section-4-texts p{
        font-size: 1.25rem;
        line-height: 1.5rem;
    }

    .container-section-4-one .section-4-one-content{
        width: 90%;
        height: 70%;
        padding: 1rem;
    }

    .section-4-one-content h3{
        font-size: 1.25rem;
    }
    .section-4-one-content p{
        font-size: 1rem;
    }

    .section-7-slider .container-section-7-one{
        padding: 1rem;
    }

    .section-7-slider .slider-text-content{
        width: 95%;
    }

    .section-7-slider .slider-text-content :nth-child(1){
        font-size: 1.5rem;
        line-height: 1.75rem;
        margin-bottom: 1.1rem;
    }
    .section-7-slider div :nth-child(2){
        font-size: 1rem;    
    }

    .container-section-8-brands img{
        width: 100%;
        height: 20vh;
    }

    .section-8 .container-section-8-brands{
        width: 90%;
        gap:0.5rem;
    }

    .container-section-8-brands a{
        width: 32.5%;
        min-width: 250px;
        height: 20vh;
    }
    .container-section-8-brands :nth-child(7){
        width: 49%;
        height: 25vh;
        max-width: 250px;
    }

    .container-section-8-brands :nth-child(7) img{
        width: 100%;
        height: 25vh;
    }

    .container-section-8-brands :nth-child(8){
        width: 49%;
        height: 25vh;
        max-width: 250px;
    }
    .container-section-8-brands :nth-child(8) img{
        width: 100%;
        height: 25vh;
    }

    .container-section-8-console .container-section-8-texts{
        width: 40%;
        height: 40vh;
        position: absolute;
        top: 50%;
        padding:  0 2rem;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .container-section-8-texts h3{
        font-size: 1.85rem;
        letter-spacing: 2px;
        color: #1a2456;
        font-weight: 600;
        text-transform: uppercase;
    }

    .container-section-8-texts p{
        font-size: 1.1rem;
        color: #1a2456;
        font-weight: 300;
    }

    .container-section-8-console .section-8-img{
        width: 160%;
    }

    .container-section-8-console .container-section-8-texts{
        width: 60%;
        height: 40vh;
        bottom: 3rem;
        right: 3rem;
        padding:  0 1rem;
    }

}


/* BREAKPOINT: 575px */

@media (max-width:575px) {
    
    .main-container-text h1{
        font-size: 2.5rem;
    }

    .main-container-buttons a{
        font-size: 0.55rem;
        padding: 0.7rem;
        width: 70%;
    }
    
    .section-1 .container-section-1{
        width: 90%;
    }

    .section-1 h2{
        font-size: 1.5rem;
    }

    .section-1 p{
        font-size: 1.1rem;
        line-height: 1.5rem;
    }
    .container-section-2-one img{
        width: 65%;
        height: 45%;
        min-width: 160px;
    }
        
    .container-section-2-two img{
        width: 65%;
        height: 45%;
        min-width: 160px;

    }
    
    .container-section-2-four img{
        width: 65%;
        height: 45%;
        min-width: 160px;
    }

    .container-section-2-six img{
        width: 65%;
        height: 45%;
        min-width: 160px;
    } 

    .container-section-2-eight img{
        width: 65%;
        height: 45%;
        min-width: 160px;
    } 

    .container-section-2-ten img{
        width: 65%;
        height: 45%;
        min-width: 160px;

    } 

    .section-2 h3{
        font-size: 1.2rem;
    }
    .section-2 p{
        font-size: 0.8rem;
        line-height: 1.2rem;
    }

    /* SECTION 3 */
    
    .section-3 .section-3-one-container{
        width: 90%;        
    }

    .container-section-3-one h3{
        font-size: 1.25rem;
    }

    .container-section-3-one p{
        font-size: 1.5rem;
    }

    .two-text-container{
        width: 90%;
        bottom: 12rem;
        left: 1rem;
    }
    

    /* Sticky 2 */
    .container-section-3-two-img img{
        min-width: 110px;
    }
    

    /* Combination */
    .container-section-3-seven-text .seven-container{
        width: 90%;
    }

    .container-section-3-seven-text h2{
        font-size: 1.2rem;
    }

    .container-section-3-seven-text p{
        font-size: 0.8rem;
        line-height: 1.3rem;
    }

    .container-section-3-seven-text button{
        font-size: 0.7rem;
        padding: 0.2rem 1.75rem;
        line-height: 1.2rem;
        border-radius: 50rem;
    }
    
    .container-section-4-one .section-4-one-content{
        width: 90%;
        height: 80%;
        padding: 0.5rem;
    }

    .section-4-one-content h3{
        font-size: 1rem;
    }
    .section-4-one-content p{
        font-size: 0.9rem;
    }

    .section-6 .container-section-6-text{
        width: 80%;
    }

    .section-7-slider .slider-text-content :nth-child(1){
        font-size: 1.1rem;
        line-height: 1.3rem;
        margin-bottom: 0.7rem;
    }
    .section-7-slider div :nth-child(2){
        font-size: 0.9rem;    
    }


    .section-8 .container-section-8-brands{
        width: 90%;
    }

    .container-section-8-brands img{
        width: 100%;
        height: 10vh;
    }

    .container-section-8-brands a{
        width: 40%;
        min-width: 120px;
        height: 10vh;
    }
    .container-section-8-brands :nth-child(7){
        width: 40%;
        min-width: 120px;
        height: 10vh;
    }

    .container-section-8-brands :nth-child(7) img{
        width: 100%;
        height: 10vh;
    }

    .container-section-8-brands :nth-child(8){
        width: 40%;
        min-width: 120px;
        height: 10vh;
    }
    .container-section-8-brands :nth-child(8) img{
        width: 100%;
        height: 10vh;
    }


    .container-section-8-console .section-8-img{
        width: 180%;
    }

    .container-section-8-console .container-section-8-texts{
        width: 70%;
        height: 40vh;
        bottom: 5rem;
        right: 1rem;
        padding:  0 1rem;
    }

    .container-section-8-texts h3{
        font-size: 1.5rem;
    }

    .container-section-8-texts p{
        font-size: 1rem;

    }


    .container-section-8-texts button{
        font-size: 0.75rem;    
        padding: 0.75rem 2rem;
        
    }
    footer .footer-container{
        width: 90%;
        margin-top: 3rem;
        flex-wrap: wrap;
        gap: 2rem;
    }

    footer .footer-suscribe{
        width: 90%;
    }

    .footer-suscribe .footer-suscribe-form{
        width: 100%;
    }

}

@media (max-width:400px) {
    .texts-s3 h3{
        font-size: 1rem;
    }
    
    .texts-s3 p{
        font-size: 0.8rem;
        line-height: 1.25rem;    
    }
    .container-section-3-four-text .four-text{
        width: 70%;
    }
    .two-text-container{
        width: 70%;
        left: 0.75rem;
    }

    /* Combination */
    .container-section-3-seven-text .seven-container{
        width: 90%;
    }

    .container-section-3-seven-text h2{
        font-size: 1.1rem;
    }

    .container-section-3-seven-text p{
        font-size: 0.9rem;
        line-height: 1rem;
    }

    .container-section-3-seven-text button{
        font-size: 0.7rem;
        padding: 0.2rem 1.5rem;
        line-height: 1rem;
        border-radius: 50rem;
        margin-top: 0.5rem;
    }
}


@media (orientation:landscape) and (max-height:480px) {

    .menu-modal .ul-none1{
        font-size: 2.75vh;
        margin-top: 0;
    } 

    .menu-modal .ul-none2{
        font-size: 2.75vh;
        margin-top: 0;
    } 

    .main-container-texts{
        margin-top: 2rem;
        height: 100vh;
    }

    .main-container-text h1{
        font-size: 2.5rem;
    }
    .main-container-text small{
        font-size: 60%;
    } 

    .main-container-text p{
        font-size: 1.2rem;
    }

    .main-container-buttons a{
        font-size: 0.8rem;
        margin: 1rem;
    }

    .section-2 h3{
        font-size: 1.5rem;
    }
    .section-2 p{
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .section-3 .section-3-one-container{
        height: 50vh;
        margin-top: 30vh;
    }

    .section-3 .container-section-3-two{
        height: 250vh;
    }

    .container-section-3-two-img{
        top: 15vh;
    }

    .section-3 .container-section-3-three{
        height: 250vh;
        margin-bottom: 5rem;
    }

    .container-section-3-three-img .three-img{
        top: 30vh;
    }

    .section-3 .container-section-3-four{
        height: 250vh;
        margin-bottom: 5rem;
    }

    .container-section-3-four-img .four-img{
        top: 5vh;
        margin-bottom: 5rem;
    }

    .container-section-3-four-text .four-text{
        bottom: 2rem;
    }

    .section-3 .container-section-3-five{
        height: 250vh;
        margin-bottom: 5rem;
        top: 5vh;
    }

    .container-section-3-five-img{
        margin-bottom: 5rem;
        top: 20vh;
    }

    .container-section-3-five-text .five-container{
        bottom: 5rem;
    }

    .container-section-3-six{
        height: 250vh;
        margin-bottom: 5rem;
    }

    .container-section-3-six-img{
        top: 30vh;
    }

    .container-section-3-seven-text .seven-container{
        width: 95%;
    }

    .container-section-3-seven-text h2{
        font-size: 1.5rem;
    }

    .container-section-3-seven-text p{
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .container-section-3-seven-text button{
        font-size: 0.9rem;
        padding: 0.25rem 2rem;
        line-height: 1.6rem;
    }

    .section-4 .container-section-4-slider{
        height: 110vh;
    }

    .section-5 .container-section-5-texts{
        width: 70%;
        height: 100vh;
        margin-bottom: 25vh;
    }

    .section-5{
        height: 650vh;
    }

    .section-5-100vh{
        height: 550vh;
    }
    .section-5-sticky{
        height: 600px;
        top: -100px;
    }

    .section-5 .container-section-5-tools{
        height: 600px;
        bottom: 0;
        left: 0;
    }

    .tools-container{
        height: 300vh;
        top: 7vh;
        gap: 7rem;
    } 

    .section-7 .section-7-slider{
        height: 200vh;
    }
}


/* REVISAR EL OVERFLOW */