@font-face {
	font-family: AlbraBlack; /* requerido */
	src: url("../font/AlbraBlack.ttf");                        /* requerido */
}
@font-face {
 font-family: Avenir; /* requerido */
 src: url("../font/AvenirLTStd-Book.ttf");                        /* requerido */
}
@font-face {
 font-family: Segoe; /* requerido */
 src: url("../font/SegoePro-Semilight.ttf");                        /* requerido */
}
@font-face {
 font-family: SegoeR; /* requerido */
 src: url("../font/SegoePro-Regular.ttf");                        /* requerido */
}
@font-face {

    font-display: auto;

    font-family: Sansation Light;

    src: url( "../font/Sansation-Light.ttf") format("woff2");

    font-weight: 200;

    font-style: normal

}

@font-face {

    font-display: auto;

    font-family: Sansation Bold;

    src: url( "../font/Sansation-Bold.ttf");

    font-weight: 200;

    font-style: normal

}

@font-face {

    font-display: auto;

    font-family: Sansation Regular;

    src: url( "../font/Sansation-Regular.ttf");

    font-weight: 200;

    font-style: normal

}

html,body{min-width: 100%; height: 100%; padding: 0px; margin: 0px; font-family: Avenir;background: #FFF;letter-spacing: 0.5pt;}

#cuerpo{min-width:100%;position: relative;min-height: 100%;height: auto !important;height: auto;}

#cuerpo #hdm{
	position: fixed;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	z-index: 1000;
	padding: 10px 0 ; 
	-moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;
}
/* añade estilos específicos para cuando se haga scroll */
#cuerpo .hdm {

	background: #000;
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;
}

#cuerpo #hdm .box:nth-child(1){
	width: 15%;
	z-index: 1000;
}

#cuerpo #hdm .box:nth-child(1) img{
	width: 8rem; margin-left: 2.5rem;
}

#cuerpo #hdm .box:nth-child(2){
	width: 10%;
	margin-right: 2.5rem;

}
.hamburger {
  display: flex;
  align-self: right;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 25px;
  cursor: pointer;
  float: right;
  margin-top: 2rem;
}
.hamburger div {
  align-self: flex-end;
  height: 2px;
  width: 100%;
  background: #fff;
}
.hamburger .meat {
  width: 100%;
  transition: all 200ms ease-in-out;
}
.hamburger .bottom-bun {
  width: 100%;
  transition: all 400ms ease-in-out;
}
.hamburger:hover div {
  width: 100%;
}
.hamburger:hover .top-bun {
  -webkit-animation: burger-hover 1s 1 ease-in-out alternate;
          animation: burger-hover 1s 1 ease-in-out alternate;
          background: #155cff;
}
.hamburger:hover .meat {
  -webkit-animation: burger-hover 1s 1 ease-in-out alternate forwards 200ms;
          animation: burger-hover 1s 1 ease-in-out alternate forwards 200ms;
          background: #155cff;
}
.hamburger:hover .bottom-bun {
  -webkit-animation: burger-hover 1s 1 ease-in-out alternate forwards 400ms;
          animation: burger-hover 1s 1 ease-in-out alternate forwards 400ms;
          background: #155cff;
}

@-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}


/*  Menu   */
.rightmenu{float: none;background: #202020 url("../imagenes/inicio/menu.jpg") no-repeat 50%;
    background-size: cover;width: 100%; height: 1000px; max-height: 100%; position: fixed; display: none; margin: -5px 0 0 0; text-align: left;padding: 20px 0px; z-index: 1001;clear: both;}
.menu {
  margin: 30px 0 0 70px;
  justify-content: left;
  float: left;
}

.menu li {
  margin-left: 70px;
  display: block;
}

.menu a {
  position: relative;
  display: block;
  overflow: hidden;
  width: 700px;

}

.menu a span {
  transition: transform 0.2s ease-out;
}

.menu a span:first-child {
	font-family: Arial;
  display: inline-block;
  padding: 2px 0;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
}

.menu a span:last-child {
	font-family: Arial;
  position: absolute;
  display: inline-block;
  padding: 2px 0;
  left:0px;
  justify-content: left;
  transform: translateY(100%);
  color: white;
  -webkit-text-stroke: 2px #fff;
  -webkit-text-fill-color: rgba(0,0,0,0);
  font-weight: bold;
  font-size: 4rem;
}



.menu a:hover span:first-child {
  transform: translateY(-100%);
}

.menu a:hover span:last-child,
.menu[data-animation] a:hover span:last-child {
  transform: none;
}

/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu[data-animation="to-top"] a span:last-child {
  transform: translateY(100%);
}

.menu[data-animation="to-top"] a:hover span:first-child {
  transform: translateY(-100%);
}

.menu[data-animation="to-right"] a span:last-child {
  transform: translateX(-100%);
}

.menu[data-animation="to-right"] a:hover span:first-child {
  transform: translateX(100%);
}

.menu[data-animation="to-left"] a span:last-child {
  transform: translateX(100%);
}

.menu[data-animation="to-left"] a:hover span:first-child {
  transform: translateX(-100%);
}


.datos{
position: absolute;bottom: 30px !important;right:200px;
	color: #fff;
}

.datos-d-r .datos-d{
	line-height: 30px;
	margin-bottom: 30px;
	color: #fff;
}

.datos-d-r .datos-d span{
	font-weight: bolder;
}


.datos-d-r{position: absolute;bottom: 10px !important;right:200px;}
.datos-d-r a{text-decoration: none;font-size: 1.3rem;}
.datos-d-r div.redes-f{width: 40px;
height:40px;
text-align: center;
background: transparent;
border: 1px solid #fff;
border-radius: 50%;
margin-right: 5px;
display: inline-block;
}
.datos-d-r div.redes-f i {
margin-top: 10px;
 color:#fff;}
.datos-d-r div.redes-f:hover{
 background: #155cff;
}
 .datos-d-r div.redes-f:hover i{color: #fff;}

.menu_bar_right {top:0; cursor: pointer;z-index: 1000;float: none;margin: 20px 5px 0 0;color: #fff;font-size:1.8rem;text-align: right;} 
.close-container{
  position: absolute;
  right: 50px;
  margin: auto;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.leftright{
  height: 4px;
  width: 25px;
  position: absolute;
  margin-top: 24px;
  background-color: #fff;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: all .3s ease-in;
}

.rightleft{
  height: 4px;
  width: 25px;
  position: absolute;
  margin-top: 24px;
  background-color: #fff;
  border-radius: 2px;
  transform: rotate(-45deg);
  transition: all .3s ease-in;
}

.label{
  color: white;
  font-family: Helvetica, Arial, sans-serif; 
  font-size: .6em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all .3s ease-in;
  opacity: 0;
}
.close{
  margin: 60px 0 0 5px;
  position: absolute;
}

.home__header__video {
    bottom: 0;
    left: 0;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    right: 0;
    top: 0;
    transform: scale(1.00);
    width: 100%;
    background-attachment: fixed;
    -o-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -webkit-background-attachment: fixed;
    border-bottom: 5px solid #fff;
}

#centro{

	width: 100%;
	margin-top: -10px;

	
}

#centro .welcome{
	background: #181818;
	padding: 10rem 0 10rem 0;
	color:#fff;
	width: 100%;
}

#centro .welcome-efect{

	/* The image used */
	background-image: url("../imagenes/inicio/aurora_boreal.jpg");
	height: 100%;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-efect-v{

	/* The image used */
	background-image: url("../imagenes/video/video-1.jpg");
	height: 100%;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-efect-g{

	/* The image used */
	background-image: url("../imagenes/graphic/graphic-1.jpg");
	height: 100%;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-efect-wd{

	/* The image used */
	background-image: url("../imagenes/webdesign/webdesign-1.jpg");
	height: 100%;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-efect-p{

	/* The image used */
	background-image: url("../imagenes/photography/photography-1.jpg");
	height: 100%;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-efect-t{

	/* The image used */
	background-image: url("../imagenes/team/team-1.jpg");
	height: 100%;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-efect-cont{

	/* The image used */
	background-image: url("../imagenes/contact/contact-1.jpg");
	height: 45vh;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}


#centro .welcome .text-welcome{
	width: 1200px;
	margin: 0 auto;
	text-align: center;
  line-height: 1.4;
}
#centro .welcome .text-welcome-video, #centro .welcome .text-welcome-graphyc,#centro .welcome .text-welcome-photography,#centro .welcome .text-welcome-design{
	padding-bottom: 110px;
}

#centro .welcome .text-welcome-1{
	margin:1.3rem 0;
}

#centro .welcome .text-welcome-3,#centro .welcome .text-welcome-4{
	margin:0.8rem auto;width: 820px;font-size: 1.1rem;
}

#centro .welcome .text-welcome-1{
	margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

#centro .welcome .text-welcome-2{
	font-family: AlbraBlack;
	font-size:calc(73px + 14 * ( (100vw - 576px) / 1024));
	color: #155cff;
  -webkit-text-stroke: 1px midnightblue;
  text-shadow: 2px 2px #051628;
}

#centro .welcome .text-welcome-2-f{
	font-family: AlbraBlack;
	font-size:calc(50px + 14 * ( (100vw - 576px) / 1024));
	color: #155cff;
  -webkit-text-stroke: 1px midnightblue;
  text-shadow: 2px 2px #051628;
}

#centro .welcome .boton-welcome{
	text-align: center;
	margin-top: 40px;
}

#centro .welcome .boton-welcome .boton-w{
	font-size: 1.1rem;
	cursor: pointer;
	color: #fff;
	z-index: 1000;
	position: relative;
	margin: 0px auto;
	border-radius: 3px;
	width: 210px;
	height: 45px;
	transition: all .4s;
	display: block;
  text-shadow: 2px 2px #181818;
}

#centro .welcome .boton-welcome .center{
	display: flex;
	justify-content: center;
	align-items: center;
}

#centro .welcome .boton-welcome .boton-w .d1,#centro .welcome .boton-welcome .boton-w .d2{
	position: absolute;
	width: 100%;height: 1px;
	background: #155cff;
	transform:scale(0);
	transition: all .4s;
	transition-delay: .4s;
}

#centro .welcome .boton-welcome .boton-w .d1{
	top:0;
	transform-origin: left;
}

#centro .welcome .boton-welcome .boton-w:hover .d1,#centro .welcome .boton-welcome .boton-w:hover .d2{
	transform:scale(1);
	transition-delay: 0s;
}

#centro .welcome .boton-welcome .boton-w .d3,#centro .welcome .boton-welcome .boton-w .d4{
	width: 1px;
	height: 100%;
	position: absolute;
	background: #155cff;
	transform: scaleY(0);
	transition: all .4s;
}

#centro .welcome .boton-welcome .boton-w .d3{
	left: 0;
	transform-origin: bottom;
}

#centro .welcome .boton-welcome .boton-w .d4{
	right: 0;
	transform-origin: top;
}

#centro .welcome .boton-welcome .boton-w:hover .d3,#centro .welcome .boton-welcome .boton-w:hover .d4{
	transform: scaleY(1);
	transition-delay: .4s;
}

#centro .welcome .boton-welcome .boton-w .d2{
	bottom:0;
	transform-origin: right;
}

#centro .welcome .boton-welcome .boton-w:hover{
	transition-delay: .8s;
	color: #155cff;
}

#centro .welcome .boton-welcome .boton-w .fa{
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;
}

#centro .welcome .boton-welcome .boton-w:hover .fa{
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;		
	padding-left: 30px; 
}

/* --------- Index Cuadros -------- */
.itemi {
   width: 300px;
   height: 200px;
   margin: 10px;
   display: inline-block;
   overflow: hidden;
   position: relative;
   text-align: center;
   background: transparent;
   cursor: default;
   box-shadow: 20px 20px 50px rgba(24, 24, 24 ,0.8);
}
.itemi .mascarai,.itemi .content {
   width: 300px;
   height: 200px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.itemi .logoi{
	background: transparent;
   	position: relative;
   	top: 15%;
}

.itemi .logoi img {
   display: block;
   object-fit: contain;
   width: 35%;
   height: 35%;
   position: relative;
    left: 30%;
    margin-bottom: 10px;
}
.itemi .logoi h3 {	
   color: #fff;
}
.itemi h3 {
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 1rem;
   padding: 0px;   
   background: rgba(0, 0, 0, 0.8);
   margin: 0px 0 0 0;
}
.itemi p {
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 0.8rem;
   padding: 0px;
   margin: 5px 0 0 0;
}
.itemi .p1 {
   font-size: 0.9rem;
   position: absolute;
   color: #fff;
   top: 25%;
   transform: translateY(-25%);
   text-align: center;
   padding: 0px 15px;
   line-height: 23px;
}
.itemi .p2 {
   font-size: 0.9rem;
   position: relative;
   color: #fff;
   top: 45%;
   transform: translateY(-45%);   
   text-align: center;
   padding: 0px 15px;
   line-height: 23px;
}
.itemi .p3 {
   font-size: 0.9rem;
   position: relative;
   color: #fff;
   top: 45%;
   transform: translateY(-45%);      
   text-align: center;
   padding: 0px 15px;
   line-height: 23px;
}
.itemi .p4 {
   font-size: 0.9rem;
   position: relative;
   color: #fff;
   top: 35%;
   transform: translateY(-35%);      
   text-align: center;
   padding: 0px 15px;
   line-height: 23px;
}

.itemi a.info {
   display: inline-block;
   text-decoration: none;
   padding: 7px 14px;
   background: #000;
   color: #fff;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
}
.itemi a.info:hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}						

/* NINTH EXAMPLE*/
.recurses-itemi .mascarai-1, .recurses-itemi .mascarai-2 {
    background-color: rgba(0, 0, 0, 0.5);
    height: 361px;
    width: 361px;
    background: rgba(21, 92, 255, 0.5);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0.6s;
    -moz-transition: all 0.3s ease-in-out 0.6s;
    -o-transition: all 0.3s ease-in-out 0.6s;
    transition: all 0.3s ease-in-out 0.6s;
}
.recurses-itemi .mascarai-1 {
    left: auto;
    right: 0;
    -webkit-transform: rotate(56.5deg) translateX(-180px);
    -moz-transform: rotate(56.5deg) translateX(-180px);
    -o-transform: rotate(56.5deg) translateX(-180px);
    -ms-transform: rotate(56.5deg) translateX(-180px);
    transform: rotate(56.5deg) translateX(-180px);
    -webkit-transform-origin: 100% 0%;
    -moz-transform-origin: 100% 0%;
    -o-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}
.recurses-itemi .mascarai-2 {
    top: auto;
    bottom: 0;
    -webkit-transform: rotate(56.5deg) translateX(180px);
    -moz-transform: rotate(56.5deg) translateX(180px);
    -o-transform: rotate(56.5deg) translateX(180px);
    -ms-transform: rotate(56.5deg) translateX(180px);
    transform: rotate(56.5deg) translateX(180px);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}
.recurses-itemi .content {
    background: rgba(0, 0, 0, 0.9);
    height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    opacity: 0.5;
    width: 361px;
    overflow: hidden;
    -webkit-transform: rotate(-33.5deg) translate(-112px, 166px);
    -moz-transform: rotate(-33.5deg) translate(-112px, 166px);
    -o-transform: rotate(-33.5deg) translate(-112px, 166px);
    -ms-transform: rotate(-33.5deg) translate(-112px, 166px);
    transform: rotate(-33.5deg) translate(-112px, 166px);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: all 0.4s ease-in-out 0.3s;
    -moz-transition: all 0.4s ease-in-out 0.3s;
    -o-transition: all 0.4s ease-in-out 0.3s;
    transition: all 0.4s ease-in-out 0.3s;
}
.recurses-itemi h3 {
    background: transparent;
}


.recurses-itemi .h3{
	opacity: 1;
	transition: all 0.5s ease-in-out 0.4s;

}

.recurses-itemi:hover .h3{
	opacity:  0;
	transition:all 0.5s ease-in-out 0.4s;
}


.recurses-itemi .h5{
	opacity: 1;
	transition: all 0.5s ease-in-out 0.4s;

}

.recurses-itemi:hover .h5{
	opacity:  0;
	transition:all 0.5s ease-in-out 0.4s;
}

.recurses-itemi a.info {
    display: none;
}
.recurses-itemi:hover .content {
    height: 200px;
    width: 300px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    opacity: 0.9;
    -webkit-transform: rotate(0deg) translate(0, 0);
    -moz-transform: rotate(0deg) translate(0, 0);
    -o-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
}
.recurses-itemi:hover .mascarai-1, .recurses-itemi:hover .mascarai-2 {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.recurses-itemi:hover .mascarai-1 {
    -webkit-transform: rotate(56.5deg) translateX(1px);
    -moz-transform: rotate(56.5deg) translateX(1px);
    -o-transform: rotate(56.5deg) translateX(1px);
    -ms-transform: rotate(56.5deg) translateX(1px);
    transform: rotate(56.5deg) translateX(1px);
}
.recurses-itemi:hover .mascarai-2 {
    -webkit-transform: rotate(56.5deg) translateX(-1px);
    -moz-transform: rotate(56.5deg) translateX(-1px);
    -o-transform: rotate(56.5deg) translateX(-1px);
    -ms-transform: rotate(56.5deg) translateX(-1px);
    transform: rotate(56.5deg) translateX(-1px);
}	


/* --------- Work --------- */
#centro .work-border-top{border-top: 5px solid #fff;}

#centro .work{
	/* We first create a flex layout context */
	display: flex;

	/* Then we define the flow direction 
	and if we allow the items to wrap 
	* Remember this is the same as:
	* flex-direction: row;
	* flex-wrap: wrap;
	*/
	flex-direction: row;
	/* Then we define how is distributed the remaining space */
	justify-content: space-between;

	padding: 0;
	margin: 0;
}
#centro .work .works{
	width: 100%;
	color: white;
  background-color: #000;
	overflow: hidden;
	text-align: center;
}
#centro .work .works img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transform: scale(1.5);
	position: relative;
	top: -50px; /* ajustar los valores para mover la imagen */
	left: -5px;						
}
#centro .work .works h3 {
    font-size: 1.7rem;
    font-family: AlbraBlack;
    color: #fff;
    z-index: 1000;
    position: relative;
    top: 5rem;
}

#centro .work .works .title-work{
	font-size: 3rem;
	font-family: AlbraBlack;
	color: #145cfe;
	z-index: 1000;
	position: relative;
	top: 5rem;
  text-shadow: 2px 2px mediumblue;
}

#centro .work .works .subtitle-work{
	font-size: 1rem;
	display: none;
	color: #fff;
	z-index: 1000;
	position: relative;
	top: 3rem;
}

/*#centro .work .works .works-icon {
  width: 5rem;
  height: 5rem;
  top: 7.8rem;
}*/

.bg-graphic_design_icon {
  width: 80px; height: 80px;
  background: url('css_sprites.png') -10px -10px;
}

.bg-graphic_design_icon_reverse {
  width: 80px; height: 80px;
  background: url('css_sprites.png') -110px -10px;
}

#centro .work .works #video-icon {
  background: url("../imagenes/iconos/newicons150x150/video-production-icon.png");
  width: 155px;
  height: 155px;
  margin-top: 7rem;
  display: inline-block;
  background-repeat: no-repeat;
  transition-duration: 500ms;
  transition-delay: 100ms;
}

#centro .work .works #video-icon:hover{
  background-image: url("../imagenes/iconos/newicons150x150/video-production-icon-reverse.png");
  transition-duration: 500ms;
  transition-delay: 100ms;
}

#centro .work .works #design-icon {
  background: url("../imagenes/iconos/newicons150x150/graphic-design-icon.png");
  width: 155px;
  height: 155px;
  margin-top: 7rem;
  display: inline-block;
  background-repeat: no-repeat;
  transition-duration: 500ms;
  transition-delay: 100ms;
}

#centro .work .works #design-icon:hover{
  background-image: url("../imagenes/iconos/newicons150x150/graphic-design-icon-reverse.png");
  transition-duration: 500ms;
  transition-delay: 100ms;
}

#centro .work .works #photo-icon {
  background: url("../imagenes/iconos/newicons150x150/photography-icon.png");
  width: 155px;
  height: 155px;
  margin-top: 7rem;
  display: inline-block;
  background-repeat: no-repeat;
  transition-duration: 500ms;
  transition-delay: 100ms;
}

#centro .work .works #photo-icon:hover{
  background-image: url("../imagenes/iconos/newicons150x150/photography-icon-reverse.png");
  transition-duration: 500ms;
  transition-delay: 100ms;
}

#centro .work .works p {
    color: #FFF;
    width: 55%;
    text-align: center;
    margin: 2.625rem auto;
    padding: 0 2rem;
}

#centro .work .works .button-work{
	font-size: 1.5rem;
	cursor: pointer;
	color: #145cfe;
	z-index: 1000;
	position: relative;
	/*top: 6rem;*/
	margin: 0px auto;
	border-radius: 3px;
	width: 200px;
	height: 45px;
	transition: all .4s;
	display: block;
}

#centro .work .works .center{
	display: flex;
	justify-content: center;
	align-items: center;
}

#centro .work .works .button-work .d1,#centro .work .works .button-work .d2{
	position: absolute;
	width: 100%;height: 1px;
	background: #155cff;
	transform:scale(0);
	transition: all .4s;
	transition-delay: .4s;
}

#centro .work .works .d1{
	top:0;
	transform-origin: left;
}

#centro .work .works .button-work:hover .d1,#centro .work .works .button-work:hover .d2{
	transform:scale(1);
	transition-delay: 0s;
}

#centro .work .works .button-work .d3,#centro .work .works .button-work .d4{
	width: 1px;
	height: 100%;
	position: absolute;
	background: #155cff;
	transform: scaleY(0);
	transition: all .4s;
}

#centro .work .works .button-work .d3{
	left: 0;
	transform-origin: bottom;
}

#centro .work .works .button-work .d4{
	right: 0;
	transform-origin: top;
}

#centro .work .works .button-work:hover .d3,#centro .work .works .button-work:hover .d4{
	transform: scaleY(1);
	transition-delay: .4s;
}

#centro .work .works .d2{
	bottom:0;
	transform-origin: right;
}

#centro .work .works .button-work:hover{
	transition-delay: .8s;
	color: #155cff;
}


#centro .work .works .button-work-2{
	font-size: 1.5rem;
	cursor: pointer;
	color: #fff;
	z-index: 1000;
	position: relative;
	top: 6rem;
	margin: 0px auto;
	border-radius: 3px;
	width: 275px;
	height: 45px;
	transition: all .4s;
	display: block;
}

#centro .work .works .center{
	display: flex;
	justify-content: center;
	align-items: center;
}

#centro .work .works .button-work-2 .d1,#centro .work .works .button-work-2 .d2{
	position: absolute;
	width: 100%;height: 1px;
	background: #155cff;
	transform:scale(0);
	transition: all .4s;
	transition-delay: .4s;
}

#centro .work .works .button-work-2 .d1{
	top:0;
	transform-origin: left;
}

#centro .work .works .button-work-2:hover .d1,#centro .work .works .button-work-2:hover .d2{
	transform:scale(1);
	transition-delay: 0s;
}

#centro .work .works .button-work-2 .d3,#centro .work .works .button-work-2 .d4{
	width: 1px;
	height: 100%;
	position: absolute;
	background: #155cff;
	transform: scaleY(0);
	transition: all .4s;
}

#centro .work .works .button-work-2 .d3{
	left: 0;
	transform-origin: bottom;
}

#centro .work .works .button-work-2 .d4{
	right: 0;
	transform-origin: top;
}

#centro .work .works .button-work-2:hover .d3,#centro .work .works .button-work-2:hover .d4{
	transform: scaleY(1);
	transition-delay: .4s;
}

#centro .work .works .button-work-2 .d2{
	bottom:0;
	transform-origin: right;
}

#centro .work .works .button-work-2:hover{
	transition-delay: .8s;
	color: #155cff;
}

#centro .work .works .button-work-2 .fa{
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;
}

#centro .work .works .button-work-2:hover .fa{
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;		
	padding-left: 30px; 
}

#centro .work .works .button-work .fa{
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;
}

#centro .work .works .button-work:hover .fa{
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;		
	padding-left: 30px; 
}
.inset {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.5em;
	background: #111;
	border-style: solid;
	border-width: 30px;
	border-top-color: #111;
	border-right-color: #111;
	border-bottom-color: #111;
	border-left-color: #111;
}	

.works-opacity{
	background: #155cff;
	width: 99%;
	height:100%;
	position: absolute;
	z-index: 999;
	opacity: 0.3;
	display: none;

}

#mobilequickfixA {
  display:block;
}
#mobilequickfixB {
  display: none!important;
}

/* --------- End Work --------- */

/*---------- Work Videos ---------*/
.videos-container{
	width: 100%;
	background: #fff;
	margin: 0px auto;
	text-align: center;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
}

.da-thumbs {
	list-style: none;
	width: 100%;
	position: relative;
	margin: 0px auto;
	padding: 0;
}
.da-thumbs li {
	display: inline-block;
  	width: 32.5%;
  	height: 220px;
  	background: #fe4;
  	position: relative;
  	overflow: hidden;
  	margin: 0.2%;
  	cursor: pointer;
}
.da-thumbs li .a,
.da-thumbs li .a img {
  min-height: 100%;
  width: 100%;
}
.da-thumbs li .a {
	overflow: hidden;
}
.da-thumbs li .a .div {
	position: absolute;
	opacity: 0.7;
	background: #155cff;
	width: 100%;
	height: 100%;
}
.da-thumbs li .a .div span {
	display: block;
	padding: 10px 0;
	margin: 150px 20px 20px 20px;
	font-size: 1rem;
	color: #fff;
	
}	

section.boton-play{width: 50px;position: absolute;top: 42.5%;left: 43%;opacity: 0.6;
height:50px;
text-align: center;
background: white ;
border-radius: 50%;
margin-right: 5px;
display: inline-block;
}
section.boton-play i {
margin: 17px 0 0 5px;
 color:#155cff;}
section.boton-play:hover{
 background: #155cff;
}
section.boton-play:hover i{color: #fff;}

.arrow-right {
	position: absolute;
	margin-top:15%;margin-left: 45%;
	width: 0; 
	height: 0; 
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 50px solid white;
}

/* --------- End Work Videos --------- */

/* --------- Photography ---------*/
.photography-container{
  margin: 0px auto;
  width: 100%;
  height:100%;
  overflow:hidden;
  position: relative;
  border-top: 5px solid;
  border-bottom: 5px solid #fff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
 justify-content: center;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 33%;
  padding: 0 18px;
}

.column img {
  margin: 18px 0;
  vertical-align: middle;
  width: 100%;
  cursor: pointer;

      -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
  transition: all 1s; 
}

.column img:hover {
  opacity: 0.7;

    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
  transition: all 1s;   
}

.cb{display: none;}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  .ca{display: none;}
  .cb{display: block;}
}


/* Create four equal columns that floats next to eachother */
.rows{width: 100%;overflow-x: scroll;margin: 0px auto; overflow: auto; white-space: nowrap;margin: 0 0 20px 0;}
.rows .columns {width: auto;padding: 10px 0;margin: 10px auto;cursor: pointer;overflow: hidden;display: inline-block;}
.rows .columns img{width: 200px;height: 200px;max-height: 100%;max-width: 100%;object-fit: cover;}

/* Scroll Horizontal */
.rows::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.rows::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}
.rows::-webkit-scrollbar-thumb {
  background-image: linear-gradient(45deg, #155cff, #155cff);
  border-radius: 10px;
  -webkit-box-shadow: rgba(0,0,0,.12) 0 3px 13px 1px;
}

/* The Modal (background) */
.modal{display: none;position: fixed;z-index: 100000;padding-top: 10px;left: 0;top: 0;width: 100%;height: 100%;background: black;}
/* Modal Content */

/* Scroll Vertical */
.modal::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.modal::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}
.modal::-webkit-scrollbar-thumb {
  background-image: linear-gradient(45deg, #155cff, #155cff);
  border-radius: 10px;
  -webkit-box-shadow: rgba(0,0,0,.12) 0 3px 13px 1px;
}

.modal-content {position: relative;margin: auto;padding: 0;width: 90%;max-width: 1200px;}

/* The Close Button */
.close {color: white; position: absolute; top: -40px; right: 25px; font-size: 35px; font-weight: bold;z-index: 10000;}

.close:hover,.close:focus {color: #999; text-decoration: none; cursor: pointer;}
/* Hide the slides by default */
.mySlides {display: none;top: 0;left: 0;height: auto;width: 100%;height: 87vh;margin: 0;padding: 0;margin: 0px auto;text-align: center;}

.mySlidesP {display: none;top: 0;left: 0;height: auto;width: 100%;height: 100vh;margin: 0;padding: 0;margin: 0px auto;text-align: center;}


.mySlides img{width: 100%;height: 100%;max-height: 100%;max-width: 100%;object-fit: contain;margin: 0px auto}

.mySlidesP img{width: 100%;height: 100%;max-height: 100%;max-width: 100%;object-fit: contain;margin: 0px auto}

.mySlides iframe{width: 100%;height: 100%;max-height: 100%;max-width: 100%;object-fit: contain;margin: 0px auto}

.mySlides .title-mySlides{color: #fff;font-size: 1.3rem;font-weight: bold;margin: 10px 0 10px 0;}

.mySlides .subtitle-mySlides{color: #fff;font-size: 1.1rem;}

/* Next & previous buttons */
.prev,.next {cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -50px; color: white; font-weight: bold; font-size: 20px;
  transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; -webkit-user-select: none;}

  /* Position the "next button" to the right */
.next { right: 0;  border-radius: 3px 0 0 3px;}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,.next:hover {  background-color: grey;}

/* Number text (1/3 etc) */
.numbertext { color: #f2f2f2; font-size: 12px; padding: 8px 12px; position: absolute; top: 0;}

img.demo {opacity: 0.6;}

.active,.demo:hover {opacity: 1;}

img.hover-shadow {transition: 0.3s;}

.hover-shadow:hover {box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}

@media screen and (max-width: 800px) {
  .mySlides {display: none;top: 0;left: 0;height: auto;width: 100%;height: 100%;margin: 0;padding: 100px 0 0 0;margin: 0px auto;text-align: center;}

  .mySlides img{width: 100%;height: 100%;max-height: 100%;max-width: 100%;object-fit: contain;margin: 0px auto}

  .mySlides iframe{width: 100%;height: 100%;max-height: 100%;max-width: 100%;object-fit: contain;margin: 0px auto}

  .mySlides .title-mySlides{color: #fff;font-size: 1.3rem;font-weight: bold;margin: 0 0 10px 0;}

  .close {z-index: 10000;}
}

/* --------- End Photography ---------*/

/* --------- Graphic Design ---------*/
.titulo-graphic-container{
  color: #155cff;	
  font-family: AlbraBlack;
	font-size:calc(50px + 14 * ( (100vw - 576px) / 1024));
  position: relative;
  margin-top: -30px;
  padding: 40px 0 0 0;
  text-shadow: 2px 2px mediumblue;
}

.titulo2-graphic-container{position: relative;margin-top: -20px;padding: 0 0 20px 0;}

.itemg {
   width: 300px;
   height: 200px;
   margin: 10px;
   display: inline-block;
   overflow: hidden;
   position: relative;
   text-align: center;
   background: #181818;
   cursor: default;
   box-shadow: 20px 20px 50px rgba(24, 24, 24 ,0.8);

}
.itemg .mascarag,.itemg .content {
   width: 300px;
   height: 200px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.itemg .logo{
	background: #181818;
   	position: relative;
   	top: 15%;
}

.itemg .logo img {
   display: block;
   object-fit: contain;
   width: 35%;
   height: 35%;
   position: relative;
    left: 30%;
    margin-bottom: 10px;
}
.itemg .logo h3 {	
   color: #fff;
}

.content-text{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.itemg h3 {
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 1.1rem;
   padding: 5px;
   background: rgba(0, 0, 0, 0.8);
   margin: 20px 0 0 0;
}
.itemg p {
   font-size: 0.9rem;
   position: relative;
   color: #fff;
   text-align: center;
   padding: 0 10px;
}
.itemg a.info {
   display: inline-block;
   text-decoration: none;
   padding: 7px 14px;
   background: #000;
   color: #fff;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
}
.itemg a.info:hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}						


.recurses-itemg .mascarag-1, .recurses-itemg .mascarag-2 {
    background-color: rgba(0, 0, 0, 0.5);
    height: 361px;
    width: 361px;
    background: rgba(21, 92, 255, 0.5);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0.6s;
    -moz-transition: all 0.3s ease-in-out 0.6s;
    -o-transition: all 0.3s ease-in-out 0.6s;
    transition: all 0.3s ease-in-out 0.6s;
}
.recurses-itemg .mascarag-1 {
    left: auto;
    right: 0;
    -webkit-transform: rotate(56.5deg) translateX(-180px);
    -moz-transform: rotate(56.5deg) translateX(-180px);
    -o-transform: rotate(56.5deg) translateX(-180px);
    -ms-transform: rotate(56.5deg) translateX(-180px);
    transform: rotate(56.5deg) translateX(-180px);
    -webkit-transform-origin: 100% 0%;
    -moz-transform-origin: 100% 0%;
    -o-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}
.recurses-itemg .mascarag-2 {
    top: auto;
    bottom: 0;
    -webkit-transform: rotate(56.5deg) translateX(180px);
    -moz-transform: rotate(56.5deg) translateX(180px);
    -o-transform: rotate(56.5deg) translateX(180px);
    -ms-transform: rotate(56.5deg) translateX(180px);
    transform: rotate(56.5deg) translateX(180px);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}
.recurses-itemg .content {
    background: rgba(0, 0, 0, 0.9);
    height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    opacity: 0.5;
    width: 361px;
    overflow: hidden;
    -webkit-transform: rotate(-33.5deg) translate(-112px, 166px);
    -moz-transform: rotate(-33.5deg) translate(-112px, 166px);
    -o-transform: rotate(-33.5deg) translate(-112px, 166px);
    -ms-transform: rotate(-33.5deg) translate(-112px, 166px);
    transform: rotate(-33.5deg) translate(-112px, 166px);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: all 0.4s ease-in-out 0.3s;
    -moz-transition: all 0.4s ease-in-out 0.3s;
    -o-transition: all 0.4s ease-in-out 0.3s;
    transition: all 0.4s ease-in-out 0.3s;
}
.recurses-itemg h3 {
    background: transparent;
}


.recurses-itemg .h3{
	opacity: 1;
	transition: all 0.5s ease-in-out 0.4s;

}

.recurses-itemg:hover .h3{
	opacity:  0;
	transition:all 0.5s ease-in-out 0.4s;
}

.recurses-itemg a.info {
    display: none;
}
.recurses-itemg:hover .content {
    height: 200px;
    width: 300px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    opacity: 0.9;
    -webkit-transform: rotate(0deg) translate(0, 0);
    -moz-transform: rotate(0deg) translate(0, 0);
    -o-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
}
.recurses-itemg:hover .mascarag-1, .recurses-itemg:hover .mascarag-2 {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.recurses-itemg:hover .mascarag-1 {
    -webkit-transform: rotate(56.5deg) translateX(1px);
    -moz-transform: rotate(56.5deg) translateX(1px);
    -o-transform: rotate(56.5deg) translateX(1px);
    -ms-transform: rotate(56.5deg) translateX(1px);
    transform: rotate(56.5deg) translateX(1px);
}
.recurses-itemg:hover .mascarag-2 {
    -webkit-transform: rotate(56.5deg) translateX(-1px);
    -moz-transform: rotate(56.5deg) translateX(-1px);
    -o-transform: rotate(56.5deg) translateX(-1px);
    -ms-transform: rotate(56.5deg) translateX(-1px);
    transform: rotate(56.5deg) translateX(-1px);
}	


.rowgd {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
 justify-content: center;
}

/* Create four equal columns that sits next to each other */
.columngd {
  flex: 25%;
  max-width: 33%;
  padding: 0 18px;
}

.columngd img {
  margin: 18px 0;
  vertical-align: middle;
  width: 100%;
  cursor: pointer;

      -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
  transition: all .5s; 
}

.columngd img:hover {
  opacity: 0.7;

    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
  transition: all 1s;   
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .columngd {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .columngd {
    flex: 100%;
    max-width: 100%;
  }
}

#centro .work .works #video-icon {
  margin-top: 4rem!important;
}

.arrowg-right {
  position: absolute;
  margin-top:25%;margin-left: 45%;
  width: 0; 
  height: 0; 
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 50px solid #155cff;
}

/* --------- End Graphic ---------*/

/* --------- Team ---------*/

.team-container{
	width: 100%;
	background: #000;
	margin: 0px auto;
	text-align: center;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
}

.team-container .team-photos{
	width: 100%;
	background: #000;
	margin: 0px auto;
}

.team-container .team-photos .tphotos{
	display: inline-block;
	width: 400px;
  margin: 35px 50px;
  position: relative;
    overflow: hidden;
    -webkit-border-radius: 4px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 50%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;	
}

.team-container .team-photos .tphotos .imgteam{
width: 100%;
    display: block;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all 0.7s;
}

.team-container .team-photos .tphotos .imgteam:hover{
	transform: scale(1.1);
	transition: all 0.7s;
}

.team-container .team-photos .tphotos:hover .team-member_wrap{
	transform: translateY(0);
	transition: all 0.7s;
}


.team-member_wrap{
	position: absolute;
	bottom: 0px;
	left: 1.2rem;
	color: #fff;
	text-align: left;
	transform: translateY(120px);
	transition: all 0.7s;
  overflow: auto;
  width: 90%;
}
.team-member_title,.team-member_subtitle{
	margin: 0;font-family: Avenir;
}
.team-name-and-jobs{
  float: left;
}
.team-member_title{
	font-size: 1.3rem;
}
.team-member_subtitle{
	font-size: 1rem;
}
.team-socialbar{
  float: right;
	margin: 10px 0;
}
.team-socialbar a{
	text-decoration: none;
	color: #fff;
  position: relative;
  bottom: 10px;
}

div.redes-t{
	font-size: 1.2rem;
	width: 40px;
	height:40px;
	text-align: center;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	margin-right: 5px;
	display: inline-block;
}
div.redes-t i {
	margin-top: 10px;
 color:#fff;
}

div.redes-t:hover{
 background: #fff;
}
div.redes-t:hover i{
	color: #181818;
}

/* --------- End Team ---------*/

#centro .client{
	padding: 7rem 0 12rem 0px;
	margin-top: -1.5rem;
	color:#fff;
	width: 100%;
}


#centro .client .text-client-2{
    font-size: 3em;
    font-weight: 600;
    color: #fff;
    font-family: AlbraBlack;
	  text-align: center;
    text-shadow: 2px 2px #051628;
}

#centro .client .text-client-2-color{
	color: #155cff;
  -webkit-text-stroke: 1px midnightblue;
  text-shadow: 2px 2px #051628;
}

#centro .clients{
	text-align: center;
	width: 95%;
	margin: 0px auto;
}

#centro .client .clients .client-clients{
	margin: 0px auto;
	position: relative;
  display: inline-block;
  width: 16%;
 	padding: 10px 0;
 	margin: 5px;
}

#centro .client .clients .client-clients img{
	width: 70%;height: 70%;max-height: 100%;max-width: 100%;object-fit: contain;position: relative;vertical-align: middle;
}

#centro .client .clients .client-clients .seis{
	width: 40%;height: 40%;max-height: 100%;max-width: 100%;object-fit: contain;
}

#centro .client .clients .client-clients .cuatro{
	width: 80%;height: 80%;max-height: 100%;max-width: 100%;object-fit: contain;
}

#centro .work-e{
	padding: 0rem 0 3rem 0;
	color:#fff;
	width: 100%;
	text-align: center;
}


#centro .efect-p{

	/* The image used */
	background-image: url("../imagenes/inicio/aurora_boreal1.jpg");
	height: 100%;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-v{

	/* The image used */
	background-image: url("../imagenes/video/video-2.jpg");
	height: 60vh;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-g{

	/* The image used */
	background-image: url("../imagenes/graphic/graphic-2.jpg");
	height: 60vh;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-w{

	/* The image used */
	background-image: url("../imagenes/webdesign/webdesign-2.jpg");
	height: 60vh;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-p{

	/* The image used */
	background-image: url("../imagenes/photography/photography-2.jpg");
	height: 60vh;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-t{

	/* The image used */
	background-image: url("../imagenes/team/team-2.jpg");
	height: 60vh;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .welcome-cont{

	/* The image used */
	background-image: url("../imagenes/contact/contact-2.jpg");
	height: 60vh;
    top: -18.3902%;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#centro .work-e .work-es {
	margin: 0px auto;
	position: relative;
    display: inline-block;
    width: 20%;
   	padding: 25px 0;
   	margin: 0px 20px;
   	vertical-align: top;
}

#centro .work-e .work-e-1-image .fa,#centro .work-e .work-e-2-image .fa,#centro .work-e .work-e-3-image .fa,#centro .work-e .work-e-4-image .fa{
	background: #155cff;padding: 15px 0px;font-size: 1.3rem; width: 50px; text-align: center; text-decoration: none; margin: 5px 0px;border-radius: 50%;
}

#centro .work-e .work-e-1-title,#centro .work-e .work-e-2-title,#centro .work-e .work-e-3-title,#centro .work-e .work-e-4-title{
	font-weight: bolder;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

#centro .work-e .work-e-1-subtitle,#centro .work-e .work-e-2-subtitle,#centro .work-e .work-e-3-subtitle,#centro .work-e .work-e-4-subtitle{
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

#centro .work-e .work-e-1-text,#centro .work-e .work-e-2-text,#centro .work-e .work-e-3-text,#centro .work-e .work-e-4-text{
    font-size: .9em;
    color: #fff;
    line-height: 25px;
}



/*Web Development*/
  .br{display: block;}

#centro .recurses{
	background: #181818;
	color:#fff;
	width: 100%;
	text-align: center;
	background: #000;
	border-bottom: 5px solid #fff;
	border-top: 5px solid #fff;
}

#centro .recurses .recurses-welcome .text-welcome .text-welcome-2-f{
	font-family: AlbraBlack;
	font-size:calc(40px + 14 * ( (100vw - 576px) / 1024));
	color: #155cff;
	padding: 50px 0 20px 0;
	margin: 0px auto;
	width: 80%;
}	
.item {
   width: 300px;
   height: 200px;
   margin: 10px;
   display: inline-block;
   overflow: hidden;
   position: relative;
   text-align: center;
   background: #181818;
   cursor: default;
   box-shadow: 20px 20px 50px rgba(24, 24, 24 ,0.8);

}
.item .mascara,.item .content {
   width: 300px;
   height: 200px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.item .logo{
	background: #181818;
   	position: relative;
   	top: 15%;
}

.item .logo img {
   display: block;
   object-fit: contain;
   width: 35%;
   height: 35%;
   position: relative;
    left: 30%;
    margin-bottom: 10px;
}
.item .logo h3 {	
   color: #fff;
}

.content-text{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.item h3 {
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 1.1rem;
   padding: 5px;
   background: rgba(0, 0, 0, 0.8);
   margin: 20px 0 0 0;
}
.item p {
   font-size: 1rem;
   position: relative;
   color: #fff;
   text-align: center;
   padding: 0 10px;
}
.item a.info {
   display: inline-block;
   text-decoration: none;
   padding: 7px 14px;
   background: #000;
   color: #fff;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
}
.item a.info:hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}						

/* NINTH EXAMPLE*/
.recurses-item .mascara-1, .recurses-item .mascara-2 {
    background-color: rgba(0, 0, 0, 0.5);
    height: 361px;
    width: 361px;
    background: rgba(21, 92, 255, 0.5);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0.6s;
    -moz-transition: all 0.3s ease-in-out 0.6s;
    -o-transition: all 0.3s ease-in-out 0.6s;
    transition: all 0.3s ease-in-out 0.6s;
}
.recurses-item .mascara-1 {
    left: auto;
    right: 0;
    -webkit-transform: rotate(56.5deg) translateX(-180px);
    -moz-transform: rotate(56.5deg) translateX(-180px);
    -o-transform: rotate(56.5deg) translateX(-180px);
    -ms-transform: rotate(56.5deg) translateX(-180px);
    transform: rotate(56.5deg) translateX(-180px);
    -webkit-transform-origin: 100% 0%;
    -moz-transform-origin: 100% 0%;
    -o-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}
.recurses-item .mascara-2 {
    top: auto;
    bottom: 0;
    -webkit-transform: rotate(56.5deg) translateX(180px);
    -moz-transform: rotate(56.5deg) translateX(180px);
    -o-transform: rotate(56.5deg) translateX(180px);
    -ms-transform: rotate(56.5deg) translateX(180px);
    transform: rotate(56.5deg) translateX(180px);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}
.recurses-item .content {
    background: rgba(0, 0, 0, 0.9);
    height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    opacity: 0.5;
    width: 361px;
    overflow: hidden;
    -webkit-transform: rotate(-33.5deg) translate(-112px, 166px);
    -moz-transform: rotate(-33.5deg) translate(-112px, 166px);
    -o-transform: rotate(-33.5deg) translate(-112px, 166px);
    -ms-transform: rotate(-33.5deg) translate(-112px, 166px);
    transform: rotate(-33.5deg) translate(-112px, 166px);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: all 0.4s ease-in-out 0.3s;
    -moz-transition: all 0.4s ease-in-out 0.3s;
    -o-transition: all 0.4s ease-in-out 0.3s;
    transition: all 0.4s ease-in-out 0.3s;
}
.recurses-item h3 {
    background: transparent;
}


.recurses-item .h3{
	opacity: 1;
	transition: all 0.5s ease-in-out 0.4s;

}

.recurses-item:hover .h3{
	opacity:  0;
	transition:all 0.5s ease-in-out 0.4s;
}

.recurses-item a.info {
    display: none;
}
.recurses-item:hover .content {
    height: 200px;
    width: 300px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    opacity: 0.9;
    -webkit-transform: rotate(0deg) translate(0, 0);
    -moz-transform: rotate(0deg) translate(0, 0);
    -o-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
}
.recurses-item:hover .mascara-1, .recurses-item:hover .mascara-2 {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.recurses-item:hover .mascara-1 {
    -webkit-transform: rotate(56.5deg) translateX(1px);
    -moz-transform: rotate(56.5deg) translateX(1px);
    -o-transform: rotate(56.5deg) translateX(1px);
    -ms-transform: rotate(56.5deg) translateX(1px);
    transform: rotate(56.5deg) translateX(1px);
}
.recurses-item:hover .mascara-2 {
    -webkit-transform: rotate(56.5deg) translateX(-1px);
    -moz-transform: rotate(56.5deg) translateX(-1px);
    -o-transform: rotate(56.5deg) translateX(-1px);
    -ms-transform: rotate(56.5deg) translateX(-1px);
    transform: rotate(56.5deg) translateX(-1px);
}

/*Contact*/

#centro .welcome .div-contact{
display : flex;
justify-content : center;
align-items : center;

}

#centro .welcome .contact{
text-align: center;
margin-top: 3%;
}

#centro .welcome .contact .contact-title-1{
	font-size: 5rem;
	font-family: AlbraBlack;
	color: #155cff;
  -webkit-text-stroke: 1px midnightblue;
  text-shadow: 2px 2px #051628;
}

#centro .welcome .contact .contact-subtitle-1{
	font-size: 1.3rem;
	color: #fff;
	font-weight: bolder;
}

#centro .form{border-top: 1px solid #c1c1c1; padding: 1rem 0;width: 100%;margin: 0px auto;display: flex;flex-direction: row;justify-content: space-between;background: #181818;}
#centro .form .leftcontact{width: 65%;overflow: hidden;}
#centro .form .leftcontact form{width: 65%;float: right;margin-right: 100px;}
#centro .form .leftcontact form .form-text{color:#fff;background: #155cff;width: 100%;padding: 8px 15px;font-size: 0.85rem;margin: 25px 0;border-radius: 3px;text-align: center;}
#centro .form .leftcontact form label{font-size: .9em;font-weight: 600;color: #A4A3A6;}
#centro .form .leftcontact form .input{ 
	color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    width: 100%;
    padding: 14px 15px;
    line-height: 1.3;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: 10px 0;
    position: relative;
    -webkit-appearance: none;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    outline: none;
    font-family: inherit;
    font-weight: 400;
    font-size: inherit;
    font-family: SegoeR;
}

#centro .form form .textarea{ 
	color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    width: 100%;
    height: 200px;
    padding: 14px 15px;
    margin: 10px 0;
    line-height: 1.3;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    -webkit-appearance: none;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    outline: none;
    font-family: inherit;
    font-weight: 400;
    font-size: inherit;
    font-family: SegoeR;
}

#centro .form form .inputs{ 
	border: none;
	background-color: #155cff;
	color: #fff;
	padding: 10px 15px;
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;
	font-size: 1em;
	cursor: pointer;
	font-weight: 600;
	font-family: SegoeR;
	margin: 10px 0;
	border-radius: 3px;
}

#centro .form form .inputs:hover{ 
	border: none;
    -moz-transition: all .5s ease-in-out; /* Para Mozilla */
    -o-transition: all .5s ease-in-out; /* Para Ópera */
    -ms-transition: all .5s ease-in-out; /* Para Explorer */
    transition:all .5s ease-in-out;
	transition: all 1s;			
}

#centro .form .rightcontact{width: 35%;float: left;}
#centro .form .rightcontact .rcontact .contact-title-2{
	font-size: 1.3rem;
	font-weight: bolder;
	color: #fff;
	margin: 30px 0 0 0;
}

#centro .form .rightcontact .rcontact .contact-subtitle-2{
	font-size: 1.1rem;
	color: #fff;
	margin: 10px 0 0 0;
}

#centro .form .rightcontact .rcontact .contact-subtitle-2 .social-media{
	margin: 10px 0;
}

#centro .form .rightcontact .rcontact .contact-subtitle-2 .social-media a{
	text-decoration: none;
	color: #fff;
	transition: all 0.5s;
}

#centro .form .rightcontact .rcontact .contact-subtitle-2 .social-media a:hover{
	color: #155cff;
	transition: all 0.5s;
}
/*----------------------------*/

#cuerpo #pie{width:100%;height:auto;margin:0px auto;bottom: 0px !important;position:absolute;background-color: #000;text-align: center;opacity: 0.75;border-top:5px solid #fff;}
#cuerpo #pie .pie{padding: 1rem 0;width: 100%;margin: 0px auto;overflow: hidden;}

#cuerpo #pie .pie .pie-l3,#cuerpo #pie .pie .pie-l2,#cuerpo #pie .pie .pie-l1{width: 30%;display: inline-block;}

#cuerpo #pie .pie .pie-l3{float: right;position: relative;top: 20px;right: -100px;}
#cuerpo #pie .pie .pie-l3 a{text-decoration: none;font-size: 1.3rem;}
#cuerpo #pie .pie .pie-l3 div.redes-f{width: 40px;position: relative;
height:40px;
text-align: center;
background: white ;
border-radius: 50%;
margin-right: 5px;
display: inline-block;
}
#cuerpo #pie .pie .pie-l3 div.redes-f i {
margin-top: 10px;
 color:#262626;}
#cuerpo #pie .pie .pie-l3 div.redes-f:hover{
 background: #155cff;
}
 #cuerpo #pie .pie .pie-l3 div.redes-f:hover i{color: #fff;}

#cuerpo #pie .pie .pie-l2{}
#cuerpo #pie .pie .pie-l2 a img{width: 7rem;} 

#cuerpo #pie .pie .pie-l1{float: left;position: relative;top: 5px}
#cuerpo #pie .pie .pie-l1 ul{color: #fff;text-align: left;position: relative;}
#cuerpo #pie .pie .pie-l1 ul li{list-style: none;display: block;margin:8px 0;}
#cuerpo #pie .pie .pie-l1 ul li .fa{margin-right: 3px;align-content: center;}

/*--------- Services Modal -----------*/
#popup{
    background: #000;    
    width: 100%;
    height: 100%;
    z-index: 100100;
    position: fixed;
    display: none;
    background-image: url(../imagenes/graphic/popup.jpg) !important;
    background-size: cover;
    /*background-size: contain;*/
    background-position: center center;
    transition: all 0.5s;
}           
.close-modal{
    margin: auto;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 4  
}
.close-modal:hover .leftright{
  transform: rotate(-45deg);
  background-color: #155cff;
}
.close-modal:hover .rightleft{
  transform: rotate(45deg);
  background-color: #155cff;
}

.popups{
    width: 100%;
    margin: 0px auto;
    padding-top: 30px;
    text-align: center;
}
.popups .ptitle{
    font-family: AlbraBlack;
    color: #155cff;
    font-size: 4rem;
    padding: 20px 0;
}
.popups .pdesarrollo{
    color: #fff;
    font: 1.5vw/1.4  Avenir,sans-serif;
    width: 75%;
    margin: 0px auto;
    line-height: 36px;
    padding: 20px 0;
    letter-spacing: 2px;
}
.popups .plink a{
    color: #28B792;
    font: 1.6vw/1.4 Sansation Regular,sans-serif;
    text-decoration: none;
    transition: all .3s ease-in;
}
.popups .plink a:hover{
    letter-spacing: 3px;
    transition: all .3s ease-in;
    font-weight: bolder;
}
.buttons{
    position: absolute;
    bottom: 5% !important;
    left: 8%;
}
.pbuttons{
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all .3s ease-in;
}
.pbuttons:hover{
    transition: all .3s ease-in;
    background-color: rgba(21, 92, 255, 0.4);
}
.pbuttons-next{
    margin-left: 20px;
}
.pbuttons i{
    color: #fff;
    font-size: 2rem;
    position: relative;
    top: 0%;
    left: 27%;
}
.pbuttons .fa-angle-right{
    color: #fff;
    font-size: 2rem;
    position: relative;
    top: 0%;
    left: 35%;
}
.pbox{
    width: 350px;
    float: right;
    margin: 10px 3% 0 0;  
    z-index: 1000;  
}
.poffer{
    width: 300px;
    background: #28B792;;
    border-radius: 25px;
    padding: 10px 25px;
    color: #111;
    font-size: 1.5rem;
    font-family: Sansation Regular;
    position: relative;
    letter-spacing: 3px;
    z-index: 1000;
    box-shadow: 0 15px 2px -2px rgba(0, 0, 0, 0.4);
}
.pcirculo{
    width: 40px;
    height: 40px;
    border-radius: 25px;
    background: #0D3A35;
    position: absolute;
    right: 5px;
    top: 3px;
}
.fa-angle-down{
    color: #28B792;
    font-size: 3.5rem;
    position: relative;
    left: 33%;
    top: 17.5%;
}
.plist{
    background-color: rgba(40, 183, 146, 0.4);
    padding: 15px 0 3px 0;
    border-radius: 25px;
    position: relative;
    top: -29px;
    z-index: 999;
}
.plist ul{
    list-style: none;
    position: relative;
    left: -20px;
}
.plist ul li{
    font: 1.6vw/1.4 Sansation Light,sans-serif;
    color: #fff;
    padding: 10px 0;
}
.plist ul .border{
    border-top:  1px solid rgba(13, 58, 53, 0.9);   
}
.plist ul .border-p{
    padding-top: 20px;
}

.plist ul li .plist-title{
    font: 1.6vw/1.4 Sansation Regular,sans-serif;
}
.pimg{
    width: 100%;
    position: relative;                     
}
.pimg .ip{
    width: 25%;
    position: absolute;
    top: -100px;
    left: 35%;
}   
.pimg .mg{
    width: 35%;
    position: absolute;
    top: -95px;
    left: 29%;

}
.pimg .bd{
    width: 30%;
    position: absolute;
    top: -90px;
    left: 39%;
    z-index: 0;
}       
.pimg .bi{
    width: 20%;
    position: absolute;
    top: 0px;
    left: 10%;
    z-index: 0;
}

@media screen and (max-width: 1280px){
  #centro .work .works p {
    padding: 0 6rem;
  }
}

/*---------------------------------*/  

@media screen and (max-width: 1201px){

	#centro .welcome .text-welcome{
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	#centro .welcome .text-welcome-3,#centro .welcome .text-welcome-4{
		margin:0.8rem auto;width: 100%;font-size: 1.1rem;
	}	

  #cuerpo #pie .pie .pie-l3{float: right;position: relative;top: 20px;right: -60px;}
}

@media screen and (max-width: 1050px){
#cuerpo #pie{width:100%;height:auto;margin:0px auto;bottom: 0px !important;position:absolute;background-color: #000;text-align: center;opacity: 0.75;border-top:5px solid #fff;}
#cuerpo #pie .pie{padding: 1rem 0;width: 100%;margin: 0px auto;overflow: hidden;}

#cuerpo #pie .pie .pie-l3,#cuerpo #pie .pie .pie-l2,#cuerpo #pie .pie .pie-l1{width: 30%;display: inline-block;}

#cuerpo #pie .pie .pie-l3{float: right;position: relative;top: 20px;right: -40px;}
#cuerpo #pie .pie .pie-l3 a{text-decoration: none;font-size: 1.3rem;}
#cuerpo #pie .pie .pie-l3 div.redes-f{width: 40px;position: relative;
height:40px;
text-align: center;
background: white ;
border-radius: 50%;
margin-right: 5px;
display: inline-block;
}
#cuerpo #pie .pie .pie-l3 div.redes-f i {
margin-top: 10px;
 color:#262626;}
#cuerpo #pie .pie .pie-l3 div.redes-f:hover{
 background: #155cff;
}
 #cuerpo #pie .pie .pie-l3 div.redes-f:hover i{color: #fff;}

#cuerpo #pie .pie .pie-l2{}
#cuerpo #pie .pie .pie-l2 a img{width: 7rem;} 

#cuerpo #pie .pie .pie-l1{float: left;position: relative;top: 5px}
#cuerpo #pie .pie .pie-l1 ul{color: #fff;text-align: left;position: relative;}
#cuerpo #pie .pie .pie-l1 ul li{list-style: none;display: block;margin:8px 0;}
#cuerpo #pie .pie .pie-l1 ul li .fa{margin-right: 3px;align-content: center;}

#centro .work .works p {
  padding: 0 2rem;
}

}

@media screen and (max-width: 970px){
  .br{display: none;}

}

@media screen and (max-width: 950px){
  #cuerpo #pie{width:100%;height:auto;margin:0px auto;bottom: 0px !important;position:absolute;background-color: #000;text-align: center;opacity: 0.75;border-top:5px solid #fff;}
  #cuerpo #pie .pie{padding: 1rem 0;width: 100%;margin: 0px auto;text-align: center;}

  #cuerpo #pie .pie .pie-l3,#cuerpo #pie .pie .pie-l2,#cuerpo #pie .pie .pie-l1{width: 100%;display: block;text-align: center;}

  #cuerpo #pie .pie .pie-l3{float: none;position: relative;padding-bottom: 20px;left: 1.1%;}

  #cuerpo #pie .pie .pie-l2{}
  #cuerpo #pie .pie .pie-l2 a img{width: 7rem;} 

  #cuerpo #pie .pie .pie-l1{float: none;position: relative;right: 1.7%;}
  #cuerpo #pie .pie .pie-l1 ul{text-align: center;}
}

@media screen and (max-width: 920px){
.menu {
  margin: 30px 0 0 32px;
  justify-content: left;
  float: left;
}

.menu li {
  margin-left: 32px;
  display: block;
}

.menu a span:first-child {
  font-family: Avenir;
  display: inline-block;
  padding: 2px 0;
  font-size: 2.5rem;
  font-weight: bolder;
  color: #fff;
}

.menu a span:last-child {
  font-family: Avenir;
  position: absolute;
  display: inline-block;
  padding: 2px 0;
  left:0px;
  justify-content: left;
  transform: translateY(100%);
  color: transparent;
  -moz-text-stroke: 1px #fff;
  -webkit-text-stroke: 1px #fff;
  -o-text-stroke: 1px #fff;
  text-stroke:1px #fff;
  font-weight: bolder;
  font-size: 2.5rem;
}

.datos-d-r{position: absolute;bottom: 10px !important;left:30px;}

.br{display: none;}

  #centro .work{

    display: block;
    padding: 0;
    margin: 0;
  }

  #centro .client .clients .client-clients{
    margin: 0px auto;
    position: relative;
      display: inline-block;
      width: 30%;
      padding: 25px 0;
  }

  #centro .welcomeh{
    padding: 5rem 0 10rem 0;
    color:#fff;
    width: 100%;
  }

  #centro .welcome2{
    padding: 5rem 0 12rem 0;
    color:#fff;
    width: 100%;
  }

#centro .welcomevi{
  padding: 5rem 0 15rem 0;
  color:#fff;
  width: 100%;
}

  #centro .welcome3{
    padding: 5rem 0 23rem 0;
    color:#fff;
    width: 100%;
  }
}

@media screen and (max-width: 800px){
  .menu {
    margin: 30px 0 0 32px;
    justify-content: left;
    float: left;
  }

  .menu li {
    margin-left: 32px;
    display: block;
  }

  .menu a span:first-child {
    font-family: Avenir;
    display: inline-block;
    padding: 2px 0;
    font-size: 2.5rem;
    font-weight: bolder;
    color: #fff;
  }

  .menu a span:last-child {
    font-family: Avenir;
    position: absolute;
    display: inline-block;
    padding: 2px 0;
    left:0px;
    justify-content: left;
    transform: translateY(100%);
    color: transparent;
    -moz-text-stroke: 1px #fff;
    -webkit-text-stroke: 1px #fff;
    -o-text-stroke: 1px #fff;
    text-stroke:1px #fff;
    font-weight: bolder;
    font-size: 2.5rem;
  }

  .datos-d-r{position: absolute;bottom: 10px !important;left:30px;}

  /*Contact*/
  #centro .welcome-efect-cont{

    /* The image used */
    background-image: url("../imagenes/contact/contact-1.jpg");
    height: 15vh;
      top: -18.3902%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  }


  #centro .welcome .div-contact{
  display : flex;
  justify-content : center;
  align-items : center;

  }

  #centro .welcome .contact{
  text-align: center;
  margin-top: -10%;
  }

  #centro .welcome .contact .contact-title-1{
    font-size: 4rem;
    font-family: AlbraBlack;
    color: #155cff;
  }

  #centro .welcome .contact .contact-subtitle-1{
    font-size: 1.3rem;
    color: #fff;
    font-weight: bolder;
  }

  #centro .form{border-top: 1px solid #c1c1c1; padding: 1rem 0;width: 100%;margin: 0px auto;display: inline-block;flex-direction: none;background: #181818;}
  #centro .form .leftcontact{width: 90%;}
  #centro .form .leftcontact form{width: 90%;margin: 0px auto;}


  #centro .form .rightcontact{width: 95%;padding-left: 37px;}



  #centro .welcome-cont{

    /* The image used */
    background-image: url("../imagenes/contact/contact-2.jpg");
    height: 60vh;
      top: -18.3902%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  }

  /*----------------------------*/

  #centro .recurses .recurse {
    margin: 0px auto;
    position: relative;
      display: inline-block;
      width: 43%;
      padding: 25px 20px;
      margin: 10px 1px;
      vertical-align: top;
      border:1px solid #155cff;
      border-radius: 10px;
      height: 150px;
  }


  .da-thumbs li {
    display: inline-block;
      width: 48%;
      height: 250px;
      background: #fe4;
      position: relative;
      overflow: hidden;
      margin: 0.2%;
      cursor: pointer;
  }

  #centro .welcome2{
    padding: 5rem 0 25rem 0;
    color:#fff;
    width: 100%;
  }

  #centro .welcomevi{
    padding: 5rem 0 18rem 0;
    color:#fff;
    width: 100%;
  }


  #centro .welcome3{
    padding: 5rem 0 20rem 0;
    color:#fff;
    width: 100%;
  }
  #centro .work .works p {
    padding: 0 1rem;
    width: 75%;
  }
}

@media screen and (max-width: 500px){

  body{
    overflow-x: hidden;
  }

  #cuerpo #hdm {
    background-color: #000;
    opacity: 90%;
  }

  .close-container {
      position: absolute;
      right: 20px;
      top: 0px;
      margin: auto;
      width: 50px;
      height: 50px;
      cursor: pointer;
  }

  #cuerpo #hdm .box:nth-child(1) img{
    width: 6rem; 
    margin-left: 1rem;
    margin-top: 1rem;
  }
  #cuerpo #hdm .box:nth-child(2) {
    margin-right: 1rem;
  }

  .rightmenu{
    height: 100%;
    overflow: hidden;
  }

  .menu {
    margin: 35px 0 0 5px;
    justify-content: left;
    float: left;
  }

  .menu li {
    margin-left: 5px;
    display: block;
  }

  .menu a span:first-child {
    font-family: Avenir;
    display: inline-block;
    padding: 2px 0;
    font-size: 2rem;
    font-weight: bolder;
    color: #fff;
  }

  .menu a span:last-child {
    font-family: Avenir;
    position: absolute;
    display: inline-block;
    padding: 2px 0;
    left:0px;
    justify-content: left;
    transform: translateY(100%);
    color: transparent;
    -moz-text-stroke: 1px #fff;
    -webkit-text-stroke: 1px #fff;
    -o-text-stroke: 1px #fff;
    text-stroke:1px #fff;
    font-weight: bolder;
    font-size: 2rem;
  }


  .datos-d-r{position: absolute;bottom: 0px !important;left:5px;width: 90%;}

  .datos-d-r .datos-d {
    margin-bottom: 10px;
  }

  #centro .work-e .work-es {
    margin: 0px auto;
    position: relative;
      display: inline-block;
      width: 100%;
      padding: 25px 0;
      margin: 0px 0px;
      vertical-align: top;
  }

  #centro .client .clients .client-clients{
    margin: 0px auto;
    position: relative;
      display: inline-block;
      width: 45%;
      padding: 25px 0;
  }

  #centro .work .works .title-work {
    z-index: 0;
  }

  #centro .work .works h3 {
    z-index: 0;
  }

  /*Contact*/
  #centro .welcome-efect-cont{

    /* The image used */
    background-image: url("../imagenes/contact/contact-1.jpg");
    height: 15vh;
      top: -18.3902%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  }


  #centro .welcome .div-contact{
  display : flex;
  justify-content : center;
  align-items : center;

  }

  #centro .welcome .contact{
  text-align: center;
  margin-top: -10%;
  }

  #centro .welcome .contact .contact-title-1{
    font-size: 3.7rem;
    font-family: AlbraBlack;
    color: #155cff;
    -webkit-text-stroke: 1px midnightblue;
    text-shadow: 2px 2px #051628;
  }

  #centro .welcome .contact .contact-subtitle-1{
    font-size: 1.3rem;
    color: #fff;
    font-weight: bolder;
  }

  #centro .form{border-top: 1px solid #c1c1c1; padding: 1rem 0;width: 100%;margin: 0px auto;display: inline-block;flex-direction: none;background: #181818;}
  #centro .form .leftcontact{width: auto;margin: 0px auto;}
  #centro .form .leftcontact form{width: auto;padding-left: 5%;margin: 0 auto;}
  #centro .form .leftcontact form .input{width: 87%; }
  #centro .form .leftcontact form .textarea{width: 87%; }
  #centro .form .leftcontact form .form-text{color:#fff;background: #155cff;width: 95%;padding: 8px 2px;font-size: 0.85rem;margin: 25px 0;border-radius: 3px;text-align: center;}


  #centro .form .rightcontact{width: auto;margin: 0px auto;}


  #centro .welcome-cont{

    /* The image used */
    background-image: url("../imagenes/contact/contact-2.jpg");
    height: 60vh;
      top: -18.3902%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  }

  /*----------------------------*/

  #centro .welcome .text-welcome-2{
    font-family: AlbraBlack;
    font-size: 2.7rem;
    color: #155cff;
    line-height: 1;
    margin: 20px 0px;
  }

  #centro .welcome .text-welcome-3,#centro .welcome .text-welcome-4{
    font-size:1rem;
    width: 90%;
    margin: 0px auto;
  }

  #centro .welcome .text-welcome-2-f{
    font-family: AlbraBlack;
    font-size: 2.5rem;
    color: #155cff;
    -webkit-text-stroke: 1px midnightblue;
    text-shadow: 2px 2px #051628;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  #centro .recurses .recurses-welcome .text-welcome .text-welcome-2-f {
      font-family: AlbraBlack;
      font-size: 1.7rem;
      color: #155cff;
      padding: 50px 0 20px 0;
      margin: 0px auto;
      width: 80%;
  }

  .titulo-graphic-container {
      color: #155cff;
      font-family: AlbraBlack;
      font-size: 2rem;
      position: relative;
      margin-top: 0px;
      padding: 0px 0 0 0;
  }

  #centro .welcome2{
    padding: 5rem 0 16rem 0;
    color:#fff;
    width: 100%;
  }

  #centro .welcomev{
    padding: 5rem 0 25rem 0;
    color:#fff;
    width: 100%;
  }

  #centro .welcome3{
    padding: 5rem 0 23rem 0;
    color:#fff;
    width: 100%;
  }

  #centro .welcomeh{
    padding: 0rem 0 10rem 0;
    color:#fff;
    width: 100%;
  }

  .da-thumbs li {
    display: inline-block;
      width: 95%;
      height: 250px;
      background: #000;
      position: relative;
      overflow: hidden;
      margin: 0.2%;
      cursor: pointer;
  }

  #centro .recurses .recurse {
    margin: 0px auto;
    position: relative;
      display: inline-block;
      width: 80%;
      padding: 25px 20px;
      margin: 10px 10px;
      vertical-align: top;
      border:1px solid #155cff;
      border-radius: 10px;
  }

  .team-container {
      width: auto;
      background: #000;
      margin: 0px auto;
      text-align: center;
      border-top: 4px solid #fff;
      border-bottom: 4px solid #fff;
  }

  .team-container .team-photos{
    width: auto;
    background: #000;
    margin: 0px auto;
  }

  .team-container .team-photos .tphotos {
      display: inline-block;
      width: 350px;
      margin: 15px 0px;
      position: relative;
      overflow: hidden;
      -webkit-border-radius: 4px;
      border-radius: 20px;
      box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 50%);
      transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  }

  #centro .work .works p {
    padding: 0 1rem;
  }

  /* --------- Work --------- */
  #centro .work-border-top{border-top: 3px solid #fff;}

  #centro .work{

    display: block;
    padding: 0;
    margin: 0;
  }
  #centro .work .works{
    width: 100%;
    color: white;
    overflow: hidden;
    text-align: center;
  }
  #centro .work .works img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(2);
    position: relative;
    top: -50px; /* ajustar los valores para mover la imagen */
    left: -5px;           
  }
  .inset {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.5em;
    background: #111;
    border-style: solid;
    border-width: 0px;
    border-top-color: #111;
    border-right-color: #111;
    border-bottom-color: #111;
    border-left-color: #111;
  } 
  #mobilequickfixA {
    display: none!important;
  }
  #mobilequickfixB {
    display:block!important;
  }

  #centro .work .works h3{
    font-size: 1.5rem;
    padding: 0 1.875rem;
    top: 3rem;
  }

  #centro .work .works .title-work {
    top: 2rem;
  }

  #centro .work .works #design-icon {
    margin-top: 5rem;
  }
  
  #centro .work .works .button-work {
    margin: 20px auto;
  }

  .da-thumbs li .a .div {
    position: absolute;
    opacity: 0;
    background: #000;
    width: 100%;
    height: 100%;
  }

  .da-thumbs li .a, .da-thumbs li .a img {
    min-height: 0; 
    width: 100%;
  }

  .prev, .next {
    margin-top: 0px!important;
  }

}

/* --------- End Work --------- */



/* ------------ Cookies ------------- */

#button-cookie{
    color:#155cff;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: .9rem;
}

#div-cookies {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: black;
    opacity: 0.8;
    padding: 7px;
    text-align: center;
    z-index: 20000;
    font-size: 0.9rem;
    color:#fff;
    font-family: Avenir;
}

/* ------------------------------------- */

/* ------------ Cursor ------------- */
.pulse{
  display:none;
  padding:.5rem;
  border-radius:50%;
  animation:pulse 1.5s .85s infinite ease-out;
  border:3px solid rgba(230,230,230,0);
  transform:scale3d(.7,.7,0);
  transition:opacity .75s;
}
.pulse { position:absolute; left:50%; top:50%; margin-top:-25px; margin-left:-30px; }
.pulse:after {
  display:block;
  content:"";
  padding:1.5rem;
}

@keyframes pulse {
  50% {
    border-color:#155cff;
    background:transparent;
  }
  to { border-color:transparent; transform:none; }
}	
/* ------------------------------------- */



.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, -3000px, 0);
  transform: translate3d(0, -3000px, 0);
  }
  
  60% {
  opacity: 1;
  -webkit-transform: translate3d(0, 25px, 0);
  transform: translate3d(0, 25px, 0);
  }
  
  75% {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  }
  
  90% {
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  }
  
  100% {
  -webkit-transform: none;
  transform: none;
  }
  }
  
  @keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, -3000px, 0);
  transform: translate3d(0, -3000px, 0);
  }
  
  60% {
  opacity: 1;
  -webkit-transform: translate3d(0, 25px, 0);
  transform: translate3d(0, 25px, 0);
  }
  
  75% {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  }
  
  90% {
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  }
  
  100% {
  -webkit-transform: none;
  transform: none;
  }
  } 