@charset "utf-8";
/* CSS Document g*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--color-body: #555555;
	--color-border: #e5e5e5;
	--color-bg-body: #ffffff;
  --color-bg-gray: #f6f6f6;
  --color-azul-dark: #003a5d;
	--color-azul-sec: #006bb0;
  --color-azul-ter: #01afef;
	--color-razzmatazz: #fe2c55;
	--color-bg-menu: rgba(255, 255, 255, 0.3);
	--font-body: 'Noto Sans', Helvetica Neue, Helvetica;
	--font-headers: 'Montserrat', 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-body);
	font-family: var(--font-body);
  font-weight: <weight>;
  font-weight: 400;
}

h1 {
  color: var(--color-azul-sec);
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 40px;
  position: relative;
	
}

h2 {
  color: var(--color-azul-sec);
	font-family: var(--font-headers);
	font-weight: 600;
	font-size: 1.8em;
  margin-bottom: 40px;
  position: relative;
}

h3 {
  font-size: 1.3em;
  line-height: 1.4em;
  color: var(--color-azul-ter);
  font-weight: 300;

}

h4 {
	font-size: 1em;
	font-weight: 300;
}
	
p {	
	font-size: 1em;
	font-weight: 300;
}

a {
	color: var(--color-azul-ter);
}

a:link {
	text-decoration: var(--color-azul-ter);
	
}

a:visited {
	text-decoration: var(--color-azul-ter);
}

a:hover {
	color: #3498db;
}

/*HEADER*/

header#header_nav {
  background-color: var(--color-bg-menu);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

header#header_nav .logo {
  margin-left: 0px;
  width: 140px;
}

header#header_nav .row.cont-logo {
  height: 60px;
}

header#header_nav .row.cont-logo .btn {
  margin-right: 115px;
}

header#header_nav.hdr-small {
  background: #ffffff;
  z-index: 9999;
}

/*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 {
  list-style-type: none;
  font-weight: 300;
  position: relative;
  display: block;
  height: 35px;
}

nav.main ul li a {
  color: #fff;
}

/* burger-menu */

#burger-menu {
  background-color: var(--color-azul-sec);
  cursor: pointer;
  height: 60px;
  width: 60px;
  overflow: visible;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
}

#burger-menu span,
#burger-menu span:before,
#burger-menu span:after {
  background: #fff;
  display: block;
  height: 2px;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
}

#burger-menu span:before,
#burger-menu span:after {
  content: "";
}

#burger-menu span {
  right: 18px;
  top: 30px;
  width: 24px;
}

#burger-menu span:before {
  left: 0px;
  top: -10px;
  width: 24px;
}

#burger-menu span:after {
  left: 0px;
  top: 10px;
  width: 24px;
}

#burger-menu.close span:before {
  top: 0px;
  transform: rotate(90deg);
  width: 27px;
}

#burger-menu.close span {
  transform: rotate(-45deg);
  top: 29px;
  width: 27px;
}

#burger-menu.close span:after {
  top: 0px;
  left: 0;
  transform: rotate(90deg);
  opacity: 0;
  width: 0;
}

/* MENU */
#menu {
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  top: 0px;
  height: 0;
  text-align: left;
  padding-top: 20px;
  background: var(--color-azul-dark);
  background-image: url(../img/bg_menu.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -100%;
  -webkit-transition: all 0.6s cubic-bezier(0.41, 0.07, 0.43, 1.25);
  -moz-transition: all 0.6s cubic-bezier(0.41, 0.07, 0.43, 1.25);
  -o-transition: all 0.6s cubic-bezier(0.41, 0.07, 0.43, 1.25);
  transition: all 0.6s cubic-bezier(0.41, 0.07, 0.43, 1.25);
  /* https://cubic-bezier.com/ */
}

#menu.overlay {
  /*  visibility: visible;*/
  /*  opacity: 1;*/
  padding-top: 30px;
  /*  background: rgba(0, 0, 0, 1);*/
  right: 0;
}

#menu:after {
  display: block;
  content: "";
  width: 5%;
  background: black;
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
}

#menu ul {
  padding: 0 0 10px;
  position: relative;
  z-index: 10;
}

#menu ul li {
  font-family: var(--font-headers);
  color: #fff;
  list-style: none;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}

#menu ul > li > span {
  transition: 0.6s all;
  cursor: pointer;
  position: relative;
}

#menu ul > li > span a {
  color: #ffffff;
}

#menu ul > li > span a:hover {
  color: var(--color-azul-ter);
}

#menu ul > li > span:hover {
  color: #fe2c55;
  margin-left: 40px;
}

#menu li span:before {
  content: url(../img/flecha_menu.png);
  position: absolute;
  transition: all 0.6s cubic-bezier(0.41, 0.07, 0.43, 1.25);
  opacity: 0;
  top: 7px;
  left: 0px;
}

#menu li span:hover:before,
#menu li span.active:before {
  left: -39px;
  right: unset;
  top: 7px;
  opacity: 1;
}

#menu .cont-cta {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}

#menu .redes {
  border-top: 1px solid var(--color-azul-ter);
  border-bottom: 1px solid var(--color-azul-ter);
  padding: 12px 0;
}

#menu .redes a {
  margin-left: 10px;
  margin-right: 0;
}

.redes {
  padding: 0px 0;
}

.redes a {
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  width: 40px;
  display: inline-block;
  height: 40px;
  text-align: center;
  font-size: 1.5em;
  margin-right: 10px;
}

.redes a:hover {
  border: 1px solid var(--color-azul-ter);
  color: var(--color-azul-ter);
}

.redes a svg {
  transform: scale(1.1);
  vertical-align: top;
  margin-top: 12px;
}


/*FOOTER*/

footer {
  color: #ffffff;
	background-color: var(--color-azul-sec);
	padding-top: 3em;
	padding-bottom: 3em;
  border-top: 10px solid #ffffff;
}

footer .logo img {
	width: 140px;
}

footer p {
	margin-bottom: 10px;
}

footer h3 {
	color: #fff;
	font-size: 1em;
	font-weight: 400;
	padding-bottom: 5px;
	margin-bottom: 20px;
}

footer .info {
	font-size: 16px;
	margin-bottom: 1.5em;
	line-height: 1.2em;
	font-weight: 300;

}

footer .info span {
	margin-left: 0.8em;
  width: 85%;
}

footer .info svg {
  margin-top: 1px;
}

footer .ico {
	width: 18px;
	margin-bottom: 1px;
	margin-right: 8px;
}

.pre-footer {
	background-color: #222;
	font-size: 0.8em;
	color: #fff;
	padding: 15px 0;
}


/* -- CONTENIDO -- */

h1::before, h2::before {
    content: url('../img/bot_h2.png');
    display: block;
    position: absolute;
    bottom: -30px;
    left: 0;
}

.seccion {
	padding-top: 2em;
	padding-bottom: 2em;
}

section.hero {
  position: relative;
  margin-top: 60px;
  border-bottom: 10px solid var(--color-azul-sec);
}

section.hero h2 {
    position: absolute; 
    font-size: 2em; 
    text-align: left;
    left: 20px;
    bottom: 0;
    mix-blend-mode: screen;
    -webkit-text-fill-color: #000; /* Will override color (regardless of order) */
    text-shadow:
   -1px -1px 0 #fff,  
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
     1px 1px 0 #fff;
}

section.cont-video {
  padding: 30% 0;
  position: relative;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

section.cont-video video {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);
  width: 100% !important;
}

#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;
    z-index: 10;
}

.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;
    z-index: 10;
}

.cover-transparent.interno {
    background-image: url(../img/bg-transparent-video-interno.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 10;
}

#slider .owl-dots {
	position: absolute;
	top: 75%;
	display: flex;
	justify-content: center;
	width: 100%;
}

#slider .owl-dots .owl-dot {
	background-color: var(--color-azul-ter);
	width: 30px;
	height: 5px;
	margin: 0 5px;
	opacity: 0.3;
}

#slider .owl-dots .owl-dot.active {
	opacity: 1;
}

.owl-carousel .owl-nav button:active, .owl-carousel .owl-nav button.owl-next {
  border: none !important;
}

.owl-theme .owl-nav [class*='owl-'] {
  background: transparent !important;
  color: transparent;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: transparent !important;
}


.owl-theme .owl-nav {
  text-align: center;
}

#box-carousel.owl-theme .owl-nav {
  margin-top: 20px;
}

#box-carousel .item:hover {
  background: #f1f1f1;
  border-radius: 10px;
}

#box-carousel .item:hover .pic {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.5;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#box-carousel .item .txt {
  padding: 0 20px 20px;
}

#video {
}

#video .cont-video {
	overflow: hidden;
	position: relative;
	display: block;
}

#video #video-home {
	width: 100%;
	opacity: 0.4;
}

#boxes-top {
  position: relative;
  top: 15px;
  z-index: 99;
}

#boxes-top .cont-element {
  text-align: center;
  padding: 15px 0 30px;
  position: relative;
  margin-bottom: 15px;
}

#boxes-top .cont-element img {
  width: 60px;
}

#boxes-top .cont-element:hover {
  margin-top: -25px;
}

#boxes-top .cont-element::before {
    content: "";
    display: block;
    background-color: var(--color-bg-body);
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    rotate: 45deg;
}

#boxes-top .cont-element.elemen_1 {
background: rgb(0,58,93);
background: linear-gradient(180deg, rgba(0,58,93,1) 0%, rgba(1,90,144,1) 100%);
}

#boxes-top .cont-element.elemen_2 {
background: rgb(0,107,176);
background: linear-gradient(180deg, rgba(0,107,176,1) 0%, rgba(0,173,238,1) 100%);
}

#boxes-top .cont-element.elemen_3 {
background: rgb(1,174,239);
background: linear-gradient(180deg, rgba(1,174,239,1) 0%, rgba(58,201,255,1) 100%);
}

#boxes-top .cont-element .txt {
  font-family: var(--font-headers);
  font-weight: 200;
  line-height: 1.1em;
  font-size: 20px;
  color: #ffffff;
  margin-top: 20px;
}

/* Marquee */

.marquee-wrp {
  background-image: url(../img/bg_marquee.jpg);
  background-size: cover;
  overflow: hidden;
  max-width: 100%;
  padding: 20px 0;
}

.marquee-wrp .marquee-track {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-wrp .marquee-track .marquee-text {
  font-family: var(--font-headers);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  font-size: 1.2rem;
  display: inline-block;
  will-change: transform;
  -webkit-animation: marquee 40s linear infinite;
  animation: marquee 40s linear infinite;
}

.marquee-wrp .marquee-track .marquee-text span {
  margin: 0 15px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

section#about h2 {
  color: var(--color-azul-sec);
}

section#news_home {
  padding-top: 3em;
  padding-bottom: 3em;
}

section.listado-novedades .item h5 {
  font-size: .8em;
}

section.listado-novedades .item {
  margin-bottom: 30px;
}

section.listado-novedades .item img {
  width: 100%;
}

section#news_home h3, section.listado-novedades h3 {
  color: var(--color-azul-sec);
  font-size: 1.4em;
  margin-top: 1rem;
}

section.contacto_h {
  background-image: url(../img/bg-contacto.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 40px;
}

section.contacto_h h2 {
  color: #ffffff;
}

h2.inverse, h3.inverse {
  color: #ffffff;
}

h2.inverse::before {
  content: url(../img/bot_h2_clear.png);
}

h2.center::before {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

section.contacto_h .cont-form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  font-family: var(--font-headers);
  text-transform: uppercase;
  opacity: 1; /* Firefox */
}

section.contacto_h .cont-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

section.contacto_h .cont-form ::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}

section.contacto_h .redes a {
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  width: 40px;
  display: inline-block;
  height: 40px;
  text-align: center;
  font-size: 1.75em;
  margin-left: 0px;
}

section.contacto_h .redes a:hover {
  border: 1px solid var(--color-azul-ter);
  color: var(--color-azul-ter);
}

section.contacto_h .redes a svg {
  transform: scale(1.1);
  vertical-align: top;
  margin-top: 12px;
}

section.certificaciones_h {
}

section.certificaciones_h #clientes-carousel .item {
  text-align: center;
}

section.certificaciones_h #clientes-carousel .item .logo {
  display: inline-block;
  max-width: 316px;
  width: 100%;
}

section.certificaciones_h #clientes-carousel .item:hover .logo {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.5;
}

section.certificaciones_h #clientes-carousel.owl-theme .owl-nav {
  margin-top: 20px;
}

section.destacado_parall {
  background-image: url(../img/bg-contacto.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

section.destacado_parall h2 {
  color: #ffffff;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

section.destacado_parall .items {
  margin-top: 30px;
}

section.destacado_parall .items .item {
  color: #ffffff;
  font-size: 1em;
  font-family: var(--font-headers);
  font-weight: 600;
  margin: 20px 25px;
  position: relative;
}

section.destacado_parall .items .item:first-of-type {
  margin-top: 0;
}

section.destacado_parall .items .item:before {
  content: url(../img/flecha-item.png);
  position: absolute;
  transition: all 0.6s cubic-bezier(0.41, 0.07, 0.43, 1.25);
  top: 4px;
  left: -21px;
}

section.destacado {
  background-color: var(--color-azul-ter);
}

section.destacado h4 {
  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-azul-ter);
	width: 90px;
	height: 90px;
}

.cont-play .play:hover {
  animation: blink 0.1s linear infinite;
}
    
.cont-play .play img {
  width: 30px;
  height: 30px;
}

.cont-destacado {
  background-color: var(--color-bg-gray);
  padding: 1em 1.5em;
}

.cont-destacado .item {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;

}

.cont-destacado.items .item:before {
    content: url(../img/flecha-item.png);
    transform: scale(0.7);
    position: absolute;
    transition: all 0.6s cubic-bezier(0.41, 0.07, 0.43, 1.25);
    top: 0px;
    left: 0px;
}

.blanco {
  color: #ffffff;
}

.bg-gray {
  background-color: var(--color-bg-gray);
}

/* 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;
}

.btn-play {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 35%;
  z-index: 9999;
  animation: fadeIn 1s infinite alternate;
}

.btn-play img {
  width: 50px;
  opacity: 0.5;
}

/* 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 */

.form-custom .form-control {
  font-size: 0.8rem;
  font-family: var(--font-headers);
  color: #fff;
  background-color: rgba(255,255,255,.3);
  padding: .55rem .55rem;
  border: none;
  border-bottom: 1px solid #ffffff;
}

 .btn-primary.invert-bg-w {
  background-color: #ffffff;
  color: var(--color-azul-sec);
  border: none !important;
  font-family: var(--font-headers);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  margin-top: 15px;
}

/* Reset botones */

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background-color: #797878;
  border: none !important;
}

.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;
}

.btn-primary {
  background-color: var(--color-azul-sec);
  border: none !important;
  font-family: var(--font-headers);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.65rem 1.5rem;
  margin-top: 15px;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: var(--color-azul-ter) !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) {
  section.hero h2 {
    font-size: 4em;
    line-height: 0.9em;
    left: 30px;

  }

section.cont-video {
  padding: 0;
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  vertical-align: middle;
}

}

/* 992 */
@media screen and (min-width: 992px) {

.seccion {
  padding-top: 3em;
  padding-bottom: 3em;
}

}

/* 1024 */
@media screen and (min-width: 1024px) {

#boxes-top {
  position: relative;
  top: -130px;
  z-index: 99;
}

#boxes-top .cont-element {
  margin-bottom: 0px;
  padding: 40px 0;
}

#boxes-top .cont-element img {
  width: 101px;
}

#boxes-top .cont-element .txt {
  font-size: 28px;
}

}

/* 1280 */
@media screen and (min-width: 1200px) {

header#header_nav .logo {
  margin-left: 20px;
  width: 230px;
}

section.hero {
  margin-top: 78px;
}

  header#header_nav .row.cont-logo {
    height: 78px;
  }

  #burger-menu {
    height: 78px;
    width: 78px;
  }

  #burger-menu span {
    right: 28px;
    top: 38px;
    width: 22px;
  }

  #burger-menu span:before {
    left: 0px;
    top: -8px;
    width: 22px;
  }

  #burger-menu span:after {
    left: 0px;
    top: 8px;
    width: 22px;
  }

  #burger-menu.close span {
    top: 38px;
    width: 27px;
  }

#menu ul li {
  font-size: 2.5em;
  line-height: 0.8em;
}

#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 #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-azul-ter);
	animation: blink 0.2s linear infinite;
	font-size: 150%;
}

#video .hd h1 {
	font-size: 2.2em;
}

  .marquee-wrp {
    padding: 35px 0;
  }

  .marquee-wrp .marquee-track .marquee-text {
    font-size: 1.8rem;
  }

  .marquee-wrp .marquee-track .marquee-text span {
    margin: 0 25px;
  }

  section.hero h2 {
    font-size: 7em;
  }

p {
    font-size: 1.1em;
  line-height: 1.5em;
  margin: 20px 0;
}

h1 {
  font-size: 3.2em;
}

h2 {
	font-size: 2.4em;
}

h2.h-home {
  font-size: 3.4em;
}

h3 {
  font-size: 1.7em;
  line-height: 1.3em;
}

h4 {
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 1em;
}

section#about {
  padding-top: 0em;
  padding-bottom: 5am;
}

section#news_home {
  padding-top: 5em;
  padding-bottom: 5em;
}

section.contacto_h, section.certificaciones_h {
  padding-top: 5em;
  padding-bottom: 5em;
}

#video {
	height: 100vh;
	overflow: hidden;
}

#video #video-home {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#video .cont-video {
	width: 33.3333333%;
}

.txt p {
	border-left: 4px solid var(--color-azul-ter);;
	padding-left: 20px;
  font-size: 1em;
  font-weight: 400;
}

section.destacado_parall .items .item:hover {
  margin-left: 20px;
}

.btn-play {
  width: 70px;
  height: 70px;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.btn-play img {
  width: 70px;
}

.btn-play:hover img {
  opacity: 1;
  transform: scale(1.1);
}

section.partner .icon-box {
  border: 1px solid #f1f1f1;
  position: relative;
  bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

section.partner .icon-box:hover {
  border: 1px solid #f1f1f1;
  bottom: 20px;
}

section.destacado_parall .items .item {
  font-size: 1.3em;
  margin: 30px 0;
}

section.contacto_h .redes a {
  width: 50px;
  height: 50px;
  margin-left: 10px;
}

section.contacto_h .redes a svg {
  transform: scale(1.5);
  vertical-align: unset;
}

}

/* 1366 */
@media screen and (min-width: 1360px) {

#video .hd h1 {
	font-size: 2.5em;
}

footer .logo img {
	width: 233px;
}

.cont-destacado {
  background-color: var(--color-bg-gray);
  padding: 1.5em 2em;
}

.cont-destacado .item {
  margin: 15px 0;
  padding-left: 20px;
  position: relative;
}

.cont-destacado .item:hover {
  margin-left: 10px;
}

section.destacado_parall .items .item {
  font-size: 1.5em;
  margin: 30px 0;
}

footer h3 {
  font-size: 1.2em;
 }

.form-custom .form-control {
  font-size: 0.9rem;
  padding: 0.8rem .75rem;
 }

}

/* 1440 */
@media screen and (min-width: 1400px) {

#video .hd h1 {
	font-size: 2.8em;
}

  section.hero h2 {
    font-size: 7em;
  }

}

/* 1680 */
@media screen and (min-width: 1600px) {

.seccion {
  padding-top: 4em;
  padding-bottom: 4em;
}

p {	
	font-size: 1.2em;
}

h2 {
  font-size: 2.4em;
}

#video .hd h1 {
	font-size: 3em;
}

  .marquee-wrp {
    padding: 45px 0;
  }

  section.hero h2 {
    font-size: 7.5em;
  }

}

/* 1920 */
@media screen and (min-width: 1920px) {

#video .hd h1 {
	font-size: 3.3em;
}

  section.hero h2 {
    font-size: 8em;
    top: 40%;
    transform: translateY(-40%);
    bottom: unset;
  }

}