@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;
}

/*******************
RESET
******************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  line-height: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Roboto", sans-serif;
  color: #2d2d2d;
  margin: 0;
  padding: 0;
}

header, main {
  width: 100%;
}

::-moz-selection {
  background-color: #0D659B;
  color: #ffffff;
}

::selection {
  background-color: #0D659B;
  color: #ffffff;
}

/************************
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 ::-webkit-input-placeholder {
  color: rgba(45, 45, 45, 0.3);
}
.form-content :-ms-input-placeholder {
  color: rgba(45, 45, 45, 0.3);
}
.form-content ::-ms-input-placeholder {
  color: rgba(45, 45, 45, 0.3);
}
.form-content ::placeholder {
  color: rgba(45, 45, 45, 0.3);
}

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

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

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

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

.alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.alert--success {
  background-color: rgba(17, 234, 100, 0.4);
  color: #0eba50;
  border-color: #0eba50;
}

.alert--danger {
  background-color: rgba(212, 41, 72, 0.4);
  color: #a92139;
  border-color: #a92139;
}

/* MENU */
.column-fixed {
  position: fixed;
  height: 100%;
  width: 30vw;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

@media only screen and (max-width: 1366px) {
  .column-fixed {
    width: 35vw;
  }
}

@media only screen and (max-width: 420px) {
  .column-fixed {
    width: 100%;
    position: relative;
  }
}

.column-fixed .logo {
  width: 300px;
  margin-bottom: 10px;
}

.column-fixed .logo a {
  display: block;
}

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

@media only screen and (max-width: 1366px) {
  .column-fixed .logo {
    width: 250px;
    margin-bottom: 0;
  }
}

.column-fixed header .float-title {
  position: relative;
  float: left;
  margin: 10px 0;
  z-index: 1;
  margin-left: 7%;
}

@media only screen and (max-width: 1366px) {
  .column-fixed header .float-title {
    margin-top: 20px;
  }
}

.column-fixed header .float-title h1 {
  width: 100%;
  min-width: 30vw;
  font-size: 2.6rem;
  line-height: 3.2rem;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  background-color: transparent;
  padding-right: 20px;
  padding-top: 10px;
  margin: 0;
  margin-bottom: 0;
  vertical-align: middle;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.column-fixed header .float-title h1.active {
  width: 1200px;
  font-size: 5rem;
  line-height: 5.5rem;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1440px) {
  .column-fixed header .float-title h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    padding: 0;
  }
  .column-fixed header .float-title h1.active {
    width: 800px;
    font-size: 4rem;
    line-height: 4.5rem;
  }
}

@media only screen and (max-width: 1280px) {
  .column-fixed header .float-title h1.active {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}

@media only screen and (max-width: 640px) {
  .column-fixed header .float-title h1 {
    width: 100%;
    font-size: 3rem;
    line-height: 3.2rem;
  }
  .column-fixed header .float-title h1.active {
    width: 100%;
    font-size: 3rem;
    line-height: 3.2rem;
  }
}

.column-fixed header .float-title h1 span {
  color: #143dd5;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#143dd5), to(#143dd5));
  background-image: linear-gradient(#143dd5, #143dd5);
  background-size: 100% 2px;
  background-position: 0 90%;
  background-repeat: no-repeat;
}

.column-fixed header .page-description {
  padding: 0 10px 20px 7%;
  background-color: #fff;
  background-image: radial-gradient(#d8d8d8 20%, transparent 20%), radial-gradient(#d8d8d8 20%, transparent 20%);
  background-position: 0 0, 100px 100px;
  background-size: 10px 10px;
}

@media only screen and (max-width: 1440px) {
  .column-fixed header .page-description {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

.column-fixed header .page-description h2 {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: inline;
}

@media only screen and (max-width: 1440px) {
  .column-fixed header .page-description h2 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

.column-fixed header .page-description span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
}

.column-fixed .nav-wrapper .nav-content {
  margin-left: 7%;
}

.column-fixed .nav-wrapper .nav-content .come-back {
  display: block;
  margin-bottom: 10px;
  color: #2d2d2d;
  text-decoration: none;
  background-color: #fff;
  font-size: 0.8rem;
}

.column-fixed .nav-wrapper .nav-content .come-back:hover {
  color: #143dd5;
  text-decoration: underline;
}

.column-fixed .nav-wrapper .nav-content ul li:last-child {
  border-bottom: none;
}

.column-fixed .nav-wrapper .nav-content ul li a {
  display: block;
  font-size: 1.5rem;
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  color: #143dd5;
  text-decoration: none;
  padding: .5rem .5rem .5rem 0;
  background: transparent;
  background-image: linear-gradient(45deg, #143dd5, transparent);
  background-position: -250px 100%;
  background-repeat: no-repeat;
  background-size: 185px 1px;
}

.column-fixed .nav-wrapper .nav-content ul li a:not(:first-child) {
  margin-top: 10px;
}

.column-fixed .nav-wrapper .nav-content ul li a:hover {
  padding-left: 7px;
  color: #143dd5;
  background-image: linear-gradient(45deg, #143dd5, transparent);
  background-position: 0px 100%;
  background-repeat: no-repeat;
  background-size: 250px 1px;
}

.column-fixed .nav-wrapper .nav-content ul li a.active {
  pointer-events: none;
  opacity: .4;
}

.column-fixed .nav-wrapper p {
  font-size: 14px;
  font-weight: 21px;
}

.column-fixed .column-fixed-footer {
  border-top: 1px solid #999;
}

.column-fixed .column-fixed-footer address {
  font-variant: small-caps;
  color: #666;
  padding-top: 10px;
  font-weight: 100;
  margin-left: 7%;
  font-style: normal;
  font-weight: bold;
}

.column-fixed .column-fixed-footer address a {
  font-size: 1rem;
  margin-right: 10px;
  letter-spacing: 1px;
  color: #666;
  text-decoration: none;
  vertical-align: middle;
}

.column-fixed .column-fixed-footer address a:hover {
  text-decoration: underline;
  color: #143dd5;
}

.column-fixed .column-fixed-footer address a:hover::before {
  text-decoration: none;
}

/*|| Galeria de fotos*/
.photo-gallery-wrapper {
  padding: 1.5rem;
  margin: 0 auto;
}

.photo-gallery-wrapper__column {
  -webkit-column-count: 1;
          column-count: 1;
  list-style: none;
  font-size: 0;
  margin: 0;
  padding: 0;
  -webkit-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}

@media screen and (min-width: 768px) {
  .photo-gallery-wrapper__column {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-width: 200px;
            column-width: 200px;
    -webkit-column-gap: 18px;
            column-gap: 18px;
  }
}

@media screen and (min-width: 1920px) {
  .photo-gallery-wrapper__column {
    -webkit-column-count: 3;
            column-count: 3;
  }
}

.photo-gallery-wrapper__column li {
  margin-bottom: 18px;
  border-radius: 3px;
  display: inline-block;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .photo-gallery-wrapper {
    padding: 1.5rem 1rem;
  }
}

.img-wrapper {
  overflow: hidden;
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  position: relative;
  -webkit-filter: saturate(0.6);
          filter: saturate(0.6);
}

.img-wrapper img {
  width: 100%;
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.img-wrapper:hover {
  -webkit-filter: saturate(1);
          filter: saturate(1);
}

.img-wrapper:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.img-wrapper:hover .caption-wrapper {
  display: block;
  visibility: visible;
  height: 45px;
}

.img-wrapper .caption-wrapper {
  position: absolute;
  height: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #090909d6;
  visibility: hidden;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  color: #ffffff;
  font-size: .9rem;
}

.img-wrapper .caption-wrapper .caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.img-wrapper .caption-wrapper .caption span {
  font-weight: 400;
  letter-spacing: 1px;
}

.img-wrapper .caption-wrapper .client-logo {
  width: 80px;
}

.img-wrapper .caption-wrapper .client-logo img {
  width: 100%;
}

.main-content {
  padding-left: 30vw;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  min-height: 100vh;
  /* Create four equal columns that sits next to each other */
  /* Responsive layout - makes a two column-layout instead of four columns */
  /* Responsive layout - makes a two column-layout instead of four columns */
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
}

@media only screen and (max-width: 1366px) {
  .main-content {
    padding-left: 35vw;
  }
}

@media only screen and (max-width: 420px) {
  .main-content {
    padding-left: 0;
  }
}

.main-content .fixed-row {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  margin: 10px 0;
  height: 90px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.main-content .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 10px;
  max-width: 1200px;
}

.main-content .column {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.main-content .column img {
  vertical-align: middle;
}

@media screen and (max-width: 1366px) {
  .main-content .column {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 800px) {
  .main-content .column {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .main-content .column {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
}

.main-content .sub-title {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.paragraph {
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding-right: 10px;
  max-width: 768px;
  width: 100%;
}

@media only screen and (max-width: 1440px) {
  .paragraph {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

.paragraph.paragraph-top::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-bottom: 20px;
  background: #0611d6;
  background-image: -webkit-gradient(linear, left top, right top, from(#0611d6), color-stop(0%, #0009ff), color-stop(48%, red), color-stop(100%, #fff400), to(#00d4ff));
  background-image: linear-gradient(90deg, #0611d6 0%, #0009ff 0%, red 48%, #fff400 100%, #00d4ff 100%);
}

.paragraph:not(:first-child) {
  margin-top: 20px;
}

.footer-web {
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #143dd5;
  color: #ffffff;
  font-size: .8rem;
  margin-top: 2rem;
  z-index: 1;
}

.footer-web a {
  text-decoration: none;
}

.footer-web a:hover {
  text-decoration: underline;
}

.footer-web .footer-address-mail,
.footer-web .footer-copy-right {
  padding: .5rem 1rem;
}

@media only screen and (min-width: 640px) {
  .footer-web .footer-address-mail,
  .footer-web .footer-copy-right {
    padding: 0 1rem;
  }
}

.footer-web .footer-address-mail {
  padding: 1rem;
}

.footer-web .footer-address-mail a {
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.footer-web .about-developer {
  margin-top: 1rem;
  padding: .5rem 1rem;
  font-size: .7rem;
  letter-spacing: 1px;
  background-color: #02081b;
  color: #ffffff;
}

@media screen and (min-width: 640px) {
  .footer-web .about-developer {
    margin-top: 0;
    text-align: right;
  }
}

.footer-web .about-developer > a {
  color: #ffffff;
}

.me {
  width: 100%;
  background-color: #1b1b1b;
  text-align: left;
  padding: 10px 20px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 12px;
  font-family: "Share Tech Mono", monospace;
}

.me a {
  color: #999;
  text-decoration: none;
}

.me a:hover {
  text-decoration: underline;
}

/******************************
ESTILOS PARA PRUEBAS / BETA
******************************/
.coming-soon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 10%;
  height: 100vh;
}

.coming-soon .col-left {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 50%;
}

.coming-soon .col-left figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.coming-soon .col-left figure .group-animated .gear-svg.rotation {
  transform-box: fill-box;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: rotation 20s linear infinite;
  animation: rotation 20s linear infinite;
}

.coming-soon .col-left figure .group-animated .gear-svg.rotation-inverted {
  transform-box: fill-box;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: rotationInverted 20s linear infinite;
  animation: rotationInverted 20s linear infinite;
}

.coming-soon .col-right {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 50%;
}

.coming-soon .col-right img {
  width: 60%;
}

.coming-soon .col-right address {
  padding: 20px;
  font-style: normal;
}

.coming-soon .col-right address h3 {
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 10px;
  font-size: 12px;
  letter-spacing: 1px;
}

.coming-soon .col-right address ul li {
  margin-bottom: 7px;
}

.coming-soon .col-right address ul li:last-child {
  margin: 0;
}

.coming-soon .col-right address ul li i {
  font-size: 25px;
  vertical-align: middle;
  color: #143dd5;
}

.coming-soon .col-right address ul li span {
  padding-left: 7px;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .coming-soon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10%;
    height: auto;
  }
  .coming-soon .col-left {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .coming-soon .col-left figure {
    margin: 0;
  }
  .coming-soon .col-right {
    width: 100%;
    text-align: center;
  }
  .coming-soon figure svg {
    width: 100%;
    height: auto;
  }
}

.mobile-only {
  display: none;
}

.navbar.mobile-only {
  display: none;
}

.contact-page .footer-web {
  display: none;
}
/*# sourceMappingURL=styles.css.map */