@charset "UTF-8";
/*VARIABLES PARA TODO EL SITIO*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,500;0,700;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap");
/*ANIMATION*/
@keyframes rotation {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}

@keyframes rotationInverted {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-webkit-keyframes conveying {
  from {
    -webkit-transform: translatex(-850px);
            transform: translatex(-850px);
  }
  to {
    -webkit-transform: translatex(100vw);
            transform: translatex(100vw);
  }
}

@keyframes conveying {
  from {
    -webkit-transform: translatex(-850px);
            transform: translatex(-850px);
  }
  to {
    -webkit-transform: translatex(100vw);
            transform: translatex(100vw);
  }
}

.transition {
  pointer-events: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background-color: #ffffff;
  text-align: center;
  color: #1b1b1b;
  background-color: #fff;
}

.transition-1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  opacity: 0;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-name: opacityBg;
          animation-name: opacityBg;
}

.transition-1.is-active {
  opacity: 1;
  pointer-events: all;
}

@-webkit-keyframes opacityBg {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes opacityBg {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.transition-2 {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  bottom: 0;
  z-index: 101;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.transition-2.is-active {
  left: 0px;
}

.transition-3 {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 101;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.transition-3.is-active {
  top: 0px;
}

/************************
MIXIN
************************/
/* MENU */
/******************************
ESTILOS PARA COMPONENTES
******************************/
.btn {
  border-radius: 10px;
  padding: 15px 50px;
  background-color: transparent;
  border: 1px solid #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.btn.primary-btn {
  background-color: #1072BA;
  border: 1px solid #0a518e;
}

.btn-link {
  font-size: 14px;
  border: none;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}

.btn-link span {
  font-weight: 700;
  vertical-align: middle;
  color: #2d2d2d;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a518e), to(#2AAAE2)), -webkit-gradient(linear, left top, right top, from(transparent), to(transparent));
  background-image: linear-gradient(90deg, #0a518e, #2AAAE2), linear-gradient(90deg, transparent, transparent);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position-x: -200px,0;
  background-position-y: 100%;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.btn-link ion-icon {
  vertical-align: middle;
  margin-bottom: 1px;
  font-size: 18px;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.btn-link:hover ion-icon {
  margin-left: 4px;
  color: #0a518e;
}

.btn-link:hover span {
  color: #0a518e;
  font-weight: 700;
  background-image: -webkit-gradient(linear, left top, right top, from(#2AAAE2), to(#0a518e)), -webkit-gradient(linear, left top, right top, from(transparent), to(transparent));
  background-image: linear-gradient(90deg, #2AAAE2, #0a518e), linear-gradient(90deg, transparent, transparent);
  background-position-x: 100%, 0;
}

.button {
  font-size: 1rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border: 1px solid #143dd5;
  padding: 10px 25px;
  color: #143dd5;
  border-radius: 5px;
  background: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#143dd5), to(#143dd5));
  background-image: linear-gradient(#143dd5, #143dd5);
  background-position: 0px 50px;
  background-repeat: no-repeat;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  /*span:first-child {
    margin-right: 10px;
    font-size: 1.2rem;
  }*/
}

.button:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#143dd5), to(#143dd5));
  background-image: linear-gradient(#143dd5, #143dd5);
  background-position: 100% 100%;
  color: #ffffff;
  cursor: pointer;
  border-color: #0b2278;
  -webkit-box-shadow: 0 0 20px #3058ec;
          box-shadow: 0 0 20px #3058ec;
}

.button .icon-arrow-right::before {
  content: "\27B8";
  font-size: 1.2rem;
  margin-right: 10px;
}

#backToTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #143dd5;
  -webkit-box-shadow: 0 0 5px #333;
          box-shadow: 0 0 5px #333;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  -webkit-transition: background-color .3s,  opacity .5s, visibility .5s;
  transition: background-color .3s,  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: 0;
}

#backToTop:hover {
  cursor: pointer;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/****************************/
/* || Iconos */
/****************************/
/* || Contenedor */
.icon-svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-svg svg {
  /* || Tamaño */
  /* || Color */
  /* || Tipo */
}

.icon-svg svg.size-s {
  width: 1rem;
  height: 1rem;
}

.icon-svg svg.size-m {
  width: 1.2rem;
  height: 1.2rem;
}

.icon-svg svg.color-primary {
  fill: #143dd5;
}

.icon-svg svg.color-white {
  fill: #fff;
}

.icon-svg svg.color-grey {
  fill: #666;
}

.icon-svg svg.arrow--top {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  fill: #fff;
}

.icon-svg svg.arrow-chevron--right {
  fill: #143dd5;
}

.divisor-up {
  width: 100%;
  border-top: 1px solid #ccc;
}

.divisor-up .btn-link {
  padding: 20px 0 10px 0;
  display: block;
}

.margin-top {
  margin-top: 300px;
}

@media only screen and (max-width: 1366px) {
  .margin-top {
    margin-top: 180px;
  }
}

.margin-top-more {
  margin-top: 300px;
}

@media only screen and (max-width: 1366px) {
  .margin-top-more {
    margin-top: 280px;
  }
}

.margin-top-less {
  margin-top: 140px;
}

@media only screen and (max-width: 1366px) {
  .margin-top-less {
    margin-top: 100px;
  }
}

/* || Estructura Flex */
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-md-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 640px) {
  .flex-md-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-md-items-center {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 640px) {
  .align-md-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.align-middle {
  vertical-align: middle;
}

.align-text-top {
  vertical-align: text-top;
}

.mr-1 {
  margin-right: calc(1rem/3);
}

.mr-2 {
  margin-right: calc(1rem/2);
}

.mr-3 {
  margin-right: 1rem;
}

/*ANIMATION*/
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@-webkit-keyframes rotationInverted {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes rotationInverted {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

.loader {
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: #143dd5;
  border-top-color: #143dd5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 20vmin;
  left: calc(50% - 10vmin);
  position: fixed;
  top: calc(50% - 10vmin);
  width: 20vmin;
  z-index: 1;
}

.loader:before {
  -webkit-animation: spin 2s infinite linear;
          animation: spin 2s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: #ea113a;
  border-top-color: #ea113a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  height: 16vmin;
  left: 0;
  position: absolute;
  top: 0;
  width: 16vmin;
}

.loader:after {
  -webkit-animation: spin 3s infinite linear;
          animation: spin 3s infinite linear;
  border: solid 2vmin transparent;
  border-radius: 50%;
  border-right-color: #ffc600;
  border-top-color: #ffc600;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  height: 12vmin;
  left: 2vmin;
  position: absolute;
  top: 2vmin;
  width: 12vmin;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* || Formulario */
.form-content {
  margin-right: 7%;
}

.form-content label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 5px;
}

.form-content input, .form-content textarea {
  border: 0 solid #ccc;
  width: 100%;
  padding: 7px 15px;
  border-bottom: 1px solid #ccc;
  margin-top: 2px;
  margin-bottom: 20px;
  color: #999;
  background-color: #f1f1f1;
}

.form-content input[placeholder], .form-content textarea[placeholder] {
  color: #143dd5;
}

.form-content textarea {
  min-height: 100px;
}

.mobile-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-only .button {
  margin: 20px auto 10px;
  width: 100%;
  text-align: center;
}

.hide-mobile {
  display: none;
}

.column-fixed {
  padding: 0;
}

.column-fixed header {
  padding: 1rem;
}

.column-fixed header .logo a img {
  width: 75%;
}

.column-fixed header .float-title {
  margin-left: 0;
  padding-top: 40px;
  float: none;
  border-top: 1px solid #ccc;
}

.column-fixed header .float-title h1 {
  width: 100%;
  font-size: 2.5rem !important;
  line-height: 3rem !important;
}

.column-fixed header .float-title h1.active {
  width: 100%;
  font-size: 2.5rem !important;
  line-height: 3rem !important;
}

.column-fixed header .page-description {
  margin-top: 1rem;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
}

.column-fixed .nav-wrapper {
  display: none;
}

.column-fixed footer {
  display: none;
}

.main-content .fixed-row {
  display: none;
}

.main-content .column {
  padding: 0;
}

.main-content .column.hide-mobile {
  display: none;
}

.navbar.mobile-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
}

/* || Menú */
/*Cuando se activa el menu el body esta sin scroll*/
.no-scroll {
  overflow: hidden;
}

.navbar {
  position: fixed;
  /* Browser not support 'sticky' */
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

@media only screen and (max-width: 1024px) {
  .navbar {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}

.navbar .nav-menu {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  z-index: 999;
  margin: 0;
  text-align: right;
  padding: 0 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: transparent;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar .nav-menu.active {
  /* Hamburguer Menu  ACTIVED */
  right: 0;
  background-color: #fffffff7;
}

.navbar .nav-menu .nav-item {
  padding: 0;
  width: 100%;
}

.navbar .nav-menu .nav-item a {
  display: block;
  color: #1f1f1f;
  font-size: 2.5rem;
  padding: .6rem;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all ease-in 0.5s;
  transition: all ease-in 0.5s;
}

.navbar .nav-menu .nav-item a:hover {
  color: #143dd5;
}

.navbar .nav-menu .nav-item a.active {
  text-decoration: line-through;
  letter-spacing: 5px;
  color: #143dd5;
  cursor: default;
}

.navbar .nav-menu .nav-item:first-of-type {
  margin-top: 1.75rem;
}

.navbar .nav-menu .nav-item:last-of-type {
  margin-bottom: 1.75rem;
}

.navbar .nav-menu ul {
  width: 100%;
  text-align: center;
  border-top: 1px solid #143dd5;
}

.navbar .nav-menu ul li {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #143dd5;
}

.navbar .nav-menu ul li a {
  text-decoration: none;
  margin-top: 1rem;
  color: #1f1f1f;
}

.navbar .nav-menu ul li .button {
  color: #143dd5;
}

.navbar .nav-menu ul li .button:hover {
  color: #fff;
}

.hamburger {
  display: block;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 2rem 1.5rem;
}

.hamburger.active .bar {
  background-color: #1f1f1f;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

.hamburger .bar {
  display: block;
  width: 35px;
  height: 5px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #2d2d2d;
  border-radius: 2px;
}

.margin-top {
  margin-top: 1.5rem;
}

.margin-top-more {
  margin-top: 1.5rem;
}

.margin-top-less {
  margin-top: 1.5rem;
}

.about-us-page .page-description {
  display: none !important;
}

.contact-page .page-description {
  display: none !important;
}

.contact-page .margin-top-less {
  margin-top: 1rem;
}

.contact-page .form-content {
  margin: 0;
}

.contact-page .footer-web {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

.column {
  padding: 0;
}

.column .paragraph {
  margin-top: 1.5rem;
}

.column.map {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 2rem 0;
}
/*# sourceMappingURL=styles-mobile.css.map */