/* General */
:root {
    --corporative: #1eace4;
    --secondary: #3f3f3f;
    --corporative_img: rgba(11, 59, 77, 0.8);
    --corporative_menu: rgba(30, 172, 228, 0.8);
}

body {
	min-height: 100%;
    display: flex !important;
    flex-direction: column !important;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
	color: var(--secondary);
	font-size: 18px;
	line-height: 28px;
}

* {
	box-sizing: border-box;
}

html {
    height: 100%!important;
    scroll-behavior: smooth;
    width: 100vw;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
}


/* Elements */
a {
    text-decoration: none;
    color: var(--corporative);
}

a:hover {
    text-decoration: none;
    transition: linear 0.3s;
    color: var(--secondary);
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
}

h2 {
    font-size: 1.5em;
    color: #fff;
    font-weight: 300;
}

.container {
    padding-right: 0px;
    padding-left: 0px;
}

.content {
    background-color: #fff;
}

.button {
    padding: 10px 15px;
    background-color: var(--corporative);
    font-size: 1.2em;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 0px;
    width: fit-content;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
    outline: none;
    text-align: center;
    transition: all .4s ease;
    white-space: nowrap;
}

.button:hover {
    background-color: var(--secondary);
    transition: all .4s ease;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
}

.button:focus {
    outline: none;
}

.gray {
    background-color: #f6f6f6;
}

.lighted {
    font-weight: 600;
    color: var(--corporative);
}

.opacity {
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.shadowland {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.tittle {
    font-size: 2em;
    font-weight: 700;
    color: var(--corporative);
    line-height: 1.2em;
}

.tittle_white {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    line-height: 1.2em;
}

.little_tittle {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--corporative);
    line-height: 1.2em;
}

.bg_corp {
    background-color: var(--corporative);
}

p {
    margin-bottom: 0;
}

.slick-next {
    right: 35px;
}

.slick-prev {
    left: 35px;
    z-index: 1;
}

.slick-initialized .slick-slide {
    display: block;
    width: 45vh;
    text-align: center;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: auto;
    height: auto;
    font-size: 14px;
}



/* Loader */
.fullpage-loader {
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: white;
	transition: opacity 0.2s ease-out;
	opacity: 1;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.fullpage-loader img {
	width: 250px;
	height: auto;
	margin-bottom: 10px;
}

.fullpage-loader .spinner {
  width: 60px;
  height: 60px;
  background-color: var(--corporative);
  
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@keyframes sk-scaleout {
  0% { 
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}



/* Scroll */
body {
    overflow-y: scroll;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: fit-content;
}

body::-webkit-scrollbar-track {
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
}

body::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
}

body::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

.sidenav nav::-webkit-scrollbar {
    width: 20px;
}

.sidenav nav::-webkit-scrollbar-track {
    background-color: transparent;
}

.sidenav nav::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
}

.sidenav nav::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
}

.sidenav nav::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

.sidenav nav::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}



/* Go Top*/
.ir-arriba {
    position: fixed;
    bottom: 70px;
    right: 20px;
    display: none;
    padding: 10px;
    background: var(--corporative);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
}

.ir-arriba:hover {
    background-color: #fff;
    color: var(--corporative);
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    transition: all ease 0.3s;
}

.btn_chatra {
    position: fixed;
    bottom: 15px;
    left: 20px;
    display: block;
    padding: 10px;
    background: var(--corporative);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
}

.btn_chatra:hover {
    background-color: #fff;
    color: var(--corporative);
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    transition: all ease 0.3s;
}

.chatra-wrapper {
    margin-bottom: 10px;
}

.grecaptcha-badge {
    display: none !important;
}


/* Menu */
.main_menu {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
}

.main_menu img {
	max-height: 40px;
}

.menu {
	max-width: 1280px;
    margin: 0 auto;
    font-size: 16px;
}

.lang {
    font-size: 0.8em;
}

.lang_left, .lang_right {
    padding: 1px 10px;
}

.lang_left {
    border-radius: 5px 0px 0px 5px;
}

.lang_right {
    border-radius: 0px 5px 5px 0px;
}

.menu_one {
    position: fixed!important;
    left: 0;
    top: 0;
    padding-top: 100px;
    padding-bottom: 20px;
    z-index: -1;
    width: 100vw;
}

.second_menu .dropdown-menu.show {
    display: flex;
    font-size: 0.8em;
    margin-bottom: 10px;
}

.dropdown-item {
    display: block;
    padding: .15rem 0rem;
    border: 0;
    width: fit-content;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--corporative);
    text-decoration: none;
    background-color: transparent;
}

.navbar-toggler i {
    color: var(--corporative);
    font-size: 1.3em;
}

.navbar-toggler {
    padding: 0;
    font-size: 1.25rem;
}

button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}

.nav-link.dropdown-toggle::after {
    content: none;
}

.desplegable {
    font-size: 0.9em;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.9);
	transition: linear 0.3s;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    border: 0px;
}

.nav-link.active {
    font-weight: 700;
    color: var(--corporative)!important;
}


@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}


/* Menú sin scroll */
.menu_sin_color {
    box-shadow: none;
    transition: ease-in 0.3s;
	color: #fff;
	padding-top: 30px;
}

.menu_sin_color a {
    color: #fff;
    white-space: nowrap;
}

.menu_sin_color a .lane {
    height: 3px;
    width: 0px;
    background-color: #fff;
    margin-top: 8px;
}

.menu_sin_color a:hover .lane,
.menu_sin_color a:active .lane,
.menu_sin_color a:focus .lane,
.dropdown-menu.show .nav-link .lane {
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: ease 0.3s;
}

.menu_sin_color .logo_1 {
    display: inline;
    transition: linear 0.2s;
}

.menu_sin_color .logo_2 {
    display: none;
    transition: linear 0.2s;
}

.menu_sin_color .desplegable {
    font-size: 0.9em;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.9);
	transition: linear 0.3s;
}

.menu_sin_color .lang_left, .menu_sin_color .lang_right {
    border: 1px solid #fff;
}

.menu_sin_color .lang_left.active, .menu_sin_color .lang_right.active,
.menu_sin_color .lang_left:hover, .menu_sin_color .lang_right:hover {
    background-color: #fff;
    color: var(--corporative);
}

.menu_sin_color .card {
    background-color: transparent;
    border: 1px solid #a5a5a5;
    padding: 15px;
    border-radius: 10px;
}

.menu_sin_color .card .card_tittle {
    color: var(--corporative);
    font-size: 1.3em;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 0.5px solid #3f3f3f;
    margin-bottom: 10px;
}

.menu_sin_color .second_menu {
    border-radius: 10px;
    background-color: var(--corporative_menu);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 15px;
}

.menu_sin_color .second_menu .dropdown-menu.show .dropdown-item {
    border-bottom: .25px solid #fff;
}

/* .menu_sin_color .second_menu .dropdown-menu.show .dropdown-item:last-child {
    border-bottom: none;
} */

.menu_sin_color .second_menu .dropdown-item:focus, .dropdown-item:hover {
    color: var(--secondary);
    text-decoration: none;
    background-color: transparent;
}

.menu_sin_color .button_sm {
    padding: 0px 10px;
    background-color: var(--corporative);
    color: #fff;
    border-radius: 0px;
    cursor: pointer;
    border: 0px;
    width: fit-content;
    border-radius: 10px;
}

.menu_sin_color .button_sm:hover {
    background-color: var(--secondary);
    transition: linear 0.3s;
    color: #fff;
}

/* Menú scroll */
.menu_con_color a .lane {
    display: none;
}

.menu_con_color .lined {
	border-bottom: 0px;
    padding-bottom: 0px;
}

.menu_con_color {
    -webkit-box-shadow: 0px -5px 50px 0px rgb(1 1 1 / 50%);
    -moz-box-shadow: 0px -5px 50px 0px rgb(1 1 1 / 50%);
    box-shadow: 0px -5px 50px 0px rgb(1 1 1 / 50%);
    transition: ease-in 0.3s;
	background-color: #fff;
}

.menu_con_color a {
    color: var(--secondary);
}

.menu_con_color a:hover {
    color: var(--corporative);
    transition: ease-in 0.3s;
}

.menu_con_color .logo_1 {
    display: none;
    transition: linear 0.2s;
}

.menu_con_color .logo_2 {
    display: inline;
    transition: linear 0.2s;
    max-height: 35px;
}

.menu_con_color .desplegable {
    font-size: 0.9em;
    list-style: none;
    background-color: #fff;
	transition: linear 0.3s;
}

.menu_con_color .card {
    background-color: transparent;
    border: 1px solid #d6d6d6;
    padding: 15px;
    border-radius: 10px;
}

.menu_con_color .desplegable a {
    color: var(--secondary);
}

.menu_con_color .card .card_tittle {
    color: var(--corporative);
    font-size: 1.3em;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 0.5px solid #a5a5a5;
    margin-bottom: 10px;
}

.menu_con_color .lang {
    margin-bottom: 0px;
}

.menu_con_color .lang_left, .menu_con_color .lang_right {
    border: 1px solid var(--corporative);
    color: var(--corporative);
}

.menu_con_color .lang_left.active, .menu_con_color .lang_right.active,
.menu_con_color .lang_left:hover, .menu_con_color .lang_right:hover {
    background-color: var(--corporative);
    color: #fff;
}

.desplegable a {
	color: #fff;
}

.desplegable a:hover {
	color: var(--corporative);
	opacity: 1;
}

.right_lined {
    border-right: 0.5px solid rgba(255, 255, 255, 0.4);
}

.main_menu.menu_con_color::-webkit-scrollbar {
    width: 0px;
}

.main_menu.menu_con_color::-webkit-scrollbar-track {
    background-color: transparent;
}

.menu_con_color .second_menu .dropdown-menu.show .dropdown-item {
    border-bottom: .25px solid #acacac;
}

.menu_con_color .button_sm {
    padding: 0px 10px;
    background-color: var(--corporative);
    border-radius: 0px;
    cursor: pointer;
    border: 0px;
    width: fit-content;
    border-radius: 10px;
}

.menu_con_color .button_sm:hover {
    background-color: var(--secondary);
    transition: linear 0.3s;
}

.menu_con_color .button_sm a {
    color: #fff;
}

/* Modales */
body.modal-open {
    padding-right: 0!important;
}

.modal-header {
    background-color: transparent;
    color: #fff;
    padding: 10px 15px;
    border-bottom: 0;
    position: relative;
}

.modal-body {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
}

.close {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: none;
    opacity: 0.5;
    top: -15px;
    right: -30px;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    transition: linear 0.2s;
    color: #fff;
}

.modal_tittle {
    color: #fff;
    font-size: 1.3em;
}

.modal-content {
    border: 0px solid rgba(0, 0, 0, .2);
    background-color: transparent;
}

.slick-dots {
    display: none;
}


/* Footer */
.footer {
    background-color: #3f3f3f;
    color: #fff;
    margin-top: auto;
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 25px;
    z-index: 1050;
}

.footer img {
    max-width: 200px;
}

.footer a {
    color: #fff;
    font-weight: 500;
}

.footer a:hover {
    color: var(--corporative);
    transition: linear 0.3s;
}

.rrss {
    font-size: 1.5em;
}

.copyright {
    background-color: #333333;
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 2px;
    z-index: 9999;
}

.city {
    font-size: 18px;
    font-weight: 500;
    color: var(--corporative);
    padding-bottom: 5px;
    border-bottom: 1px solid #606060;
    width: fit-content;
    margin-bottom: 7px;
}


/* Scroll Down */
.arrow {
    animation-name: scrolldown;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-delay: 2;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: initial;
    width: 20px;
    position: absolute;
    bottom: 10px;
    color: #fff;
    font-size: 2em;
}

.arrow a {
    color: #fff;
}

.arrow a:hover {
    color: var(--corporative);
}

@keyframes scrolldown {
0% {
    opacity: 0;
    transform: translateY(-50px);
}
20%,80% {
    opacity: 1;
    transform: translateY(0);
}
100% {
    opacity: 0;
    transform: translateY(50px);}
}


/* Servicios */
.servicios {
    /* background-color: #fff; */
}

.services_img {
    height: 350px;
    width: 350px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#audiovisual .services_img {
    background-image: url(../img/servicios/produccion.jpg);
}

#realizacion .services_img {
    background-image: url(../img/servicios/realizacion.jpg);
}

#grabacion .services_img {
    background-image: url(../img/servicios/grabacion.jpg);
}

#retransmision .services_img {
    background-image: url(../img/servicios/retransmision.jpg);
}

#diseño .services_img {
    background-image: url(../img/servicios/diseno.jpg);
}

#amenizacion .services_img {
    background-image: url(../img/servicios/amenizacion.jpg);
}

#presentadores .services_img {
    background-image: url(../img/servicios/presentadores.jpg);
}

#soporte .services_img {
    background-image: url(../img/servicios/soporte.jpg);
}

#welcomepack .services_img {
    background-image: url(../img/servicios/welcomepack.jpg);
}

/* Secciones */
.intro {
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
	height: 100vh;
}

#home_video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.masthead {
    position: relative;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    margin-bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.intro {
    height: 100vh!important;
    min-height: 100%!important;
    position: relative;
}

.intro .claim {
	font-size: 4vw;
	color: #fff;
	font-weight: 800;
	line-height: 6vw;
    /* text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); */
    position: absolute;
    top: 40%;
}

.about {
	background-color: white;
    position: relative;
    margin-top: 50px;
}

/* .about img {
    position: absolute;
    left: -20%;
    max-width: 60%;
    top: 5%;
} */

.shadowed {
    filter: drop-shadow(0px 0px 10px #acacac);
    -webkit-filter: drop-shadow(0px 0px 10px #acacac);
}

.works {
	background-color: #fff;
    margin: 50px 0px;
}

.quote {
    background-image: url(../img/banner_02.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.quote_2 {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/quote3.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.quote_3 {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/quote2.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.subquote {
    background-image: url(../img/banner_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 300px;
}

.subquote .opacity {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.numbers {
    background: linear-gradient(90deg, rgb(30, 172, 228) 0%, rgb(0 123 171) 100%);
    /* linear-gradient(90deg, rgb(30, 172, 228) 0%, rgb(0 56 78) 100%); */
}

.numbers .tittle {
    font-size: 1.5em;
    color: #fff;
}

.numbers .text {
    font-size: 0.9em;
    color: #fff;
    opacity: 0.5;
    margin-top: 5px;
    line-height: 1.3em;
}

.section {
    position: relative;
    background-color: var(--secondary);
    color:#fff;
}

.section img {
    position: absolute;
    left: 0%;
    max-width: 30%;
    top: 15%;
}

.section .opacity {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quote .claim, .quote_2 .claim, .quote_3 .claim {
	font-size: 3.5vw;
	color: #fff;
	font-weight: 800;
	line-height: 3vw;
    /* text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); */
}

.msg .claim {
	font-size: 3.5vw;
	color: #fff;
	font-weight: 600;
	line-height: 4vw;
}

.msg {
    min-height: 100vh;
}

.block {
    overflow: hidden;
    width: 100%;
    background: #fff;
}

.animation {
    width: auto;
    height: 100px;
    font-size: 0px;
}

.animation div {
    display: inline-block;
    width: auto;
    float: none;
    padding: 0 10px;
}

.client_logo {
    filter: grayscale(1);
}

.client_logo:hover {
    filter: grayscale(0);
    transition: linear 0.2s;
}

.contenedor-slider img {
    width: 50%;
}

.carousel-indicators {
    position: relative;
    bottom: 0px;
    margin-bottom: 0;
}

.carousel-indicators .active {
    background-color: var(--corporative);
}

.carousel-indicators li {
    background-color: var(--corporative_img);
}

.opinions .carousel-inner {
    height: 24rem;
}

.phone {
    position: relative;
    border: 1px solid #fff;
    border-radius: 25px;
    background-color: #ededed;
    height: 400px;
    width: 325px;
}

.notch {
    width: 48%;
    left: 26%;
    position: absolute;
    height: 30px;
    background-color: #fff;
    border-radius: 0px 0px 20px 20px;
}

.screen_info {
    position: absolute;
    left: 1%;
    bottom: 1%;
    background-color: #f6f6f6;
    border: solid 0.5px #dedede;
    border-radius: 22px;
    width: 98%;
    height: 87%;
    padding: 25px;
    text-align: left;
    color: #a5a5a5;
}

.screen_info p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
}

.screen_info .tittle {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--corporative);
    line-height: 1.4em;
    margin-bottom: 10px;
}

.lane {
    width: 50%;
    margin: 0 auto;
    border-bottom: 1px solid #dbdbdb;
}

.breadcrump {
    color: #fff;
}

.breadcrump a {
    color: #fff;
    font-weight: 600;
}

.breadcrump a:hover {
    transition: ease 0.3s;
    opacity: 0.5;
}

.breadcrump_sm {
    color: #fff;
    font-size: 0.7em;
}

.breadcrump_sm a {
    color: #fff;
    font-weight: 600;
}

.breadcrump_sm a:hover {
    transition: ease 0.3s;
    opacity: 0.5;
}

.auditorios, .workshop, .virtual_fair, .repositorio, .networking, .pre, .agenda, .bolsa, .encuesta, .rgpd, .desarrollo {
    background-color: #f6f6f6;
}

.box {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
}

.pre_vistainicio {
    background-image: url(../img/funcionalidades/vista_inicio_3d.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pre_auditorios {
    background-image: url(../img/funcionalidades/auditorio_virtual.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_workshop {
    background-image: url(../img/funcionalidades/salas_de_workshop.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_feria {
    background-image: url(../img/funcionalidades/feria_virtual.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_repositorio {
    background-image: url(../img/funcionalidades/repositorio_documental.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_networking {
    background-image: url(../img/funcionalidades/area_networking.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_contact {
    background-image: url(../img/funcionalidades/funcionalidades_contacto.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_bar {
    background-image: url(../img/funcionalidades/bar_sala_descanso.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pre_asistencia {
    background-image: url(../img/funcionalidades/certificado_asistencia.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pre_responsive {
    background-image: url(../img/funcionalidades/100_responsive.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pre_analitica {
    background-image: url(../img/funcionalidades/analitica_detallada.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pre_participantes {
    background-image: url(../img/funcionalidades/participantes_simultaneos.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pre_produccion {
    background-image: url(../img/produccion_eventos.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_grabacion {
    background-image: url(../img/grabacion_ponencias.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_amenizacion {
    background-image: url(../img/amenizacion_de_eventos.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_presentadores {
    background-image: url(../img/presentadores.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.pre_contacto_servicios {
    background-image: url(../img/entorno_virtual.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 250px;
}

.subsection {
    padding: 15px 25px;
    /* border: 1px solid #dedede; */
    border-radius: 10px;
    font-size: 14px;
    line-height: 24px;
    background-color: #fff;
    /* -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%); */
}

.subsection .tittle {
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.networking .card {
    border-radius: 10px;
}

.networking .card img {
    border-radius: 5px;
}

.networking .card .button {
    border-radius: 5px;
}

.networking .card .button:hover {
    background-color: #d6d6d6;
}

.networking .card .name {
    color: #acacac;
    font-size: 0.9em;
    font-weight: 400;
    margin-top: 10px;
}

.networking .card .company {
    font-weight: 800;
    font-size: 1.2em;
    color: var(--corporative);
    margin-top: 5px;
}

.networking .card .charge {
    color: var(--secondary);
}

.multilenguaje img {
    border-radius: 10px;
}




/* Opinions */
.opinions {
    background-color: #f6f6f6;
}

.testimonial {
    color: #7e7e7e;
    font-size: 1.2em;
    text-align: center;
    font-weight: 500;
    line-height: 1.4em;
}

.author {
    text-transform: uppercase;
    color: #3f3f3f;
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
}

.author .company {
    color: #7e7e7e;
    text-transform: none;
    font-size: 16px;
    font-weight: 300;
    display: block;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    background-image: none;
}

.carousel-control-next-icon i, .carousel-control-prev-icon i {
    color: var(--corporative);
    font-size: 2em;
}


/* Contact */
.contact {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.contact .button {
    min-width: 210px;
}

.direct_contact {
    border-right: 1px solid #d4d4d4;
}

input[type="text"],
input[type="email"],
select {
    background-color: transparent;
    border-bottom: 1px solid rgba(30, 172, 228, 0.7);
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 10px 15px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 0px;
    color: var(--corporative);
}

.input_sweet {
    width: 87.5% !important;
}

.form-control {
    background-color: transparent;
    border-bottom: 1px solid rgba(30, 172, 228, 0.7);
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 10px 15px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 0px;
    color: var(--corporative);
}

.form-control:focus {
    background-color: rgba(30, 172, 228, 0.2);
    border-bottom: 1px solid rgba(30, 172, 228, 0.7);
    color: var(--corporative);
    box-shadow: none;
}

input::placeholder, .form-control::placeholder {
    color: rgba(30, 172, 228, 0.7);
}

input:-internal-autofill-selected {
    background-color: transparent;
}

.form_control:focus {
    background-color: rgba(30, 172, 228, 0.2);
    border-bottom: 1px solid rgba(30, 172, 228, 0.7);
    color: var(--corporative);
    box-shadow: none;
    border-top: none;
    border-right: none;
    border-left: none;
    outline: 0;
    transition: linear 0.1s;
}

.swal2-popup {
    border-radius: 10px!important;
    padding: 2em!important;
}

.swal2-title {
    font-size: 1.5em!important;
    padding: 0.8em 1em!important;
}

.swal2-input {
    text-align: center!important;
    box-shadow: none!important;
    transition: all linear 0.2s!important;
}

.swal2-input:focus {
    box-shadow: none!important;
    border-top: none!important;
    border-left: none!important;
    border-right: none!important;
    border-bottom: 2px solid rgba(30, 172, 228, 0.7)!important;
    transition: all linear 0.2s!important;
}



/* Producto */
#home_video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
}

.intro_product {
    height: 40vh!important;
    position: relative;
}

.intro_product .claim {
	font-size: 3vw;
	color: #fff;
	font-weight: 800;
	line-height: 6vw;
    /* text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); */
    position: absolute;
    top: 35%;
}

.gallery img {
    width: 100%;
}

.congresos_digitales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/congresos_digitales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.congresos_hibridos {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/congresos_hibridos_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.congresos_online {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/congresos_online_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.congresos_virtuales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/congresos_virtuales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.convenciones_digitales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/convenciones_digitales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.convenciones_hibridas {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/convenciones_hibridas_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.convenciones_online {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/convenciones_online_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.convenciones_virtuales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/convenciones_virtuales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.entrega_premios {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/entregas_de_premios_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.eventos_digitales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/eventos_digitales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.eventos_hibridos {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/eventos_hibridos_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.eventos_online {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/eventos_online_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.eventos_virtuales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/eventos_virtuales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.ferias_digitales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/ferias_digitales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.ferias_hibridas {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/ferias_hibridas_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.ferias_online {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/ferias_online_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.ferias_virtuales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/ferias_virtuales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.galas_virtuales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/galas_virtuales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.showrooms_digitales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/showrooms_digitales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.showrooms_hibridos {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/showrooms_hibridos_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.showrooms_online {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/showrooms_online_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.showrooms_virtuales {
    background: -webkit-linear-gradient(var(--corporative_img), var(--corporative_img)), url(../img/products/showrooms_virtuales_01.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.gallery a {
    transition: all .4s ease;
    overflow: hidden;
    cursor: pointer;
}

.gallery a img {
    transition: all .4s ease;
    overflow: hidden;
    transform: scale(1.6);
}

.gallery a .shape {
    opacity: 0;
    color: #fff;
    transition: all .4s ease;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery a:hover {
    background-position: center;
    transition: all .4s ease;
    overflow: hidden;
}

.gallery a:hover img {
    transform: scale(1.8);
    transition: all .4s ease;
    overflow: hidden;
}

.gallery a:hover .shape {
    background-color: var(--corporative);
    opacity: 0.8;
    transition: all .4s ease;
    z-index: 99;
}

.modal.fade.show {
    padding-right: 0!important;
}


/* 404 */
.error {
    height: 100vh!important;
    position: relative;
}

.error .claim {
	font-size: 4vw;
	color: #fff;
	font-weight: 800;
	line-height: 6vw;
    /* text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); */
    position: absolute;
    top: 40%;
}

.calendly-overlay {
    z-index: 999999999!important;
}

.calendly-overlay .calendly-popup-close {
    top: 105px!important;
}


/* Querys */

@media (max-width: 1080px) {}

@media (max-width: 991px) {
    h2 {
        font-size: 1.2em;
        max-width: 100%;
    }
	.menu_sin_color {
		padding: .8rem 1rem;
	}
	.navbar {
		padding: .8rem 1rem;
	}
	.dropdown-menu {
		background-color: transparent;
		border: 0px;
        font-size: inherit;
        padding-bottom: 10px;
	}
    .dropdown-item {
        padding: .55rem 1rem .35rem 0rem;
    }
    .about, .works {
        margin-top: 0px;
    }
    .about img {
        max-width: 60%;
    }
    .testimonial {
        font-size: 1.2em;
    }
    .close {
        top: -15px;
        right: 10px;
        font-size: 1.5em;
    }
    .close.typetwo {
        top: -30px;
        right: 10px;
        font-size: 1.5em;
    }
    .main_menu.menu_con_color .menu {
        position: sticky;
        top: 0;
        background-color: #fff;
        z-index: 10;
        -webkit-box-shadow: 0px 0px 45px 45px rgba(255,255,255,1);
        -moz-box-shadow: 0px 0px 45px 45px rgba(255,255,255,1);
        box-shadow: 0px 0px 45px 45px rgba(255,255,255,1);
        transition: ease-in 0.3s;
    }
    .main_menu.menu_con_color {
        max-height: 100vh;
        overflow-y: scroll;
    }
    .calendly-overlay .calendly-popup-close {
        top: 15px!important;
        right: 25px!important;
    }
    .fixed_item {
        top: 30%;
        right: -30px;
        width: 100%;
    }
    .services_img {
        height: 300px;
        width: 300px;
    }
}

@media (max-width: 1024px) {
    .menu_sin_color {
        padding-top: 20px;
    }
    .menu {
        font-size: 0.9em;
    }
    .intro_product .claim {
        font-size: 6vw;
        top: 45%;
    }
}

@media (max-width: 810px) {
    .button {
        font-size: 0.9em;
        padding: 7px 10px;
        white-space: break-spaces;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2em;
        line-height: 1em;
    }
    h2 {
        font-size: 1.1em;
        max-width: 100%;
    }
    .intro .claim, .error .claim {
        font-size: 50px;
        line-height: 55px;
        top: 35%;
    }
    .quote .claim, .quote_2 .claim, .quote_3 .claim, .error .claim {
        font-size: 35px;
        line-height: 45px;
    }
    .msg .claim {
        font-size: 35px;
        line-height: 45px;
    }
    .city {
        width: auto;
    }
    .testimonial {
        font-size: 1em;
    }
    .calendly-overlay {
        background-color: var(--corporative)!important;
    }
    .direct_contact {
        border-right: 0px solid #d4d4d4;
        border-bottom: 1px solid #d4d4d4;
    }
    .quote, .subquote {
        background-attachment: inherit;
    }
    .quote {
        text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    }
    .back {
        background-attachment: inherit;
    }
    .subquote {
        display: none;
    }
}

@media (max-width: 576px) {
    .slick-prev:before,
    .slick-next:before {
        display: none;
    }
    .intro_product .claim {
        font-size: 7vw;
        top: 45%;
    }
    .subsection .tittle {
        font-size: 1.1em;
        font-weight: 500;
    }
    .subsection {
        padding: 15px;
    }
    .phone {
        height: 450px;
        width: 245px;
    }
    .tittle, .tittle_white {
        font-size: 1.5em;
    }
    body {
        font-size: 16px;
        line-height: 21px;
    }
    .quote .claim, .quote_2 .claim, .quote_3 .claim {
        font-size: 30px;
    }
    .msg .claim {
        font-size: 30px;
    }
    .ir-arriba {
        width: 40px;
        height: 40px;
        padding: 4px;
    }
    .services_img {
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 450px) {
    h1 {
        font-size: 1.7em;
        line-height: 1em;
    }
}

@media (min-width: 2200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1450px;
    }
}

@media (min-width: 2800px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1650px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 1080px;
        width: 80%;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 1080px;
        width: 80%;
    }
}
  
/* Nav Icon */
#nav-icon {
width: 35px;
height: 19px;
position: relative;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}

#nav-icon span {
display: block;
position: absolute;
height: 4px;
width: 25px;
background: var(--corporative);
border-radius: 6px;
opacity: 1;
right: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}


#nav-icon span:nth-child(1) {
top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
top: 8px;
}

#nav-icon span:nth-child(4) {
top: 16px;
}

#nav-icon.open span:nth-child(1) {
top: 18px;
width: 0%;
left: 50%;
}

#nav-icon.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
top: 18px;
width: 0%;
left: 50%;
}
  