@charset "UTF-8";
/* CSS Document */

/*RESET*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
textarea {
  border-radius: 0;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}

/*GENERALES*/
body,
html {
  position: relative;
}

body {
  font-family: "Nunito", sans-serif;
  color: #666666;
  font-weight: 100;
  font-size: 20px;
  line-height: 36px;
}

#wrapper {
  width: 100%;
}

section {
  position: relative;
  min-height: auto;
}

section.vh {
  min-height: 100vh;
}

.col-100 {
  width: 100%;
  float: left;
}

.col-50 {
  width: 50%;
  float: left;
}

.pad-sec {
  padding: 100px 0;
}

.pad-sec-xs {
  padding: 50px 0;
}

.first-sec {
  padding: 200px 0 100px;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 100%;
  padding: 0 30px;
}

.container-xs {
  width: 70%;
  margin: 0 auto;
}

.flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -moz-flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
}

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.column {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}

.column-reverse {
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.row-reverse {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.justify-center {
  justify-content: center;
  -webkit-justify-content: center;
}

.justify-start {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
  -webkit-justify-content: space-around;
}

.align-start {
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.align-center {
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-end {
  -ms-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.align-stretch {
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.block-foto {
  color: #fff;
}

p {
  margin: 10px 0;
}

.opacity {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.clear {
  clear: both;
  padding: 0 !important;
}

.light {
  font-weight: 100;
}

.bold {
  font-weight: 700;
}

.black {
  font-weight: 900;
}

.subrayado {
  text-decoration: underline;
}

.title {
  font-family: "Lato", sans-serif;
  text-align: center;
  font-weight: 900;
  margin: 15px 0;
  color: #343434;
}

.title-60 {
  font-size: 60px;
  line-height: 68px;
}

.title-48 {
  font-size: 48px;
  line-height: 54px;
  margin: 0 0 80px 0;
}

.title-36 {
  font-size: 36px;
  line-height: 44px;
}

.title-30 {
  font-size: 30px;
  line-height: 38px;
}

.title-24 {
  font-size: 24px;
  line-height: 36px;
}

.space {
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

.btn {
  min-width: 200px;
  width: auto;
  height: auto;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  padding: 12px 20px;
  margin: 20px auto;
  color: #fff;
  cursor: pointer;
}

#cookiesdirective .btn {
  border: none;
  background: linear-gradient(to top right, #002b86, #386db0, #00913d);
  margin: 0 5px;
  padding: 10px 10px;
  min-width: 120px;
}

#cookiesdirective>div {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #424242;
}

#cookiesdirective>div a {
  color: #424242;
  font-family: "Nunito", sans-serif;
  font-size: 16px !important;
}

.btn-dark {
  border: 2px solid #fff;
  background: none;
  transition: all 0.2s linear;
}

.btn-dark:hover {
  background: #fff;
  color: #343434;
}

.btn-light {
  border: 2px solid #666666;
  background: #666666;
  transition: all 0.2s linear;
}

.btn-light:hover {
  background: #343434;
  border: 2px solid #343434;
}

.btn-blue {
  border: 2px solid #386db0;
  background: #386db0;
  transition: all 0.2s linear;
  padding: 5px 20px;
}

.btn-blue:hover {
  background: #244672;
  border: 2px solid #244672;
}

.text-container {
  max-width: 550px;

  margin: 0 auto;
  text-align: center;
}

.scroll {
  position: absolute;
  width: 100px;
  bottom: 30px;
  left: 50%;
  margin-left: -50px;
}

.clientes .scroll {
  bottom: -50px;
}

.scroll div {
  width: 30px;
  height: 39px;
  background: url(../img/mouse.svg) no-repeat center center;
  margin: 0 auto;
}

.scroll p {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 1px;
  margin: 0;
}

.desc-sec .scroll div {
  background: url(../img/mouse-color.svg) no-repeat center center;
}

.desc-sec .scroll p {
  background: linear-gradient(to right, #002b86 0%, #386db0 50%, #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

section.block-gradient {
  background: linear-gradient(to top right, #002b86, #386db0, #00913d);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

section.gris {
  background: #f2f2f2;
}

section.block-gradient .text-container h3,
section.block-gradient .text-container p {
  color: #fff;
}

.desc-sec h1 {
  text-align: left;
  background: linear-gradient(to right, #002b86 0%, #386db0 50%, #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 40px 0;
  width: auto;
}

.desc-sec .pos-bottom {
  height: auto;
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
}

.desc-sec .container-xs {
  float: right;
  height: 65vh;
  border-left: 1px solid #666666;
  padding: 0 0 0 40px;
}

/*POPUP*/

.score,
#popup-caract {
  background: #fff !important;
}

.score .contenedor-check+p {
  margin-bottom: 0;
  margin-top: 40px;
}

.score .btn {
  margin-top: 10;
}

.score .contenedor-boton {
  position: relative;
}

.score .contenedor-boton p {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: 1s;
  transform: translateY(100px);
  pointer-events: none;
}

.score .contenedor-boton.sended p {
  opacity: 1;
  transform: translateY(0);
}

.score .contenedor-boton .btn {
  transition: 1s;
}

.score .contenedor-boton.sended .btn {
  transform: translateY(-100px);
  opacity: 0;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  display: none;
  z-index: 10000;
}

.popup .flex {
  height: 100%;
}

.popup .flex-item {
  max-width: 1140px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}

.popup .close {
  position: absolute;
  right: 40px;
  top: 40px;
  color: #fff;
  z-index: 999999;
  font-weight: 500;
  font-size: 45px;
  border: none;
  cursor: pointer;
}

.popup video {
  width: 100%;
  height: auto;
}

.pop-container .close,
#popup-caract .close,
.score .close {
  background: linear-gradient(to right, #002b86 0%, #386db0 50%, #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  right: 20px;
  top: 20px;
}

.pop-container {
  background: #fff;
  padding: 100px 50px;
  text-align: center;
  max-width: 650px !important;
}

#popup-caract .pop-container {
  padding: 100px 50px;
  max-width: 800px !important;
}

.popup .title {
  background: linear-gradient(to right, #002b86 0%, #386db0 50%, #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

#popup-caract .title {
  margin: 0 0 30px 0;
}

.popup p {
  color: #666 !important;
}

#popup-caract p {
  text-align: left;
}

.popup .newsletter {
  margin: 20px 0;
}

.popup .newsletter .text-news {
  background: #f2f2f2 !important;
}

.popup .newsletter .text-news.error {
  background: #fff4a9 !important;
}

/*SLIDER*/

section.slider-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  background: linear-gradient(to top right, #002b86, #386db0, #00913d);
}

.single-item {
  max-width: 1140px;
  width: 100%;
}

.slick-prev,
.slick-next {
  width: 250px;
}

.slick-prev span,
.slick-next span {
  display: block;
  width: 125px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 9px;
  z-index: 5;
  transition: all 0.3s linear;
}

.slick-prev {
  text-align: right;
}

.slick-next {
  text-align: left;
}

.slick-prev span {
  left: 0;
}

.slick-next span {
  right: 0;
}

.slick-prev:hover span,
.slick-next:hover span {
  width: 100%;
}

/*HEADER*/

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.2s linear;
}

.logo {
  width: 99px;
  height: 29px;
  background: url(../img/logo-dotia-b.svg) no-repeat;
  float: left;
  display: block;
  margin: 25px 0;
  background-size: 100%;
  will-change: transform, background;
}

.main-menu {
  position: relative;
}

.icon-menu {
  position: absolute;
  right: 0;
  top: 35px;
  z-index: 99;
  cursor: pointer;
}

.icon-menu p {
  text-transform: uppercase;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 1px;
  float: right;
  margin: 0 0 0 10px;
  line-height: 14px;
  opacity: 1;
  transition: all 0.3s linear;
}

.icon-menu a {
  float: right;
  width: 30px;
  height: auto;
  cursor: pointer;
}

.icon-menu span {
  display: block;
  height: 2px;
  background: #fff;
  float: right;
  transition: all 0.3s linear;
}

.icon-menu span:nth-child(1) {
  width: 30px;
}

.icon-menu span:nth-child(2) {
  width: 20px;
  margin-top: 8px;
}

.icon-menu.active span:nth-child(1) {
  width: 30px;
  background: #343434;
  -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
  transform: translateY(9px) translateX(0) rotate(45deg);
}

.icon-menu.active span:nth-child(2) {
  width: 30px;
  background: #343434;
  -webkit-transform: translateY(-1px) translateX(0) rotate(-45deg);
  transform: translateY(-1px) translateX(0) rotate(-45deg);
}

.icon-menu.active p {
  opacity: 0;
}

.main-menu #overlay-menu {
  position: absolute;
  z-index: 90;
  background: #f2f2f2;
  top: -100vh;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 0%;
  opacity: 0;
  min-height: 100vh;
  overflow: hidden;
  padding: 25px 45px;
  transition: transform 0.2s linear 0.3s, opacity 0.3s linear 0s;
  will-change: transform, opacity;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
}

.main-menu #overlay-menu.open {
  transform: translateY(100vh);
  opacity: 1;
  transition: transform 0.1s linear 0s, opacity 0.2s linear 0.2s;
}

.main-menu #overlay-menu ul li a {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #666666;
  display: block;
  transition: all 0.2s linear;
}

.main-menu #overlay-menu ul li a:hover {
  opacity: 0.6;
}

.main-menu #overlay-menu ul li.li-legal a {
  font-size: 18px;
  line-height: 30px;
  font-weight: 100;
}

.main-menu #overlay-menu ul li.li-legal.margin {
  margin-top: 45px;
}

.menu-on {
  opacity: 0.6;
}

.newsletter {
  border: none;
  width: 100%;
  text-align: left;
  overflow: hidden;
  border-radius: 50px;
  position: relative;
  height: 55px;
}

.newsletter input {
  position: absolute;
  top: 0;
  color: #333;
}

.newsletter input::placeholder {
  color: #999;
}

input:focus::placeholder {
  opacity: 0;
}

.newsletter .text-news {
  left: 0;
  border: none;
  width: 100%;
  min-width: 200px;
  text-align: left;
  z-index: 10;
  margin: 0;
  height: 100%;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  padding: 12px 20px;
  display: inline-block;
  letter-spacing: 1px;
}

.newsletter .text-news.error {
  background: #fdd131;
}

.newsletter .ok {
  right: 0;
  z-index: 11;
  height: 100%;
  width: auto;
  margin: 0;
  border: none;
  background: #343434;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 18px 20px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 60px;
  height: 55px;
}

.newsletter .ok i.fa-paper-plane {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}

.newsletter .ok:hover {
  background: #212121;
}

.newsletter .ok:hover i.fa-paper-plane {
  transform: translate(5px, -5px);
}

.newsletter.sended .ok i {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}

.newsletter.sended .ok i.fa-paper-plane {
  transform: translate(40px, -40px);
}

.newsletter .ok i.fa-check {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: 25px;
}

.newsletter .texto-gracias {
  position: absolute;
  right: 0;
  top: 0;
  height: 55px;
  padding-right: 75px;
  z-index: 10;
  line-height: 55px;
  color: #666;
  will-change: transform;
  transform: translateX(100px) skewX(25deg);
  transition-timing-function: ease-in-out;
  transition: 0.6s;
}

.newsletter .texto-gracias.show {
  transform: translateX(0);
}

header .news-wrapper {
  padding: 45px 0;
}

header .check-legal label {
  font-size: 14px;
  color: #999;
}

header .contenedor-check {
  padding-left: 10px;
}

header .contenedor-check input:checked+label::before {
  color: #999;
}

header .contenedor-check label::before {
  content: "\2713";
  width: 12px;
  height: 12px;
  line-height: 15px;
  border: 1px solid #999;
}

.h-color {
  background: #fff;
  position: fixed;
}

.h-color .logo {
  background: url(../img/logo-dotia-c.svg) no-repeat;
}

.h-color .icon-menu p {
  color: #343434;
}

.h-color .icon-menu span {
  background: #343434;
}

footer .top,
footer .bottom {
  width: 100%;
}

footer .top {
  background: #343434;
  height: auto;
  padding: 20px 0;
}

footer .top .logo-footer {
  width: 143px;
  height: 29px;
  background: url(../img/logo-doubledot.svg) no-repeat center center;
  background-size: 100%;
  margin-top: 20px;
  display: inline-block;
}

footer .top .logo-footer.-innopulse {
  width: 100px;
  height: 50px;
  background: url(../img/logo-inno.svg) center/100% no-repeat;
  background-size: 100%;
  margin-top: 20px;
  display: inline-block;
  margin-left: 45px;
}

footer .newsletter {
  max-width: 300px;
  position: relative;
  height: 40px;
  margin: 0;
  min-width: 280px;
}

footer .newsletter .text-news {
  width: 100%;
  min-width: 200px;
  margin: 0;
  height: 100%;
  font-size: 12px;
  padding: 12px 20px;
  background: none;
  border: 1px solid #666;
  color: #fff;
  font-weight: 300;
}

footer .newsletter input::placeholder {
  color: #999;
}

footer .newsletter .ok {
  right: 0;
  z-index: 11;
  height: 100%;
  width: auto;
  background: #666;
  font-size: 14px;
  letter-spacing: 2px;
  height: 40px;
  width: 60px;
  padding: 0;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
}

footer .news-wrapper .check-legal label {
  font-size: 12px;
  color: #999;
  padding-left: 20px;
  line-height: 21px;
}

footer .news-wrapper .contenedor-check {
  margin: 0;
  padding-left: 10px;
}

footer .news-wrapper .contenedor-check input {
  width: 20px;
  height: 20px;
}

footer .news-wrapper .contenedor-check label::before {
  content: "\2713";
  width: 10px;
  height: 10px;
  line-height: 14px;
  font-size: 10px;
  border: 1px solid #999;
}

footer .contenedor-check input:checked+label::before {
  color: #999;
}

footer .bottom {
  background: #fff;
  padding: 15px 0;
}

footer .bottom ul.fo-legal {
  font-weight: 300;
}

footer .bottom ul.fo-legal li {
  color: #343434;
  float: left;
  padding: 0 15px;
}

footer .bottom ul.fo-legal li a {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: #343434;
  transition: all 0.2s linear;
}

footer .bottom ul.fo-legal li a:hover {
  font-size: 15px;
}

footer .bottom ul.fo-legal li:nth-child(1) {
  padding-left: 0;
}

footer .bottom ul.fo-legal li:nth-child(2) {
  border-left: 1px solid #343434;
  border-right: 1px solid #343434;
}

footer .bottom ul.rs li a {
  color: #343434;
  font-size: 26px;
  text-align: right;
  padding-left: 30px;
  opacity: 1;
  transition: all 0.2s linear;
}
footer .bottom ul.rs li a.fa-youtube{
 margin-top: 5px;
}
footer .bottom ul.rs li a:hover {
  opacity: 0.3;
}

footer .bottom ul.rs li a.fa-envelope {
  font-size: 24px;
}

/*HOME*/

.home .slide-container {
  position: relative;
  margin: 0 auto;
  min-height: 420px;
  overflow: hidden;
}

.home .slide-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
}

.home .slide-container h2 {
  font-weight: 300;
  color: #fff;
  text-align: left;
  z-index: 5;
  max-width: 52%;
  font-family: "Lato", sans-serif;
  padding-left: 10px;
}

.home .slide-container .img-slide {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 100%;
  max-width: 550px;
  height: 480px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.slide1 {
  background: url(../img/slider_1.webp);
}

.slide2 {
  background: url(../img/slider_2.webp);
}

.slide3 {
  background: url(../img/slider_3.webp);
}

.slide4 {
  background: url(../img/slider_4.webp);
}

.home .slide-container .img-slide.slide5 {
  background: url(../img/slider_5.webp);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

/*video-info*/

section.video-info {
  background: url(../img/bkg-video.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
}

section.video-info video.video-bkg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 10;
}

section.video-info .opacity {
  z-index: 11;
}

section.video-info h3,
section.video-info p {
  color: #fff;
}

.play {
  width: 91px;
  height: 91px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  padding: 26px 0 0 9px;
  transition: all 0.2s linear;
  display: none;
}

.play:hover {
  background: rgba(255, 255, 255, 0.7);
}

.play i {
  color: #fff;
  font-size: 40px;
}

section.video-info .text-container {
  color: #fff;
}

.video-info iframe {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background-size: 100%;
  z-index: 996;
}

/*descripcion*/

section.descripcion {
  background: #fff;
  padding-top: 100px;
}

.soluciones h2 {
  margin: 0 0 40px 0;
}

.soluciones p.center {
  margin: 0 0 40px 0;
  text-align: center;
}

.funcionalidades div {
  width: 33%;
  padding: 30px;
  position: relative;
}

.funcionalidades div {
  border-bottom: 1px SOLID;
  border-right: 1px SOLID;
  -moz-border-image: -MOZ-LINEAR-GRADIENT(top right,
      #002b86,
      #386db0,
      #00913d 100%);
  -webkit-border-image: -WEBKIT-LINEAR-GRADIENT(top right,
      #002b86,
      #386db0,
      #00913d 100%);
  border-image: LINEAR-GRADIENT(top right, #002b86, #386db0, #00913d 100%);
  border-image-slice: 1;
}

.funcionalidades div:nth-child(1),
.funcionalidades div:nth-child(2),
.funcionalidades div:nth-child(3) {
  border-top: 0;
}

.funcionalidades div:nth-child(3),
.funcionalidades div:nth-child(6),
.funcionalidades div:nth-child(9),
.funcionalidades div:nth-child(12),
.funcionalidades div:nth-child(15) {
  border-right: 0;
}

.soluciones .funcionalidades div:last-child,
.soluciones .funcionalidades div:nth-child(13) {
  border-bottom: 0;
}

.home .funcionalidades div:nth-child(4),
.home .funcionalidades div:nth-child(5),
.home .funcionalidades div:nth-child(6) {
  border-bottom: 0;
}

.funcionalidades div>span {
  font-weight: 800;
  width: 100%;
  text-align: center;
  display: none;
  font-size: 50px;
  background: linear-gradient(to right, #002b86 0%, #386db0 50%, #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-ss .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 0;
}

.section-ss .cont-text {
  width: 55%;
  padding-right: 60px;
  margin-bottom: 50px;
}

.section-ss .cont-text h2 {
  font-weight: 800;
  background: #002b86;
  background: linear-gradient(to top right,
      #002b86 0%,
      #386db0 50%,
      #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-ss .cont-video {
  width: 45%;
  margin-bottom: 50px;
}

.section-ss .cont-video video {
  width: 100%;
}

.popup-ss {
  position: fixed;
  right: 0;
  top: 10%;
  height: auto;
  background: white;
  border-radius: 50px 0 0 50px;
  z-index: 9999;
  -webkit-box-shadow: -7px 12px 51px -28px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -7px 12px 51px -28px rgba(0, 0, 0, 0.75);
  box-shadow: -7px 12px 51px -28px rgba(0, 0, 0, 0.75);
}

.popup-ss.d-none {
  display: none;
  z-index: -99999;
}

.popup-ss .container-popup {
  padding: 50px 30px 20px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 855px;
  position: relative;
}

.popup-ss .container-popup .cont-text {
  width: 50%;
}

.popup-ss .container-popup .cont-video {
  width: 50%;
}

.popup-ss .container-popup .cont-video video {
  width: 100%;
}

.popup-ss .container-popup .cont-text .title {
  text-align: left;
  font-size: 28px;
  line-height: 1.2em;
  font-weight: 800;
  margin-top: 0;
  background: #002b86;
  background: linear-gradient(to top right,
      #002b86 0%,
      #386db0 50%,
      #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  color: #386db0;
  transition: all 0.8s ease-in-out;
}

.popup-ss .container-popup .cont-text .btn-blue {
  padding: 0 20px;
  font-size: 13px;
  margin-bottom: 0;
}

.btn-popup {
  position: absolute;
  right: 30px;
  top: 14px;
  cursor: pointer;
  width: 100%;
  max-width: 25px;
  transition: all 1.5s cubic-bezier(0, 1, 0.5, 1);
}

.popup-ss .container-popup[minpopup="false"] .cont-video {
  display: none;
}

.popup-ss .container-popup[minpopup="false"] .cont-text {
  width: 100%;
}

.popup-ss .container-popup[minpopup="false"] .btn-popup {
  transform: rotate(180deg);
  transition: all 1.5s cubic-bezier(0, 1, 0.5, 1);
}

.popup-ss .container-popup[minpopup="false"] .cont-text .title {
  font-size: 20px;
  transition: all 0.8 cubic-bezier(0, 1, 0.5, 1);
}

.popup-ss .container-popup[minpopup="false"] {
  padding: 30px 30px 20px 30px;
}

@media screen and (max-width: 768px) {
  .funcionalidades div>span {
    display: inline-block;
  }
}

.soluciones .funcionalidades div a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.2s linear;
  opacity: 0;
  color: #343434;
  text-align: center;
}

.soluciones .funcionalidades div a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
}

.funcionalidades i {
  display: block;
  font-size: 60px;
  background: linear-gradient(to right, #002b86 0%, #386db0 50%, #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: 30%;
  margin: 0 auto;
}

.funcionalidades p {
  font-size: 18px;
  line-height: 30px;
}

.home .funcionalidades p {
  background: linear-gradient(to bottom, #666666 0%, #666666 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.2s linear;
}

.home .funcionalidades p:before {
  background: none !important;
  color: #343434;
  -webkit-text-fill-color: #343434 !important;
}

.home .funcionalidades div:hover p {
  background: none !important;
  color: #343434;
  -webkit-text-fill-color: #343434 !important;
}

section.descripcion a.btn {
  margin: 50px 0 0px 0;
}

/*caracteristicas*/

.caract-list h2 {
  text-align: left;
}

.caract-list .col-50:first-child {
  padding-right: 40px;
}

.accordion a.toggle span {
  font-size: 26px;
  background: linear-gradient(to right, #002b86 0%, #386db0 50%, #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}

.accordion a.toggle {
  font-weight: 700;
  line-height: 24px;
  color: #343434;
  border-top: 1px solid #666666;
  padding: 10px 0;
  width: 100%;
  display: block;
  transition: background 0.3s ease;
  cursor: pointer;
}

.accordion a {
  background: url(../img/mas.webp) no-repeat right center;
}

.accordion a.more {
  background: url(../img/menos.webp) no-repeat right center;
}

.accordion a.toggle:first-child {
  border-top: none;
}

.inner {
  padding-left: 1em;
  overflow: hidden;
  display: none;
}

.instalacion {
  color: #fff;
}

.instalacion .title {
  color: #fff;
}

.instalacion p {
  margin: 0;
}

.instalacion .datos {
  width: 100%;
  margin: 30px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}

.instalacion .datos div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  justify-content: center;
}

.instalacion .datos .title-48 {
  margin: 15px 0 0 0;
}

.instalacion .datos div:nth-child(1) {
  width: 15%;
  border-right: 1px solid #fff;
  padding-right: 20px;
  text-align: center;
}

.instalacion .datos div:nth-child(2) {
  width: 75%;
  padding-left: 40px;
  text-align: left;
}

/*clientes*/

.testimonios .slick-prev,
.testimonios .slick-next {
  color: #343434 !important;
}

.testimonios .slick-prev span,
.testimonios .slick-next span {
  background: #343434;
}

.testimonios .slick-dots li button::before {
  color: #343434 !important;
}

.testimonios .foto .mask-1 {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  border-radius: 50%;
  overflow: hidden;
}

.testimonios .foto .mask-2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
  color: white;
}

[data-value="uva"] {
  background: url(../img/logo-uva.webp) no-repeat center center;
  background-size: 100%;
}

[data-value="esic"] {
  background: url(../img/logo-esic.webp) no-repeat center center;
  background-size: 100%;
}

[data-value="fco-vitoria"] {
  background: url(../img/logo-fco-vitoria.webp) no-repeat center center;
  background-size: 100%;
}

[data-value="icemd"] {
  background: #313131 url(../img/logo-iedesic.webp) no-repeat center center/cover;
}

[data-value="uax"] {
  background: #313131 url(../img/logo-uax.webp) no-repeat center center/cover;
}

[data-value="comillas"] {
  background: #313131 url(../img/logo-comillas.svg) no-repeat center center/cover;
  background-size: 90%;
}

[data-value="doip"] {
  background: #313131 url(../img/logo-doip.svg) no-repeat center center/cover;
  background-size: 76%;
}

[data-value="nebrija"] {
  background: #313131 url(../img/logo-nebrija.svg) no-repeat center center/cover;
  background-size: 100%;
}

[data-value="politecnica"] {
  background: #313131 url(../img/logo-politecnica.svg) no-repeat center center/cover;
  background-size: 80%;
}

[data-value="uc3m"] {
  background: #313131 url(../img/logo-uc3m.svg) no-repeat center center/cover;
  background-size: 92%;
}

[data-value="usal"] {
  background: #313131 url(../img/logo-usal.svg) no-repeat center center/cover;
  background-size: 80%;
}

.testimonios .foto {
  border-radius: 50%;
  width: 35%;
}

.testimonios .opinion {
  width: 65%;
  padding-left: 40px;
}

.testimonios .opinion p span {
  font-style: italic;
}

.datos {
  width: 100%;
}

.datos div {
  width: 33.3%;
  padding-right: 20px;
  text-align: center;
  border-right: 1px solid #666666;
}

.datos div:last-child {
  border-right: none;
}

.datos i {
  font-size: 70px;
  text-align: center;
}

.datos .title-48 {
  margin: 15px 0 0 0;
}

.datos span {
  color: #81bb26;
  font-size: 48px;
  font-weight: 400;
}

.datos p {
  line-height: 28px;
}

.nosotros .block-foto {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/bkg-nosotros.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

/*nosotros*/

.nosotros .block-foto p,
.nosotros .block-foto .title {
  color: #fff;
}

.equipo {
  text-align: center;
}

/*contacto*/
.back-color {
  background: linear-gradient(to top right, #002b86, #386db0, #00913d);
}

.contacto .desc-sec a {
  display: block;
  margin: 10px 0;
  line-height: 36px;
  transition: all 0.2s linear;
  font-weight: 600;
}

.contacto .desc-sec a:hover {
  opacity: 0.7;
  font-size: 21px;
}

.form-contact {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.form-contact .title {
  color: #fff;
}

.form-contact form {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}

.input-text {
  width: 100%;
  border: none;
  background: none;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  min-height: 45px;
  margin: 0 0 30px 0;
  color: #fff;
  font-style: italic;
  font-weight: 100 !important;
  color: #fff;
  font-family: "Lato", sans-serif;
}

.input-text.error {
  border-bottom: 1px solid #fdd131;
}

.input-text.error::placeholder {
  color: #fdd131;
}

.check-legal .error+label {
  color: #fdd131;
  animation-name: shake;
  animation-duration: 1s;
}

.check-legal .error+label::before {
  border-color: #fdd131;
}

.size-50 {
  width: calc(50% - 20px);
  margin: 0 20px 30px 0;
}

textarea {
  border: none;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  background: none;
  width: 100%;
  min-height: 100px;
  padding: 0 0 10px 0;
  margin: 15px 0 30px;
  resize: vertical;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 100 !important;
}

input::placeholder,
textarea::placeholder {
  font-style: italic;
  font-weight: 100 !important;
  color: #fff;
  font-family: "Lato", sans-serif;
}

.contenedor-check {
  width: 100%;
  position: relative;
  margin: 5px 0 5px 0;
}

.contenedor-check input {
  position: absolute;
  opacity: 0;
}

.check-legal label {
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-left: 25px;
  line-height: 21px;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  text-transform: inherit;
  width: 100%;
}

.contenedor-check label::before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7.5px;
  content: "\2713";
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 14px;
  display: inline-block;
  border: 1px solid #fff;
  color: transparent;
  padding-left: 1px;
}

.contenedor-check input:checked+label::before {
  color: #fff;
}

.nota-al-pie {
  font-size: 12px;
  text-align: left;
  line-height: 16px;
}

#map {
  width: 100%;
  min-height: 300px;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

/*ENCUESTA*/

.encuesta .slider-wrap,
.encuesta .slider-wrap .title {
  color: #fff;
}

.encuesta .title-48 {
  margin: 0;
}

.encuesta .preg {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin: 40px 0;
  margin-bottom: 10px;
  color: #fff;
}

.encuesta .n-preg {
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.encuesta .contenedor-boton {
  width: 100%;
  text-align: center;
  display: inline-block;
}

.encuesta .js-show-results {
  margin: 0 auto;
}

.encuesta .frecuencia {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -moz-flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
}

.contenedor-radio {
  position: relative;
  margin: 30px 0 20px 0;
}

.contenedor-radio input {
  position: absolute;
  opacity: 0;
}

.contenedor-radio label {
  font-size: 24px;
  font-weight: 200;
  position: relative;
  padding-left: 25px;
  line-height: 32px;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  text-transform: inherit;
}

.contenedor-radio label::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "\2022";
  width: 15px;
  height: 15px;
  line-height: 17px;
  font-size: 20px;
  display: inline-block;
  color: transparent;
  border-radius: 50%;
  background: #fff;
}

.contenedor-radio input:checked+label::before {
  color: #343434;
  text-align: center;
  line-height: 14px;
}

.encuesta .frecuencia p {
  float: left;
  margin: 20px 20px 0;
  line-height: 24px;
}

.encuesta .frecuencia .contenedor-radio {
  float: left;
  margin: 0 20px;
}

/*legal*/

.legal .title {
  text-align: left;
}

.encuesta .check-legal label {
  color: #343434;
}

.encuesta .check-legal label::before {
  border: 1px solid #343434;
  cursor: pointer;
}

.encuesta .check-legal input {
  width: 40px;
  height: 40px;
  z-index: 2;
  cursor: pointer;
}

.encuesta .check-legal input:checked+label::before {
  color: #343434;
  border: 1px solid #343434;
}

.encuesta .popup .newsletter {
  margin-bottom: 0;
}

.container-clientes .menu-panel {
  display: flex;
  justify-content: space-between;
}

.container-clientes .menu-panel button,
.title-responsive {
  width: calc(100% / 3);
  padding: 40px;
  text-align: center;
  border: 0;
  color: white;
  font-size: 20px;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
}

.container-clientes .menu-panel button[data="todos"] {
  background: linear-gradient(27deg,
      rgb(52 104 173) 0%,
      rgba(56, 109, 176, 1) 32%,
      rgba(56, 109, 176, 1) 56%,
      rgb(56 109 176) 100%);
}

.home .container-clientes .title {
  color: white;
}

.home .container-clientes .content-panel {
  padding: 40px 0;
}

.home .container-clientes .slider-clientes {
  margin: 75px 0 35px 0;
}

.container-clientes .menu-panel .title-responsive {
  display: none;
}

.container-clientes .menu-panel button[data="universidades"] {
  background: linear-gradient(27deg,
      rgb(68 121 177) 0%,
      rgb(62 127 161) 32%,
      rgb(53 135 141) 57%,
      rgb(49 142 130) 84%);
}

.container-clientes {
  padding-top: 100px;
}

.container-clientes .menu-panel button[data="formacion-profesional"] {
  background: linear-gradient(57deg, rgb(77 150 154) 31%, rgb(59 162 116) 100%);
}

.content-panel {
  padding: 110px 0;
}

.content-panel[data="todos"] {
  background: linear-gradient(27deg,
      rgba(0, 43, 134, 1) 0%,
      rgba(56, 109, 176, 1) 32%,
      rgba(56, 109, 176, 1) 56%,
      rgb(27 128 117) 100%);
}

.content-panel[data="universidades"] {
  background: linear-gradient(27deg,
      rgb(43 85 160) 0%,
      rgb(72 126 177) 28%,
      rgb(68 121 177) 52%,
      rgb(46 142 123) 83%);
}

.content-panel[data="formacion-profesional"] {
  background: linear-gradient(-168deg,
      rgb(62 159 123) 0%,
      rgb(91 141 181) 28%,
      rgb(89 129 186) 52%,
      rgb(69 107 172) 83%);
}

.content-panel[data="todos"] .slider-clientes[data="todos"] {
  display: block !important;
  opacity: 1;
  height: auto;
}

.content-panel[data="universidades"] .slider-clientes[data="universidades"] {
  display: block !important;
  opacity: 1;
  height: auto;
}

.content-panel[data="formacion-profesional"] .slider-clientes[data="formacion-profesional"] {
  display: flex;
  opacity: 1;
  height: auto;
  justify-content: center;
  align-items: center;
}

.slider-clientes {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 0 20px;
  display: none;
}

.home .slider-clientes {
  display: block;
}

/* Estilos para el contenedor de imágenes */
.slider-clientes .images {
  display: flex;
  width: calc(100% / 6);
  /* 4 imágenes de 300px cada una */
  animation: slide 70s linear infinite;
}

.content-panel[data="formacion-profesional"] .slider-clientes[data="formacion-profesional"] .images {
  animation: none;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 20%;
}

/* Estilos para las imágenes individuales */
.slider-clientes .images img {
  padding: 0 3% !important;
  min-width: 275px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
  max-height: 78px;
  margin: 0 25px;
}

/* Animación de desplazamiento */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-13200px);
    /* -300px * 4 (número de imágenes) */
  }
}

/* Detener la animación en hover */
.slider-container .slider-clientes:hover .images {
  animation-play-state: paused;
}

.mapa-clientes h4 {
  background: linear-gradient(to right, #002b86 0%, #386db0 50%, #00913d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
}

.mapa-clientes .mapa {
  background-image: url("../img/mapa.webp");
  background-position: contain;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 630px;
  height: 465px;
  display: block;
  position: relative;
}

.mapa-clientes .mapa span {
  width: 15px;
  height: 15px;
  background: #386db0;
  box-shadow: 1px -1px 11px -1px rgba(0, 233, 233, 1);
  -webkit-box-shadow: 1px -1px 11px -1px rgba(0, 233, 233, 1);
  -moz-box-shadow: 1px -1px 11px -1px rgba(0, 233, 233, 1);
  display: block;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  transition: all 0.5s ease;
}

.mapa-clientes .mapa span.animada {
  animation: scaleUp 4s ease;
  transition: all 0.5s ease;
}

.mapa-clientes .mapa span:hover {
  animation: none;
  transform: scale(1.8);
  transition: all 0.5s ease;
}

.mapa-clientes .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mapa-clientes .mapa span[data="valladolid"] {
  top: 28%;
  left: 35%;
}

.mapa-clientes .mapa span[data="salamanca"] {
  top: 40%;
  left: 25%;
}

.mapa-clientes .mapa span[data="euncet"] {
  top: 30%;
  right: 15%;
}
.mapa-clientes .mapa span[data="madrid"] {
  top: 50%;
  right: 55%;
}

.mapa-clientes .mapa span[data="leon"] {
  top: 15%;
  left: 31%;
}

.mapa-clientes .mapa span[data="doip"] {
  top: 54%;
  right: 10%;
}

.mapa-clientes .mapa span[data="uclm"] {
  top: 61%;
  right: 51%;
}

.mapa-clientes .mapa span[data="murcia"] {
  top: 76%;
  right: 39%;
}

.mapa-clientes .mapa span[data="sevilla"] {
  top: 82%;
  right: 69%;
}

.mapa-clientes .mapa span[data="valencia"] {
  top: 53%;
  right: 34%;
}

.container-logos {
  width: calc(100% - 630px);
  padding-left: 90px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.container-logos img {
  width: 100%;
  object-fit: contain;
  height: auto;
  max-height: 140px;
  object-position: left center;
  margin: 40px 0;
}

.container-logos img[data="madrid"] {
  width: 45%;
  object-fit: contain;
  object-position: center center;
  /* flex-grow: 1; */
  max-height: 65px;
  margin-right: 17px;
  margin-top: 30px;
  margin-bottom: 0;
}

.container-logos::before {
  content: "";
  height: 100%;
  width: 1px;
  background: black;
  position: absolute;
  left: 45px;
  top: 5%;
}

.mapa-clientes .container-logos img {
  display: none;
}

.mapa-clientes .container-logos img.d-block {
  display: block;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

/*RESPONSIVE*/
@media (max-width: 1100px) {
  .slide-container {
    height: 400px;
  }

  .scroll {
    bottom: 15px;
  }

  .section-ss .container {
    padding: 40px 20px;
  }
}

@media (max-width: 1000px) {
  .slider .title-48 {
    margin: 0;
  }

  .funcionalidades div {
    width: 50%;
    font-size: 40px;
  }

  .funcionalidades div:nth-child(1),
  .funcionalidades div:nth-child(3),
  .funcionalidades div:nth-child(5),
  .funcionalidades div:nth-child(7),
  .funcionalidades div:nth-child(9),
  .funcionalidades div:nth-child(11),
  .funcionalidades div:nth-child(13),
  .funcionalidades div:nth-child(15),
  .funcionalidades div:nth-child(17) {
    border-right: 1px SOLID;
    -moz-border-image: -MOZ-LINEAR-GRADIENT(top right,
        #002b86,
        #386db0,
        #00913d 100%);
    -webkit-border-image: -WEBKIT-LINEAR-GRADIENT(top right,
        #002b86,
        #386db0,
        #00913d 100%);
    border-image: LINEAR-GRADIENT(top right, #002b86, #386db0, #00913d 100%);
    border-image-slice: 1;
  }

  .funcionalidades div:last-child {
    border-bottom: 1px SOLID;
    -moz-border-image: -MOZ-LINEAR-GRADIENT(top right,
        #002b86,
        #386db0,
        #00913d 100%);
    -webkit-border-image: -WEBKIT-LINEAR-GRADIENT(top right,
        #002b86,
        #386db0,
        #00913d 100%);
    border-image: LINEAR-GRADIENT(top right, #002b86, #386db0, #00913d 100%);
    border-image-slice: 1;
  }

  .funcionalidades div:nth-child(2),
  .funcionalidades div:nth-child(4),
  .funcionalidades div:nth-child(6),
  .funcionalidades div:nth-child(8),
  .funcionalidades div:nth-child(10),
  .funcionalidades div:nth-child(12),
  .funcionalidades div:nth-child(14),
  .funcionalidades div:nth-child(16) {
    border-right: 0;
  }

  .funcionalidades div:nth-child(1),
  .funcionalidades div:nth-child(2) {
    border-top: 0;
  }

  .home .funcionalidades div:nth-child(4),
  .home .funcionalidades div:nth-child(5),
  .home .funcionalidades div:nth-child(6) {
    border-bottom: 1px SOLID;
    -moz-border-image: -MOZ-LINEAR-GRADIENT(top right,
        #002b86,
        #386db0,
        #00913d 100%);
    -webkit-border-image: -WEBKIT-LINEAR-GRADIENT(top right,
        #002b86,
        #386db0,
        #00913d 100%);
    border-image: LINEAR-GRADIENT(top right, #002b86, #386db0, #00913d 100%);
    border-image-slice: 1;
  }

  .testimonios .foto {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
  }

  .descripcion .container-xs {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .section-ss .cont-text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }

  .section-ss .cont-video {
    width: 100%;
    margin-bottom: 0;
  }

  .title-36 {
    font-size: 30px;
    line-height: 1.2em;
  }

  .container-logos {
    width: 100%;
    padding-left: 0;
  }

  .container-logos::before {
    display: none;
  }

  .container-logos img {
    object-position: center center;
  }
}

@media (max-width: 768px) {
  .home .slide-container {
    display: block;
    float: left;
  }

  .home .slide-container h2 {
    max-width: 100%;
    float: left;
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 48px;
  }

  .home .slide-container .img-slide {
    position: inherit;
    top: inherit;
    right: inherit;
    z-index: inherit;
    float: left;
    max-width: 100%;
  }

  section.video-info video.video-bkg {
    display: none;
  }

  section.video-info {
    background-attachment: inherit;
  }

  .container-xs {
    width: 90%;
    margin: 0 auto;
  }

  .popup-ss .container-popup {
    flex-direction: column;
  }

  .popup-ss .container-popup .cont-video {
    width: 100%;
    margin-top: 20px;
  }

  .popup-ss .container-popup .cont-text {
    width: 100%;
  }

  .popup-ss {
    border-radius: 0;
    top: initial;
    bottom: 0;
    left: 0;
  }

  .btn-popup {
    transform: rotate(90deg);
  }

  .popup-ss .container-popup[minpopup="false"] .btn-popup {
    transform: rotate(-90deg);
  }

  .popup-ss .container-popup[minpopup="false"] {
    padding: 15px;
  }

  .popup-ss .container-popup[minpopup="false"] .cont-text .title {
    font-size: 18px;
  }

  .popup-ss .container-popup .cont-text .btn-blue {
    font-size: 12px;
    margin-top: 5px;
  }

  .popup-ss .container-popup .cont-text .title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .slider .title-48 {
    font-size: 36px;
    line-height: 44px;
  }

  .slick-prev {
    left: -150px !important;
  }

  .slick-next {
    right: -150px !important;
  }

  .slide-container {
    min-height: auto;
  }

  .home .slide-container .img-slide {
    height: 300px;
  }

  .title-48 {
    margin: 0 0 40px 0;
  }

  .scroll {
    display: none;
  }

  .funcionalidades div {
    width: 100%;
    padding: 30px 0;
    text-align: center;
  }

  .funcionalidades div:nth-child(2),
  .funcionalidades div:nth-child(3),
  .funcionalidades div:nth-child(4),
  .funcionalidades div:nth-child(5),
  .funcionalidades div:nth-child(6),
  .funcionalidades div:nth-child(7),
  .funcionalidades div:nth-child(8),
  .funcionalidades div:nth-child(9),
  .funcionalidades div:nth-child(10),
  .funcionalidades div:nth-child(11),
  .funcionalidades div:nth-child(12),
  .funcionalidades div:nth-child(13),
  .funcionalidades div:nth-child(14),
  .funcionalidades div:nth-child(15),
  .funcionalidades div:nth-child(16) {
    border-bottom: 1px SOLID TRANSPARENT;
    -moz-border-image: -MOZ-LINEAR-GRADIENT(top right,
        #002b86,
        #386db0,
        #00913d 100%);
    -webkit-border-image: -WEBKIT-LINEAR-GRADIENT(top right,
        #002b86,
        #386db0,
        #00913d 100%);
    border-image: LINEAR-GRADIENT(top right, #002b86, #386db0, #00913d 100%);
    border-image-slice: 1;
  }

  .funcionalidades div {
    border-right: 0 !important;
  }

  .funcionalidades div:last-child {
    border-bottom: 0;
  }

  .datos .title-48 {
    font-size: 36px;
    line-height: 44px;
  }

  .datos div:nth-child(1) span {
    font-size: 36px;
  }

  .datos i {
    font-size: 50px;
  }

  .encuesta .preg {
    line-height: 34px;
    font-size: 24px;
    margin: 30px 0;
  }

  .contenedor-radio label {
    font-size: 18px;
    line-height: 24px;
  }

  .contenedor-radio {
    position: relative;
    margin: 10px 0;
  }

  .encuesta .frecuencia .contenedor-radio {
    margin: 0px 10px;
  }

  .container-clientes .menu-panel button {
    display: none;
  }

  .container-clientes .menu-panel .title-responsive {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    padding: 20px 20px;
    background: linear-gradient(172deg,
        rgba(0, 43, 134, 1) 0%,
        rgba(56, 109, 176, 1) 32%,
        rgba(56, 109, 176, 1) 56%,
        rgb(27 128 117) 100%);
    font-weight: bold;
    padding-top: 40px;
  }

  .content-panel[data="todos"] .slider-clientes[data="todos"] {
    display: flex;
  }

  .slider-clientes .images {
    width: calc(100% / 2);
  }

  .container-clientes .content-panel {
    padding: 40px 0;
  }

  .container-clientes {
    padding-top: 20px;
  }
}

@media (max-width: 630px) {
  .mapa-clientes .mapa {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .container-xs {
    width: 100%;
    padding: 0 30px;
  }

  .container .container-xs {
    padding: 0;
  }

  .col-50 {
    width: 100%;
  }

  .slide-container {
    padding: 0 10px;
  }

  .home .slide-container h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .caract-list ul {
    padding: 0;
  }

  .caract-list ul {
    margin: 0;
  }

  .caract-list ul li:nth-child(1) {
    border-top: none;
  }

  .desc-sec {
    display: table;
    width: 100%;
  }

  .desc-sec .pos-bottom {
    height: 100%;
    position: inherit;
    bottom: inherit;
    left: inherit;
    vertical-align: middle;
    display: table-cell;
  }

  .desc-sec .container-xs {
    height: inherit;
    text-align: center;
    border-left: none;
  }

  .desc-sec h1 {
    text-align: center;
  }

  .encuesta .preg {
    line-height: 28px;
    font-size: 20px;
  }

  .encuesta .frecuencia .contenedor-radio {
    margin: 0px 5px;
  }

  .slider .title-48 {
    font-size: 30px;
    line-height: 40px;
  }

  .testimonios .foto {
    width: 50%;
    margin: 0 auto 20px;
  }

  .testimonios .opinion {
    width: 100%;
    padding-left: 0px;
    text-align: center;
  }

  .testimonios .flex {
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
  }

  .datos .title-48 {
    font-size: 30px;
    line-height: 36px;
  }

  .datos div:nth-child(1) span {
    font-size: 30px;
  }

  .resultados .datos div {
    width: 50%;
    border-right: 0;
  }

  .instalacion .datos div:nth-child(1) {
    width: 25%;
  }

  .instalacion .datos div:nth-child(2) {
    width: 75%;
    padding-left: 20px;
  }

  footer .container {
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
  }

  footer .top .logo-footer {
    margin: 0 auto;
  }

  footer .newsletter {
    margin: 0 auto;
  }

  footer .bottom ul {
    margin: 5px auto;
  }

  footer .news-wrapper .contenedor-check {
    margin: 0 auto;
    max-width: 270px;
  }

  .instalacion .container {
    padding: 0 10px;
  }

  .instalacion .datos {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }

  .instalacion .datos div:nth-child(1),
  .instalacion .datos div:nth-child(2) {
    width: 100%;
    border-right: none;
  }

  .instalacion .datos div:nth-child(1) {
    margin-bottom: 10px;
  }

  .instalacion .datos div i {
    font-size: 60px;
  }

  .home .slide-container .img-slide.slide5,
  .home .slide-container .img-slide {
    background-position: top center;
    background-size: cover;
  }

  .home .slide-container {
    min-height: 525px;
  }
}

@media (max-width: 500px) {
  body {
    line-height: 28px;
  }

  .logo {
    width: 86px;
    margin: 25px 0;
  }

  .icon-menu {
    top: 35px;
    right: 20px;
  }

  .icon-menu p {
    display: none;
  }

  .main-menu #overlay-menu {
    max-width: 100%;
    position: fixed;
  }

  .main-menu #overlay-menu ul li a {
    font-size: 24px;
    line-height: 38px;
  }

  .main-menu #overlay-menu ul li.li-legal a {
    font-size: 16px;
    line-height: 28px;
  }

  .main-menu #overlay-menu ul li.li-legal.margin {
    margin-top: 10px;
  }

  .container,
  .container-xs,
  .text-container {
    padding: 0 20px;
  }

  .title-60 {
    font-size: 48px;
    line-height: 54px;
  }

  .title-48 {
    font-size: 30px;
    line-height: 1.2em;
    margin: 0 0 10px 0;
  }

  .title-36 {
    font-size: 24px;
    line-height: 1.2em;
  }

  .title-30 {
    font-size: 20px;
    line-height: 1.2em;
  }

  .title-24 {
    font-size: 18px;
    line-height: 1.2em;
  }

  .space {
    margin-bottom: 20px;
  }

  .pad-sec {
    padding: 50px 0;
  }

  .pop-container {
    background: #fff;
    padding: 25px;
  }

  .newsletter {
    height: 45px;
  }

  .newsletter .text-news,
  .newsletter .ok {
    padding: 15px 20px;
    font-size: 12px;
  }

  .home .slide-container h2 {
    margin-top: 15px;
    font-size: 24px;
    line-height: 1.2em;
  }

  section.descripcion {
    padding-top: 30px;
  }

  .slider-wrap .title-48 {
    font-size: 24px;
    line-height: 36px;
  }

  .slick-prev {
    left: -145px !important;
  }

  .slick-next {
    right: -145px !important;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0px !important;
  }

  .slick-dots {
    bottom: -30px !important;
  }

  .btn {
    font-size: 12px;
  }

  .play {
    width: 60px;
    height: 60px;
    padding: 18px 0 0 6px;
  }

  .play i {
    font-size: 24px;
  }

  .first-sec {
    padding: 120px 0 100px;
  }

  footer .top {
    padding: 20px 0;
  }

  footer .contenedor-logos {
    padding: 10px 0;
  }

  footer .top .logo-footer,
  footer .top .logo-footer.-innopulse {
    margin-top: 0;
  }

  footer .bottom ul.fo-legal {
    font-weight: 300;
    float: left;
    width: 100%;
  }

  footer .bottom ul.fo-legal li {
    padding: 2px 0;
    width: 100%;
    text-align: center;
  }

  footer .bottom ul.fo-legal li:nth-child(1) {
    padding-left: inherit;
  }

  footer .bottom ul.fo-legal li:nth-child(2) {
    border-left: none;
    border-right: none;
  }

  footer .bottom ul.rs li a {
    font-size: 20px;
    padding-left: 20px;
  }

  footer .bottom ul.rs li a.fa-envelope {
    font-size: 18px;
  }

  .encuesta .preg {
    line-height: 24px;
    font-size: 18px;
  }

  .encuesta .contenedor-radio label {
    font-size: 16px;
  }

  .encuesta .frecuencia .contenedor-radio {
    margin: 0;
  }

  .encuesta .frecuencia p {
    margin: 19px 11px 0;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
  }

  .testimonios .slick-dots {
    bottom: -28px !important;
  }

  .datos div {
    width: auto;
    padding-right: 0px;
    text-align: center;
    border-right: none;
    float: none;
    margin: 0 auto;
  }

  .datos .title-48 {
    font-size: 36px;
    line-height: 44px;
  }

  .datos div:nth-child(1) p {
    font-weight: 600;
  }

  .resultados .datos div {
    width: 100%;
  }

  .instalacion .datos {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }

  .instalacion .datos div:nth-child(1) p {
    text-align: left;
    margin-bottom: 10px;
  }

  .instalacion .datos div:nth-child(1) {
    width: 100%;
    padding: 0;
    border-right: 0;
  }

  .instalacion .datos div:nth-child(2) {
    width: 100%;
    padding-left: 0px;
  }

  .funcionalidades div:nth-child(1),
  .funcionalidades div:nth-child(2) {
    padding: 20px;
  }

  .funcionalidades p {
    font-size: 16px;
    line-height: 1.2em;
  }

  section.video-info {
    min-height: 60vh;
  }
}

@media (max-width: 400px) {
  body {
    font-size: 18px;
    line-height: 24px;
  }

  .title-60 {
    font-size: 36px;
    line-height: 44px;
  }

  .main-menu #overlay-menu {
    padding: 25px;
  }

  .container,
  .container-xs,
  .text-container {
    padding: 0 15px;
  }
}