body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
.sweet-overlay {
  background-color: black;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  background-color: rgba(0,0,0,0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}
.sweet-alert {
  background-color: white;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}
@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}
.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.sweet-alert fieldset {
  border: none;
  position: relative;
}
.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}
.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}
.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}
.sweet-alert .sa-error-container p {
  display: inline-block;
}
.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.sweet-alert .sa-input-error::before,
.sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}
.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0,0,0,0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}
.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}
.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}
.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}
.sweet-alert.show-input input {
  display: block;
}
.sweet-alert button {
  background-color: #AEDEF4;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  -webkit-border-radius: 4px;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}
.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128,179,235,0.5), inset 0 0 0 1px rgba(0,0,0,0.05);
}
.sweet-alert button:hover {
  background-color: #a1d9f2;
}
.sweet-alert button:active {
  background-color: #81ccee;
}
.sweet-alert button.cancel {
  background-color: #D0D0D0;
}
.sweet-alert button.cancel:hover {
  background-color: #c8c8c8;
}
.sweet-alert button.cancel:active {
  background-color: #b6b6b6;
}
.sweet-alert button.cancel:focus {
  box-shadow: rgba(197,205,211,0.8) 0px 0px 2px, rgba(0,0,0,0.0470588) 0px 0px 0px 1px inset !important;
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}
.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}
.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}
.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}
.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}
.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}
.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}
.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165,220,134,0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
.row {
  max-width: 1170px;
}
.column,
.columns {
  padding-left: 20px;
  padding-right: 20px;
}
.row .row {
  margin-left: -20px;
  margin-right: -20px;
}
.bgcover {
  background-position: center;
  background-size: cover;
}
.block {
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
}
.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.clearul {
  margin: 0;
  padding: 0;
}
.clearul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion .accordion-navigation > .content,
.accordion dd > .content {
  max-height: 0;
  display: block;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.accordion .accordion-navigation > .content.active,
.accordion dd > .content.active {
  max-height: 1000px;
  opacity: 1;
}
p:last-child {
  margin-bottom: 0;
}
.valignout {
  display: table;
  height: 100%;
  width: 100%;
  table-layout: fixed;
}
.valignin {
  vertical-align: middle;
  height: 100%;
  width: 100%;
  display: table-cell;
}
figure {
  padding: 0;
  margin: 0;
}
.op0 {
  opacity: 0;
}
.parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
}
#cboxOverlay {
  background-color: #000;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#colorbox,
#colorbox * {
  outline: none;
}
#colorbox:focus,
#colorbox *:focus {
  outline: none;
}
#cboxClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
}
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px,0,0);
  -webkit-transition-timing-function: ease;
  -moz-transition-property: -moz-transform, left, top;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px,0,0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px,0,0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px,0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px,0,0);
  -ms-transition-timing-function: ease;
  transition-property: transform, left, top;
  transition-duration: 0s;
  transform: translate3d(0px,0,0);
  transition-timing-function: ease;
}
.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  float: left;
}
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
}
.font1 {
  font-family: 'Raleway', sans-serif;
}
.font2 {
  font-family: 'Asap', sans-serif;
}
.preloader {
  background: #4f3996;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  display: none;
  width: 0;
  border-radius: 0%;
}
.preloader.loading {
  display: block;
  transform: scale(1.6);
  border-radius: 100%;
}
body.modal-open {
  overflow: hidden;
  position: fixed;
}
.reveal-modal {
  height: 100%;
}
body {
  color: 666666;
  font-family: 'Asap', sans-serif;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Raleway', sans-serif;
}
.nooverflow {
  overflow-x: hidden;
  position: relative;
}
.button,
button {
  height: 40px;
  background: #f15b59;
  border-radius: 40px;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  border: 2px solid #f15b59;
  padding: 10px 50px;
  font-weight: 700;
  transition: all .3s ease-out;
  background: none;
  color: #f15b59;
}
.button:hover,
.button:focus,
button:hover,
button:focus {
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  background: #fff;
  color: #f15b59;
  background: #f15b59;
  color: #fff;
}
.button.outline,
button.outline {
  background: none;
  color: #f15b59;
}
.button.outline:hover,
.button.outline:focus,
button.outline:hover,
button.outline:focus {
  background: #f15b59;
  color: #fff;
}
.button.purple,
button.purple {
  border: 2px solid #4f3996;
  color: #4f3996;
}
.button.purple:hover,
.button.purple:focus,
button.purple:hover,
button.purple:focus {
  color: #fff;
  background: #4f3996;
}
.button:last-child,
button:last-child {
  margin-bottom: 0;
}
body {
  padding-top: 120px;
}
p {
  line-height: 1.5;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all .3s ease-out;
}
.scroll header {
  top: -40px;
}
header .top {
  height: 40px;
  background: #f4f4f4;
  text-align: right;
}
header .top .tel {
  color: #1c1c1c;
  font-size: 14px;
  font-family: 'Asap', sans-serif;
  font-weight: 500;
  height: 40px;
  line-height: 42px;
  display: inline-block;
  vertical-align: top;
  border-bottom: 1px solid transparent;
  transition: all .3s ease-out;
}
header .top .tel i {
  margin-right: 3px;
}
header .top .tel:hover,
header .top .tel:focus {
  border-bottom: 1px solid #4f3996;
  color: #4f3996;
}
header .top .mail {
  display: inline-block;
  vertical-align: top;
  height: 40px;
  line-height: 42px;
  margin-left: 20px;
  color: #4f3996;
  font-size: 14px;
  border-bottom: 1px solid #4f3996;
  border-bottom: 1px solid transparent;
  color: #1c1c1c;
  transition: all .3s ease-out;
}
header .top .mail i {
  margin-right: 10px;
}
header .top .mail:hover,
header .top .mail:focus {
  border-bottom: 1px solid #4f3996;
  color: #4f3996;
}
header .head {
  height: 80px;
  background: #fff;
}
header .head h1 {
  margin: 0;
  top: 21px;
  left: 16px;
  position: absolute;
}
header .head h1 a {
  background: url(img/logo.svg) no-repeat;
  background-size: 100% auto;
  width: 138px;
  height: 40px;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
}
header .head nav {
  position: absolute;
  top: 20px;
  right: 0px;
}
header .head nav ul {
  margin: 0;
  padding: 0;
}
header .head nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
header .head nav ul li {
  height: 40px;
  padding: 0 10px;
  float: left;
}
header .head nav ul li a {
  font-family: 'Raleway', sans-serif;
  color: #a4a4a4;
  font-size: 14px;
  font-weight: 700;
  display: block;
  line-height: 38px;
  padding: 0 10px;
  transition: all .3s ease-out;
}
header .head nav ul li a:hover,
header .head nav ul li a:focus {
  color: #4f3996;
}
header .head nav ul li.contacto {
  padding-left: 15px;
}
header .head nav ul li.contacto a.button {
  cursor: pointer;
  color: #f15b59;
  padding: 10px 60px;
  line-height: 1;
}
header .head nav ul li.contacto a.button:hover,
header .head nav ul li.contacto a.button:focus {
  color: #fff;
}
.hero {
  height: 640px;
  position: relative;
  background: #4f3996;
}
.hero .bx-wrapper,
.hero .bx-viewport {
  height: 100% !important;
}
.hero .bx-pager {
  position: absolute;
  top: 420px;
  left: 50%;
  margin-left: -560px;
  z-index: 99;
}
.hero .bx-pager .bx-pager-item {
  width: 10px;
  margin: 0 3px;
  float: left;
}
.hero .bx-pager .bx-pager-item a {
  width: 6px;
  height: 6px;
  background: #2E2841;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  border-radius: 100%;
  margin-top: 2px;
  transition: all .3s ease-out;
}
.hero .bx-pager .bx-pager-item a.active {
  width: 10px;
  height: 10px;
  background: #f15b59;
  margin: 0 auto;
}
.hero ul {
  margin: 0;
  padding: 0;
  height: 100%;
}
.hero ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero ul li {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero ul li .bg1,
.hero ul li .bg2,
.hero ul li .bg3,
.hero ul li .bg4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  width: 200%;
  margin-left: -50%;
}
.hero ul li .bg1 {
  background-image: url(img/01-2.png);
}
.hero ul li .bg2 {
  background-image: url(img/01-3.png);
}
.hero ul li .bg3 {
  background-image: url(img/01-4.png);
}
.hero ul li .bg4 {
  background-image: url(img/01-5.png);
}
.hero ul li.active-slide .bg1,
.hero ul li.active-slide .bg2,
.hero ul li.active-slide .bg3,
.hero ul li.active-slide .bg4 {
  transition: all 1.5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.hero .figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: right;
  background-repeat: no-repeat;
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  opacity: 0;
}
.hero .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}
.hero h2 {
  color: #fff;
  font-weight: 900;
  font-size: 48px;
  max-width: 480px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-100px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
}
.hero h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 900;
  line-height: 1.2;
}
.hero .buttonout {
  opacity: 0;
  transform: translateX(-100px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .2s;
}
.hero.in ul li .bg1,
.hero.in ul li .bg2,
.hero.in ul li .bg3,
.hero.in ul li .bg4 {
  opacity: 1;
}
.hero.in .figure {
  opacity: 1;
}
.hero.in h2,
.hero.in .buttonout {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.planes {
  margin: -110px 0 -110px;
  position: relative;
  z-index: 10;
}
.planes .row {
  max-width: 1210px;
}
.planes.in ul li {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.planes ul {
  margin: 0;
}
.planes ul li {
  padding: 0;
  opacity: 0;
  transform: translateX(0) translateY(50px);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  position: relative;
}
.planes ul li:nth-child(1) {
  transition-delay: .2s;
}
.planes ul li:nth-child(2) {
  transition-delay: .3s;
}
.planes ul li:nth-child(3) {
  transition-delay: .4s;
}
.planes ul li:hover,
.planes ul li:focus {
  z-index: 10;
}
.planes ul li a {
  display: block;
  height: 220px;
  text-align: center;
  padding: 20px;
  border-right: 1px solid #eeeeee;
  background: #fff;
  border-top: 5px solid #fff;
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
  position: relative;
  z-index: 1;
}
.planes ul li a:hover,
.planes ul li a:focus {
  transform: translateY(-21px);
  border-top: 5px solid #f15b59;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border-right: 1px solid transparent;
  z-index: 10;
}
.planes ul li a:hover .button,
.planes ul li a:focus .button {
  background: #f15b59;
  color: #fff;
}
.planes ul li:last-child a {
  border-right: none;
}
.planes h2 {
  font-size: 24px;
  color: #1c1c1c;
  font-weight: 700;
  margin: 15px 0;
}
.planes .precio {
  display: block;
  color: #4f3996;
  font-family: 'Asap', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  margin: 10px 0 8px;
}
.planes .precio strong {
  font-size: 32px;
  display: inline-block;
  vertical-align: top;
}
.planes .precio span {
  display: inline-block;
  vertical-align: top;
  margin-top: 15px;
  margin-right: 5px;
}
.planes .inst {
  margin-top: -10px;
  display: block;
  color: #1c1c1c;
  font-size: 11px;
}
.cobertura {
  height: 680px;
  background: #4f3996;
  padding-top: 110px;
  overflow: hidden;
  position: relative;
  clear: both;
  margin-top: 0px;
  float: left;
  width: 100%;
}
.cobertura .row,
.cobertura .columns {
  height: 100%;
}
.cobertura.in h4,
.cobertura.in h2,
.cobertura.in p,
.cobertura.in .buttonout {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.cobertura h4 {
  color: #f15b59;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: bold;
  opacity: 0;
  transform: translateX(50px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
}
.cobertura h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 900;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(50px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .1s;
}
.cobertura p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateX(50px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .2s;
}
.cobertura .buttonout {
  opacity: 0;
  transform: translateX(50px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .3s;
}
.cobertura .bg {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 50%;
}
.cobertura .columns {
  max-width: 380px;
  float: right;
  margin-right: 20px;
  padding-bottom: 30px;
}
.cobertura .button {
  width: 175px;
  padding: 10px 30px;
}
.servicios {
  padding-top: 100px;
  padding-bottom: 70px;
  clear: both;
}
.servicios h4 {
  color: #f15b59;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateX(0px) translateY(50px);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
}
.servicios h2 {
  color: #2e2741;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  opacity: 0;
  transform: translateX(0px) translateY(50px);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .1s;
}
.servicios.in h4,
.servicios.in h2 {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.servicios.in ul h3,
.servicios.in ul p {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.servicios.in ul figure {
  opacity: 1;
}
.servicios.in ul figure svg path,
.servicios.in ul figure svg line {
  stroke-dashoffset: 0;
  opacity: 1;
}
.servicios ul {
  text-align: center;
  margin-top: 130px;
}
.servicios ul figure {
  height: 135px;
  margin-bottom: 20px;
  opacity: 0;
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
}
.servicios ul figure svg {
  max-width: 160px;
  max-height: 130px;
}
.servicios ul figure svg path,
.servicios ul figure svg line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: all 2s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .2s;
  opacity: 0;
}
.servicios ul li:nth-child(1) h3 {
  transition-delay: .1s;
}
.servicios ul li:nth-child(1) p {
  transition-delay: .2s;
}
.servicios ul li:nth-child(2) h3 {
  transition-delay: .3s;
}
.servicios ul li:nth-child(2) p {
  transition-delay: .4s;
}
.servicios ul li:nth-child(3) h3 {
  transition-delay: .5s;
}
.servicios ul li:nth-child(3) p {
  transition-delay: .6s;
}
.servicios ul h3 {
  color: #2e2740;
  font-size: 22px;
  font-weight: bold;
  opacity: 0;
  transform: translateX(0px) translateY(50px);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
}
.servicios ul p {
  font-size: 17px;
  color: #666666;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(0px) translateY(50px);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
}
.servicios ul .button,
.servicios ul .button:hover {
  padding: 10px 50px;
  opacity: 0;
  transition: all .3s ease-out;
  background: #f15b59;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.servicios ul a {
  transition: all .3s ease-out;
  display: block;
}
.servicios ul a:hover,
.servicios ul a:focus {
  transform: translateY(-50px);
}
.servicios ul a:hover .button,
.servicios ul a:focus .button {
  opacity: 1;
}
.servicios .button {
  width: 175px;
  padding: 10px 30px;
}
.asistencia {
  height: 510px;
  position: relative;
  background: #f8f8f9;
}
.asistencia .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 50%;
  left: 50%;
  background-position: center;
  background-size: cover;
}
.asistencia .columns {
  max-width: 380px;
}
.asistencia .row,
.asistencia .columns {
  height: 100%;
}
.asistencia h4 {
  color: #f15b59;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateX(-50px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
}
.asistencia h2 {
  color: #2e2741;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-50px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .1s;
}
.asistencia p {
  font-size: 17px;
  color: #666666;
  margin-bottom: 45px;
  opacity: 0;
  transform: translateX(-50px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .2s;
}
.asistencia .buttonout {
  opacity: 0;
  transform: translateX(-50px) translateY(0);
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .3s;
}
.asistencia .button {
  width: 175px;
  padding: 10px 30px;
}
.asistencia.in h4,
.asistencia.in h2,
.asistencia.in p,
.asistencia.in .buttonout {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
footer {
  background: #f15b59 url(img/footer.png) no-repeat center bottom;
  padding: 75px 0 170px;
}
footer .at {
  font-size: 14px;
  text-transform: uppercase;
  color: #000000;
  font-family: 'Asap', sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 27px;
}
footer .at strong {
  display: block;
  color: #fff;
  font-size: 32px;
}
footer .loc {
  font-size: 14px;
  color: #fff;
  padding-left: 17px;
  position: relative;
}
footer .loc i {
  position: absolute;
  top: 3px;
  left: 0;
}
footer a.footerlogo {
  background: url(img/footerlogo.svg) no-repeat;
  width: 56px;
  background-size: 100% auto;
  height: 50px;
  margin: 0 auto;
  display: block;
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
footer a.footerlogo:hover,
footer a.footerlogo:focus {
  transform: translateY(-10px);
}
footer .social {
  margin-bottom: 65px;
}
footer .social .lab {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding-top: 5px;
  vertical-align: top;
  padding-right: 5px;
}
footer .social a {
  display: inline-block;
  background: #fff;
  color: #f15b59;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  text-align: center;
  font-size: 20px;
  padding-top: 0px;
  vertical-align: top;
  margin-left: 10px;
  border: 2px solid #fff;
  transition: all .3s ease-out;
}
footer .social a:hover,
footer .social a:focus {
  color: #fff;
  background: transparent;
}
footer .capi {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
footer .capi:hover,
footer .capi:focus {
  text-decoration: underline;
}
.reveal-modal-bg {
  background: none;
}
.reveal-modal {
  max-width: 1200px;
  padding: 40px 20px;
  box-shadow: none;
  border: none;
  box-shadow: 0 0 0 1000px #fff;
}
.reveal-modal:focus {
  outline: none;
}
.reveal-modal#contacto:before {
  width: 289px;
  height: 289px;
  background: url(img/contactobg.png) no-repeat;
  position: absolute;
  top: -30px;
  left: -100px;
  content: '';
  display: block;
}
.reveal-modal#localidades:before {
  width: 299px;
  height: 419px;
  background: url(img/loc.png) no-repeat;
  position: absolute;
  top: -30px;
  left: -100px;
  content: '';
  display: block;
}
.reveal-modal .close-reveal-modal.button {
  color: #fff;
  font-size: 14px;
  padding: 6px 25px;
  height: 30px;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  background: url(img/close.png);
}
.reveal-modal .close-reveal-modal.button:hover,
.reveal-modal .close-reveal-modal.button:focus {
  color: #f15b59;
}
.reveal-modal form .row {
  margin: 0 -16px;
}
.reveal-modal form .row .columns {
  padding: 0 8px;
}
.reveal-modal h4 {
  color: #f15b59;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.reveal-modal h2 {
  color: #2e2741;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 50px;
}
.reveal-modal h3 {
  color: #4f3996;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.reveal-modal ul ul {
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}
.reveal-modal ul ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.reveal-modal ul ul li {
  font-size: 16px;
  color: #666666;
  position: relative;
  padding-left: 15px;
  padding-bottom: 3px;
}
.reveal-modal ul ul li:before {
  content: "\f041";
  font: normal normal normal 14px/1 FontAwesome;
  color: #f15b59;
  position: absolute;
  top: 5px;
  left: 0;
}
.reveal-modal .at {
  font-size: 14px;
  text-transform: uppercase;
  color: #000000;
  font-family: 'Asap', sans-serif;
  font-weight: bold;
  line-height: 1.2;
  display: inline-block;
  max-width: 200px;
  vertical-align: top;
  margin-bottom: 30px;
}
.reveal-modal .at strong {
  display: block;
  color: #f15b59;
  font-size: 28px;
}
.reveal-modal .loc {
  font-size: 16px;
  color: #666666;
  padding-left: 25px;
  position: relative;
  display: inline-block;
  max-width: 250px;
  vertical-align: top;
  margin: 15px 0 15px 0px;
  line-height: 1.3;
}
.reveal-modal .loc i {
  position: absolute;
  top: 3px;
  left: 0;
  color: #f15b59;
}
.reveal-modal .loc a {
  color: #666;
  transition: all .3s ease-out;
}
.reveal-modal .loc a:hover,
.reveal-modal .loc a:focus {
  color: #f15b59;
}
.reveal-modal .bottomcol {
  margin-top: 40px;
}
.reveal-modal label {
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  transform: translateY(28px);
  transition: all .3s ease-out;
}
.reveal-modal .labin label {
  transform: translateY(0px);
  font-family: 'Asap', sans-serif;
}
.reveal-modal input,
.reveal-modal textarea {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid #666666;
  font-size: 16px;
  background: none;
  font-family: 'Asap', sans-serif;
  padding: 7px 0;
}
.reveal-modal input:focus,
.reveal-modal textarea:focus {
  border-bottom: 1px solid #4f3996;
  color: #4f3996;
  background: none;
}
.reveal-modal textarea {
  margin-bottom: 40px;
}
.reveal-modal select {
  box-shadow: none;
  border: none;
  background: url(img/select.png) no-repeat right;
  border-bottom: 1px solid #f15b59;
  font-size: 20px;
  color: #f15b59;
  font-family: 'Asap', sans-serif;
}
.reveal-modal select:focus {
  outline: none;
}
.reveal-modal .close-reveal-modal {
  width: 60px;
  height: 60px;
  border: 2px solid #4f3996;
  color: #4f3996;
  border-radius: 100%;
  padding-top: 2px;
  text-align: center;
  top: -50px;
  transition: all .3s ease-out;
  background: url(img/close.png);
}
.reveal-modal .close-reveal-modal path {
  transition: all .3s ease-out;
}
.reveal-modal .close-reveal-modal:hover,
.reveal-modal .close-reveal-modal:focus {
  background: #4f3996;
  color: #fff;
}
.reveal-modal .close-reveal-modal:hover path,
.reveal-modal .close-reveal-modal:focus path {
  fill: #fff;
}
.pageheader {
  height: 360px;
  background: #4f3996;
  position: relative;
}
.pageheader .bg1,
.pageheader .bg2,
.pageheader .bg3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background: url(img/s01.png) no-repeat center;
  transition: all 3s cubic-bezier(0.165,0.840,0.440,1.000);
  opacity: 0;
  transform: translateX(-250px) translateY(0);
}
.pageheader .bg2 {
  background: url(img/s02.png) no-repeat center;
  transition: all 2.5s cubic-bezier(0.165,0.840,0.440,1.000);
  opacity: 0;
  transform: translateX(-150px) translateY(0);
}
.pageheader .bg3 {
  background: url(img/s03.png) no-repeat center;
  transition: all 2s cubic-bezier(0.165,0.840,0.440,1.000);
  opacity: 0;
  transform: translateX(-100px) translateY(0);
}
.pageheader .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pageheader h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-20px) translateY(0);
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.pageheader h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  line-height: 100%;
  opacity: 0;
  transform: translateX(-20px) translateY(0);
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: .2s;
}
.pageheader .ico {
  width: 86px;
  float: left;
  margin-right: 20px;
  text-align: center;
  opacity: 0;
  transform: translateX(-20px) translateY(0);
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.bodyin .pageheader .bg1,
.bodyin .pageheader .bg2,
.bodyin .pageheader .bg3,
.bodyin .pageheader h4,
.bodyin .pageheader .ico,
.bodyin .pageheader h2 {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.serviciointro {
  position: relative;
  padding: 70px 0 0;
  height: 420px;
}
.serviciointro.in .img {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
  box-shadow: 40px 40px 0 #f15b59;
}
.serviciointro.in h3,
.serviciointro.in p {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.serviciointro.acerca {
  min-height: 600px;
}
.serviciointro.acerca .img {
  height: 540px;
  background-size: auto 100%;
  background-position: left;
  background-repeat: no-repeat;
  top: -120px;
  width: 60%;
  box-shadow: none;
}
.serviciointro.acerca .img img {
  position: absolute;
  top: -100px;
  left: 180px;
}
.serviciointro.acerca.in .img {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.serviciointro .img {
  position: absolute;
  width: 40%;
  height: 100%;
  background-position: center;
  background-size: cover;
  left: 50%;
  top: -75px;
  box-shadow: 40px 40px 0 #f15b59;
  box-shadow: 0px 0px 0 #f15b59;
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  opacity: 0;
  transform: translateX(100px) translateY(0);
}
.serviciointro h3 {
  font-size: 32px;
  color: #4f3996;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
  opacity: 0;
  transform: translateX(-50px) translateY(0);
}
.serviciointro p {
  font-size: 16px;
  color: #505050;
  line-height: 25px;
  margin-bottom: 40px;
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
  opacity: 0;
  transform: translateX(-50px) translateY(0);
  transition-delay: .1s;
  max-width: 450px;
}
.serviciointro p a {
  color: #f15b59;
  text-decoration: underline;
  transition: all .3s ease-out;
}
.serviciointro p a:hover,
.serviciointro p a:focus {
  color: #4f3996;
}
.planesservicio {
  margin: 110px 0 100px;
}
.planesservicio ul.medium-block-grid-3 {
  margin: 0 -5px 60px;
}
.planesservicio ul.medium-block-grid-3 >li {
  padding: 0 5px;
  opacity: 0;
  transform: translateX(0) translateY(50px);
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.planesservicio ul.medium-block-grid-3 >li:nth-child(2) {
  transition-delay: .1s;
}
.planesservicio ul.medium-block-grid-3 >li:nth-child(3) {
  transition-delay: .2s;
}
.planesservicio.in ul.medium-block-grid-3>li {
  opacity: 1;
  transform: translateX(0px) translateY(0px);
}
.planesservicio li {
  position: relative;
}
.planesservicio li:hover {
  z-index: 1;
}
.planesservicio li a {
  display: block;
  border-top: 5px solid transparent;
  background: #fff;
  padding: 25px 40px 40px;
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.planesservicio li a:hover,
.planesservicio li a:focus {
  box-shadow: 0 10px 60px rgba(0,0,0,0.08);
  border-top: 5px solid #f15b59;
  transform: translateY(-40px);
}
.planesservicio li a:hover .button,
.planesservicio li a:focus .button {
  background: #f15b59;
  color: #fff;
}
.planesservicio li a h2 {
  font-size: 22px;
  color: #1c1c1c;
  font-weight: 600;
  margin: 0;
}
.planesservicio li a .vel {
  color: #f15b59;
  font-size: 26px;
  font-weight: 600;
  float: right;
  margin-top: -40px;
  font-family: 'Asap', sans-serif;
}
.planesservicio li a .vel span {
  font-size: 16px;
}
.planesservicio li a .dl {
  margin-top: 25px;
  background: url(img/dl.svg) no-repeat left;
  background-size: 26px auto;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 600;
  padding: 20px 0 23px 40px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
.planesservicio li a .ul {
  background: url(img/ul.svg) no-repeat left;
  background-size: 26px auto;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 600;
  padding: 23px 0 20px 40px;
  display: block;
}

.planesservicio li a .pr {
  background: url(img/pr.png) no-repeat left;
  background-size: 26px auto;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 600;
  padding: 23px 0 20px 40px;
  display: block;
}

.planesservicio li a ul {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
.planesservicio li a ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.planesservicio li a ul li {
  padding: 9px 10px 9px 0;
  background: url(img/bullet.jpg) no-repeat right 20px;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  border-bottom: 1px solid #eee;
}
.planesservicio li a ul li strong {
  color: #07b77b;
}
.planesservicio li a .precio {
  display: block;
  color: #4f3996;
  font-family: 'Asap', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  margin: 25px auto 15px;
  max-width: 150px;
}
.planesservicio li a .precio strong {
  font-size: 32px;
  display: inline-block;
  vertical-align: top;
}
.planesservicio li a .precio span {
  display: inline-block;
  vertical-align: top;
  margin-top: 15px;
  margin-right: 5px;
}
.planesservicio li a .text-center {
  display: block;
}
.planesservicio li a ul+.text-center {
  margin-top: 50px;
}
.planesservicio p {
  font-size: 16px;
}
.planesservicio p a {
  color: #f15b59;
  font-weight: bold;
  text-decoration: underline;
  transition: all .3s ease-out;
}
.planesservicio p a:hover,
.planesservicio p a:focus {
  color: #4f3996;
}
.cobertura2 {
  height: 675px;
  position: relative;
  overflow: hidden;
}
.cobertura2.in .textin {
  opacity: 1;
  transform: translateY(-50%) translateX(0px);
}
.cobertura2 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  height: 110%;
}
.cobertura2 .textin {
  position: absolute;
  max-width: 825px;
  right: 50%;
  margin-right: -580px;
  background: #4f3996;
  top: 50%;
  transform: translateY(-50%);
  padding: 80px 60px 80px 90px;
  opacity: 0;
  transform: translateY(-50%) translateX(50px);
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.cobertura2 .textin h2 {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.1;
}
.cobertura2 .textin p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 45px;
  line-height: 1.6;
}
.cobertura2 .textin ul {
  margin: 0;
  padding: 0;
}
.cobertura2 .textin ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cobertura2 .textin ul li {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-left: 15px;
  padding-bottom: 5px;
}
.cobertura2 .textin ul li:before {
  content: "\f041";
  font: normal normal normal 14px/1 FontAwesome;
  color: #f15b59;
  position: absolute;
  top: 5px;
  left: 0;
}
.mastec {
  padding: 100px 0 60px;
}
.mastec h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #f15b59;
  font-weight: bold;
}
.mastec h2 {
  color: #2e2740;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}
.mastec p {
  font-size: 16px;
  color: #505050;
}
.mastec ul li {
  text-align: center;
  position: relative;
}
.mastec ul li:first-child:after {
  width: 1px;
  background: #eeeeee;
  height: 210px;
  position: absolute;
  top: 0;
  right: -10px;
  content: '';
  display: block;
}
.mastec ul li figure {
  height: 140px;
  margin-bottom: 30px;
}
.mastec ul li a {
  display: block;
}
.mastec ul li a h3 {
  color: #2e2740;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.mastec ul li a .button {
  opacity: 0;
  background: #f15b59;
  color: #fff;
  transform: translateY(20px);
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.mastec ul li a:hover .button,
.mastec ul li a:focus .button {
  opacity: 1;
  transform: translateY(0px);
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.historia {
  padding: 2px 0;
}
.historia li {
  margin-bottom: 60px;
}
.historia strong {
  font-size: 18px;
  color: #f15b59;
  display: block;
  margin-bottom: 10px;
}
.historia h3 {
  font-size: 16px;
  color: #0d0d0d;
  text-transform: uppercase;
  font-weight: bold;
  height: 60px;
}
.historia p {
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (min-width: 1690px) {
  .pageheader .bg1,
  .pageheader .bg2,
  .pageheader .bg3 {
    background-size: 100% auto;
  }
}
@media only screen and (max-width: 1100px) {
  header .head nav {
    right: 10px;
  }
  .asistencia .columns {
    padding-left: 60px;
    max-width: 420px;
  }
  .hero .bx-pager {
    left: 40px;
    margin-left: 0;
  }
  .hero .columns {
    padding-left: 40px;
  }
  .cobertura2 .textin {
    right: 20px;
    margin: 0;
  }
}
@media only screen and (max-width: 900px) {
  header .head nav ul li {
    padding: 0 7px;
  }
  header .head nav ul li.contacto {
    padding-left: 10px;
  }
  header .head nav ul li.contacto a.button {
    padding: 10px 30px;
  }
  .hero {
    height: 600px;
  }
  .hero h2 {
    font-size: 40px;
  }
  .hero .figure {
    background-size: auto 100%;
  }
  .hero .text {
    padding-bottom: 100px;
  }
  .planes h2 {
    font-size: 20px;
  }
  .cobertura {
    height: 600px;
  }
  .cobertura .columns {
    margin-right: 0;
    padding-left: 40px;
  }
  .servicios ul {
    margin-top: 80px;
  }
  .asistencia .columns {
    padding-left: 40px;
  }
  footer .at strong {
    font-size: 30px;
  }
  .serviciointro {
    padding: 50px 0 0;
  }
  .serviciointro .img {
    background-position: 70%;
  }
  .planesservicio li a {
    padding: 15px;
  }
  .cobertura2 .textin {
    padding: 40px;
    max-width: 400px;
  }
  .serviciointro.acerca {
    min-height: 500px;
  }
  .serviciointro.acerca .img img {
    left: 70px;
  }
}
@media only screen and (max-width: 760px) {
  .planes h2 {
    font-size: 16px;
  }
  footer .at strong {
    font-size: 25px;
  }
  header .mobilemenu {
    width: 32px;
    height: 32px;
    display: block;
    top: 65px;
    right: 20px;
    z-index: 1501;
    position: absolute;
    padding: 0 5px;
    padding-top: 8px;
    transition: all .1s ease-out;
  }
  header .mobilemenu span {
    display: block;
    height: 2px;
    background: #f15b59;
    margin-bottom: 5px;
    transform-origin: 50% 50%;
    transition: all .5s ease-out;
  }
  .menuopen header .mobilemenu span:nth-child(1) {
    transform: rotate(45deg) translateX(5px) translateY(5px);
  }
  .menuopen header .mobilemenu span:nth-child(2) {
    transform: rotate(-45deg) translateX(0px) translateY(0px);
  }
  .menuopen header .mobilemenu span:nth-child(3) {
    opacity: 0;
  }
  .menuopen header .mobilemenu span {
    background: #fff;
  }
  header .head nav {
    height: 100%;
    overflow-y: auto;
    left: 0;
    transform: translate3d(-100%,0,0);
    right: auto;
    width: 50%;
    background: #4f3996;
    position: fixed;
    overflow-x: hidden;
    transition: all .5s ease-out;
    z-index: 1500;
    top: 0 !important;
    padding: 30px 0;
    box-shadow: 0 0 0 1000px rgba(0,0,0,0);
    z-index: 10;
  }
  .menuopen header .head nav {
    transform: translate3d(0%,0,0);
    box-shadow: 0 0 0 1000px rgba(0,0,0,0.8);
  }
  header .head nav ul {
    float: none;
  }
  header .head nav ul li {
    float: none;
    padding: 0 20px;
    display: block;
    margin-bottom: 10px;
    height: auto !important;
  }
  header .head nav ul li a,
  header .head nav ul li span {
    padding: 10px 10px;
    line-height: 130% !important;
    color: #fff;
    height: auto !important;
    display: block;
  }
  header .head nav ul li a:hover,
  header .head nav ul li a:focus,
  header .head nav ul li span:hover,
  header .head nav ul li span:focus {
    color: #fff;
  }
  header .head nav ul li.contacto {
    margin-top: 20px;
  }
  header .head nav ul li ul {
    position: relative;
    background: none;
    top: auto;
    left: auto;
    padding-top: 5px;
  }
  header .head nav ul li ul li {
    height: auto;
    white-space: normal;
  }
  header .head nav ul li ul li a {
    padding: 7px 0;
    text-transform: none;
  }
}
@media only screen and (max-width: 640px) {
  header .head nav {
    width: 75%;
  }
  .hero {
    height: 300px;
    margin-bottom: 50px;
  }
  .hero li .bg1,
  .hero li .bg2,
  .hero li .bg3,
  .hero li .bg4 {
    background-size: auto 100%;
  }
  .hero .columns {
    padding-left: 20px;
  }
  .hero h2 {
    font-size: 28px;
    max-width: 250px;
  }
  .hero h3 {
    font-size: 22px;
  }
  .hero .text {
    padding-bottom: 0;
  }
  .hero .bx-pager {
    top: 315px;
    width: 100%;
    left: 0;
    text-align: center;
  }
  .hero .bx-pager .bx-pager-item {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
  .planes {
    margin: 0;
  }
  .planes ul li {
    width: 100%;
    border: none;
  }
  .planes ul li a {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .cobertura,
  .asistencia {
    height: auto;
    padding-top: 0;
  }
  .cobertura .bg,
  .asistencia .bg {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    margin-bottom: 30px;
    left: 0;
  }
  .cobertura .columns,
  .asistencia .columns {
    height: auto;
  }
  .cobertura h2,
  .asistencia h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .cobertura p,
  .asistencia p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .servicios {
    padding: 50px 0 30px;
  }
  .servicios h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .servicios p {
    font-size: 15px;
  }
  .servicios ul {
    margin-top: 40px;
  }
  .servicios li .button {
    display: none;
  }
  .asistencia {
    padding-bottom: 30px;
  }
  .asistencia .columns {
    padding: 0 20px;
  }
  footer {
    padding: 40px 0 40px;
  }
  footer a.footerlogo {
    display: none;
  }
  footer .social {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0;
    float: left;
    padding-left: 10px;
  }
  footer .social .lab {
    display: none;
  }
  footer .capi {
    margin-top: 30px;
    float: right;
  }
  .pageheader {
    height: 200px;
  }
  .pageheader h2 {
    font-size: 30px;
  }
  .pageheader .ico {
    width: 70px;
  }
  .serviciointro {
    padding: 0;
  }
  .serviciointro .img {
    background-position: center;
    position: relative;
    left: auto;
    padding-bottom: 50%;
    box-shadow: none !important;
    width: 100%;
    top: auto;
    margin-bottom: 40px;
  }
  .planesservicio {
    margin: 40px 0 40px;
  }
  .planesservicio ul.medium-block-grid-3 {
    margin-bottom: 0px;
  }
  .planesservicio ul.medium-block-grid-3 >li {
    width: 100%;
    margin-bottom: 40px;
  }
  .cobertura2 {
    height: auto;
  }
  .cobertura2 .bg {
    position: relative;
    height: auto;
    padding-bottom: 30%;
  }
  .cobertura2 .textin {
    position: relative;
    max-width: 100%;
    padding: 40px 20px;
    top: auto;
    right: auto;
    transform: none !important;
  }
  .cobertura2 .textin h2 {
    font-size: 28px;
  }
  .cobertura2 .textin p {
    margin-bottom: 20px;
  }
  .mastec {
    padding: 50px 0 0;
  }
  .mastec h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .mastec ul {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .mastec ul li:first-child:after {
    display: none;
  }
  .mastec ul li {
    width: 100%;
  }
  .mastec ul li figure {
    margin-bottom: 10px;
  }
  .serviciointro.acerca {
    min-height: 0px;
  }
  .serviciointro.acerca .img {
    left: 0;
    width: 100%;
    top: 0;
    background: #f15b59 !important;
    height: auto;
    padding-bottom: 30%;
  }
  .serviciointro.acerca .img img {
    left: 70px;
    max-width: 60%;
    left: 40%;
    top: auto;
    bottom: -10%;
    transform: none !important;
  }
  .historia {
    padding: 50px 0;
  }
}
