@charset "UTF-8";

/*
font-family: 'Zilla Slab', serif;
*/

html, body{
    width: 100%;
    height:100%;
    margin:0;
    padding:0;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Zilla Slab', serif;
    letter-spacing: 0.03em;
    color: #098e47;
}

a{
    text-decoration: none;
    color: #098e47;
}

.clear{
    clear: both;
}



/*header*/
header{
    position: absolute;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_int{
    width: -o-calc(100% - 200px);
    width: -ms-calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    margin: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.header_int h1{
    margin: 0px;
    font-weight: 400;
    font-size: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: -moz-fit-content;
    width: fit-content;
}
.header_int img{
    max-height: 70px;
    width: auto;
    padding: 20px 0px 10px;
}


/*contenido*/
.wrapper{
    position: relative;
    padding-top: 100px;
}
.slider{
    min-height: -o-calc(100vh - 280px);
    min-height: -ms-calc(100vh - 280px);
    min-height: -moz-calc(100vh - 280px);
    min-height: -webkit-calc(100vh - 280px);
    min-height: calc(100vh - 280px);
    position: relative;
    width: 100%;
    margin: 25px auto 80px;
}
.slide{
    position: absolute;
    top: 0;
    height: 100%;
    background-color: #fff;
    left: 100px;
    width: -o-calc(100% - 200px);
    width: -ms-calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
}
.centrar_img{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.centrar_img img{
    display: block;;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.f_der{
    position: fixed;
    z-index: 10px;
    right: 0px;
    width: 50vw;
    height: 100vh;
    cursor: url(../img/flecha_der.png), e-resize;
    top: 0;
    z-index: 3;
}
.f_izq{
    position: fixed;
    z-index: 10px;
    left: 0px;
    top: 0px;
    width: 50vw;
    height: 100vh;
    cursor: url(../img/flecha_izq.png), w-resize;
    top: 0;
    z-index: 3;
}

.f_s{}


/*footer*/
footer{
    position: absolute;
    width: 100%;
}
.footer_int{
    width: -o-calc(100% - 200px);
    width: -ms-calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    font-size: 14px;
    line-height: 18px;
    text-align: right;
}
.footer_int a, .dupla{
    position: relative;
    z-index: 4;
}
.footer_int p{
    margin: 5px 0px 0px;
}
.footer_int p b{
    font-weight: 600;
}
.dupla{
    display: block;
    font-size: 11px;
    font-weight: 600;
    padding: 10px;
    margin-bottom: -10px;
    margin-right: -10px;
    z-index: 100;
}

.footer_int a:hover{
    text-decoration: underline;
}
.footer_int .dupla:hover{
    text-decoration: initial;
}

