@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');


/*font-family: 'Lora', serif;*/
/*font-family: 'PT Sans', sans-serif;*/
/*font-family: 'Roboto Mono', monospace;*/


:root{
    --white: rgb(247, 247, 247);
    --black: rgb(27, 27, 27);
    --black2: rgb(44, 44, 44);
    --green2: #dddcb2;
    --green: rgb(180, 174, 105);
    --green3: #9c9655;
    --gold: rgb(141, 136, 80); 
    --button-width: 30px;
    --button-height: calc(var(--button-width) * .8);
    --rectangle-height: calc(var(--button-width) * .1);
    --rectangle-radius: calc(var(--button-width) * .04);
    --translate: calc(var(--button-width) * .17);
    --transition: 0.65s;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
}

section{
    min-height: 100vh; 
    width: 100%;
}

/*CSS NAVBAR*/

header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 500ms ease;
    background: var(--black2);
    outline: solid 2px transparent;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 20px rgba(46, 54, 68, 0.144);
    overflow: hidden;
}

header .logo{
    /*width: 20%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo a{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo a img{    
    height: 4rem;
    width: 8.7rem;
}


.nav-container{
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
}

.navbar-links ul{
    display: flex;
    line-height: 5.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.navbar-links li{
    list-style: none;
    line-height: 5.5rem;
    transition: all 250ms ease;     
}

.navbar-links li a{
    text-decoration: none;
    color: var(--white);
    padding: 0 1.5rem 0 1.5rem;
    display: block;
    letter-spacing: 1px;
    transition: all 500ms ease;
    /*font-family: 'Lora', serif;*/
    /*font-family: 'PT Sans', sans-serif;*/
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
   /* font-weight: bold;*/
}

.navbar-links li a:hover{
    color: var(--green);
}

.nav-container .nav-subcontainer{
    width: 10rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-button{
    position: relative;
    width: var(--button-width);
    height: var(--button-height);
    border: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
    display: none;
}

/*CSS FANCY BURGER ----------------------------------------*/

.rectangle{
    position: absolute;
    height: var(--rectangle-height);
    background: black;
    border-radius: var(--rectangle-radius);
    transition: transform var(--transition);
}
    
.rectangle--small{
    width: calc(var(--button-width) / 2);
}
    
.rectangle--top{
    top: 0;
    left: 0; 
    transform-origin: top left;
}
  
.rectangle--top.open{
    transform: translateX(var(--translate)) rotate(45deg);
}
    
.rectangle--middle{
    top: 50%;
    left: 0;
    width: var(--button-width);
    transform: translatey(-50%);
}
   
.rectangle--middle.open{
    transform: translatey(-50%) rotate(-45deg);
}
    
.rectangle--bottom{
    bottom: 0;
    right: 0;
    transform-origin: bottom right;
}
    
.rectangle--bottom.open{  
    transform: translateX(calc(-1 * var(--translate))) rotate(45deg);
}

    
.rectanble-box{
    position: absolute;
    top: 34px;
    left: 40px;
    width: 400px;
    height: 280px;
    border-radius: 33px;
    background: #70f556;
    opacity: 0;
    transform: scale(0);
    transform-origin: top left;
    transition-property: opacity, transform;
    transition-duration: var(--transition);
}
    

/*FINAL CSS FANCY BURGER ----------------------------*/

@media (min-width: 1950px){
    .navbar-links ul li a{
        font-size: 1.1rem;
    }
}

@media (max-width: 1350px){

    .navbar-links{
        position: fixed;
        /*inset: 0 0 0 70%;*/
        inset: 0 0 0 0;
        height: 100vh;
        width: 100%;
        transition: all 500ms ease-out;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /*transform: translateX(30%);*/
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.644);
        backdrop-filter: blur(15px);
        background-clip: padding-box;
        box-shadow: 10px 10px 10px rgba(46, 54, 68, 0.03);
        pointer-events: none;
    }

    .navbar-links[data-visible="true"]{
        /*transform: translateX(0%);*/
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-links ul{
        flex-direction: column;
        align-items: center;
        line-height: 4rem;
    }

    .navbar-links li{
        line-height: 4rem;
    }

    .navbar-links ul li a{
        color: var(--white);
        font-size: 1.8rem;
        font-family: 'Lora', serif;
        font-weight: 500;
    }

    .nav-container{
        height: 5.5rem;
    }

    .toggle-button{
        display: flex;
        z-index: 1050;
    }

    .toggle-button .rectangle{
        background-color: var(--green);
    }
  /*
    .navbar-links[data-visible="true"]{
        transform: translateX(0%);*/
    /* opacity: 1;
    }*/

    .nav-container .btn{
        transform: translateX(-10px);
    }
}

@media (max-width: 700px){
    header .logo a img{    
        height: 3rem;
        width: 7rem;
    }
    .navbar-links ul li a{
        font-size: 1.2rem;
    }
    .navbar-links ul{
        line-height: 3rem;
    }

    .navbar-links li{
        line-height: 3rem;
    }
}

@media (max-width: 450px){
    header .logo a img{    
        height: 4rem;
        width: 6rem;
    }
}

/*FINAL CSS NAVBAR*/

/*BOTON DE CONTACTO*/

.nav-container .btn{
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    line-height: 0.7;
    color: var(--gold);
    padding: 0.5rem 0.8rem;
    border-radius: 2rem;
    border: 2px solid var(--gold);
    text-decoration: none;
    cursor: pointer;
    transition: all 500ms ease;
    z-index: 500;
}

.nav-container .btn:hover{
    color: var(--white);
    background: var(--gold);
}

@media (max-width: 450px){
    .nav-container .btn{    
        transform: translateX(20px);
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 350px){
    .nav-container .btn{    
        transform: translateX(30px);
    }
}

/*FINAL BOTON DE CONTACTO*/




/*INICIO SECTION INTRO ---------------------------------------*/

.intro{
    min-height: 30vh;
    background-size: 100% 100%;
    background-color: rgba(0, 0, 0, 0.596);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./imagenes-nazca/BlancoComprimido.jpg);
    background-size: 100% 100%;
}


.intro .intro-container{
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 11rem;
}


.intro .intro-container h1{
    /*text-align: center;*/
    font-family: 'Lora', serif;
    font-size: 6.2rem;
    font-weight: 700;
    color: transparent;
    text-transform: uppercase;
    background-image: url("./imagenes-nazca/carruselTextil9.JPG");
    /*background-size: 100% 100%;*/
    background-clip: text;
    -webkit-background-clip: text;
}


/* INICIO SECTION ONE ---------------------------------------------------*/

.one{
    position: relative;
    min-height: 55vh;
    background-image: url(./imagenes-nazca/BlancoComprimido.jpg);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 0;
}


.one .one-tittle{
    width: 80%;
    min-height: 12vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 4rem;
}

.one .one-tittle .line{
    width: 35%;
    border: 2px solid var(--gold);
}

.one .one-tittle h1{
    color: var(--black2);
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    font-size: 2.2rem;
    text-align: center;
    text-transform: uppercase;
    /*letter-spacing: 1px;*/
    line-height: 1.7;
}

.one .one-container{
    width: 50%;
    /*min-height: 50vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.one .one-container p{
    font-family: 'PT Sans', sans-serif;
    text-align: justify;
    font-size: 1.7rem;
    line-height: 1.8;
    margin: 3rem 0px 3rem 0px;
    color: var(--black2);
}



/* FINAL SECTION  1----------------*/ 


/*INICIO SECTION 2 -----------------------------------------------------------------------------*/

.two{
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    /*background: linear-gradient(90deg,rgb(207, 207, 207), rgb(240, 240, 240), rgb(207, 207, 207));*/
    flex-wrap: wrap;
    padding: 2rem 0rem;
    background-image: url(./imagenes-nazca/BlancoComprimido.jpg);
    background-size: 100% 100%;
}
/*
.two::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 10rem;
    background: linear-gradient( transparent, var(--white));
    z-index: 1;
}*/


.two .two-container{
    /*width: 60vw;*/
    width: 80vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/*
.two .two-container{
    width: 100%;
    min-height: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: blanchedalmond;
}
*/
.two .pic-box{
    /*width: 26rem;*/
    /*height: 56vh;*/
    width: 22.609375rem;
    height: 33.914375rem;
    margin: 1rem;
    overflow: hidden;
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
}

.two .pic-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 750ms ease;
}

.two .pic-box .white{
    height: 100%;
    width: 100%;
    /*background: rgba(236, 236, 236, 0.925);*/
    background: rgba(29, 29, 29, 0.911);
    position: absolute;
    inset: 0 0 0 0;
    opacity: 0;
    transition: all 500ms ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.two .pic-box .white p{
    font-family: 'PT Sans', sans-serif;
    font-family: 'Roboto Mono', monospace;
    /*font-weight: 500;*/
    /*color: var(--black2);*/
    color: var(--white);
    font-size: 1.25rem;
    margin: 0.5rem 0rem;
    text-align: center;
    padding: 1rem 3rem;
    line-height: 1.5;
}

.two .pic-box .white a{
    text-decoration: none;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.two .pic-box .white a img{
    transition: all 500ms ease;
    object-fit: contain;
}

.two .pic-box .white a:hover img{
    transform: scale(1.15);
}

.two .pic-box:hover .ropa{
    transform: scale(1.15);
}

.two .pic-box:hover .white{
    opacity: 1;
}

.two .pic-box .black{
    position: absolute;
    bottom: 0.8rem;
    left: 5%;
    width: 90%;
    height: 20%;
    background: var(--gold);
    background: rgba(94, 90, 52, 0.945);
    display: flex;
    align-items: center;
    justify-content: center;
}


.two .pic-box .black h2{
    /*font-family: 'Roboto Mono', monospace;*/
    /*font-family: 'Lora', serif;*/
    font-family: 'PT Sans', sans-serif;
    color: var(--white);
    font-size: 1.4rem;
    text-align: center;
    text-transform: uppercase;
}





/*SECTION 3 -------------------------------------*/

.three{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*background: linear-gradient(90deg,rgb(207, 207, 207), rgb(240, 240, 240), rgb(207, 207, 207));
    background: var(--white);*/
    background-image: url(./imagenes-nazca/BlancoComprimido.jpg);
}

.three .materiales{
    width: 80vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-top: 3rem;
    margin-bottom: 3rem;
}

/*
.three .materiales .three-tittle h1{*/
    /*font-family: 'Lora', serif;*/
    /*font-family: 'PT Sans', sans-serif;*/
    /*font-family: 'Roboto Mono', monospace;
    color: var(--black2);
    font-weight: 700;
    font-size: 2.5rem;
}*/

.three .materiales h2{
    font-family: 'Roboto Mono', monospace;
    color: var(--black2);
    font-weight: 500;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.three .materiales p{
    font-family: 'PT Sans', sans-serif;
    color: var(--black2);
    font-size: 1.4rem;
    margin: 0.5rem 0rem;
}


.three .productos{
    width: 80vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
/*
.three .productos h1{
    font-family: 'Roboto Mono', monospace;
    color: var(--black2);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
}*/

.three .productos h2{
    font-family: 'Roboto Mono', monospace;
    color: var(--black2);
    font-weight: 500;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.three .productos p{
    font-family: 'PT Sans', sans-serif;
    color: var(--black2);
    font-size: 1.4rem;
    margin: 0.5rem 0rem;
}

.three .personalizacion{
    width: 80vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 3rem;
}
/*
.three .personalizacion h1{
    font-family: 'Roboto Mono', monospace;
    color: var(--black2);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
}*/

.three .personalizacion h2{
    font-family: 'Roboto Mono', monospace;
    color: var(--black2);
    font-weight: 500;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.three .personalizacion p{
    font-family: 'PT Sans', sans-serif;
    color: var(--black2);
    font-size: 1.4rem;
    margin: 0.5rem 0rem;
}

.three .three-paddings{
    margin: 5rem 0rem;
}

.three-tittle{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
} 

.three-tittle .singleline{
    width: 65%;
    border: 2px solid var(--gold);
}

.three-tittle h1{
    /*font-family: 'Lora', serif;*/
    /*font-family: 'PT Sans', sans-serif;*/
    font-family: 'Roboto Mono', monospace;
    color: var(--black2);
    font-weight: 700;
    font-size: 2.5rem;
    margin-right: 10px;
}

/*FINAL SECTION 3 -------------------------*/


/*swiper ---------------------------------------------------------------*/

.three .three-bg{
    width: 100%;
    /*height: 100%;*/
    height: 52vh;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black2);
}


.three .three-bg .bg-container{
    width: 80%;
    height: 45vh;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 40vh;
    height: 100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}






/*SECTION 4 ---------------------------------------------------------------------------*/


.four{
    min-height: 28vh;
    /*background-image: url(./imagenes-nazca/img-nazca2.jpeg);
    background-size: 100% 100%;*/
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.four a{
    /*font-family: 'Lora', serif;*/
    /*font-family: 'PT Sans', sans-serif;*/
    font-family: 'Roboto Mono', monospace;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--black2);
    padding: 0.7rem;
    text-decoration: none;
    border: 2px solid var(--black2);
    transition: all 500ms ease;
    cursor: pointer;
}

.four a:hover{
    color: var(--green3);
    background: var(--black2);
}

.four h1{
    color: var(--black2);
    margin-bottom: 0.5rem;
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 3rem;
    letter-spacing: 2px;
}

.four p{
    margin-bottom: 1.5rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
}






/*INICIO FOOTER ------------------------------------------------------------------------*/

footer{
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #111;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

footer .container .sec{
    margin-right: 30px;
}

footer .container .sec.aboutus{
    width: 30%;
    text-align: justify;
}


footer .container h2{
    position: relative;
    color: var(--white);
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
    /*font-family: 'PT Sans', sans-serif;*/
}

footer .container h2:before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--green3);
}

footer p{
    color: #999;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.15rem;
}

.quickLinks{
    position: relative;
    width: 25%;
}

.quickLinks ul li{
    list-style: none;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.15rem;
}

.quickLinks ul li a{
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.quickLinks ul li a:hover{
    color: #fff;
}

.contact{
    width: calc(35% - 60px);
    margin-right:  0 !important;
}

.contact .info{
    position: relative;
}

.contact .info img{
    display: inline-block;
    padding: 5px;
    /*width: 40px;
    height: 40px;*/
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50px;
}

.contact .info li{
    display: flex;
    margin-bottom: 16px;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.15rem;
}

.contact .info li span:nth-child(1){
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.contact .info li span{
    color: #999
}

.contact .info li a{
    color: #999;
    text-decoration: none;
    pointer-events: none;
}
 
.contact .info li a:hover{
    color: #fff;
}

@media (max-width: 991px){
    footer{
        padding: 40px;
    }
    footer .container{
        flex-direction: column;
    }
    footer .container .sec{
        margin-right: 0;
        margin-bottom: 40px;
    }
    footer .container .sec.aboutus,
    .quickLinks, 
    .contact{
        width: 100%;
    }
    
}

/*FINAL FOOTER -------------------------*/

/*INICIO QUERIES PARA PRODUCTOS -----------------------------------------------------*/


@media (min-width: 1950px){
    .two .two-container{
        width: 70vw;
    }
}

@media (min-width: 2250px){
    .two .two-container{
        width: 60vw;
    }
}

@media (max-width:1750px){
    .intro .intro-container h1{
        font-size: 5.5rem;
    } 
}

@media (max-width:1500px){
    .two .pic-box{
        width: 20.579375rem;
        height: 30.869375rem;
    }
    .two .pic-box .white p{
        font-size: 1.1rem;
    }   
    .two .pic-box .white a img{
        width: 4.5rem;
    }    
}


@media (max-width:1480px){
    .intro .intro-container h1{
        font-size: 4.6rem;
        /*width: 80%;*/
    } 
}

@media (max-width:1400px){
    .one .one-tittle h1{
        font-size: 2rem;
    }
    .four{
        min-height: 35vh;
    }
}

@media (max-width:1354px){
    .two .pic-box{
        width: 18.5rem;
        height: 28rem;
    }
    .two .pic-box .white p{
        font-size: 1rem;
        line-height: 1.45;
    }   
    .two .pic-box .white a img{
        width: 4rem;
    }
    .two .pic-box .black h2{
        font-size: 1.2rem;
    }
     
}

@media (max-width:1300px){
    .two .two-container{
        width: 80vw;
    }
    .two .pic-box .black h2{
        font-size: 1.2rem;
    }
    .three .three-paddings{
        margin: 6rem 0rem;
    }
    .three-tittle h1{
        font-size: 2rem;
    }
    .three .materiales h2{
        font-size: 1.4rem;
    }
    .three .materiales p{
        font-size: 1.2rem;
    }
    .three .productos h2 {
        font-size: 1.4rem;
    }
    .three .productos p{
        font-size: 1.2rem;
    }
    .three .personalizacion h2{
        font-size: 1.4rem;
    }
    .three .personalizacion p{
        font-size: 1.2rem;
    }
}

@media (max-width:1229px){
    .two .pic-box{
        width: 20.579375rem;
        height: 30.869375rem;
    }
    .two .pic-box .white p{
        font-size: 1.1rem;
        line-height: 1.5;
    }   
}

@media (max-width:1210px){
    .intro .intro-container h1{
        font-size: 4.2rem;
    }
}


@media (max-width:1074px){
    .intro .intro-container h1{
        font-size: 4.2rem;
    }
}


@media (max-width:1100px){
    .one .one-tittle h1{
        font-size: 1.9rem;
    }
    .two .pic-box .black h2{
        font-size: 1.1rem;
    }
    .three-tittle{
        margin-bottom: 3rem;
    }
    .three-tittle h1{
        font-size: 1.9rem;
    }
    .three .materiales h2{
        font-size: 1.3rem;
    }
    .three .materiales p{
        font-size: 1.15rem;
    }
    .three .productos h2 {
        font-size: 1.3rem;
    }
    .three .productos p{
        font-size: 1.15rem;
    }
    .three .personalizacion h2{
        font-size: 1.3rem;
    }
    .three .personalizacion p{
        font-size: 1.15rem;
    }
    .four{
        min-height: 35vh;
    }
    .four h1{
        font-size: 1.8rem;
    }
    .four p{
        font-size: 1rem;
        text-align: center;
    }
    .four h2{
        font-size: 1rem;
    }
}


@media (max-width:900px){
    .intro .intro-container h1{
        font-size: 4.3rem;
        text-align: center;
    }
    .one .one-tittle h1{
        font-size: 1.7rem;
    }
    .two .pic-box .white p{
        font-size: 1.1rem;
    }
    .three-tittle h1{
        font-size: 1.7rem;
    }
    .three .materiales h2{
        font-size: 1.2rem;
    }
    .three .materiales p{
        font-size: 1.1rem;
    }
    .three .productos h2 {
        font-size: 1.2rem;
    }
    .three .productos p{
        font-size: 1.1rem;
    }
    .three .personalizacion h2{
        font-size: 1.2rem;
    }
    .three .personalizacion p{
        font-size: 1.1rem;
    }
    .four{
        min-height: 35vh;
    }
    .four h1{
        font-size: 1.8rem;
    }
    .four p{
        font-size: 1rem;
    }
    .four a{
        font-size: 1rem;
    }
}

@media (max-width:850px){
    .intro .intro-container{
        padding-top: 9.5rem;
    }
}



@media (max-width:700px){
    .intro .intro-container h1{
        font-size: 3.7rem;
    }
    .one .one-tittle h1{
        font-size: 1.6rem;
    }
    /*.two .pic-box{
        height: 28.069375rem;
        width: 18.713125rem;
    }*/
    .three-tittle h1{
        font-size: 1.6rem;
        margin-right: 1rem;
    }
    .three .materiales h2{
        font-size: 1.2rem;
        text-align: justify;
    }
    .three .materiales p{
        font-size: 1.1rem;
        text-align: justify;
    }
    .three .productos h2 {
        font-size: 1.2rem;
        text-align: justify;
    }
    .three .productos p{
        font-size: 1.1rem;
        text-align: justify;
    }
    .three .personalizacion h2{
        font-size: 1.2rem;
        text-align: justify;
    }
    .three .personalizacion p{
        font-size: 1.1rem;
        text-align: justify;
    }
    .four{
        min-height: 35vh;
    }
    .four h1{
        font-size: 1.8rem;
    }
    .four p{
        font-size: 1rem;
        width: 80vw;
    }
    .four a{
        font-size: 1rem;
    }
}

@media (max-width:600px){
    .intro .intro-container h1{
        font-size: 3.3rem;
    }
}

@media (max-width:525px){
    .intro .intro-container h1{
        font-size: 3rem;
    }
}

@media (max-width:500px){
    .two .pic-box{
        width: 17.5rem;
        height: 26.8rem;
    }   
    .two .pic-box .white p{
        font-size: 1rem;
        line-height: 1.4;
    } 
}


@media (max-width:400px){
    .intro .intro-container h1{
        font-size: 2.5rem;
    }
    .one .one-tittle{
        padding-top: 1rem;
    }
    .one .one-tittle h1{
        font-size: 1.4rem;
    }
    .two .pic-box{
        width: 17.5rem;
        height: 23.8rem;
    }  
    .two .pic-box .white p{
        font-size: 0.95rem;
    }
    .two .pic-box .black h2{
        font-size: 1.1rem;
    }
    .three-tittle h1{
        font-size: 1.5rem;
    }
    .three .materiales h2{
        font-size: 1.2rem;
    }
    .three .materiales p{
        font-size: 1rem;
    }
    .three .productos h2 {
        font-size: 1.2rem;
    }
    .three .productos p{
        font-size: 1rem;
    }
    .three .personalizacion h2{
        font-size: 1.2rem;
    }
    .three .personalizacion p{
        font-size: 1rem;
    }
    .four{
        min-height: 40vh;
    }
    .four h1{
        font-size: 1.8rem;
    }
    .four p{
        font-size: 1rem;
        width: 80vw;
    }
    .four a{
        font-size: 1rem;
    }
}


@media (max-width:375px){
    .intro .intro-container h1{
        font-size: 2.2rem;
    }
}




/*parrafos*/
/*
@media (max-width:1270px){
    .one .one-container p{
        font-size: 1.5rem;
    }
}



@media (max-width:700px){
    .one .one-container p{
        font-size: 1.1rem;
        width: 70vw;
    }
}

@media (max-width:600px){
    .one .one-container p{
        font-size: 1.2rem;
        width: 60vw;
    }
}

@media (max-width:500px){
    .one .one-container p{
        width: 80vw;
    }
}

@media (max-width:400px){ 
    .one .one-container p{
        margin: 1rem 0 1rem 0;
        font-size: 1.1rem;
        width: 70vw;
    }
}

@media (max-width:375px){
    .one .one-container p{
        width: 80vw;
        font-size: 1rem;
    }
}*/


/*parrafo queries*/

@media (max-width:1270px){
    .one .one-container p{
        font-size: 1.5rem;
    }
}

@media (max-width:1100px){
    .one .one-container p{
        width: 60vw;
    }
}

@media (max-width:900px){
    .one .one-container p{
       font-size: 1.3rem;
    }
}


@media (max-width:600px){
    .one .one-container p{
       font-size: 1.2rem;
    }
}

@media (max-width:500px){
    .one .one-container p{
        width: 80vw;
    }
}

@media (max-width:380px){
    .one .one-container p{
        font-size: 1rem;
    }
}

/*queries botonsito*/

@media (max-width:1110px){
    .four a{
        font-size: 1.2rem;
    }
}

@media (max-width:380px){
    .four a{
        font-size: 1rem;
    }
}

@media (max-width:1680px){
    .four{
        min-height: 35vh;
    }
}

@media (max-width:1400px){
    .four{
        min-height: 40vh;
    }
}

@media (max-width:1100px){
    .four{
        min-height: 30vh;
        text-align: center;
    }
}

@media (max-width:600px){
    .four{
        min-height: 35vh;
        text-align: center;
    }
}

@media (max-width:380px){
    .four{
        min-height: 35vh;
        text-align: center;
    }
}

