
/*=============== UTILITIES LIB ===============*/
@import url("../libs/bootstrap-utilities.min.css");

/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

/*=============== AOS LIB ===============*/
@import url("../css/aos.css");

:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --mp-primary-color: #10295b;
  --mp-secondary-color: #449dc2;
  --mp-third-color: #dbdbdd;
  --mp-fourth-color: #D60928;
  --mp-fifth-color: #FD8204;
  --mp-sixth-color: #00AAD6;
  --mp-seventh-color: #94D60A;
  --mp-eighth-color: #EEBE00;
  --mp-nineth-color: #4D4081;
  --mp-tenth-color:#AD172B;
  --black-color: #000;
  --white-color: #FFF;
  --purple-color: #e5e5ff;

  /*========== Font and typography ==========*/
  --mp-font-sans-serif: 'Montserrat', sans-serif;
  --mp-body-font: var(--mp-font-sans-serif);
  --mp-titles-font: var(--mp-font-sans-serif);
  --mp-xxl-font-size: calc(40px + (60 - 40) * (100vw - 320px) / (967 - 320));
  --mp-xl-font-size: calc(35px + (55 - 35) * (100vw - 320px) / (967 - 320));
  --mp-lg-font-size: calc(30px + (50 - 30) * (100vw - 320px) / (967 - 320));
  --mp-md-font-size: calc(25px + (45 - 25) * (100vw - 320px) / (967 - 320));
  --mp-sm-font-size: calc(22px + (40 - 22) * (100vw - 320px) / (967 - 320));
  --mp-xs-font-size: 1.2rem;
  --mp-xxs-font-size: .975rem;
  --mp-text-line-height: 1.5rem;

  /*========== Font weight ==========*/
  --mp-font-regular:400; 
  --mp-font-medium: 500;
  --mp-font-bold: 700;
}
/*=============== RESPONSIVE TYPOGRAPHY ===============*/
@media screen and (min-width: 968px) {
  :root {
    --mp-xxl-font-size: 4.5rem;
    --mp-xl-font-size: 4rem;
    --mp-lg-font-size: 3.5rem;
    --mp-md-font-size: 3rem;
    --mp-sm-font-size: 2.5rem;
    --mp-xs-font-size: 2rem;
    --mp-xxs-font-size: 1.2rem;
    --mp-text-line-height: 2rem;
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  margin: 0;
  font-family: var(--mp-body-font);
  font-size: var(--mp-xxs-font-size);
  font-weight: var(--mp-font-medium);
  line-height: var(--mp-text-line-height);
  color: var(--mp-primary-color);
  background-color: var(--white-color);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  transition: all 0.5s;
  text-align: justify;
}
h6, h5, h4, h3, h2, h1 {
  font-family: var(--mp-titles-font);
  font-weight: var(--mp-font-bold);
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
h1 { font-size: var(--mp-xxl-font-size); }
h2 { font-size: var(--mp-xl-font-size); }
h3 { font-size: var(--mp-lg-font-size); }
h4 { font-size: var(--mp-md-font-size); }
h5 { font-size: var(--mp-sm-font-size); }
h6 { font-size: var(--mp-xs-font-size); }
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
li { list-style: none;}
a { text-decoration: none;}
b, strong {
  font-weight: bolder;
}
small {
  font-size: 0.875em;
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
img,
svg {
  vertical-align: middle;
}
/*=============== PRELOADER ===============*/
.loader {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: width 0s 1.4s ease;
  background-color: var(--white-color);
}
.loader-active {
  overflow: hidden;
  transition-delay: 0s;
}
.loader-out{
  opacity: 0!important;
  transition: opacity 2s !important;
  display: none;
}
#progress {
  width: 100%;
  background-color: #ddd;
}
#status {
  width: 10%;
  height: 30px;
  background-color: var(--mp-primary-color);
  text-align: center;
  line-height: 30px;
  color: white;
}
.loader-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo-loader {
  -webkit-animation: loader 1.25s infinite;
  -moz-animation: loader 1.25s infinite;
  -o-animation: loader 1.25s infinite;
  animation: loader 1.25s infinite;
}
@keyframes loader {
  0% {
    rotate: 0deg;
  }
  100% {
    border-radius: 50%;
    rotate: 180deg;
  }
}
/* ------------------------------------
 * NAV MENU
 * --------------------------------- */
nav.menu_{
  background: #fff;
}
nav.menu_:after{
  content: '';
  clear: both;
  display: table;
}
nav.menu_ .logo{
  float: left;
  color: white;
  font-size: 27px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 30px;
}
nav.menu_ ul{
  float: right;
  margin-right: 30px;
  margin-bottom: 0;
  list-style: none;
  position: relative;
}
nav.menu_ ul li{
  float: left;
  display: inline-block;
  background: #fff;
  margin: 0 5px;
}
nav.menu_ ul li a{
  color: var(--mp-primary-color);
  line-height: 70px;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 12px;
}
nav.menu_ ul li a:hover{
  color: #449dc2;
  border-radius: 5px;
  /*box-shadow:  0 0 5px #449dc2,
               0 0 10px #449dc2;*/
}
nav.menu_ ul ul li a:hover{
  box-shadow: none;
}
nav.menu_ ul ul{
  position: absolute;
  top: 90px;
  border-top: 3px solid #449dc2;
  opacity: 0;
  visibility: hidden;
  transition: top .3s;
}
nav.menu_ ul ul ul{
  border-top: none;
}
nav.menu_ ul li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
}
nav.menu_ ul ul li{
  position: relative;
  margin: 0px;
  width: auto;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
nav.menu_ ul ul li a{
  line-height: 50px;
}
nav.menu_ ul ul ul li{
  position: relative;
  top: -60px;
  left: 150px;
}
.show, input{
  display: none;
}
.fa-plus{
  font-size: 15px;
  margin-left: 40px;
}
@media all and (max-width: 968px) {
  nav.menu_ ul{
    margin-right: 0px;
    float: left;
  }
  nav.menu_ .logo{
    padding-left: 30px;
    width: 100%;
  }
  .show + a, ul.menu-items{
    display: none;
  }
  nav.menu_ ul li,nav ul ul li{
    display: block;
    width: 100%;
  }
  nav.menu_ ul li a:hover{
    box-shadow: none;
  }
  .show{
    display: block;
    color: var(--mp-primary-color);
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }
  .show:hover{
    color: #449DC2;
  }
  .menu_ .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 21px;
    right: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  .menu_ .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }
  .menu_ .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  .menu_ .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  .menu_ .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  nav.menu_ ul ul{
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  nav.menu_ ul ul a{
    padding-left: 40px;
  }
  nav.menu_ ul ul ul a{
    padding-left: 80px;
  }
  nav.menu_ ul ul ul li{
    position: static;
  }
  [id^=btn]:checked + ul{
    display: block;
  }
  nav.menu_ ul ul li{
    width: 100%;
    border-bottom: 0px;
  }
  span.cancel:before{
    content: '\f00d';
  }
  .hamburger-lines.is-active .line1 {
    transform: rotate(45deg);
  }
  .hamburger-lines.is-active .line2 {
    transform: scaleY(0);
  }
  .hamburger-lines.is-active .line3 {
    transform: rotate(-45deg);
  }
  .menu-items{
    transform: translate(-150%);
    transition: transform 0.5s ease-in-out;
  }
  .menu-items.is-active{
    transform: translateX(0);
  }
}
/*=============== GLOBAL CSS CLASSES ===============*/
.page_content{
  overflow: hidden;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-overlay{
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  text-align: right;
  z-index: 1;
}
.img-overlay img{
  width: 48%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

@media (min-width: 968px) {
  .img-overlay img{ width: 40%; height: auto; }
}
@media (min-width: 1400px) {
  .img-overlay img{ width: 32%; }
}
@media (max-width: 968px) {
  .contacto form { padding-bottom: 33%; }
}
/*
@media (min-width: 968px) {
  .img-overlay{
    bottom: 35%;
    right: -61%;
  }
  .img-overlay img{ width: 40%; }
}
*/
.section {
  position: relative;
  padding: 4rem 0 2rem;
}
.text-primary{
  color: var(--mp-primary-color)!important;
}
.text-secondary{
  color: var(--mp-secondary-color)!important;
}
.text-third{
  color: var(--mp-third-color)!important;
}
.text-fourth{
  color: var(--mp-fourth-color)!important;
}
.text-fifth{
  color: var(--mp-fifth-color)!important;
}
.text-sixth{
  color: var(--mp-sixth-color)!important;
}
.text-seventh{
  color: var(--mp-seventh-color)!important;
}
.text-eighth{
  color: var(--mp-eighth-color)!important;
}
.text-nineth{
  color: var(--mp-nineth-color)!important;
}
.text-tenth{
  color: var(--mp-tenth-color)!important;
}
.text-regular{
  font-weight: var(--mp-font-regular);
}
.text-medium{
  font-weight: var(--mp-font-medium);
}
.bg-primary{
  background-color: var(--mp-primary-color)!important;
}
.bg-secondary{
  background-color: var(--mp-secondary-color)!important;
}
.bg-third{
  background-color: var(--mp-third-color)!important;
}
.bg-fourth{
  background-color: var(--mp-fourth-color)!important;
}
.bg-fifth{
  background-color: var(--mp-fifth-color)!important;
}
.bg-sixth{
  background-color: var(--mp-sixth-color)!important;
}
.bg-seventh{
  background-color: var(--mp-seventh-color)!important;
}
.bg-eighth{
  background-color: var(--mp-eighth-color)!important;
}
.bg-nineth{
  background-color: var(--mp-nineth-color)!important;
}
.bg-tenth{
  background-color: var(--mp-tenth-color)!important;
}
.line-division{
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background-color: #c5c5c5;
}
.line-division-heads{
  width: 100%;
  height: 10px;
  margin: auto;
  background-color: #449dc2;
}
.sponsor{
  width: 100%;
  height: auto;
  margin: auto;
  padding: 1rem .5rem;
  background-color: #449dc2;
}
.sponsor h6{
  font-weight: var(--mp-font-regular);
  margin: 0;
}
.small {
  font-size: 0.675em;
}
@media (min-width: 968px) {
  .line-division-heads{ width: 100%; }
}
.btn{
  display: inline-block;
  line-height: 1.5;
  font-size: var(--mp-xs-font-size);
  font-weight: var(--mp-font-medium);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border:none;
  padding: .450rem 1.2rem;
  border-radius: 1.2rem;
  text-transform: uppercase;
}
.btn-primary{
  position: relative;
  background-image: linear-gradient(to right, #0e4b80, #05407a, #033573, #072a6c, #0f1e63);
  color: var(--white-color);
  z-index: 1;
  overflow: hidden;
}
.btn-primary:after{
  content: "";
  background-image: linear-gradient(to left, #7fbd58, #89c64d, #94cf40, #a2d82e, #b1e00a);
  color: var(--mp-primary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  transition: all 0.35s;
}
.btn-primary:after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
  transition: all 0.35s;
}
.btn-primary:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}
.btn-slider{
  background-color: rgba(255,255,255,0)!important;
  border: 2px solid #fff;
  color: var(--white-color);
}

.btn-more{
  font-size: 12pt;
  letter-spacing: 1px;
  padding: 6px 30px;
  border: 2px solid var(--mp-primary-color);
  border-radius: 31px;
  text-decoration: none;
  transition: .5s all;
}
.btn-more:hover{
  background: #fff!important;
  color: var(--mp-primary-color);
  transition: .5s all;
}


/*soluciones*/
.btn-soluciones{
  position: relative;
  background-image: var(--purple-color);
  color: var(--mp-primary-color);
  z-index: 1;
  overflow: hidden;
}
.btn-soluciones:after{
  content: "";
  background-color: #FF912B;
  color: var(--mp-primary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  transition: all 0.35s;
}
.btn-soluciones:after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
  transition: all 0.35s;
}
.btn-soluciones:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}
.btn-soluciones:hover{
  color: var(--white-color);
}

/*servicios*/
.btn-servicios{
  position: relative;
  background-image: var(--purple-color);
  color: var(--mp-primary-color);
  z-index: 1;
  overflow: hidden;
}
.btn-servicios:after{
  content: "";
  background-color: var(--mp-primary-color);
  color: var(--mp-primary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  transition: all 0.35s;
}
.btn-servicios:after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
  transition: all 0.35s;
}
.btn-servicios:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}
.btn-servicios:hover{
  color: var(--white-color);
}

/*desarrollos*/
.btn-desarrollos{
  position: relative;
  background-image: var(--purple-color);
  color: var(--mp-primary-color);
  z-index: 1;
  overflow: hidden;
}
.btn-desarrollos:after{
  content: "";
  background-color: #53D8FF;
  color: var(--mp-primary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  transition: all 0.35s;
}
.btn-desarrollos:after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
  transition: all 0.35s;
}
.btn-desarrollos:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}
.btn-desarrollos:hover{
  color: var(--white-color);
}


/*infraestructura*/
.btn-infra{
  position: relative;
  background-image: var(--purple-color);
  color: var(--mp-primary-color);
  z-index: 1;
  overflow: hidden;
}
.btn-infra:after{
  content: "";
  background-color: #FF912B;
  color: var(--mp-primary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  transition: all 0.35s;
}
.btn-infra:after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
  transition: all 0.35s;
}
.btn-infra:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}
.btn-infra:hover{
  color: var(--white-color);
}

ul.bullet{
  padding-left: 1rem;
}
ul.bullet li{
  list-style: disc;
}

.text-justify{
  text-align: justify;
}
/*=============== SLIDER ===============*/
#container-slider{
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70px;
}
#slider {
  position: relative;
  display: block;
  width: 100%;
  height: 80vh;
  min-height: 500px;
}
#slider li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  z-index: -1;
  opacity: 0;
}
#container-slider .arrowPrev, #container-slider .arrowNext{
font-size: 30pt;
color: rgba(204, 204, 204, 0.65);
cursor: pointer;
position: absolute;
top: 50%;
left: 50px;
z-index: 2; 
}
#container-slider .arrowNext {
left: initial;
right: 50px !important;
}
.content_slider{
  /*padding: 15px 30px;*/
  color: #FFF;
  width: 100%;
  height: 100%;
}
.content_slider div{
text-align: center;
}
.content_slider h2{
font-size: var(--mp-sm-font-size);
/*font-size: 30pt;*/
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 20px;
}
.content_slider p {
  color: #FFF;
  margin-bottom: 20px;
}
#slider li .content_slider{
  background: rgba(0, 0, 0, 0.10);
  /*padding: 10px 125px;*/
}
.content_slider{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btnSlider{
color: #FFF;
font-size: 15pt;
font-family: 'arial';
letter-spacing: 1px;
padding: 10px 50px;
border: 1px solid #CCC;
background: rgba(13, 13, 13, 0.55);
border-radius: 31px;
text-decoration: none;
transition: .5s all;
}
.btnSlider:hover{
background: #111;
border: 1px solid #111;
}
.listslider {
  position: absolute;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 50%;
  bottom: 5%;
  list-style: none;
  z-index: 2;
  transform: translateX(-50%);
}
.listslider li {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  cursor: pointer;
  margin: 0 5px;
}
.listslider li a {
  background: #CCC;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
}
.item-select-slid {
  background: #FFF  !important;
}

@media screen and (max-width: 460px){
.content_slider h2 {
    font-size: 15pt !important;
}
.content_slider p {
    font-size: 12pt !important;
}
#container-slider .arrowPrev, #container-slider .arrowNext{
  font-size: 20pt;
}
#container-slider .arrowPrev{
  left: 15px;
}
#container-slider .arrowNext{
  right: 15px !important;
}
#slider{
  height: 500px;
  min-height: 500px;
}
#slider li .content_slider{
  padding: 10px 35px;
}
.btnSlider, .btn-more{
  padding: 10px 30px;
  font-size: 10pt;
}
}
@media (min-width: 768px){
.pop_class{
  width: 80%!important;
}
}
/* ------------------------------------
 * HEADER
 * --------------------------------- */
 .header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: var(--white-color);
}
/* ------------------------------------
 * HOME
 * --------------------------------- */
 .pill{
   position: relative;
  padding: .85rem 1.2rem;
  background-color: var(--purple-color);
  text-transform: uppercase;
 }
 .pill.left{
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
 }
 .pill.left::before{
   content:"";
   position: absolute;
   width: 10px;
   height: 100%;
   top: 0;
   left: -10px;
   background-color: var(--purple-color);
 }
 .pill.right{
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
 }
 .pill.right::before{
  content:"";
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  right: -10px;
  background-color: var(--purple-color);
}
.pill-border{
  position: relative;
 padding: .85rem 1.2rem;
 border: 5px solid #0091C4;
 text-transform: uppercase;
}
.pill-border.left{
 border-top-right-radius: 4rem;
 border-bottom-right-radius: 4rem;
 border-left:none;
}
.pill-border.right{
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
  border-right:none;
 }
 /* ------------------------------------
 * HOSTING & DOMINIOS
 * --------------------------------- */
 .bloop{
  position: absolute;
  top: 50%;
  right: -31%;
  z-index: -1;
  transform: translate3d(-50%,-50%,0);
 }
 .bloop2{
  position: absolute;
  top: 41%;
  right: -50%;
  z-index: -1;
  transform: translate3d(-50%,-50%,0);
 }

/* ------------------------------------
 * PAGE: SISTEMAS-ASPEL
 * --------------------------------- */
 .btn-show-more{
  display: inline-block;
  line-height: 1.5;
  font-size: var(--mp-xxs-font-size);
  font-weight: var(--mp-font-medium);
  text-align: start;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #449CC1;
  border: none;
  padding: 0.6rem 0.6rem;
  border-radius: 2rem;
  text-transform: uppercase;
  margin: 1rem;
  text-align: -webkit-center;
  z-index: 2;
  position: relative;
}

.btn-small{
  position: relative;
  background-image: linear-gradient(to right, #449cc1, #3a94ba, #308cb3, #2584ad, #187ca6);
  color: var(--white-color);
  overflow: hidden;
}
.btn-small::after{
  content: "";
  background-image: linear-gradient(to left, #7fbd58, #89c64d, #94cf40, #a2d82e, #b1e00a);
  color: var(--mp-primary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  transition: all 0.35s;
}
.btn-small:after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
  transition: all 0.35s;
}
.btn-small:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}

.line-separation{
  background-color: var(--mp-primary-color);
  height: 1.2rem;
}
@media (min-width: 1200px){
  .vertical-list{
    display: table-cell;
  }
  .icon-list{
    display: table;
    margin: auto;
  }
}
@media (max-width: 1199px){
  .vertical-list{
    flex: 0 0 auto;
    width: 25%;  
  }
  .icon-list{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    justify-content: center;
  }
}
@media (max-width: 576px){
  .vertical-list{
    flex: 0 0 auto;
    width: 50%;
  }
}

.list-disc-icon{
  list-style: disc !important;
}

.banner-image{
  padding-top: 12rem;
  padding-bottom: 6rem;
  background-image: url('../images/aspel/sistemas-aspel/sistemas-aspel-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 576px){
  .banner-image{
    padding: 60px;
  }
}

@media (max-width: 768px){
  .banner-image{
    padding: 60px;
  }
}

@media (min-width: 1400px) { 
  .banner-image{
    padding: 220px;
  }
 }

 /* ------------------------------------
 * ASPEL-SAE
 * --------------------------------- */
.banner-image-sae{
  background-image: url('../images/aspel/aspel-sae/aspel_sae_banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.line-separation-sae{
  background-color: var(--mp-fourth-color);
  height: 1.2rem;
}
.line-function-sae{
  background-color: var(--mp-fourth-color);
  height: auto;
  padding-top: 1rem;
  padding-bottom: .9rem;
  text-align: center;
}

 /* ------------------------------------
 * ASPEL-NOI
 * --------------------------------- */
 
.banner-image-noi{
  background-image: url('../images/aspel/aspel-noi/aspel_noi_banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.line-separation-noi{
  background-color: var(--mp-fifth-color);
  height: 1.2rem;
}
.line-function-noi{
  background-color: var(--mp-fifth-color);
  height: auto;
  padding-top: 1rem;
  padding-bottom: .9rem;
  text-align: center;
}

 /* ------------------------------------
 * ASPEL-COI
 * --------------------------------- */
 
 .banner-image-coi{
  background-image: url('../images/aspel/aspel-coi/aspel-coi-banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.line-separation-coi{
  background-color: var(--mp-sixth-color);
  height: 1.2rem;
}
.line-function-coi{
  background-color: var(--mp-sixth-color);
  height: auto;
  padding-top: 1rem;
  padding-bottom: .9rem;
  text-align: center;
}

 /* ------------------------------------
 * ASPEL-BANCO
 * --------------------------------- */
 
 .banner-image-banco{
  background-image: url('../images/aspel/aspel-banco/aspel-banco-banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.line-separation-banco{
  background-color: var(--mp-seventh-color);
  height: 1.2rem;
}
.line-function-banco{
  background-color: var(--mp-seventh-color);
  height: auto;
  padding-top: 1rem;
  padding-bottom: .9rem;
  text-align: center;
}

 /* ------------------------------------
 * ASPEL-CAJA
 * --------------------------------- */
 
 .banner-image-caja{
  background-image: url('../images/aspel/aspel-caja/aspel-caja-banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.line-separation-caja{
  background-color: var(--mp-eighth-color);
  height: 1.2rem;
}
.line-function-caja{
  background-color: var(--mp-eighth-color);
  height: auto;
  padding-top: 1rem;
  padding-bottom: .9rem;
  text-align: center;
}

 /* ------------------------------------
 * ASPEL-PROD
 * --------------------------------- */
 
 .banner-image-prod{
  background-image: url('../images/aspel/aspel-prod/aspel-prod-banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.line-separation-prod{
  background-color: var(--mp-nineth-color);
  height: 1.2rem;
}
.line-function-prod{
  background-color: var(--mp-nineth-color);
  height: auto;
  padding-top: 1rem;
  padding-bottom: .9rem;
  text-align: center;
}

 /* ------------------------------------
 * ASPEL-FACTURE
 * --------------------------------- */
 
 .banner-image-facture{
  background-image: url('../images/aspel/aspel-facture/aspel-facture-banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.line-separation-facture{
  background-color: var(--mp-tenth-color);
  height: 1.2rem;
}
.line-function-facture{
  background-color: var(--mp-tenth-color);
  height: auto;
  padding-top: 1rem;
  padding-bottom: .9rem;
  text-align: center;
}

 /* ------------------------------------
 * CONTA-FACIL
 * --------------------------------- */

.line-function-advantages{
  background-color: var(--mp-primary-color);
  height: auto;
  padding-top: 1rem;
  padding-bottom: .9rem;
  text-align: center;
}
.btn-developments{
  background-color: #01A9EA;
  color: var(--white-color);
}

 /* ------------------------------------
 * CONTA-FACIL
 * --------------------------------- */
.bg-quienes{
  background-image: url('../images/quienes-somos/quienes-somos-banner-image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 40vh;
}

 /* ------------------------------------
 * CONTACT
 * --------------------------------- */

@media (min-width: 992px) {
  .label-align { text-align: left; }
  form{
    margin-top: 6rem;
  }
}
@media (max-width: 968px) {
  .label-align { text-align: right; }
}
@media (max-width: 576px) {
  .label-align { text-align: left; }
}
@media (max-width: 575px) {
  .label-align { text-align: right; }
}
input.form-control-plaintext{
  display: initial;
}
.btn-form{
  background-color: #01A9EA;
  color: var(--white-color);
  font-size: var(--mp-body-font);
}
.form-input{
  display: block;
  border: 1px solid #ebebeb;
  padding: 11px 20px;
  box-sizing: border-box;
}
select{
  -moz-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  position: relative;
  background: 0 0;
  z-index: 10;
  cursor: pointer;
}
textarea{
  display: block;
  border: 1px solid #ebebeb;
  padding: 11px 20px;
  box-sizing: border-box;
  resize: none;
}
.form{
  position: relative;
  z-index: 100;
}
.error{
  color: red;
  font-size: 85%;
}
.required_::before{
  content: "*";
  color: red;
  font-size: 85%;
}
.foot-link:hover{
  color:#449DC2 !important;
}
/* ------------------------------------
 * FOOTER
 * --------------------------------- */
 .footer{
   position: relative;
 }
 .foot{
   line-height: 12px;
   margin-top: 3rem;
 }
 .line-division-foot{
   position: absolute;
   width: 2px;
   height: 54%;
   left: 0;
   right: 0;
   top: 27%;
   margin: auto;
   background-color: #fff;
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   transform: translateY(-50%);
 }
 .social-list{
   display: flex;
   justify-content: center;
   margin: 0;
 }
 .social-list li{
  margin: 0 .65rem;
 }