/*
Theme Name: Baroli
Author: Andres J. Villar - Merit Designs
Author URI: https://meritdesigns.com
Description: Theme Wordpress
Version: 1.0
*/
:root {	
	--white: #ffffff;
	--blue: #056ca1;
	--primary: #444444;
	--black: #000000;
	--blue2: #0077e2;
}
html, body{
	height: 100%;
}
body {
	background: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: var(--primary);
	font-weight: normal;
}
.container, .container-fluid {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}
.clear, .clearfix {
	display: block;
	clear: both;
}
.height10 {
	height: 10px;
}
.height20 {
	height: 20px;
}
.height30 {
	height: 30px;
}
.height50 {
	height: 50px;
}
img {
	max-width: 100%;
	height: auto;
}
.black {
	color: var(--black);
}
.white {
	color: var(--white);
}
.blue {
	color: var(--blue);
}
.blue2 {
	color: var(--blue2);
}
.bg-black {
	background: var(--black);
}
.bg-white {
	background: var(--white);
}
.bg-blue {
	background: var(--blue);
}
.bg-blue2 {
	background: var(--blue2);
}
.transition, a.boton, button {
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
a, a:hover, a:focus, a:active {
	text-decoration: none;
	color: var(--blue);
}
.boton {
	text-transform: none;
	display: inline-block;
	color: var(--white);
	background: rgb(5,108,161);
  background: -moz-linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  background: -webkit-linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  background: linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  border: none !important;
	padding: 11px 40px;
	border-radius: 24px;
	font-weight: normal;
	font-family: 'Poppins', sans-serif;
	opacity: 0.9;
	transition: all .2s;
}
.boton:hover, .boton:focus {
	color: var(--white);
	opacity: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
}
h1, h2 {
	line-height: 1.3em;
}
.gradient {
  background: rgb(5,108,161);
  background: -moz-linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  background: -webkit-linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  background: linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  border: none !important;
}


/**** HEADER ****/
header {
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,0.9);
	padding-top: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,.12);
}
header .navbar-brand {
	padding: 3px 0px;
	min-height: none;
	height: auto !important;
	z-index: 9999 !important;
}
header .navbar-brand img {
    height: 60px;
}
.navbar-header {
    position: relative;
    z-index: 999;
}
.navbar-default {
    background-color: transparent !important;
    border-color: none;
    border: none;
    margin-top: 8px;
    margin-bottom: 0;
    padding-top: 0;
}
.navbar-default .navbar-nav li a {
	color: var(--primary);
	font-size: 15px;
	border: none;
	text-transform: none;
	font-weight: 600;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	font-family: 'Poppins', sans-serif;
	border-bottom: 3px solid transparent;
	padding: 24px 5px;
}
.navbar-default .navbar-left li.active a, .navbar-default .navbar-left li a:hover,
.navbar-default .navbar-left li a:focus {
	background:none !important;
	color: #333;
	border-bottom: 3px solid var(--blue);
}
.navbar-default .navbar-left > .active > a, 
.navbar-default .navbar-left > .active > a:focus, 
.navbar-default .navbar-left > .active > a:hover {
    color: #333;
	border-bottom: 3px solid var(--blue);
}
.navbar-default .navbar-left li {
	padding-right: 10px;
	padding-left: 10px;
}
.navbar-nav {
	padding-left: 40px;
    padding-top: 5px;
}


/* Desktop */
/* ======================================
   MEGAMENU
====================================== */
.navbar-nav > li.mega-dropdown {
    position: static;
}

/* Panel del megamenu */
.mega-menu {
    display: none;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,.12);
}

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

    .mega-dropdown:hover .mega-menu {
        display: block;
    }

    .mega-trigger {
        display: none !important;
    }
}

/* Títulos */
.mega-menu h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: var(--blue);
}

/* Listas */
.mega-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu ul li {
    margin-bottom: 8px;
    padding: 0 !important;
}

.mega-menu ul li a {
	font-weight: normal !important;
    display: block;
    color: #555;
    text-decoration: none;
    padding: 9px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.mega-menu ul li a:hover {
    color: #333;
}

.navbar-right a.boton, .navbar-right a.boton:hover, .navbar-right a.boton:focus {
	padding: 9px 15px !important;
	color: #fff !important;
	background: rgb(5,108,161);
  	background: -moz-linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  	background: -webkit-linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  	background: linear-gradient(90deg, rgba(5,108,161,1) 0%, rgba(92,193,202,1) 100%) !important;
  	border: none !important;
}
.navbar-default .navbar-right li {
	padding-left: 15px;
	padding-top: 10px;
}

/* ======================================
   MOVIL
====================================== */

@media (max-width: 991px) {

    .mega-dropdown {
        position: relative;
    }

    .mega-dropdown > a {
        display: inline-block;
        width: calc(100% - 40px);
    }

    .mega-trigger {
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        cursor: pointer;
    }

    .mega-menu {
        position: static;
        display: none;
        border: 0;
        box-shadow: none;
        padding: 15px;
        margin-top: 10px;
    }

    .mega-dropdown.open .mega-menu {
        display: block;
    }

    .mega-menu .col-md-3 {
        margin-bottom: 20px;
    }
}



/** HOME */
.slider {
	background: url(images/bg-slider.jpg) no-repeat center center;
	background-size: cover;
	padding-top: 200px;
}
h1, .h1 {
	font-size: 42px;
	font-weight: 600;
}
.slider h1 span {
	display: block;
	color: var(--blue);
	font-size: 52px;
	font-weight: 600;
}
.slider .boton {
	font-weight: 600;
	font-size: 17px;
}
.boton .fa {
	margin-left: 10px;
}
.slider img {
	width: 330px;
}
.intro-home {
	color: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 24px;
	position: relative;
	padding-right: 300px;
}
.intro-home .boton2 {
	font-size: 16px;
}
.intro-home img {
	position: absolute;
	right: 155px;
	top: 70px;
	width: 140px;
}
.boton2 {
	border: 1px solid #fff;
	border-radius: 24px;
	color: #fff;
	background: transparent;
	outline: none;
	padding: 10px 24px;
	font-weight: 600;
	transition: all .2s;
}
.boton2:hover {
	background: #fff;
	color: var(--blue);
}
.boton2 .fa {
	margin-left: 8px;
}
.titulo {
	border-left: 8px solid var(--blue);
	font-weight: 600;
	font-size: 54px;
	line-height: 1em;
	padding-left: 20px;
}
.bg {
	background: url(images/bg.jpg) no-repeat center center;
	background-size: cover;
}
.bg2 {
	background: url(images/bg2.jpg) no-repeat center center;
	background-size: cover;
}
.ficha {
	background: #fff;
	padding: 15px 30px;
	border-radius: 30px;
	position: relative;
	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.1);
	margin-bottom: 50px;
	overflow: hidden;
}
.fondoficha {
	position: absolute;
	right: -50px;
	bottom: -50px;
}
.tituloficha {
	-webkit-border-radius: 30px;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: 30px;
	-moz-border-radius-topleft: 0;
	border-radius: 30px;
	border-top-left-radius: 0;
	color: #fff;
	padding: 20px 20px;
	position: relative;
	z-index: 1;
	margin-bottom: 40px;
}
.contenidos-ficha  .col-sm-4, .contenidos-ficha  .col-sm-6 {
	position: relative;
	padding-left: 130px;
	font-weight: 600;
	font-size: 18px;
	padding-top: 15px;
	min-height: 120px;
}
.contenidos-ficha span {
	display: block;
	padding: 20px;
	background: #fff;
	-webkit-border-radius: 50px;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: 50px;
	-moz-border-radius-topleft: 0;
	border-radius: 50px;
	border-top-left-radius: 0;
	text-align: center;
	width: 96px;
	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05); 
	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
	position: absolute;
	left: 15px;
	top: 0;
}
.contenidos-ficha a {
	display: block;
	color: var(--primary);
}
.font22 {
	font-size: 22px;
}
.font20 {
	font-size: 20px;
}
.font18 {
	font-size: 18px;
}
.botoncotizar {
	background: #fff;
	color: var(--primary);
	display: block;
	padding: 11px 20px;
	border-radius: 24px;
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	margin-top: 40px;
}
.cotizar {
	padding-bottom: 20px;
}
footer {
	background: #000000;
	color: #fff;
	padding-top: 40px;
}
footer h4 {
	margin-bottom: 20px;
}
footer a {
	color: #fff;
}
.menufooter a {
	display: block;
	position: relative;
	background: url(images/mas.png) no-repeat left center;
	background-size: 15px;
	padding: 12px 12px 12px 30px;
	border-bottom: 1px solid #333;
}
.menufooter a:hover, .menufooter a:focus {
	color: #fff;
}
.contactos {
	position: relative;
	padding-left: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #333;
}
.menufooter a.last, .contactos.last {
	border: none;
}
.contactos img {
	position: absolute;
	left: 0;
	top: 10px;
}
footer .col-sm-3 {
	width: 20%;
}
.hamburger {
	display: none;
}
.sidenav {
  	height: 100%; 
	width: 0; 
  	position: fixed; 
  	z-index: 9999; 
  	top: 0; 
  	right: 0;
  	background-color: #ffffff; 
  	overflow-x: hidden;
  	padding-top: 60px; 
  	transition: 0.3s; 
  	-webkit-box-shadow: 0px 0px 30px 7px rgba(0,0,0,0.25); 
	box-shadow: 0px 0px 30px 7px rgba(0,0,0,0.25);
}
.menusidebar {
	padding: 10px 15px;
}
.menusidebar a.link {
	display: block;
	padding: 10px 10px;
	font-weight: 600;
	border-bottom: 1px solid #f0f0f0;
}
.menusidebar a.boton {
	width: 100%;
	text-align: center;
	font-weight: 600;
	margin: 15px 0 0 0;
}
.menusidebar .panel-default > .panel-heading {
  color: var(--blue);
  background-color: #fff;
  border: none;
  box-shadow: none;
}
.menusidebar .panel-heading {
  padding: 0;
  border: none;
}
.menusidebar .panel-group {
  margin: 0;
}
.menusidebar .panel {
  	margin-bottom: 0;
  	background-color: #fff;
  	border: none;
 	-webkit-box-shadow: none;
  	box-shadow: none;
}
.menusidebar .panel-heading a {
	display: block;
	padding: 10px 10px;
	font-weight: 600;
	border-bottom: 1px solid #f0f0f0;
	position: relative;
}
.menusidebar .panel-heading .fa {
	position: absolute;
	right: 10px;
	top: 16px;
	font-size: 12px;
}
.menusidebar a.sublink {
	display: block;
	padding: 7px 0;
}
.mision {
	background: #e9e9e9;
	padding: 20px 30px 30px 30px;
	-webkit-border-radius: 50px;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: 50px;
	-moz-border-radius-topleft: 0;
	border-radius: 50px;
	border-top-left-radius: 0;
	min-height: 235px;
	margin-bottom: 50px;
}
.mision h2 {
	margin-bottom: 20px;
}
.valores {
	display: inline-block;
	background: #fff;
	border-radius: 50px;
	padding: 20px;
	text-align: center;
	-webkit-box-shadow: 0px 0px 20px 7px rgba(0,0,0,0.15); 
	box-shadow: 0px 0px 20px 7px rgba(0,0,0,0.15);
	width: 300px;
	margin: 0 20px 30px 20px;
}
.valores img {
	width: 90px;
	margin-bottom: 10px;
}
.valores h3 {
	font-size: 21px;
	line-height: 1.4em;
	font-weight: 600;
	margin-top: 5px !important;
}
body.planes {
	background: #0b1121;
}
.plan1 {
	background: #172134;
	color: #fff;
	border-radius: 20px;
	padding: 30px;
	font-size: 15px;
}
.plan2 {
	background: #0077e2;
	color: #fff;
	border-radius: 20px;
	padding: 30px;
	font-size: 15px;
}
.plan1 small, .plan2 small {
	color: #fff;
	font-size: 16px;
}
.plan1 ul, .plan2 ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.plan1 ul li, .plan2 ul li  {
	margin-bottom: 5px;
}
.botonfunciones {
	background: #fff;
	text-align: center;
	font-weight: 600;
	color: #0077e2 !important;
	padding: 12px;
	border-radius: 12px;
	display: block;
	width: 100%;
}
.botonplan1 {
	background: #0077e2;
	color: #fff !important;
	text-align: center;
	font-weight: 600;
	padding: 12px;
	border-radius: 12px;
	display: block;
	width: 100%;
	transition: all .2s;
	opacity: 0.9;
	margin: 10px 0;
}
.botonplan1:hover {
	opacity: 1;
}
.botonplan2 {
	background: #fff;
	color: #0077e2 !important;
	text-align: center;
	font-weight: 600;
	padding: 12px;
	border-radius: 12px;
	display: block;
	width: 100%;
	transition: all .2s;
	opacity: 0.9;
	margin: 10px 0;
}
.botonplan2:hover {
	opacity: 1;
}
.plan1, .plan2 {
	margin-bottom: 50px;
}
.faqs .panel-heading {
	background: #334155;
	color: #fff !important;
	padding: 16px 15px;
	font-size: 18px;
	border: none !important;
}
.faqs .panel-heading a {
	color: #fff !important;
}
.faqs .panel {
	border-radius: 12px;
	border: none;
	margin-bottom: 15px;
}
.faqs .panel-title a {
    display: block;
    position: relative;
    padding-right: 25px;
    text-decoration: none;
}
.faqs .panel-title a .icono:before {
    content: "-";
    position: absolute;
    right: 15px;
    top: 0;
    font-weight: normal;
    font-size: 18px;
    color: var(--blue2);
}
.faqs .panel-title a.collapsed .icono:before {
    content: "+";
    font-weight: normal;
    color: var(--blue2);
}
.faqs .panel-body {
	background: #334155;
	border: none !important;
	font-size: 15px;
	color: #cbd5e1;
	padding-top: 0;
}
h4 {
	line-height: 1.4em;
}


/* Radios Empresa / Persona */
.tipo-cliente{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.tipo-cliente input{
    margin-right:5px;
}

/* Campos */
#form-cotizacion input[type=text],
#form-cotizacion input[type=email],
#form-cotizacion textarea{
    width:100%;
    margin-bottom:15px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:4px;
}

/* Intereses */
.intereses{
    margin-bottom:20px;
}

.interes-btn{
    margin: 5px;
    cursor:pointer;
    font-weight: 500;

}

.interes-btn input{
    display:none;
}

.interes-btn span{
    display:block;
    padding:10px 18px;
    border:1px solid #ccc;
    border-radius:50px;
    transition:.2s;
    background:#fff;
}

/* Estado activo */
.interes-btn input:checked + span{
    background:#0077e2;
    border-color:#0077e2;
    color:#fff;
}

/* Hover */
.interes-btn:hover span{
    border-color:#0077e2;
}
.intereses h4 {
	display: block;
	clear: both;
}
ul.lista {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul.lista li {
	margin-bottom: 6px;
}
.fichaschat {
	background: #172342;
	color: #ddd;
	text-align: center;
	border-radius: 20px;
	margin-bottom: 40px;
	overflow: hidden;
}
.fichaschat .contenidos {
	text-align: center;
	padding: 10px 25px;
	min-height: 310px;
}
.fichaschat h3 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 15px;
}
.fichas2 {
	background: #101930;
	border-radius: 20px;
	margin-bottom: 40px;
	overflow: hidden;
}
.fichas2 .contenidos {
	text-align: center;
	color: #dddddd;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 15px;
	min-height: 240px;
}
.fichas2 h4 {
	color: var(--blue2);
	font-size: 14px;
	text-transform: none;
	margin-bottom: 0;
}
.fichas2 h3 {
	font-weight: 600;
	font-size: 19px;
	color: #fff;
	margin-bottom: 15px;
}
.fichas2 img {
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-top: 25px;
	margin-bottom: 10px;
}
.barolichat h2 {
	color: #fff;
}
.barolichat {
	color: #ddd;
}
.listado strong {
	color: var(--blue2);
	font-weight: 600;
}
ul.listado {
	margin: 0;
	padding-left: 15px;
}
.listado li {
	margin-bottom: 8px;
}
.barolichat img {
	border-radius: 15px;
}
@media(min-width:767px) {
	.floatright {
		float: right;
	}
}
.startup {
	padding-bottom: 50px;
}
.startupimage img {
	margin-top: -90px;
}
.centrales .valores {
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	min-height: 200px;
	margin-left: 0;
	margin-right: 0;
}
#carousel-centrales img {
	border-radius: 12px;
}
#carousel-centrales .fa {
	font-size: 50px;
}
#carousel-centrales .carousel-control {
	width: 80px;
	text-align: center;
	background: none !important;
	-webkit-display: flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
#carousel-centrales .carousel-indicators li {
	border: 1px solid #333 !important;
	width: 14px;
	height: 14px;
	margin: 0 2px;
}
#carousel-centrales .carousel-indicators li.active {
	background: #333 !important;
}
.galeria-logos {
	text-align: center;
}
.galeria-logos img {
	height: 60px;
	margin: 8px 10px;
}
.logos2 img {
	height: 90px;
	margin: 8px 10px;
}
.telefonosip {
	text-align: center;
}
.telefonosip a {
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: inline-block;
	width: 184px;
	height: 184px;
	margin: 0 15px 30px 15px;
	-webkit-border-radius: 90px;
  	-webkit-border-top-left-radius: 0;
  	-moz-border-radius: 90px;
  	-moz-border-radius-topleft: 0;
  	border-radius: 90px;
    border-top-left-radius: 90px;
  	border-top-left-radius: 0;
  	text-align: center;
  	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
}
.telefonosip a.big {
	width: 320px;
	height: 320px;
	margin: 0 15px 30px 15px;
	-webkit-border-radius: 160px;
  	-webkit-border-top-left-radius: 0;
  	-moz-border-radius: 160px;
  	-moz-border-radius-topleft: 0;
  	border-radius: 160px;
    border-top-left-radius: 160px;
  	border-top-left-radius: 0;
  	text-align: center;
  	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
}

#html5-watermark {
	display: none !important;
}
.html5-elem-data-box {
	display: none !important;
}
.owl-carousel .owl-nav  {
	display: none !important;
	/*** 
	position: absolute;
	top: 70px;
	****/
}
.owl-carousel .owl-dots {
	display: block !important;
	text-align: center;
	margin-bottom: 40px;
}
.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	width: 30px;
	height: 5px;
	margin: 0 4px;
	background: #fff !important;
	opacity: 0.5;
}
.owl-carousel .owl-dots .owl-dot.active {
	opacity: 1;
}
.tags .tag {
	display: inline-block;
	padding: 11px 20px;
	color: #fff;
	background: #328cb3;
	border-radius: 28px;
	transition: all .2s;
	margin-right: 10px;
	margin-bottom: 15px;
	font-size: 16px;
}
.tags .tag:hover {
	color: var(--blue);
	background: #fff;
}
.centrales2 {
	display: inline-block;
	width: 350px;
	margin: 0 15px 30px 15px;
	vertical-align: top;
}
.centrales2 .valores {
	vertical-align: top;
	margin: 0;
	width: 100%;
	min-height: 300px;
}
.camara {
	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	margin-bottom: 30px;
}
.fichacamara {
	padding: 10px 15px 15px 15px;
	color: #fff;
	text-align: center;
}
.tips {
	background: #fff;
	padding: 15px 30px 22px 120px;
	position: relative;
	margin-bottom: 30px;
	color: var(--primary);
	border-radius: 20px;
}
.tips .nombre {
	color: var(--blue);
	position: absolute;
	left: 30px;
	top: 10px;
}
.tips h3 {
	color: var(--blue);
}
.funcionesacceso {
	display: inline-block;
	width: 350px;
	max-width: 100%;
	margin: 0 15px 30px 15px;
	vertical-align: top;
}
.funcionesacceso .valores {
	min-height: 320px;
}
.modelos {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 40px 20px 40px 200px;
	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	margin-bottom: 30px;
  	min-height: 220px;
}
.modelos img {
	position: absolute;
	left: 20px;
	top: 15px;
	width: 180px;
}
.solucionescomunicacion .modelos {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 20px 20px 20px 120px;
	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	margin-bottom: 30px;
  	min-height: 170px;
}
.solucionescomunicacion .modelos img {
	width: 80px;
	top: 25px;
	left: 20px !important;
}
.peplink img {
	margin-top: -140px;
	width: 320px;
	max-width: 100%;
}
.producto {
	padding: 30px;
	border: 1px solid #ccc;
	margin-bottom: 30px;
	border-radius: 12px;
	text-align: center;
}
.minimensajes {
	position: relative;
	padding-left: 95px;
	padding-top: 20px;
	min-height: 75px;
	margin-bottom: 20px;
}
.minimensajes img {
	position: absolute;
	left: 0;
	top: 0;
	width: 75px;
}
.ejemplo {
	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.05);
  	background: #fff;
  	padding: 20px;
  	text-align: center;
  	border-radius: 40px;
  	margin-bottom: 30px;
}
.wifi {
	padding-top: 120px;
}
.conexion {
	position: relative;
	padding-left: 550px;
	padding-top: 100px;
	padding-bottom: 100px;
}
.conexion img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 500px;
}
.boton3 {
	color: #fff;
	background: #0077e2;
	display: inline-block;
	border-radius: 10px;
	margin: 0 10px 10px 10px;
	transition: all .2s;
	padding: 11px 25px;
	font-size: 15px;
	font-weight: 500;
	border: none;
}
.boton3:hover {
	color: #333;
}
.tag2 {
	display: inline-block;
	padding: 11px 22px;
	border-radius: 24px;
	background: #f2f2f2;
	color: #333;
	font-size: 15px;
	font-weight: 500;
}
.box {
	-webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.04); 
	box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.04);
	width: 100%;
	background: #fff;
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 20px;
}
.box h3 {
	font-size: 19px;
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: 600;
}
.box ul {
	margin-top: 15px;
	list-style-type: none;
	padding: 0;
	margin-left: 0;
}
.box ul li {
	padding-left: 21px;
	background: url(images/li.png) no-repeat top left;
	margin-bottom: 5px;
	background-size: 16px;
}
.formulario input, .formulario select {
	width: 100%;
	border: 1px solid #e9e9e9;
	background: #fff;
	font-size: 16px;
	padding: 11px 15px;
	height: 44px;
	margin-bottom: 20px;
	text-align: left;
}
.formulario textarea {
	width: 100%;
	border: 1px solid #e9e9e9;
	background: #fff;
	font-size: 16px;
	padding: 11px 15px;
	margin-bottom: 20px;
	text-align: left;
}
.formulario label {
	font-size: 14px;
	font-weight: 400;
	display: block;
	text-align: left;
	color: #555;
}
.menu1 a {
	color: #333;
	display: inline-block;
	padding: 10px 5px;
	font-size: 14px;
	font-weight: 500;
}
.menu1 img {
	margin-right: 20px;
}
.menu2 {
	text-align: right;
}
.menu2 a {
	color: #333;
	display: inline-block;
	padding: 12px 5px;
	font-size: 14px;
	font-weight: 500;
}
.item-logitech {
	position: relative;
	height: 500px;
	padding-top: 80px;
}
.item-logitech::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.2);
}
.owllogitech {
	color: #fff;
	font-size: 18px;
}
.owllogitech h1 {
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 52px;
	line-height: 1.1em;
}
.item-logitech a {
	color: #333;
	background: #00ffff;
	display: inline-block;
	border-radius: 30px;
	transition: all .2s;
	padding: 11px 35px;
	font-size: 15px;
	font-weight: 500;
	border: none;
	margin-top: 20px;
}
.item-logitech a:hover {
	color: #333;
}
.owllogitech .owl-nav  {
	display: none !important;
	/*** 
	position: absolute;
	top: 70px;
	****/
}
.owllogitech .owl-dots {
	display: block !important;
	text-align: center;
	margin-bottom: 30px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.owllogitech .owl-dots .owl-dot {
	display: inline-block;
	width: 30px;
	height: 5px;
	margin: 0 4px;
	background: #fff !important;
	opacity: 0.5;
}
.owllogitech .owl-dots .owl-dot.active {
	opacity: 1;
}
.slim {
	font-weight: 500;
}


@media(max-width: 1080px) {
	.menu-logitech {
		display: none;
	}
	.contenedormenu {
		position: relative;
	}
	.navbar-left, .navbar-right {
		display: none !important;
	}
	header .navbar-brand img {
  		height: 54px;
  		margin-top: 0;
  		margin-bottom: 16px;
	}
	.hamburger {
	    display: block;
	    cursor: pointer;
	    position: absolute;
	    right: 20px;
	    color: var(--blue);
	    font-size: 24px;
	    top: 9px;
	    z-index: 1000;
	}
	.closebtn {
  		position: absolute;
  		right: 15px;
 		top: 15px;
  		font-size: 36px;
	}
}


@media(max-width:767px) {
	.slider {
  		padding-top: 140px;
	}
	h1, .h1 {
  		font-size: 30px;
 	}
 	.slider h1 span {
 		font-size: 40px;
 	}
 	.slider .boton {
 		margin-bottom: 30px;
 	}
 	.intro-home {
  		font-size: 20px;
 		padding-right: 180px;
	}
	.intro-home img {
  		right: 20px;
  		width: 100px;
	}
	.titulo {
  		font-size: 40px;
  	}
  	.ficha h1, .ficha .h1 {
    	font-size: 26px;
  	}
  	footer .col-sm-3 {
  		width: 100%;
  		float: none;
	}
	.contenidos-ficha .col-sm-4, .contenidos-ficha .col-sm-6 {
 		font-size: 16px;
  		padding-top: 19px;
	}
	.conexion {
  		position: relative;
  		padding-left: 15px;
  		padding-top: 50px;
  		padding-bottom: 0;
	}
	.conexion img {
  		position: relative;
  		bottom: inherit;
  		left: inherit;
  		width: 500px;
  		max-width: 100%;
	}
}


@media(max-width:498px) {
	.intro-home {
    	padding-right: 140px;
  	}
  	.font22 {
  		font-size: 20px;
	}
	.font20 {
  		font-size: 18px;
	}
	.font18 {
		font-size: 16px;
	}
	.ficha h1, .ficha .h1 {
    	font-size: 22px;
  	}
  	.startupimage img {
  		margin-top: -40px;
	}
	.tips {
 		padding: 15px 20px 22px 100px;
  	}
  	.valores h3 {
  		font-size: 18px;
  	}
  	.modelos img {
  		left: 0;
  		top: 20px;
  		width: 156px;
	}
	.modelos {
  		padding: 20px 20px 40px 158px;
 	}
 	.wifi {
  		padding-top: 0;
  		text-align: center;
	}
	.wifi img {
		width:  200px;
	}
}