@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;
}

body{
    background-color: var(--white);
}

/*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(80, 26, 26);
    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: #f5cb56;
    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.25); 
    /*background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.3) 97%);*/
}

.banner .bannerContent img{
    height: 35vh;
    width: 70vh;
}

.banner .bannerContent p{
    text-align: center;
    letter-spacing: 2px;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    font-family: 'Lora', serif;
    color: var(--white);
}

.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%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.swiper-slide .caballo{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 5%;
}

.swiper-slide .alto {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 65%;
}



/*SECTION 2 ---------------------------------*/


.two{
    position: relative;
    padding: 7rem 0 7rem 0;
    min-height: 70vh;
    width: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/*
.two::before{
    content: '';
    position: absolute;
    top: 3rem;
    left: 50%;
    margin-left: -14.5rem;
    width: 29rem;
    height: 4rem;
    background-image: url("./imgHuachipa/Ornamento3.svg");
    background-repeat: no-repeat;
}*/

.two img{
    width: 30rem;
    margin-bottom: 2.5rem;
}

.two h1{
    text-align: center;
    letter-spacing: 2px;
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    color: var(--braun);
    color: var(--black);
    margin-bottom: 1rem;
}

.two p{
    width: 50vw;
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--black);
    font-family: 'Syne', sans-serif;
}

#p1{
    margin-bottom: 1rem;
}

#p3{
    color: var(--black);
}

#p2{
    width: 40vw;
    line-height: 1.4;
    text-align: justify;
    color: var(--braun);
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
}



/*SECTION THREE ------------------------------------------ */


.tres {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
}

.cuadro{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 65vh;
    width: 50%;
    background-color: rgb(28, 28, 28);
    color: var(--white);
}

.marco{
    position: relative;
}

.marco::before{
    content: '';
    position: absolute;
    top: 2.05rem;
    left: 2rem;
    height: 15rem;
    width: 15rem;
    background-image: url("./imgHuachipa/Ornamento4.svg");
    background-size: contain;
}

.marco::after{
    content: '';
    position: absolute;
    bottom: 2.05rem;
    right: 2rem;
    height: 15rem;
    width: 15rem;
    background-image: url("./imgHuachipa/Ornamento6.svg");
    background-size: contain;
}

.cuadro h2 {
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 400;
}    

.tres .cuadro .line{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    margin-bottom: 1rem;
}

.tres .cuadro .line span{
    border: 1px solid #9c5a2877;
    width: 80px; 
    margin: 0 1em;  
}

.tres .cuadro p{
    width: 60%;
    font-size: 1.15rem;
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.tres .cuadro a{
    text-decoration: none;
    color: #9c5a28;
    padding: 0.8rem;
    border: 1px solid #9c5a28;
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 350ms ease;
}

.tres .cuadro a:hover {
    background-color: #9c5a28;
    color: var(--white);
}

.tres .cuadro.img{
    background-image: url(./imgHuachipa/fotosComprimidas/cambio8CC.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.tres .cuadro.img1{
    background-image: url(./imgHuachipa/fotosComprimidas/photoshop51.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.tres .cuadro.imgque{
    background-image: url(./imgHuachipa/fotosComprimidas/photoshop51.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: none;
}

.tres .cuadro.img2{
    background-image: url(./imgHuachipa/fotosComprimidas/ACSalto13CC.jpg);
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-size: cover;
}
/*
.tres .cuadro.img3{
    background-image: url(./imgHuachipa/volteo.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.tres .cuadro.imgque1{
    background-image: url(./imgHuachipa/volteo.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: none;
}
*/





/*SECTION 4 --------------------------------------- */

.cuatro{
    min-height: 100vh;
    width: 100%;
    background-color: var(--white);
}

.cuatro .contenedor_wrap, .content_contenedor {
    width: 50vw;
    margin: 0 auto;
}

.cuatro, .contenedor_wrap {
    margin: 0 auto;
}

.cuatro .contenedor, .contenedor-fluid {
    margin-right: auto;
    margin-left: auto;
}

.cuatro div {
    border: 0;
    outline: 0;
    -webkit-font-smoothing: antialiased;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    line-height: 150%;
}

.cuatro {
    padding: 6rem 0 6rem 0;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cuatro .contenedor:after, .contenedor:before {
    clear: both;
    width: 100%;
    height: 0;
    display: block;
}

.cuatro .titulo {
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.9rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    color: var(--black);
}

.cuatro h2 {
    word-wrap: break-word;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.cuatro .pequeno_margen {
    margin-bottom: 23px;
}

.cuatro .columnas_wrap {
    margin-left: 0;
    margin-right: -30px;
    word-wrap: break-word;
}

.row>[class*="column-"], .columnas_wrap>[class*="column-"] {
    display: inline-block;
    vertical-align: top;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.column-1_2{
    width: 50%;
}

.dropcaps{
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
    text-align: justify;
}

.dropcaps .primera_letra {
    display: block;
    float: left;
    margin: 5px 9px 2px 0;
    padding: 0 15px;
    line-height: 1.5;
    border-width: 3px;
    border-style: solid;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 2rem;
}

.cuatro b, strong {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.3rem;
}

.dropcaps.estilo3 .primera_letra {
    color: var(--braun);
    border-color: var(--braun);
}

.dropcaps.estilo4 .primera_letra {
    color: var(--black);
    border-color: var(--black);
}

.dropcaps.estilo1 .primera_letra {
    color: var(--white);
    border-color: var(--black);
    background: var(--black);
}

.dropcaps.estilo2 .primera_letra {
    color: var(--white);
    border-color: var(--braun);
    background: var(--braun);    
}



/* -------------------- SECTION VIDEO HUACHIPA ----------------------- */


.video{
    height: 50rem;
    width: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.video img{
    width: 30rem;
    margin-bottom: 3.5rem;
}

.videoContainer{
    height: 30rem;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoContainer iframe{
    height: 100%;
    width: 100%;
}








/* 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: 1400px){
    .swiper-slide .caballo{
        object-position: 50% 15%;
    }
}

@media (max-width: 1301px){
    .banner .bannerContent h1{
        font-size: 4rem;
    }
}

@media (max-width: 1050px){           
    .banner .bannerContent h1{
        font-size: 3rem;
    }
    .banner .bannerContent 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;
    }
    .banner .bannerContent p{
        font-size: 1.15rem;
    }
}


/*SECTION TWO ---------------------*/


@media (max-width: 1301px){
    .two img{
        width: 22rem;
    }
    .two h1{
        font-size: 2.5rem;
    }

    #p2{
        font-size: 1.45rem;
    }
}

@media (max-width: 1201px){
    #p1{
        text-align: justify;
        width: 60vw;
    }
    #p2{
        width: 45vw;
        font-size: 1.45rem;
    }
}

@media (max-width: 1050px){
    .two h1{
        font-size: 2rem;
    }
}

@media (max-width: 950px){
    #p2{
        font-size: 1.3rem;
    }
}

@media (max-width: 650px){
    .two{
        padding: 3rem 0 6rem 0;
    }
    #p2{
        width: 60vw;
    }
    .two img{
        width: 20rem;
    }
}

@media (max-width: 550px){
    .two img{
        width: 18rem;
    }
    .two h1{
        font-size: 1.8rem;
    }
    #p2{
        width: 80vw;
    }
    #p1{
        width:80vw;
    }
}

@media (max-width: 450px){
    .two h1{
        font-size: 1.5rem;
    }
    .two img{
        width: 15rem;
    }
}

/*SECTION TRES ------------------*/

@media (max-width: 1650px){

    .marco::before{
        top: 1.05rem;
        left: 1rem;
        height: 12rem;
        width: 12rem;
    }
    .marco::after{
        bottom: 1.05rem;
        right: 1rem;
        height: 12rem;
        width: 12rem;
    }
    .cuadro h2{
        font-size: 1.4rem;
    }

    .tres .cuadro p{
        font-size: 1.1rem;
    }
}

@media (max-width: 1500px){

    .marco::before{
        height: 11rem;
        width: 11rem;
    }
    .marco::after{
        height: 11rem;
        width: 11rem;
    }

}

@media (max-width: 1400px){
    .tres .cuadro{
        height: 70vh;
    }
}



@media (max-width: 1300px){
    .cuadro h2{
        font-size: 1.3rem;
    }
}

@media (max-width: 1200px){

    .marco::before{
        display: none;
    }
    .marco::after{
        display: none;
    }

}

@media (max-width: 1100px){
    .tres .cuadro{
        height: 80vh;
    }
}


@media (max-width: 850px){
    .tres .cuadro{
        width: 100vw;
        height: 70vh;
    }
    .tres .cuadro.img1{
        display: none;
    }
    .tres .cuadro.imgque{
        display: block;
    }
    .tres .cuadro.img3{
        display: none;
    }
    .tres .cuadro.imgque1{
        display: block;
    }
}

@media (max-width: 850px){

    .marco::before{
        display: flex;
    }
    .marco::after{
        display: flex;
    }

}

@media (max-width: 750px){

    .marco::before{
        height: 9rem;
        width: 9rem;
    }
    .marco::after{
        height: 9rem;
        width: 9rem;
    }
    .marco{
        padding: 2rem 0 2rem 0;
    }
    .cuadro h2{
        margin-bottom: 1rem;
    }
    .tres .cuadro p{
        font-size: 1.05rem;
    }

}

@media (max-width: 600px){
    .tres .cuadro p{
        width: 80%;
    }
}

@media (max-width: 580px){
    .marco::before{
        display: none;
    }
    .marco::after{
        display: none;
    }
}

@media (max-width: 500px){
    .tres .cuadro{
        height: 75vh;
    }
    .tres .cuadro p{
        margin-bottom: 1rem;
    }
}

/*SECTION FOUR --------------------------------*/

@media (max-width: 1650px){

    .dropcaps{
        font-size: 1.1rem;
    }
}

@media (max-width: 1300px){
    .cuatro .titulo{
        font-size: 2.4rem;
    }
}

@media (max-width: 1100px){
    .column-1_2{
        width: 100%;
    }
    .dropcaps{
        margin-bottom: 2rem;
    }
    .cuatro .pequeno_margen{
        margin-bottom: 0;
    }
}

@media (max-width: 1050px){
    .cuatro .titulo{
        font-size: 2rem;
    }
}

@media (max-width: 800px){
    .cuatro .titulo{
        font-size: 1.6rem;
    }
}

@media (max-width: 750px){
    .dropcaps{
        font-size: 1.05rem;
    }
}

@media (max-width: 550px){
    .cuatro .contenedor_wrap, .content_contenedor{
        width: 80vw;
    }
}

@media (max-width: 500px){
    .cuatro b, strong{
        font-size: 1.2rem;
    }
}


/*SECTION VIDEO ---------------------*/


@media (max-width: 1500px){
    .video{
        height: 38rem;
    }
    .videoContainer{
        height: 23rem;
        width: 50%;
    }
}


@media (max-width: 1301px){
    .video{
        height: 34rem;
    }
    .video img{
        width: 22rem;
    }
    .videoContainer{
        height: 20rem;
    }
    .video img{
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 800px){
    .videoContainer{
        width: 70%;
    }
}


@media (max-width: 650px){
    .video img{
        width: 20rem;
    }
}

@media (max-width: 550px){
    .video img{
        width: 18rem;
    }
}

@media (max-width: 450px){
    .video 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%;
    }
}

@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;
    }
}