@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
	--color-body: #191919;
	--color-border: #e5e5e5;
	--color-orange: #ff7425;
	--color-bg-gray: #f2f2f2;
	--color-bg-menu: rgba(0, 0, 10, 1);
	--font-body: 'Open Sans', Helvetica Neue, Helvetica, sans-serif;
	--font-headers: 'Nunito Sans', sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: unset;
  }
}

* {
	box-sizing: border-box; /* Padding y borde no incrementan el ancho */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	color: var(--color-body);
	background-color: var(--color-bg-gray);
	font-family: var(--font-body);
}

h1 {
	font-family: var(--font-headers);
	font-weight: 800;
	
}

h2 {
	font-family: var(--font-headers);
	font-weight: 800;
	font-size: 30px;
	text-transform: uppercase;
}

h3 {
	font-weight: 600;
	
}

h4 {
	font-size: 18px;
	font-weight: 600;	
}
	
p {	
	font-size: 1em;
	font-weight: 300;
}

a {
	color: var(--color-orange);
}

a:link {
	text-decoration: var(--color-orange);
	
}

a:visited {
	text-decoration: var(--color-orange);
	
}

a:hover {
	color: #3498db;
}

/*HEADER*/

header#header_nav {
	background: rgb(0,0,0);
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
	top: 0;
	z-index: 999;
}

header#header_nav .logo {
	margin-left: 5px;
	width: 86px;
}

/* change header */

header#header_nav.hdr-small {
	background-color: var(--color-bg-menu);
	padding: 0;
}

header#header_nav.hdr-small .toggle-button {
	top: 4px;
}

/* end change header */

/*NAV*/

nav.main {
	display: none;
	background-color: var(--color-bg-menu);
}

nav.main ul {
	padding-left: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 0;
	margin-left: 9px;
}

nav.main ul li {
	color: #fff;
	list-style-type: none;
	font-weight: 300;
	position: relative;
	display: block;
	height: 35px;
}

nav.main ul li a {
	color: #fff;
	text-transform: uppercase;
}

nav.main .lang {
	display: inline-block;
	margin-left: 5px;
	width: 25px;
	position: relative;
	bottom: 1px;
}

/*FOOTER*/

footer {
	background-color: #000;
	padding-top: 1em;
	padding-bottom: 1em;
}

footer .logo {
	width: 120px;
}

footer .col-12 {
	padding-top: 1.4em;
	padding-bottom: 1.4em;
}

footer p {
	margin-bottom: 10px;
}

footer h4 {
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	padding-bottom: 5px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

footer .info {
	font-size: 18px;
	margin-bottom: 1.5em;
	line-height: 1.2em;
	font-weight: 600;
	padding-left: 2em;
}

footer .info span {
	margin-left: 0.8em;
}

footer .categories {
	padding-left: 7.5em;
}

footer ul {
	padding-left: 1em;
}

footer ul li {
	font-size: 16px;
	list-style-type: none;
	margin-bottom: 1em;
}

footer .ico {
	width: 18px;
	margin-bottom: 1px;
	margin-right: 8px;
}

.pre-footer {
	background-color: #222;
	font-size: 0.8em;
	color: #fff;
	padding: 15px 0;
}

.menu-transition {
	cursor: pointer;
	display: block;
}

.hamburger-lines {
	height: 26px;
	width: 32px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hamburger-lines .line {
	display: block;
	height: 4px;
	width: 100%;
	background: #fff;
}

.hamburger-lines .line1 {
	transform-origin: 0% 0%;
	transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.checkbox {
	display: none;
}

input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
	transform: rotate(45deg);
  }

input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
	transform: scaleY(0);
}

input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
	transform: rotate(-45deg);
}

.hdr-small .hamburger-lines {
    top: 12px !important;
}

/* -- CONTENIDO -- */

.seccion {
	padding-top: 4.5em;
	padding-bottom: 4.5em;
}

#slider video {
	width: 100%;
}

#slider .cover-transparent {
    background-image: url(../img/bg-transparent-video.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

#slider .owl-dots {
	position: absolute;
	bottom: 120px;
	display: flex;
	justify-content: center;
	width: 100%;
}

#slider .owl-dots .owl-dot {
	background-color: var(--color-orange);
	width: 30px;
	height: 5px;
	margin: 0 5px;
	opacity: 0.3;
}

#slider .owl-dots .owl-dot.active {
	opacity: 1;
}

#video {
	background-color: var(--color-body);
}

#video .cont-video {
	overflow: hidden;
	position: relative;
	display: block;
}

#video #video-home {
	width: 100%;
	opacity: 0.4;
}

#video .hd {
	text-align: center;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
    z-index: 999;  
}

#video .hd h1 {
	color: #fff;
	font-size: 1.8em;
	line-height: 1em;
	text-transform: uppercase; 
}

#video .hd h1 span {
	font-size: 130%;
}

section#video .cover-transparent {
    background-image: url(../img/bg-transparent-video.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

section.works {
	background-color: var(--color-body);
	padding-bottom: 100px;
}

section.works .cont-video {
	position: relative;
	overflow: hidden;
  	text-align: center;
  	width: 100%;
  	height: 500px;
}

section#cine .cont-video:after, section#experiencias .cont-video:after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    width: 100%;
    height: 200px;
	background: rgb(25,25,25);
	background: -moz-linear-gradient(0deg, rgba(25,25,25,1) 0%, rgba(25,25,25,1) 50%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(25,25,25,1) 0%, rgba(25,25,25,1) 50%, rgba(255,255,255,0) 100%);
	background: linear-gradient(0deg, rgba(25,25,25,1) 0%, rgba(25,25,25,1) 50%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#191919",endColorstr="#ffffff",GradientType=1);
}

section.works video {
	opacity: .1;
	width: 100%;
  /** Simulationg background-size: cover */
  object-fit: cover;
  height: 100%;
  width: 100%;

  position: absolute;
  top: 0;
  left: 0;
}

section.works .cont-video h2 {
	text-align: center;
	margin-top: 100px;
	width: 100%;
	z-index: 9;
}

section.works h2 {
	color: var(--color-bg-gray);
}

section#cine .txt p, section#experiencias .txt p {
	color: #ffffff;
}

.cont-play {
	position: relative;
	margin-top: 5%;
	width: 100%;
	height: 100px;
	z-index: 9;
}

.cont-play .play {
	cursor: pointer;
	border-radius: 100%;
	background-color: var(--color-orange);
	width: 90px;
	height: 90px;
}

section#cine .cont-play .play:after, section#experiencias .cont-play .play:after {
	content: 'Reel +';
	font-size: 16px;
	text-transform: uppercase;
	color: #ffffff;
	display: block;position: absolute;
	bottom: -30px;
}

section#cine .btn.btn-outline {
	font-size: 1.1em;
	border-radius: 0;
	border: 1px solid var(--color-orange);
	color: #fff;
	padding: 10px;
	width: 100%;

}

.cont-play .play:hover {
	animation: blink 0.1s linear infinite;
}
  	
.cont-play .play img {
	width: 30px;
	height: 30px;
}

section.works .work {
	position: relative;
    overflow: hidden;
    aspect-ratio: auto 16 / 9;
}

section.works .work a {
    background-size: cover;
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

section.works .work img {
	width: 100%;
}

/* FOTOS CINE FX */

.cine_1 .linka {
	background-image: url(../img/cine_sm_1.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_2 .linka {
	background-image: url(../img/cine_sm_2.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_3 .linka {
	background-image: url(../img/cine_sm_3.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_4 .linka {
	background-image: url(../img/cine_sm_4.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_5 .linka {
	background-image: url(../img/cine_sm_5.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_6 .linka {
	background-image: url(../img/cine_sm_6.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_7 .linka {
	background-image: url(../img/cine_sm_7.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_8 .linka {
	background-image: url(../img/cine_sm_8.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_9 .linka {
	background-image: url(../img/cine_sm_9.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.cine_1 .linka:hover {
    background: url(../img/cine_sm_1.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_1.jpg), red;
  }
}

.cine_2 .linka:hover {
    background: url(../img/cine_sm_2.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_2.jpg), red;
  }
}

.cine_3 .linka:hover {
    background: url(../img/cine_sm_3.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_3.jpg), red;
  }
}

.cine_4 .linka:hover {
    background: url(../img/cine_sm_4.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_4.jpg), red;
  }
}

.cine_5 .linka:hover {
    background: url(../img/cine_sm_5.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_5.jpg), red;
  }
}

.cine_6 .linka:hover {
    background: url(../img/cine_sm_6.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_6.jpg), red;
  }
}

.cine_7 .linka:hover {
    background: url(../img/cine_sm_7.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_7.jpg), red;
  }
}

.cine_8 .linka:hover {
    background: url(../img/cine_sm_8.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_8.jpg), red;
  }
}

.cine_9 .linka:hover {
    background: url(../img/cine_sm_9.jpg), #00a2ff;

  &:after {
    background: url(../img/cine_sm_9.jpg), red;
  }
}

/* FOTOS XP FX */

.xp_1 .linka {
	background-image: url(../img/xp_sm_1.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_2 .linka {
	background-image: url(../img/xp_sm_2.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_3 .linka {
	background-image: url(../img/xp_sm_3.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_4 .linka {
	background-image: url(../img/xp_sm_4.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_5 .linka {
	background-image: url(../img/xp_sm_5.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_6 .linka {
	background-image: url(../img/xp_sm_6.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_7 .linka {
	background-image: url(../img/xp_sm_7.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_8 .linka {
	background-image: url(../img/xp_sm_8.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_9 .linka {
	background-image: url(../img/xp_sm_9.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.xp_1 .linka:hover {
    background: url(../img/xp_sm_1.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_1.jpg), red;
  }
}

.xp_2 .linka:hover {
    background: url(../img/xp_sm_2.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_2.jpg), red;
  }
}

.xp_3 .linka:hover {
    background: url(../img/xp_sm_3.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_3.jpg), red;
  }
}

.xp_4 .linka:hover {
    background: url(../img/xp_sm_4.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_4.jpg), red;
  }
}

.xp_5 .linka:hover {
    background: url(../img/xp_sm_5.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_5.jpg), red;
  }
}

.xp_6 .linka:hover {
    background: url(../img/xp_sm_6.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_6.jpg), red;
  }
}

.xp_7 .linka:hover {
    background: url(../img/xp_sm_7.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_7.jpg), red;
  }
}

.xp_8 .linka:hover {
    background: url(../img/xp_sm_8.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_8.jpg), red;
  }
}

.xp_9 .linka:hover {
    background: url(../img/xp_sm_9.jpg), #00a2ff;

  &:after {
    background: url(../img/xp_sm_9.jpg), red;
  }
}

/* FOTOS TV FX */

.tv_1 .linka {
	background-image: url(../img/tv_sm_1.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_2 .linka {
	background-image: url(../img/tv_sm_2.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_3 .linka {
	background-image: url(../img/tv_sm_3.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_4 .linka {
	background-image: url(../img/tv_sm_4.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_5 .linka {
	background-image: url(../img/tv_sm_5.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_6 .linka {
	background-image: url(../img/tv_sm_6.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_7 .linka {
	background-image: url(../img/tv_sm_7.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_8 .linka {
	background-image: url(../img/tv_sm_8.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_9 .linka {
	background-image: url(../img/tv_sm_9.jpg);
	transition: all 0.5s ease-in-out 0s; 
}

.tv_1 .linka:hover {
    background: url(../img/tv_sm_1.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_1.jpg), red;
  }
}

.tv_2 .linka:hover {
    background: url(../img/tv_sm_2.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_2.jpg), red;
  }
}

.tv_3 .linka:hover {
    background: url(../img/tv_sm_3.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_3.jpg), red;
  }
}

.tv_4 .linka:hover {
    background: url(../img/tv_sm_4.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_4.jpg), red;
  }
}

.tv_5 .linka:hover {
    background: url(../img/tv_sm_5.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_5.jpg), red;
  }
}

.tv_6 .linka:hover {
    background: url(../img/tv_sm_6.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_6.jpg), red;
  }
}

.tv_7 .linka:hover {
    background: url(../img/tv_sm_7.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_7.jpg), red;
  }
}

.tv_8 .linka:hover {
    background: url(../img/tv_sm_8.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_8.jpg), red;
  }
}

.tv_9 .linka:hover {
    background: url(../img/tv_sm_9.jpg), #00a2ff;

  &:after {
    background: url(../img/tv_sm_9.jpg), red;
  }
}

.linka:hover {
    display: block;
    width: 100%;
    height: 100%;
    filter: saturate(1);
    z-index: 2;
    background: #00a2ff;
    background-blend-mode: lighten;
    background-size: 102%;
   	transition: all 0.5s ease-in-out 0s; 
   	animation: blink 0.1s linear infinite;


  &:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-blend-mode: lighten;
    background: red;
    margin-left: 0px;
    background-size: 102.5% !important;
   	transition: all 0.5s ease-in-out 0s; 
   	mix-blend-mode: multiply;
   	animation: blink 0.1s linear infinite;
  }
}

@keyframes blink {
0%{opacity: .7;}
50%{opacity: .9;}
100%{opacity: 1;}
}

section.works .work .txt-header {
	background-color: rgba(1,1,1,0.3);
	position: absolute;
	padding-top: 14px;
	padding-bottom: 5px;
	padding-left: 25px;
	bottom: 0;
	left: 0;
	width: 100%;
	mix-blend-mode: normal !important;
	background-blend-mode: normal !important;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 
	z-index: 99;
	
}

section.works .work:hover .txt-header {
	background-color: rgba(1,1,1,0.7);
	padding-bottom: 30px;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 

}

section.works .work .txt-header h3 {
	font-size: 0.9em;
}

section.works .work .txt-header h3, section.works .work .txt-header h4 {
	color: var(--color-bg-gray);
	text-transform: uppercase;
	line-height: 0.8em;
}

section.works .work .txt-header h4 {
	font-size: 0.9em;
	font-weight: 300;
}

section#games {
	background-color: var(--color-bg-gray);
}

section#games .cont-video:after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    width: 100%;
    height: 200px;
	background: rgb(242,242,242);
	background: -moz-linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 50%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 50%, rgba(255,255,255,0) 100%);
	background: linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 50%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2f2f2",endColorstr="#ffffff",GradientType=1);
}

section#games video {
	opacity: .3;
	width: 100%;
  /** Simulationg background-size: cover */
  object-fit: cover;
  height: 100%;
  width: 100%;

  position: absolute;
  top: 0;
  left: 0;
}

section#games .cont-play .play:after {
	content: 'Reel +';
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-body);
	display: block;position: absolute;
	bottom: -30px;
}

section#clients {
	background-color: #fff;
}

section#clients .cont-logos {
	margin-top: 2em;
}

section#clients .cont-logos .logo {
	margin-top: 2em;
	margin-bottom: 2em;
	text-align: center;
}

section#clients .cont-logos .logo img {
	filter: grayscale(100%);
	opacity: 50%;
	max-width: 120px;
}

section#clients .cont-logos .logo img:hover {
	filter: unset;
	opacity: 100%;
}

section#games.works h2 {
	color: var(--color-body);
}


/* Animaciones */
@keyframes anim-fade-in { from { opacity: 0; } to { opacity: 1 } }

@keyframes anim-up { 
	from { opacity: 0; transform: translateY(100px); } 
	to { opacity: 1; transform: translateY(0px); }  
}		

@keyframes anim-down { 
	from { opacity: 0; transform: translateY(-100px); } 
	to { opacity: 1; transform: translateY(0px); }  
}		

@keyframes anim-left { 
	from { opacity: 0; transform: translateX(100px); } 
	to { opacity: 1; transform: translateX(0px); }  
}		

@keyframes anim-right { 
	from { opacity: 0; transform: translateX(-100px); } 
	to { opacity: 1; transform: translateX(0px); }  
}		

@keyframes anim-scale { 
	from { opacity: 0; transform: scale(0.6);} 
	to { opacity: 1; transform: scale(1); }  
}

.anim-up, .anim-down, .anim-left, .anim-right, .anim-fade-in, .anim-scale {
	animation-duration: 1s; /* la animacion dura X segundos */
	animation-delay: 0.3s; /* esperamos X segundos antes de hacer la animacion */			
	animation-fill-mode: both; /* aplica estilos de la animacion antes y despues de reproducirla */
}

.anim-up { animation-name: anim-up; }
.anim-down { animation-name: anim-down; }
.anim-left { animation-name: anim-left; }
.anim-right { animation-name: anim-right; }
.anim-fade-in { animation-name: anim-fade-in; }
.anim-scale { animation-name: anim-scale; }

.anim-pause-1 { animation-delay: 0.5s; } /* la animacion empieza en X seg. */	
.anim-pause-2 { animation-delay: 0.8s; } /* la animacion empieza en X seg. */		
.anim-pause-3 { animation-delay: 1.1s; } /* la animacion empieza en X seg. */
.anim-pause-4 { animation-delay: 1.4s; } /* la animacion empieza en X seg. */
.anim-pause-5 { animation-delay: 1.7s; } /* la animacion empieza en X seg. */
.anim-pause-6 { animation-delay: 2s; } /* la animacion empieza en X seg. */
.anim-pause-7 { animation-delay: 2.3s; } /* la animacion empieza en X seg. */
.anim-pause-8 { animation-delay: 2.6s; } /* la animacion empieza en X seg. */

/* todas las animaciones pausadas */
.paused * { 
	animation-play-state: paused;
}

strong {
	font-weight: 600;
}

/* Placeholders */

form::-webkit-input-placeholder { color: red; }  /* WebKit, Blink, Edge */
form:-moz-placeholder { color: red; }  /* Mozilla Firefox 4 to 18 */
form::-moz-placeholder { color: red; }  /* Mozilla Firefox 19+ */
form:-ms-input-placeholder { color: red; }  /* Internet Explorer 10-11 */
form::-ms-input-placeholder { color: red; }  /* Microsoft Edge */


/* Reset botones */

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background-color: #797878;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	color: #fff;
	background-color: #333 !important; /* Reset Press Azul */
	box-shadow: none;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* Reset Glow Azul*/

.form-control:focus, .form-select:focus {
  border-color: #ced4da !important;
  -webkit-box-shadow: 0 0 5px rgba(111, 111, 111, 1) !important;
          box-shadow: 0 0 5px rgba(111, 111, 111, 1) !important;
}

.transition {
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 
}

/****************************/
/* MEDIA QUERIES */
/****************************/

/* 768 */
@media screen and (min-width: 768px) {

}

/* 992 */
@media screen and (min-width: 992px) {

}

/* 1280 */
@media screen and (min-width: 1200px) {

.seccion {
	padding-top: 5em;
	padding-bottom: 5em;
}

#slider video {
	width: 100%;
	height: 100vh;
}

#video #video-home {
  /*position: relative;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;*/
  opacity: 0.1;
}

/*
#video .cont-video:hover {
	border: 10px solid #fff;
}
*/

#video #video-home:hover {
	opacity: 1;
}

#video .hd:hover < #video-home {
	opacity: 1;
}

#video .cont-video:hover h1 {
	padding-bottom: 40px;
}

#video .cont-video:hover h1 span {
	color: var(--color-orange);
	animation: blink 0.2s linear infinite;
	font-size: 150%;

}

#video .hd h1 {
	font-size: 2.2em;
}

section.works {
	/*padding-top: 4.5em;*/
}

h2 {
	font-size: 3em;
	text-transform: uppercase;
}

#about p {
	font-size: 1.1em;
	line-height: 1.5em;
	margin: 20px 0;
}

.toggle-button {
	display: none;
}

header#header_nav {
background: rgb(0,0,0);
background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	position: fixed;
	padding-top: 20px;
	padding-bottom: 20px;
}

header#header_nav.hdr-small {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

header#header_nav .logo {
	margin-left: 15px;
	width: 150px;
}

header#header_nav.hdr-small .logo {
	width: 110px;
}

nav.main {
	background: transparent;
	display: block !important;
	overflow: hidden;
}

nav.main ul {
	margin-left: 0;
	padding-top: 0;
	padding-bottom: 0;
}

nav.main ul li {
	font-size: 16px;
	height: unset;
}

nav.main ul li.nav_search, nav.main ul li.nav_user {
	display: block;
	margin-top: 0;
	margin-left: 12px;
	margin-right: 12px;
}

nav.main ul li a {
	display: inline-block;
	padding: 15px 20px;
	border-bottom: 4px solid transparent;
}

nav.main ul li a:hover {
	border-color: var(--color-orange);
	animation: blink 0.1s linear infinite;
}

header#header_nav.hdr-small nav.main ul li a {
	padding: 14px 20px 9px;
}

section.works .work .txt-header h3 {
	font-size: 1.5em;
}

section.works .work .txt-header h4 {
	font-size: 1em;
}

#video {
	height: 100vh;
	overflow: hidden;
}

#video #video-home {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#video .cont-video {
	width: 33.3333333%;
}

section#clients .cont-logos .logo img {
	max-width: unset;
}

.txt p {
	border-left: 4px solid var(--color-orange);;
	padding-left: 30px;
}

}

/* 1366 */
@media screen and (min-width: 1360px) {

#video .hd h1 {
	font-size: 2.5em;
}

section.works .work .txt-header {
	padding-top: 20px;
	padding-bottom: 14px;
}

footer .logo {
	width: 160px;
}

}

/* 1440 */
@media screen and (min-width: 1400px) {

.seccion {
	padding-top: 6em;
	padding-bottom: 6em;
}

#video .hd h1 {
	font-size: 2.8em;
}

section.works {
	/*padding-top: 5em;*/
}

}

/* 1680 */
@media screen and (min-width: 1600px) {

p {	
	font-size: 1.2em;
}

#video .hd h1 {
	font-size: 3em;
}

}

/* 1920 */
@media screen and (min-width: 1920px) {

#video .hd h1 {
	font-size: 3.3em;
}

}