/*Hoja de Estilos CSS*/

/*Práctica de HTML CICE - 16.02.17*/

@import url("fontawesome-all.min.css");


/*==RESET GENERAL========================*/

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    border: nonec;
}

a,   a:focus, a:active{
    text-decoration: none;
    color:#ffffff;
}


/*==ESTRUCTURA GENERAL========================*/ver_catalogo

body,html{
	color:#001b28;
    position: relative;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    font-family: "utile-display", sans-serif;
        letter-spacing: .25px;
}


/* Main flipbook container */
  .flipbook-container {
    max-width: 1000px; /* Adjust container width */
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 0;
   
  }


  /* Flipbook styling */
  .flipbook {
    display: flex;
    transition: transform 0.6s ease;
  }

    /* Spread: two pages side by side */
/* Spread general (doble página) */
.spread {
  display: flex;
  flex: 0 0 100%;
  justify-content: center;
}

/* Imágenes normales (doble página) */
.spread img {
     max-width: 100%;
    margin: 0;
    
}

/* ✅ PORTADA: ocupa todo el ancho */
.spread:first-child {
  justify-content: center;
}

.spread:first-child img {
  max-width: 100%;
  margin: 0;
  
}

/* Navigation buttons */
  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 7.5px 15px;
    z-index: 0;
    
    
  }

   .nav-button:hover {
    background: rgba(0, 0, 0, 0.7);
  }


  .prev {
    left: 1%;
  }

  .next {
    right: 1%;
  }

@keyframes cortina1{
    0%{
        right: 100%;
    }
    25%{
        right: 0%;
    }
    50%{
        right: 0%;
    }
    100%{
        right: -100%;
    }
}
@keyframes cortina3{
    0%{
        bottom: 100%;
    }
    25%{
        bottom: 0%;
    }
    50%{
        bottom: 0%;
    }
    100%{
        bottom: -100%;
    }
}
@keyframes cortina4{
    100%{
        left: 100%;
    }
}
@keyframes simple{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes simpleTranslate{
    0%{
        opacity: 0;
        transform: translateX(-10px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes tamanoNormal{
    0%{
        -webkit-transform: scale(0,0);
        -moz-transform: scale(0,0);
        -ms-transform: scale(0,0);
        -o-transform: scale(0,0);
        transform: scale(0,0);
    }
    100%{
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -ms-transform: scale(1,1);
        -o-transform: scale(1,1);
        transform: scale(1,1);
    }
}
html {
  scroll-behavior: smooth;
}
	

.cookies {
     position: fixed;
	 z-index: 99999999999;
     bottom: 0;
     left: 0;
     right: 0;
     background: black;
     color: white;
     font-family: arial;
     text-align: center;
	cursor:pointer;
 }

 .cookies__boton {
     background: initial;
     border: 2px solid white;
     padding: 1rem;
     font-size: 1rem;
	 margin-top: 1rem;
     color: white;
     width: 5rem;
     text-align: center;cursor:pointer;
 }

header{
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 13em 7% 5em 7%;
    background-image: url("../img/img_header/img_aas1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-fill-mode: forwards;
    z-index: 1000;
 
}


section{
    padding: 15px 7% 0px 7%;
    overflow: hidden;
}



footer {
  text-align: center;
  font-size: 0.75rem;
  padding: 2em;
  background-color: #f8f8f8;
  color: #333;
        margin-top: 40px;
    font-family: "utile-display", sans-serif;
        letter-spacing: .25px;
}

footer a {
  color: #a47864;
  text-decoration: none;
  margin: 0 8px;
    font-family: "utile-display", sans-serif;
        letter-spacing: .25px;
}

footer a:hover {
  text-decoration: none;
    color: #a47864;
    margin: 0 8px;
    font-family: "utile-display", sans-serif;
        letter-spacing: .25px;
}
/*==HEADER========================*/
.social {
    width: 2%;
    float: right;
    margin-top: 3px;
	display:flex;
}



.social a:before{
    content: "";
    background: url(../img/img_header/social-icons.svg) no-repeat;
    width: 16px;
    height:16px;
    display: inline-block;
    vertical-align: middle;
}



.social a[href*="linkedin"]:before{
    background-position: 0 0px;
}

/* Icons */

	ul.rrss {
		cursor: default;
	}

		ul.rrss li {
			display: inline-block;
		}

		ul.rrss a {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    line-height: 2em;
    text-align: center;
    border: 0;
	margin-left: 0.5px;
}
.rrss {
         float: left;
         
        }
.rrss a.rrss_fb:before{
    content: "";
    background: url(../img/img_header/social-icons_fb.svg) no-repeat;
    width: 16px;
    height:16px;
    display: inline-block;
}


.rrss a.rrss_ig:before{
    content: "";
    background: url(../img/img_header/social-icons1.svg) no-repeat;
    width: 16px;
    height:16px;
    display: inline-block;
}

.rrss a.rrss_youtube:before{
    content: "";
    background: url(../img/img_header/social-icons_youtube.svg) no-repeat;
    width: 16px;
    height:16px;
    display: inline-block;
}


.rrss a.rrss_blog:before{
    content: "";
    background: url(../img/img_header/social-icons_blog.svg) no-repeat;
    width: 16px;
    height:16px;
    display: inline-block;
}

.rrss a[href*="linkedin"]:before{
    background-position: 0 0px;
}

/*Top y Menu Principal*/
.header_top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #fff;
}
.header_top_responsive{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background-color: rgba(255,255,255,255);
    z-index: 1500;
     display: block;
        position: fixed;
         z-index: 2000;
         border-bottom: 1px solid #bac3c4;
}
.barra_top{
    padding: 10px 7% 10px 7%;
    text-align: right;
    color: #8B989B;
    font-size: 1.1em;
    position: relative;
}
.telefono_header{
    display: inline-block;
    margin-right: 10px;
        vertical-align: middle;
    margin-top:0px;
	font-size: 1em;
    font-family: "utile-display", sans-serif;
            letter-spacing: 1px;

}
.email_header{
    display: inline-block;
    vertical-align: middle;
}
.logo{
    position: absolute;
    left: 7%;
    top: 0px;
}

.logocovid{
        display: block;
    position: absolute;
    padding-top: 0%;
    left: 12%;
    top: -15px;
    height: 60px;
    width: 20%;
    /* opacity: 0; */
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}
nav.menu_principal{
    width: 100%;
    padding: 20px 7% 0px 7%;
    position: relative;
    background-color: rgba(255,255,255,.5);
    text-align: right;
    transition: all 0.5s ease-in-out;
    
}


nav.menu_principal {
    width: 100%;
    padding: 20px 7% 1px 7%;
    position: relative;
    background-color: rgba(255,255,255,.5);
    text-align: right;
    transition: all 0.5s ease-in-out;
	display:block;
}

#responsive_menu_btn{
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 11000;
    padding: 7px;
    padding-top: 12px;
    top: 5px;
    right: 7%;
    cursor: pointer;
}
#responsive_menu_btn span{
    width: 100%;
    height: 2px;
    position: relative;
    display: block;
    background-color: #a47864;
    transition: all 0.2s ease-in-out;
}
#responsive_menu_btn span:nth-child(1){
    margin-bottom: 10px;
}
#responsive_menu_btn span:nth-child(3){
    margin-top: 10px;
}
#responsive_menu_btn span:nth-child(4){
    position: absolute;
    top: 25px;
    left: 0px;
    transform-origin: center;
    opacity: 0;
}
#responsive_menu_btn span:nth-child(5){
    position: absolute;
    opacity: 0;
    top: 25px;
    left: 0px;
    transform-origin: center;
}
#responsive_menu_btn.opened span:nth-child(1), #responsive_menu_btn.opened span:nth-child(2), #responsive_menu_btn.opened span:nth-child(3){
    opacity: 0;
}
#responsive_menu_btn.opened span:nth-child(4){
    opacity: 1;
    width: 31px;
    transform: rotateZ(45deg);
}
#responsive_menu_btn.opened span:nth-child(5){
    opacity: 1;
    width: 31px;
    transform: rotateZ(-45deg);
}
nav.menu_responsive{
    width: 100vw;
    height: 100vh;
    padding: 30px 7% 30px 7%;
    position: fixed;
    z-index: 10000;
    opacity: 0.98;
    top: -120%;
    left: 0;
    background-color: #001b28;
    text-align: left;
    transition: all 0.5s ease-in-out;
}
nav.menu_principal a.menu_btn{
    display: inline-block;
    position: relative;
    padding: 10px 20px 30px 20px;
    text-align: center;
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    color: #8B989B;
    font-size: 1.1em;
    vertical-align: middle;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease-out;
}
.indicador{
    width: 10px;
    height: 10px;
    position: absolute;
    display: block;
    opacity: 0;
    left: 35%;
    bottom: -5px;
    transform: rotateZ(45deg);
    background-color: #000000;
    transition: all 0.2s ease-out;
}
nav.menu_principal a.menu_btn:hover{
    color: #a47864;
}
a.menu_btn:hover > .indicador{
    left: 45%;
    opacity: 1;
}
nav.menu_responsive a.menu_btn{

    display: block;
    padding: 10px 30px 14px 20px;
    text-align: center;
    font-family: "utile-display", sans-serif;
        letter-spacing: .25px;
    color: #fff;
    font-size: 1.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-bottom: 1.5px dotted #fff;
}
nav.menu_principal a.logo{
    display: block;
    position: absolute;
    padding-top: 0%;
    left: 3%;
    top: -15px;
    height: 30px;
    width: 10%;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}
nav.menu_principal a.logo img{
    max-width: 90%;
    max-height: 70px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    top:0px;
}
.header_top_responsive a.logo{
    display: block;
    position: absolute;
    padding-top: 0%;
    left: 7%;
    top: 18px;
    height: 42px;
}
.header_top_responsive a.logo img{
    max-width: 90%;
    max-height: 60px;
    position: fixed;
    display: inline-block;
    vertical-align: middle;
}
/*Texto e Imagen del Header*/
.texto_header_sitio{
    position: relative;
    margin-left: auto;
    margin-left: 15%;
    min-width: 300px;
    width: auto;
}
.texto_box{
    position: relative;
    margin-left: 0;
    min-width: 300px;
    width: 100%;
    overflow: hidden;
}
.col_izq{
    position: relative;
    overflow: hidden;
}
.texto_box .col_izq, .texto_box .col_der{
    float: left;
    
    margin-right: 35px;
}

h1 {
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    font-size: 4rem;

    line-height: 1.1;
    margin: 1.5rem 0 1.5rem 0;
    text-transform: none;
}



h2 {
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    font-size: 2rem;

    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    text-transform: none;
}

h3 {
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    font-size: 1.2rem;

    line-height: 1.1;
    
    text-transform: none;
}

.texto_box h1{
    text-align: left;
font-family: "utile-display", sans-serif;    color: #FFF;
    display: inline-block;
    font-size: 2.5em;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.texto_box .col_izq h1{
    text-align: center;
    padding: 2.8em 0.5em 0.5em 0.5em;
    margin-left: 0px;
    border: 9px solid #a47864;
	border-radius: 2.5px;
  font-weight: 350;
    margin-bottom: 20px;
    letter-spacing: 2.5px;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}
.texto_box .col_der h1{
    margin-bottom: 20px;
 letter-spacing: 0.5px;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
.texto_box .col_izq a{
	
    display: block;
    padding: 15px 15px 15px 35px;
    width: 100%;
    height: auto;
    font-family: "utile-display", sans-serif;
    letter-spacing: .25px;
    color: #fff;
    font-size: 1em;
    font-weight: 350;
    text-align: left;
    background-color: #000000;
    border-radius: 2.5px;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.1s;
    animation-fill-mode: forwards;
    transition: all 0.2s ease-out;
    letter-spacing: .5px;
}


.texto_box .col_izq a:hover{
    color: #FFF;
    
	background-color: #a8938a;
	border-radius: 2.5px;
}
.descripcion_sitio{
    width: auto;
    height: auto;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
}
.descripcion_sitio h2{
    text-align: left;
font-family: "utile-display", sans-serif;
     letter-spacing: .5px;
    font-size: 1.4em;
    font-weight: 350;
    max-width: 300px;
    line-height: 1.5;
    color: #FFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*==SECCION PERFIL========================*/





.perfil .articulo_1{
    float:left;
    overflow: hidden;
    position: relative;
}



.mi{
   animation-delay: 0.8s !important;
}

.perfil .articulo_1 h2{
font-family: "utile-display", sans-serif;    color: #a47864;
    font-size: 1.8em;
 font-weight:350;
    text-align: left;
    margin-bottom: 1em;
    line-height: 1.2;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-fill-mode: forwards;
}
.perfil .articulo_1 h3{
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    color: #001b28;
    font-size: 1em;
 font-weight:normal;
    text-align: left;
    margin-bottom: 2em;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;
}
.perfil .articulo_1 p{
    width: 100%;
    padding-right: 0px;
    display: inline-block;
    vertical-align: top;
    color: #001b28;
    font-size: 1em;
   
    text-align: left;
    margin-bottom: 1em;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-delay: 0.9s;
    animation-fill-mode: forwards;
}

.perfil figure{
    float:right;
    width: 100%;
    min-height: 450px;
    padding-top: 280px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}
.perfil figure img:nth-child(1) {
    position: absolute;
    max-width: 80%;
    top: -230px;
    left: 0;
    z-index: 0;
    opacity: 0;
    animation: simple 0.1s ease-in;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
.perfil figure img:nth-child(2){
    position: absolute;
    max-width: 60%;
    top: -40px;
    right: 5px;
    z-index: 99;
    opacity: 0;
    animation: simple 0.1s ease-in;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.cv{
    text-decoration: none;
    color:#fff;
    background-color: #000000;
    width: 100px;
	font-size:14px;
    display: block;
    text-align: center;
    cursor: pointer;
	    height: 35px;
    line-height: 35px;
    border-radius: 2.5px;
	margin-bottom: 45px;

}


.cv:hover{
    font-family: "utile-display", sans-serif;

    text-decoration: none;
    color:#fff;
    background-color: #a47864;
            letter-spacing: .5px;

    width: 100px;
        font-size: 1em;
    display: block;
    text-align: center;
    cursor: pointer;
	    height: 35px;
    line-height: 35px;
    border-radius: 2.5px;
	margin-bottom: 45px;

}



/*==SECCION PORTFOLIO========================*/
.portfolio{
    padding-top: 7em;
   
    background-color: #ededed;
    text-align: center;
	    padding-bottom: 7em;     height: auto;
}



	#portfolio1 {
    padding-top: 6em;
    height: 1380px;
    background-color: #ffffff;
    text-align: center;
    padding-bottom: 7em;
    height: auto;
    margin-top: 50px;
}
 

.portfolio .portfolio_item{
    width: 33%;
    min-width: 275px;
    display: inline-block;
    text-align: center;
    margin-bottom: 0px;
    vertical-align: top;

}
.imagen_portfolio{
    width: 100%;
    height: 200px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;

}
.psn{
    background-image: url("../img/img_portfolio/img_psn/img_psn.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.psn:hover{
    background-image: url("../img/img_portfolio/img_psn/img_psn_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.mimosa{
    background-image: url("../img/img_portfolio/img_mimosa/img_mimosa.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.mimosa:hover{
    background-image: url("../img/img_portfolio/img_mimosa/img_mimosa_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.namura{
    background-image: url("../img/img_portfolio/img_namura/img_namura.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.namura:hover{
    background-image: url("../img/img_portfolio/img_namura/img_namura_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}


.cross{
    background-image: url("../img/img_portfolio/img_crosschicken/img_cross.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.cross:hover{
    background-image: url("../img/img_portfolio/img_crosschicken/img_cross_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}


.velo{
    background-image: url("../img/img_portfolio/img_velosolutions/img_velosolutions.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.velo:hover{
    background-image: url("../img/img_portfolio/img_velosolutions/img_velosolutions_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}


.mama{
    background-image: url("../img/img_portfolio/img_mamamisol/img_mama.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.mama:hover{
    background-image: url("../img/img_portfolio/img_mamamisol/img_mama_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.BTT{
    background-image: url("../img/img_portfolio/img_BTT/img_BTT.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.BTT:hover{
    background-image: url("../img/img_portfolio/img_BTT/img_BTT_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.ertal{
    background-image: url("../img/img_portfolio/img_ertal/img_ertal.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.ertal:hover{
    background-image: url("../img/img_portfolio/img_ertal/img_ertal_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.canna{
    background-image: url("../img/img_portfolio/img_canna/img_canna.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.canna:hover{
    background-image: url("../img/img_portfolio/img_canna/img_canna_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.nuba{
    background-image: url("../img/img_portfolio/img_nuba/img_nuba.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.nuba:hover{
    background-image: url("../img/img_portfolio/img_nuba/img_nuba_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.madeira{
    background-image: url("../img/img_logos-viajes/img_madeira.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.madeira:hover{
    background-image: url("../img/img_logos-viajes/img_madeira_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.burdeos{
    background-image: url("../img/img_logos-viajes/img_burdeos.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.burdeos:hover{
    background-image: url("../img/img_logos-viajes/img_burdeos_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.belgica{
    background-image: url("../img/img_logos-viajes/img_belgica.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.belgica:hover{
    background-image: url("../img/img_logos-viajes/img_belgica_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.nubawork{
    background-image: url("../img/img_logos-viajes/img_nuba.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.nubawork:hover{
    background-image: url("../img/img_logos-viajes/img_nuba_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.estocolmo{
    background-image: url("../img/img_logos-viajes/img_estocolmo.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.estocolmo:hover{
    background-image: url("../img/img_logos-viajes/img_estocolmo_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.chicago{
    background-image: url("../img/img_logos-viajes/img_chicago.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.chicago:hover{
    background-image: url("../img/img_logos-viajes/img_chicago_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.alpes{
    background-image: url("../img/img_logos-viajes/img_alpes.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.alpes:hover{
    background-image: url("../img/img_logos-viajes/img_alpes_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}
.laponia{
    background-image: url("../img/img_logos-viajes/img_laponia.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.laponia:hover{
    background-image: url("../img/img_logos-viajes/img_laponia_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.jordania{
    background-image: url("../img/img_logos-viajes/img_jordania.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.jordania:hover{
    background-image: url("../img/img_logos-viajes/img_jordania_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}
.olipress{
    background-image: url("../img/img_portfolio/img_olipress/img_olipress.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.olipress:hover{
    background-image: url("../img/img_portfolio/img_olipress/img_olipress_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.soluciones{
    background-image: url("../img/img_portfolio/img_soluciones/img_soluciones.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.soluciones:hover{
    background-image: url("../img/img_portfolio/img_soluciones/img_soluciones_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.inxur{
    background-image: url("../img/img_portfolio/img_inxur/img_inxur.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.inxur:hover{
    background-image: url("../img/img_portfolio/img_inxur/img_inxur_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}
.renfe{
    background-image: url("../img/img_portfolio/img_renfe/img_renfe.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.renfe:hover{
    background-image: url("../img/img_portfolio/img_renfe/img_renfe_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.centrostyle{
    background-image: url("../img/img_portfolio/img_centrostyle/img_style.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.centrostyle:hover{
    background-image: url("../img/img_portfolio/img_centrostyle/img_style_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}
.nice{
    background-image: url("../img/img_portfolio/img_nice/img_nice.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.nice:hover{
    background-image: url("../img/img_portfolio/img_nice/img_nice_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.mokita{
    background-image: url("../img/img_portfolio/img_mokita/img_mokita.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.mokita:hover{
    background-image: url("../img/img_portfolio/img_mokita/img_mokita_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}


.xms{
    background-image: url("../img/img_portfolio/img_xms/img_xms.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.xms:hover{
    background-image: url("../img/img_portfolio/img_xms/img_xms_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.qualitas{
    background-image: url("../img/img_portfolio/img_qualitas/img_qualitas.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.qualitas:hover{
    background-image: url("../img/img_portfolio/img_qualitas/img_qualitas_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.acrylick{
    background-image: url("../img/img_portfolio/img_acrylick/img_acrylick.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.acrylick:hover{
    background-image: url("../img/img_portfolio/img_acrylick/img_acrylick_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.serial{
    background-image: url("../img/img_portfolio/img_serialcut/img_serialcut.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.serial:hover{
    background-image: url("../img/img_portfolio/img_serialcut/img_serialcut_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.xms{
    background-image: url("../img/img_portfolio/img_xms/img_xms.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.xms:hover{
    background-image: url("../img/img_portfolio/img_xms/img_xms_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}
.signum{
    background-image: url("../img/img_portfolio/img_qualitas/img_signum.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.signum:hover{
    background-image: url("../img/img_portfolio/img_qualitas/img_signum_nar.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: simple 0.5s ease-in-out;
}

.icon_container{
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.icon_portfolio{
    width: 35px;
    height: 35px;
    border: 8px solid #000000;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);
    animation: tamanoNormal 0.5s cubic-bezier(.56,.2,.23,.89);
    animation-fill-mode: forwards;
	
}

.contacto .ubicacion .icon_portfolio {
    animation-delay: 1.3s;
}

.portfolio ul {
    list-style: none;
    padding-top: 0px;
    border-top: 1.5px dotted #000000;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: block;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;
}

.portfolio h2{
    width: 100%;
    font-family: "utile-display", sans-serif;
    color: #a47864;
    font-size: 2.8em;
  font-weight:350;
    text-align: center;
    margin-bottom: 0.5em;
    line-height: 1.2;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
.portfolio .portfolio_item h3{
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    color: #a47864 ;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.6em;
   font-weight:normal;
    text-align: center;
    width: 70%;
    margin-bottom: -2.8em;
    line-height: 1.2;
    max-width: 80%;
}
.portfolio .portfolio_item p{
   font-family:  "utile-display", sans-serif;
        letter-spacing: .5px;
    width: 100%;
    padding: 0px 0px 10px 0px;
    color: #001b28;
    font-size: 16px;
    font-weight:400;
    text-align: center;
    margin-bottom: 0em;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




.portfolio .portfolio_item a{
    color: #a47864;
    padding-bottom: 4px;
    border-bottom: 1.5px dotted #000000;
    transition: all 0.2s ease-out;
}
.portfolio .portfolio_item a:hover{
    color: #000000;
    border-bottom: 1.5px dotted #a47864;
}
/*==SECCION FREELANCE========================*/
.freelance{
    padding-top: 7em;
	
    background-color: #FFF;    height: auto;
}
.freelance .articulo_2{
    float:right;
    min-width: 300px;

}
.freelance .articulo_2 h2{
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    color: #a47864;
	margin-top: 60px;
    font-size: 2.8em;
    font-weight:350;
    text-align: left;
 
    line-height: 1.2;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}


.freelance .articulo_2 h3{
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    color: #a47864;
    font-size: 1.1em;
   font-weight:normal;
    text-align: left;
    
    line-height: 1.4;
}
.freelance .articulo_2 p{
    width: 100%;
    color: #001b28;
    font-size: 1em;
    font-weight:normal;
    text-align: left;
    padding-bottom: 2em;
    
    line-height: 1.4;
    border-bottom: 1.5px dotted #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;
}
.freelance .articulo_2 ul{
    list-style: none;
    padding-top: 30px;
}
.freelance .articulo_2 li{
    padding: 10px 20px 10px 75px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
    min-width: 160px;
}
.freelance {
    padding-top: 7em;
    padding-bottom: 7em;
    background-color: #FFF;
    height: auto;
}

.bulldog-icon{
    background-image: url("../img/img_freelance/img_bulldog/bulldog-icon.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
}
.bulldog-icon:hover{
    background-image: url("../img/img_freelance/img_bulldog/bulldog-icon_nar.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
}

.ifyou-icon{
    background-image: url("../img/img_freelance/img_if_you/if_you-icon.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 1.4s;
    animation-fill-mode: forwards;
}
.ifyou-icon:hover{
    background-image: url("../img/img_freelance/img_if_you/if_you-icon_nar.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 1.4s;
    animation-fill-mode: forwards;
}

.covid-icon{
    background-image: url("../img/img_freelance/img_covid/covid-icon.svg");
    background-size: 100px 100px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 1.6s;
    animation-fill-mode: forwards;
    cursor: pointer;
}
.covid-icon:hover{
    background-image: url("../img/img_freelance/img_covid/covid-icon_nar.svg");
    background-size: 100px 100px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 1.6s;
    animation-fill-mode: forwards;
    cursor: pointer;

}
.aas-icon{
    background-image: url("../img/img_freelance/img_aas/aas-icon.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 1.8s;
    animation-fill-mode: forwards;
}
.aas-icon:hover{
    background-image: url("../img/img_freelance/img_aas/aas-icon_nar.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 1.8s;
    animation-fill-mode: forwards;
}
.serial-icon{
    background-image: url("../img/img_freelance/img_sc/serial-icon.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}
.serial-icon:hover{
    background-image: url("../img/img_freelance/img_sc/serial-icon_nar.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2s; animation-fill-mode: forwards;
}


.ciudad-icon{
    background-image: url("../img/img_freelance/img_ciudad/ciudad-icon.svg");
    background-size: 65px 65px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.2s;
    animation-fill-mode: forwards;
}
.ciudad-icon:hover{
    background-image: url("../img/img_freelance/img_ciudad/ciudad-icon_nar.svg");
    background-size: 65px 65px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.2s;
    animation-fill-mode: forwards;
}
.otros-icon{
    background-image: url("../img/img_freelance/img_kcnq2/kcnq2-icon.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.4s;
    animation-fill-mode: forwards;
}
.otros-icon:hover{
    background-image: url("../img/img_freelance/img_kcnq2/kcnq2-icon_nar.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.4s;
    animation-fill-mode: forwards;
}

.albendea{
    background-image: url("../img/img_freelance/img_albendea/albendea-icon.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.4s;
    animation-fill-mode: forwards;
}
.albendea:hover{
    background-image: url("../img/img_freelance/img_albendea/albendea-icon_nar.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.4s;
    animation-fill-mode: forwards;
}

.meribel{
    background-image: url("../img/img_freelance/img_meribel/meribel-icon.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.4s;
    animation-fill-mode: forwards;
}
.meribel:hover{
    background-image: url("../img/img_freelance/img_meribel/meribel-icon_nar.svg");
    background-size: 55px 55px;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-delay: 2.4s;
    animation-fill-mode: forwards;
}

.freelance .articulo_2 li h3.free{
    font-family: "utile-display", sans-serif;
    color: #a47864;
    font-size: 1.2em;
   
    text-align: left;
    
    margin-left: 15px;
}
.freelance .articulo_2 li h3{
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    color: #001b28;
    font-size: 1.2em;
   
    text-align: left;
  
    margin-left: 15px;
}
.freelance .articulo_2 li p{
    width: 100%;
    color: #001b28;
    font-size: .9em;
    
    text-align: left;
    
    line-height: 1.4;
    border-bottom: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 15px;
}



/*==SECCION FOTOGRAFIA========================*/


/* Gallery */

	
.header_top{
       position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #fff;
}
	

	.gallery {
  
    flex-wrap: wrap;
    margin: -1.25rem 0 0 -1.25rem;
    width: calc(65% + 1.25rem);
    margin: 0 auto;
}





		.a {
			border-bottom: 0;
			display: block;
			outline: 0;
			position: relative;
			width: calc(25% - 1.25rem);
		
		}



			.gallery a img {
				display: block;
				height: 25vw;
				min-height: 18rem;
				object-fit: cover;
				object-position: center;
				width: 100%;
				border-width: 1px;
                border-style: solid;
                border-color: #e9e8e8;
			}

			.gallery a.landscape {
				width: 100%;
			}

				.gallery a.landscape img {
					height: 30vw;
				}

			.gallery a.portrait img {
				height: 30vw;
			}

		.gallery .modal {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-align-items: center;
			-webkit-align-items: center;
			-ms-align-items: center;
			align-items: center;
			-moz-justify-content: center;
			-webkit-justify-content: center;
			-ms-justify-content: center;
			justify-content: center;
			pointer-events: none;
			-moz-user-select: none;
			-webkit-user-select: none;
			-ms-user-select: none;
			user-select: none;
			-moz-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
			-webkit-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
			-ms-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
			transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
			-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
			background-color: rgba(255, 255, 255, 0.875);
			height: 100%;
			left: 0;
			opacity: 0;
			outline: 0;
			position: fixed;
			top: 0;
			visibility: none;
			width: 100%;
			z-index: 0;
		}

		

			.gallery .modal:after {
				background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='64px' viewBox='0 0 64 64' zoomAndPan='disable'%3E%3Cstyle%3Eline %7Bstroke: %23000000%3Bstroke-width: 2px%3B%7D%3C/style%3E%3Cline x1='20' y1='20' x2='44' y2='44' /%3E%3Cline x1='20' y1='44' x2='44' y2='20' /%3E%3C/svg%3E");
				background-position: center;
				background-repeat: no-repeat;
				background-size: 3rem;
				content: '';
				cursor: pointer;
				display: block;
				height: 4rem;
				position: absolute;
				right: 0.5rem;
				top: 0.5rem;
				width: 4rem;
			}

			.gallery .modal .inner {
				-moz-transform: translateY(0.75rem);
				-webkit-transform: translateY(0.75rem);
				-ms-transform: translateY(0.75rem);
				transform: translateY(0.75rem);
				-moz-transition: opacity 0.25s ease, -moz-transform 0.25s ease;
				-webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
				-ms-transition: opacity 0.25s ease, -ms-transform 0.25s ease;
				transition: opacity 0.25s ease, transform 0.25s ease;
				opacity: 0;
			}

				.gallery .modal .inner img {
					box-shadow: 0 1rem 3rem 0 rgba(0, 0, 0, 0.35);
					display: block;
					max-height: 90vh;
					max-width: 90vw;
				}

			.gallery .modal.visible {
				pointer-events: auto;
				opacity: 1;
				visibility: visible;
				z-index: 11000;
			}

			

			.gallery .modal.loaded .inner {
				-moz-transform: translateY(0);
				-webkit-transform: translateY(0);
				-ms-transform: translateY(0);
				transform: translateY(0);
				-moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease;
				-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
				-ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease;
				transition: opacity 0.5s ease, transform 0.5s ease;
				opacity: 1;
			}



.galeria {
    display: flex;
    flex-wrap: wrap;
    margin: -1.25rem 0 0 -1.25rem;
	width: 100%;
    
    margin: 0 auto;
}

.galeriacovid {
    display: flex;
    flex-wrap: wrap;
    margin: -1.25rem 0 0 -1.25rem;
	width: 100%;
    
    margin: 0 auto;
}

.galeria a img {
    display: block;
    height: 25vw;
    min-height: 10rem;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: #e9e8e8;
	
}

.galeriacovid a img {
    display: block;
    height: 15vw;
    min-height: 15rem;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: #e9e8e8;
	
}

.video a {
    border-bottom: 0;
    display: block;
    margin: 1.25rem 0 0 1.25rem;
    outline: 0;
    position: relative;
    width: calc(100% - 1.25rem);
}
    .gallery, .galeria {
        width: 50%;
        
        margin: 0 auto;
    }
}
.galeria a {
    border-bottom: 0;
    display: block;
    margin: 0rem 0 0 0rem;
    outline: 0;
    position: relative;
    width: calc(50% - 0rem);
}
.galeriacovid a {
    border-bottom: 0;
    display: block;
    margin: 0rem 0 0 0rem;
    outline: 0;
    position: relative;
    width: calc(33.3% - 0rem);
}

.fotografia{
    padding-top: 7em;
    background-color: #2d2f3a;
    background-image: url("../img/img_fotografia/img_aas.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.imagen_fotografia{
    width: 100%;
    height: 200px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
}

#fotografia .paisaje{
    background-image: url("../img/img_fotografia/paisajes.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#fotografia .deportes{
    background-image: url("../img/img_fotografia/deportes.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#fotografia .ciudad{
    background-image: url("../img/img_fotografia/ciudad.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#fotografia .naturaleza{
    background-image: url("../img/img_fotografia/naturaleza.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#fotografia .todo{
    background-image: url("../img/img_fotografia/todo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fotografia h2{
	margin-top: 20px;
font-family: "utile-display", sans-serif;    color: #a47864;

    margin-right: auto;
    margin-left: auto;
    font-size: 2.8em;
    font-weight:350;
    text-align: center;
    /* padding-bottom: 1em;*/ 
    /* margin-bottom: 2px;*/
    line-height: 1.2;
    border-bottom: 2.5px  #a47864;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
   
    animation-fill-mode: forwards;
}
.fotografia ul{
    list-style: none;
    padding-top: 0px;
	padding-bottom: 20px;
    border-top: 1.5px dotted #000000;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    display: block;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
   
    animation-fill-mode: forwards;
}
.fotografia li{
    padding: 10px;
    display: block;
    text-align: center;
    vertical-align: top;
    font-size: 1.2em;
    width: 100%;
    color: #a47864;
    margin-bottom: 25px;
    opacity: 0;
    animation: simpleTranslate 0.5s ease-in-out;
    animation-fill-mode: forwards;
}
.fotografia li:nth-child(1){
    animation-delay: 1.5s;
}
.fotografia li:nth-child(2){
    animation-delay: 1.7s;
}
.fotografia li:nth-child(3){
    animation-delay: 1.9s;
}
.fotografia li:nth-child(4){
    animation-delay: 2.1s;
}
.fotografia li:nth-child(5){
    animation-delay: 2.5s;
}
.fotografia li:nth-child(6){
    animation-delay: 2.9s;
}
/*==SECCION FOTOGRAFIA========================*/

.contacto{
    padding-top: 7em;
    background-color: #ffffff;
    text-align: center;
}
.contacto .contacto_item{
    width: 33%;
    min-width: 300px;
    display: inline-block;
    text-align: center;
    margin-bottom: 55px;
    vertical-align: top;
    opacity: 0;
    animation: simple 0.5s ease-in-out;
    animation-fill-mode: forwards;
}
.contacto .telefono{
    animation-delay: 0.7s;
}
.contacto .telefono .icon_portfolio{
    animation-delay: 0.7s;
}
.contacto .email{
    animation-delay: 1s;
}
.contacto .email .icon_portfolio{
    animation-delay: 1s;
}
.contacto .ubicacion{
    animation-delay: 1.3s;
}
.contacto .ubicacion.icon_portfolio{
    animation-delay: 1.3s;
}
.contacto_item h3 {
font-family: "utile-display", sans-serif;
        letter-spacing: .25px;    color: #a47864;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
    font-weight: lighter;
    text-align: center;
    width: 100%;
    margin-bottom: 0.2em;
    line-height: 1.2;
    max-width: 80%;
}
.contacto .contacto_item p{
    width: 100%;
    padding: 15px 35px 15px 35px;
    color:#000000;
    font-size: 1em;
   
    text-align: center;
    margin-bottom: 0.5em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.portfolio .portfolio_item a{
    color: #a47864;font-size: .8em;
    font-size: 16px;
    font-weight:400;
    font-family: "utile-display", sans-serif;
    letter-spacing: .25px;
}




/*==ACCESORIOS========================*/
.elementos{
    display: none;
}
.cortina_1{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 100%;
    background-color: #a47864;
    z-index: 1000;
    animation: cortina1 1.5s cubic-bezier(.56,.2,.23,.89);
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
.cortina_2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    background-color: #a47864;
	border-radius: 2.5px;
    z-index: 1000;
}
.cortina_3{
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 100%;
    background-color: #a47864;
	border-radius: 2.5px;
    z-index: 0;
    animation: cortina3 1.5s cubic-bezier(.56,.2,.23,.89);
    animation-fill-mode: forwards;
}
.cortina_4{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ededed;
	border-radius: 2.5px;
    z-index: 999;
    animation: cortina4 1s cubic-bezier(.56,.2,.23,.89);
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}
.poptrox-popup .poptrox-close {
    background: rgba(255,255,255,0.8); /* Fondo semitransparente */
    color: #000; /* Cruz negra sobre fondo blanco */
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
    cursor: pointer;
}

/* Contenedor transparente */
.lb-dataContainer {
  background: transparent !important;
  padding: 0 !important;
}

/* Cruza de cierre */
.lb-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 35px !important;
  height: 35px !important;
  line-height: 35px !important;
  background: rgba(255,255,255,0.8) !important; /* Fondo semitransparente */
  color: #000 !important; /* Cruz negra */
  font-size: 1.5em !important;
  text-align: center !important;
  border-radius: 50% !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  box-shadow: 0 0 5px rgba(0,0,0,0.3) !important;
  text-shadow: none !important;
}

/* Flechas prev/next */
.lb-prev, .lb-next {
  color: #fff !important;
  font-size: 2em !important;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

/* Imagen responsive */
.lb-image {
  max-width: 100% !important;
  max-height: 100% !important;
}
/* Por defecto: en móvil/tablet todas las imágenes ocupan 100% */
.galeria a {
  width: 100%;
}

/* Para escritorio (pantallas grandes) */
@media screen and (min-width: 1024px) {
  /* Imagen horizontal ocupa todo el ancho */
  .galeria a.landscape {
    width: 100%;
  }

  /* Imágenes verticales al 50% para que se coloquen lado a lado */
  .galeria a.portrait {
    width: 50%;
  }
}
.copyright{    font-size: 1.1rem; font-family: "utile-display", sans-serif;
        letter-spacing: .25px; font-weight:normal;
    color: #949494;}
