@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lustria&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

/*font-family: 'Source Code Pro', monospace;
font-family: 'Syne', sans-serif;*/
/*font-family: 'Roboto Mono', monospace;*/
/*font-family: 'Lustria', serif;*/
/*font-family: 'Lora', serif;*/

:root{
    --white: rgb(247, 247, 247);
    --black: rgb(28, 28, 28);
    --cream: #F2ECC1;
    --braun: #9c5a28;
    --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;
}

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: transparent;
    /*outline: solid 2px transparent;*/
    background-clip: padding-box;
    /*box-shadow: 10px 10px 20px rgba(46, 54, 68, 0.144);*/
    display: flex;
    align-items: center;
    justify-content: center;
    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 svg{    
    height: 8rem;
    width: 11rem;
    margin: 0.5rem 0 0.5rem 0;
    transition: all 500ms ease;
}*/

header .logo a img{    
    width: 8rem;
    margin: 0.5rem 0 0.5rem 0;
    transition: all 500ms ease;
}


.nav-container{
    width: 80%;
    /*margin: auto;*/
    display: flex;   
    align-items: center;
    justify-content: center;   /*CAMBIADO PARA DISPLAY CONTENT*/
    background-color: transparent;
}

.navbar-links ul{
    /*display: flex;*/     /*COMENTADO PARA DISPLAY CONTENT*/
    line-height: 5.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.navbar-links li{
    position: relative;
    list-style: none;
    line-height: 5.5rem;
    width: 11.43625rem;     /*implementado para que se vea mejor PARA DISPLAY CONTENT*/
    transition: all 250ms ease;  
}

.navbar-links li::before{
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

.navbar-links li a{
    text-align: center;
    text-decoration: none;
    color: var(--white);
    padding: 0 1.5rem 0 1.5rem;
    display: block;
    /*letter-spacing: 2px;*/
    transition: all 500ms ease;
    font-style: italic;
    font-weight: 400;
    font-family: 'Lora', serif;
    font-size: 1.25rem;
}


.navbar-links li a:hover{
    color: var(--braun);
}

.toggle-button{
    position: relative;
    width: var(--button-width);
    height: var(--button-height);
    border: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
    display: none;
}


.navbar-links, ul{
    display: contents;
}

ul > li:nth-of-type(-n + 3){
    order: 1;
}


ul > li:nth-of-type(n + 4){
    order: 3;
}

.logo{
    order: 2;
}







/*CSS FANCY BURGER ----------------------------------------*/

.rectangle{
    position: absolute;
    height: var(--rectangle-height);
    background: rgb(49, 49, 49);
    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 ----------------------------*/



/*CHANGING HEADER ON SCROLL*/

.nav-scrolled{
    background: var(--white);
    box-shadow: 10px 10px 20px rgba(46, 54, 68, 0.144);
}

.nav-scrolled li a{
    color: var(--black);
}

.nav-scrolled li::before{
    background-color: var(--braun);
}


.nav-scrolled .cls-1{
    fill: var(--black) !important;
}

.nav-scrolled .cls-2{
    fill: var(--black) !important;
}
.nav-scrolled .cls-4{
    fill: var(--black) !important;
}
.nav-scrolled .cls-5{
    fill: var(--black) !important;
}
.nav-scrolled .cls-6{
    fill: var(--black) !important;
}

/*FINAL CHANGING HEADER ON SCROLL*/




@media (min-width: 1950px){
    .navbar-links ul li a{
        font-size: 1.4rem;
    }
}

@media (max-width: 1375px){

    .nav-scrolled{
        background: rgba(37, 37, 37, 0.685);
        box-shadow: 10px 10px 20px rgba(46, 54, 68, 0.144);
    }

    ul > li:nth-of-type(-n + 2){
        order: 0;
    }
    
    ul > li:nth-of-type(n + 3){
        order: 0;
    }
    
    .logo{
        order: 0;
    }

    ul{
        display: flex;
    }

    .nav-container{
        width: 90%;
        justify-content: space-between; 
    }


    .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: flex-start;
        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{
        width: 30vw;     /*siempre emparejar con la propiedad translateX*/
        flex-direction: column;
        align-items: center;
        line-height: 4rem;
    }

    .navbar-links li{
        line-height: 4rem;
        width: max-content;
    }

    .navbar-links li::before{
        display: none;
    }

    .navbar-links ul li a{
        color: var(--white);
        font-size: 1.6rem;
        text-align: left;
    }

    .nav-container{
        height: 7rem;
    }

    .toggle-button{
        display: flex;
        z-index: 1050;
    }

    .toggle-button .rectangle{
        background-color: var(--white);
    }
  /*
    .navbar-links[data-visible="true"]{
        transform: translateX(0%);*/
    /* opacity: 1;
    }*/

    .nav-container .btn{
        transform: translateX(-10px);
    }

    header .logo a img{    
        width: 6rem;
    }

/*
    header{
        position: absolute;
    }*/
    
}


@media (max-width: 1000px){
    .navbar-links{
        inset: 0 0 0 60%;
        transform: translateX(40%);
    }
    .navbar-links li{
        line-height: 3.5rem;
    }
    .navbar-links ul{
        width: 40vw;
    }
}


@media (max-width: 700px){
    header .logo a img{    
        width: 6rem;
    }
    .navbar-links ul li a{
        font-size: 1.4rem;
    }
    .navbar-links ul{
        line-height: 3rem;
    }

    .navbar-links li{
        line-height: 3rem;
    }
}

@media (max-width: 650px){
    .navbar-links{
        inset: 0 0 0 55%;
        transform: translateX(45%);
    }
    .navbar-links ul{
        width: 45vw;
    }
}

@media (max-width: 550px){
    .navbar-links{
        inset: 0 0 0 0%;
        transform: translateX(100%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .navbar-links ul{
        width: 100vw
    }
    .navbar-links ul li a{
        font-size: 1.3rem;
    }
    .navbar-links ul li a{
        text-align: center;
    }
}

@media (max-width: 500px){
    .nav-container{
        height: 8rem;
    }
}


/*FINAL CSS NAVBAR*/

/*SECTION SLIDER ------------------------------------------ */

.banner{
    position: relative;
    height: 90vh;
    width: 100%;
    /*background-image: url(./imagenes-nazca/texturasTextiles5-05.png);
    background-size: 100% 100%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .bannerContent{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    /*background: rgba(0, 0, 0, 0.034); */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.034) 0%, rgba(0, 0, 0, 0.3) 97%);
}

.banner .bannerContent img{
    height: 35vh;
    width: 70vh;
}

.banner .bannerContent h1{  
    text-align: center;
    font-size: 5rem;
    font-weight: 400;
    /*font-style: italic;*/
    font-family: 'Lora', serif;
    color: var(--white);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    /*background-position: center;*/
    /*background-size: contain;*/
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}

.swiper-slide .bajo{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}

.swiper-slide .medio{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;
}


/*SECTION TWO ------------------------------------ */


.two{
    min-height: 75vh;
    background-color: var(--white);
    padding: 6rem 0 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.two .ornamento{
    width: 30rem;
}

.two .two-container{
    width: 80vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 0 5rem 0;
}

.two .two-container img{
    width: 30rem;
    height: 21rem;
}

.two .two-container .description{
    margin-left: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 50rem;
}

.two .two-container h1{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    color: var(--black);
    margin-bottom: 0.7rem;
}

.two .two-container h2{
    line-height: 1.5;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--braun);
    font-style: italic;
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
}

.two .two-container p{
    line-height: 1.5;
    text-align: justify;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--black);
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.5rem;
}

.two .two-container .description a{
    padding: 0.8rem;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--braun);
    /*font-style: italic;
    font-family: 'Lora', serif;*/
    font-family: 'Syne', sans-serif;
    margin-bottom: 1rem;
    border: 1px solid var(--braun);
    text-decoration: none;
    transition: all 500ms ease;
}

.two .two-container .description a:hover{
    color: var(--white);
    background-color: var(--braun);
}


.two .line{
    width: 50vw;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.315);
}


/*SECTION THREE ------------------------- */

/*SECTION 4 --------------------------------------------- */


.four{
    padding: 6rem 0 6rem 0;
    min-height: 90vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.four .tittle{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.four .tittle h1{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.four .tittle p{
    width: 50vw;
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--braun);
    font-family: 'Syne', sans-serif;
    margin-bottom: 3rem;
}

.four .tittle img{
    width: 29rem;
    height: 4rem;
    object-fit: fill;
}

.four .four-container{
    width: 80vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 0 5rem 0;
}

.four .four-container img{
    width: 30rem;
    height: 21rem;
}

.four .four-container .description{
    margin-left: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 50rem;
}

.four .four-container h1{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    color: var(--black);
    margin-bottom: 0.7rem;
}

.four .four-container h2{
    line-height: 1.5;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--braun);
    font-style: italic;
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
}

.four .four-container p{
    line-height: 1.5;
    text-align: justify;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--black);
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.5rem;
}

.four .four-container .description a{
    padding: 0.8rem;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--braun);
    /*font-style: italic;
    font-family: 'Lora', serif;*/
    font-family: 'Syne', sans-serif;
    margin-bottom: 1rem;
    border: 1px solid var(--braun);
    text-decoration: none;
    transition: all 500ms ease;
}

.four .four-container .description a:hover{
    color: var(--white);
    background-color: var(--braun);
}


.four .line{
    width: 50vw;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.315);
    margin: 4rem 0 4rem 0;
}


/*Gallery ------------------------------ */

.gallery{
    min-height: 70vh;
    padding: 1rem 0 1rem 0;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
    grid-gap: 1rem;
}

.gallery-container .gallery-item{
    overflow: hidden;
}

.gallery-container .gallery-item:hover img{
    transform: scale(1.1);
}

.gallery-container .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}

.gallery-item:nth-child(4) {
    grid-column-start: span 2;
}

.gallery-item:nth-child(5) {
    grid-row-start: span 2;
}

.gallery-item:nth-child(9) {
    grid-column-start: span 2;
}

@media (min-width:500px){
    .gallery-container{
        grid-auto-rows: 250px;
    }
}

@media (min-width:768px){
    .gallery-container{
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-item:nth-child(3) {
        grid-column-start: span 2;
    }
    
    .gallery-item:nth-child(4) {
        grid-column-start: span 2;
    }
    
    .gallery-item:nth-child(5) {
        grid-row-start: span 2;
        grid-column-start: span 2;
    }
    .gallery-item:nth-child(8) {
        grid-column-start: span 2;
    }
    .gallery-item:nth-child(9) {
        grid-column-start: span 2;
    }
}

@media (min-width:1024px){
    .gallery-container{
        grid-template-columns: repeat(5, 1fr);
    }
    .gallery-item:nth-child(1) {
        grid-row-start: span 2;
        grid-column-start: span 2;
    }
    .gallery-item:nth-child(3) {
        grid-row-start: span 1;
        grid-column-start: span 1;
    }
    .gallery-item:nth-child(4) {
        grid-row-start: span 2;
        grid-column-start: span 1;
    }
    .gallery-item:nth-child(6) {
        grid-row-start: span 1;
        grid-column-start: span 2;
    }
    .gallery-item:nth-child(9) {
        grid-column-start: span 1;
    }
}

/* SECCION FORMULARIO DE CONTACTO ------------------------------ */

.formulario{
    padding: 6rem 0 6rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background: var(--white);
}

.formulario .tittle{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 3.5rem;
}

.formulario .tittle h1{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.formulario .tittle p{
    width: 50vw;
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--braun);
    font-family: 'Syne', sans-serif;
    margin-bottom: 2rem;
}

.formulario .tittle img{
    width: 29rem;
}

.form-container{
    justify-content: center;
    align-items: center;
    /*position: relative;*/
    width: 80%;
    min-width: 900px;
    min-height: 550px;
    display: flex;
    z-index: 1000;
    background-color: var(--white);
}


.form-container .contactform{
    position: relative;
    padding: 70px 50px;
    width: 70%;
    height: 100%;
    transition: 0.5s linear;
}

.form-container .contactform::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32%;
    height: 50%;
    border-top: 2px solid var(--braun);
    border-left: 2px solid var(--braun);
    pointer-events: none;
}

.form-container .contactform::after{
    content: "";
    position: absolute;
    right:  0;
    bottom: 0;
    width: 32%;
    height: 50%;
    border-right: 2px solid var(--braun);
    border-bottom: 2px solid var(--braun);
    pointer-events: none;
}

.form-container .contactform h2{
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Lora', serif;
}

.form-container .contactform .form{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
    font-family: 'Lora', serif;
    color: var(--black);
    font-weight: 400;
    font-style: italic;
}

.form-container .contactform .form .inputBox{
    position: relative;
    margin-bottom: 35px;
    
}

.form-container .contactform .form .inputBox.w50{
    width: 47%;
    
}

.form-container .contactform .form .inputBox.w100{
    width: 100%;
    
    
}

.form-container .contactform .form .inputBox input,
.form-container .contactform .form .inputBox textarea{
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 1px solid #777;
    background-color: var(--white);
}

.form-container .contactform .form .inputBox textarea{
    height: 120px;
}

.form-container .contactform .form .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: 0.3s;
}

.form-container .contactform .form .inputBox input:focus ~ span,
.form-container .contactform .form .inputBox input:valid ~ span,
.form-container .contactform .form .inputBox textarea:focus ~ span,
.form-container .contactform .form .inputBox textarea:valid ~ span{
    transform: translateY(-20px);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #9c5a28;
    font-weight: 500;
}

.form-container .contactform .form .inputBox input[type="submit"]{
    position: relative;
    cursor: pointer;
    background: transparent;
    color: #9c5a28;
    border: none;
    max-width: 150px;
    padding: 0.8rem;
    border: 1px solid #9c5a28;
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    transition: 350ms linear;
}

.form-container .contactform .form .inputBox input[type="submit"]:hover{
    background: #9c5a28;
    
    color: var(--white);
}

@media (max-width : 1200px){
    .form-container{
        min-width: auto;
        margin: 20px;
    }

    .form-container .contactinfo{
        top: 0;
        height: 550px;
        position: relative;
        box-shadow: none;
    }

    .form-container .contactform{
        position: relative;
        width: calc(100% - 350px);
        padding-left: 0;
        margin-left: 0;
        padding: 40px;
        height: 550px;
        box-shadow: none;
    }
}

@media (max-width : 1100px){
    .form-container{
        display: flex;
        flex-direction: column-reverse;
    }
    .form-container .contactform{
        width: 80%;
        height: auto;
    }
    .form-container .contactinfo{
        width: 100%;
        height: auto;
        flex-direction: row;
    }
    .form-container .contactinfo ul.sci{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width : 650px){
    .form-container .contactform{
        padding: 25px;
    }
    .form-container .contactinfo{
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }
    .form-container .contactinfo ul.sci{
        margin-top: 40px;
    }
    .form-container .contactform .form .inputBox.w50 {
        width: 100%;
    }
    .form-container .contactform::before{
        display: none;
    }
    .form-container .contactform::after{
        display: none;
    }
}

@media (max-width : 550px){
    .form-container .contactform{
        width: 100%;
    }
}

/*INICIO FOOTER ----------------------------------- */

footer{
    width: 100%;
    min-height: 30rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 3rem 0 3rem 0;
    background-color: var(--black);
}

.footer-container{
    width: 75vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

footer .col{
    width: 25rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0 1.5rem 0 1.5rem;
    padding: 2rem 0 2rem 0;
}

footer .col h1{
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    text-transform: uppercase;
    font-style: italic;
}

footer .col p{
    line-height: 1.5;
    color: #999;
    text-align: justify;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Syne', sans-serif;
    margin-bottom: 1rem;
}


footer .col2{
    width: 13rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0 2rem 0 2rem;
    padding: 2rem 0 2rem 0;
}

footer .col2 h1,
footer .col3 h1{
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    text-transform: uppercase;
    font-style: italic;
}

footer .col2 li{
    list-style: circle;
    list-style-position: inside;
    margin-bottom: 0.7rem;
    color: var(--white);
    color: #999;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Syne', sans-serif;
}

footer .col3 li{
    list-style: none;
    line-height: 1.5;
    margin-bottom: 0.7rem;
    color: var(--white);
    color: #999;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Syne', sans-serif;
}

footer .col2 li a,
footer .col3 li a{
    text-decoration: none;
    color: var(--white);
    color: #999;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Syne', sans-serif;
}

footer .col3{
    width: 25rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0 1.5rem 0 1.5rem;
    padding: 2rem 0 2rem 0;
}

footer .map{
    width: 22rem;
    height: 22rem;
}

footer .map iframe{
    width: 100%;
    height: 100%;
}

footer ul{
    display: block;
}

@media(max-width: 1360px){
    footer .col{
        width: 20rem;
    }
    footer .col3{
        width: 20rem;
    }
    footer .col p{
        font-size: 1rem;
    }
    footer .col2{
        margin: 0 1rem 0 1rem;
    }
    footer .col2 li a, footer .col3 li a{
        font-size: 1rem;
    }
    footer .col3 li{
        font-size: 1rem;
    }
    footer .map{
        width: 19rem;
        height: 19rem;
    }
}


@media(max-width: 1100px){
    footer{
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .footer-container{
        width: 80vw;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }
    footer .col, footer .col2,  footer .col3{
        height: max-content;
    }
    footer .col{
        width: 80vw;
        margin: 0;
    }
    footer .col p{
        font-size: 1.1rem;
    }
    footer .col2{
        margin: 0;
    }
    footer .col3{
        margin: 0;
    }
    footer .col2 li a, footer .col3 li a{
        font-size: 1.1rem;
    }
    footer .col3 li{
        font-size: 1.1rem;
    }
    footer .map{
        width: 60vw;
        height: 19rem;
    }
}

@media(max-width: 550px){
    footer .map{
        width: 80vw;
    }
    footer .col3{
        width: 80vw;
    }
}



/* INICIO MEDIA QUERIES -------------------------------------------- */

/*SECTION BANNER */


@media (max-width: 1301px){
    .banner .bannerContent h1{
        font-size: 4rem;
    }
}

@media (max-width: 1050px){            /*para banner con título largo (si fuera corto usar 900px*/
    .banner .bannerContent h1{
        font-size: 3rem;
        padding: 0 1rem 0 1rem;
    }
   /* .one .shader p{
        margin-bottom: 0.5rem;
    }*/
}

@media (max-width: 800px){
    .banner{
        height: 80vh;
    }
  }

@media (max-width: 650px){
    .banner .bannerContent h1{
        font-size: 2.4rem;
    }
}

@media (max-width: 550px){
    .banner .bannerContent h1{
        font-size: 2rem;
        width: 80vw;
        padding: 0 0 0 0;
    }
}


/*SECTION TWO -----------------------------*/

@media (max-width: 1301px){
    .two .ornamento{
        width: 22rem;
    }
    .two .two-container{
        flex-direction: column-reverse;
    }
    .two .two-container .description{
        margin-left: 0rem;
        margin-bottom: 5rem;
        align-items: center;
        width: 60vw;
    }
    .two .two-container h1{
        font-size: 2rem;
    }
    .two .two-container .description a{
        margin-top: 1rem;
    }
}


@media (max-width: 1050px){
    .two .two-container h1{
        font-size: 2rem;
    }
}


@media (max-width: 650px){
    .two{
        padding: 3rem 0 6rem 0;
    }
    .two .two-container{
        margin: 3rem 0 5rem 0;
    }
    .two .ornamento{
        width: 20rem;
    }
    .two .two-container img{
        width: 70vw;
        object-fit: cover;
    }
}

@media (max-width: 550px){
    .two .ornamento{
        width: 18rem;
    }
    .two .two-container h1{
        font-size: 1.8rem;
    }
    .two .two-container .description{
        width: 80vw;
    }
    .two .two-container img{
        width: 80vw;
    }
}

@media (max-width: 450px){
    .two .two-container h1{
        font-size: 1.5rem;
    }
    .two .ornamento{
        width: 15rem;
    }
}


/*SECTION FOUR ----------------------------------*/


@media (max-width: 1301px){
    .four .tittle img{
        width: 22rem;
    }
    .four .four-container{
        flex-direction: column;
    }
    .four .four-container img{
        margin-bottom: 5rem;
    }
    .four .four-container .description{
        margin-left: 0rem;
        align-items: center;
        width: 60vw;
    }
    .four .four-container h1,
    .four .tittle h1{
        font-size: 2rem;
    }
}

@media (max-width: 1050px){
    .four .four-container h1,
    .four .tittle h1{
        font-size: 2rem;
    }
}

@media (max-width: 800px){
    .four .tittle h1{
        width: 80vw;
        text-align: center;
    }
}


@media (max-width: 650px){
    .four .tittle img{
        width: 20rem;
    }
    .four .four-container img{
        width: 70vw;
        object-fit: cover;
    }
}

@media (max-width: 550px){
    .four .tittle img{
        width: 18rem;
    }
    .four .four-container h1,
    .four .tittle h1{
        font-size: 1.8rem;
    }
    .four .four-container .description{
        width: 80vw;
    }
    .four .four-container img{
        width: 80vw;
    }
}

@media (max-width: 450px){
    .four .four-container h1,
    .four .tittle h1{
        font-size: 1.5rem;
    }
    .four .tittle img{
        width: 15rem;
    }
}


/*SECTION FORMULARIO */

@media (max-width: 1300px){
    .formulario .tittle img{
        width: 22rem;
    }
}

@media (max-width: 1050px){
    .formulario .tittle h1{
        text-align: center;
        font-size: 1.6rem;
    }
}

@media (max-width: 850px){
    .form-container .contactform::before{
        width: 23%;
        height: 35%;
    }
    .form-container .contactform::after{
        width: 23%;
        height: 35%;
    }
    .formulario .tittle{
        margin-bottom: 0rem;
    }
}

@media (max-width: 800px){
    .formulario .tittle h1{
        font-size: 1.3rem;
    }
}

@media (max-width: 650px){
    .formulario .tittle h1{
        font-size: 1.1rem;
        padding: 0 1rem 0 1rem;
    }
    .formulario .tittle img{
        width: 20rem;
    }
}

@media (max-width: 550px){
    .formulario .tittle img{
        width: 18rem;
    }
}

@media (max-width: 400px){
    .formulario .tittle img{
        display: none;
    }
    /*.formulario .tittle{
        margin-bottom: 0rem;
    }*/
}