body {
  font-family: 'Metropolis';
  font-weight: lighter;
  font-style: normal;
  font-size: 16px;
  color: white;
  background-color: #14132B;
}

body .container {
  margin-left: auto;
  margin-right: auto;
  width: 940px;
}

@media (max-width: 979px) {
  body .container {
    width: auto;
    padding: 0 15px;
  }
}

body header {
  background-color: white;
  width: 100%;
  z-index: 999;
}

body header.principal {
  position: fixed;
  margin-top: -80px;
}

body header #menu {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body header #menu #mobile-menu-click {
  color: #3DBFE9;
  font-size: 30px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  height: 100%;
  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;
  width: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 2px solid #3dbfe9;
}

body header #menu #mobile-menu-click #hamburguesa {
  color: #3DBFE9;
  font-size: 30px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  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;
}

body header #menu #logo #logo-img {
  max-height: 36px;
  max-width: 100%;
}

body header #menu #menu-items a {
  font-family: 'Metropolis';
  text-decoration: none;
  color: black;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 18px;
  margin: 0 22px;
}

body header #menu #menu-items a:hover {
  color: #3DBFE9;
  font-weight: bold;
}

@media (max-width: 767px) {
  body header #menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }
}

body header #menu-mobile {
  position: absolute;
  z-index: 3;
  background-color: #ffffffd9;
  height: 100vh;
  width: 220px;
  display: none;
}

body header #menu-mobile #menu-mobile-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body header #menu-mobile #menu-mobile-items a {
  font-family: 'Metropolis';
  text-decoration: none;
  color: #14132B;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 18px;
  margin: 0 22px;
  margin: 0;
  padding: 15px 10px;
  border-bottom: 1px solid #3dbfe94f;
}

body main.principal {
  margin-top: 80px;
}

body main h1 {
  font-family: 'Museo';
  font-size: 30pt;
  line-height: 32pt;
  margin: 0;
}

body main h2 {
  font-family: 'Museo';
  font-size: 24pt;
  line-height: 26pt;
  margin: 0;
}

body main h3 {
  font-size: 28px;
  line-height: 30px;
  font-family: 'Gotham';
  margin: 0;
}

body main #odl {
  background: #3DBFE9;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#3DBFE9), to(#1D1C33));
  background: linear-gradient(to bottom, #3DBFE9 0%, #1D1C33 100%);
  position: relative;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body main #odl #dots-backg {
  background-image: url(../images/hero-dots.png);
  position: absolute;
  height: 100%;
  width: 100%;
  background-position: center;
}

body main #odl .hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  position: relative;
  min-height: 400px;
}

body main #odl .hero p {
  margin: 30px 0;
  line-height: 20px;
}

body main #odl .hero #link a {
  font-weight: bold;
  font-family: 'Museo';
  font-size: 18px;
  color: white;
  text-decoration: none;
}

body main #odl .hero #link a:hover {
  text-decoration: underline;
}

body main #uruguay {
  background-image: url(../images/uruguay.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

body main #uruguay .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body main #uruguay .container .text-col {
  max-width: 470px;
  padding: 40px 0;
  line-height: 20px;
}

body main #uruguay .container .text-col .icono-lineas {
  height: 45px;
  position: absolute;
  top: -30px;
}

body main #uruguay .container .text-col .textos {
  background-color: rgba(61, 191, 233, 0.9);
  padding: 40px 35px;
  position: relative;
}

body main #uruguay .container .text-col .textos p {
  margin-top: 30px;
}

@media (max-width: 600px) {
  body main #uruguay {
    background-size: cover;
  }
}

body main #labs {
  background-image: url(../images/lab.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 35px;
}

body main #labs .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

body main #labs .container .text-col {
  max-width: 470px;
  padding: 37px 0;
  line-height: 20px;
}

body main #labs .container .text-col .icono-lineas {
  height: 45px;
  position: absolute;
  top: -30px;
}

body main #labs .container .text-col .textos {
  background-color: #ffffffd1;
  padding: 40px 35px;
  position: relative;
  color: #14132B;
}

body main #labs .container .text-col .textos h2 {
  color: #3DBFE9;
}

body main #labs .container .text-col .textos p {
  margin-top: 30px;
}

@media (max-width: 600px) {
  body main #labs {
    background-size: cover;
  }
}

body main #pilotos {
  background-image: url(../images/piloto.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 35px;
}

body main #pilotos .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body main #pilotos .container .text-col {
  max-width: 470px;
  padding: 40px 0;
  line-height: 20px;
}

body main #pilotos .container .text-col .icono-lineas {
  height: 45px;
  position: absolute;
  top: -30px;
}

body main #pilotos .container .text-col .textos {
  background-color: rgba(61, 191, 233, 0.9);
  padding: 40px 35px;
  position: relative;
}

body main #pilotos .container .text-col .textos p {
  margin-top: 30px;
}

@media (max-width: 600px) {
  body main #pilotos {
    background-size: cover;
  }
}

body main #iniciativa {
  margin: 80px 0;
}

body main #iniciativa #cabezal {
  position: relative;
}

body main #iniciativa #cabezal h2 {
  background-color: #3dbfe9;
  padding: 20px 50px;
  display: inline-block;
  z-index: 2;
  position: relative;
}

body main #iniciativa #cabezal #linea-gruesa {
  height: 10px;
  background-color: #3DBFE9;
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: 1;
}

body main #iniciativa #logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0;
}

body main #iniciativa #logos img {
  height: 60px;
}

@media (max-width: 767px) {
  body main #iniciativa {
    margin: 40px 0;
  }
}

body main #contacto .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #contacto .container .col-i {
  width: 40%;
}

body main #contacto .container .col-i h5 {
  font-weight: normal;
  font-family: 'Metropolis';
  font-size: 17px;
  margin: 0 0 10px 0;
}

body main #contacto .container .col-i h2 {
  color: #ffffffd1;
}

body main #contacto .container .col-i h2 .celeste {
  color: #3DBFE9;
}

body main #contacto .container .col-d {
  width: 60%;
}

body main #contacto .container .col-d form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
}

body main #contacto .container .col-d form .form-row label {
  font-size: 12px;
}

body main #contacto .container .col-d form .form-row input,
body main #contacto .container .col-d form .form-row textarea {
  outline: none;
  background-color: #14132b;
  border: 1px solid white;
  width: 90%;
  color: white;
}

body main #contacto .container .col-d form .form-row textarea {
  width: 100%;
}

body main #contacto .container .col-d form .form-row input[type=submit] {
  width: auto;
  padding: 5px 20px;
  background-color: #3DBFE9;
  border: none;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

body main #contacto .container .col-d form .form-row input[type=submit]:hover {
  background-color: #27a0c9;
}

body main #contacto .container .col-d form .form-row .form-col {
  width: 50%;
}

body main #contacto .container .col-d form .form-row .form-col.mensaje {
  width: 95%;
}

@media (max-width: 767px) {
  body main #contacto .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body main #contacto .container .col-i,
  body main #contacto .container .col-d {
    width: 100%;
  }
  body main #contacto .container .col-i form .form-row,
  body main #contacto .container .col-d form .form-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 0;
  }
  body main #contacto .container .col-i form .form-row input,
  body main #contacto .container .col-i form .form-row textarea,
  body main #contacto .container .col-d form .form-row input,
  body main #contacto .container .col-d form .form-row textarea {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body main #contacto .container .col-i form .form-row .form-col,
  body main #contacto .container .col-d form .form-row .form-col {
    width: 100%;
    margin-top: 10px;
  }
  body main #contacto .container .col-i form .form-row .form-col.mensaje,
  body main #contacto .container .col-d form .form-row .form-col.mensaje {
    width: 100%;
  }
}

body main .response {
  margin-top: 30px;
}

body main .response h2 {
  margin-left: 15px;
}

body main .response #contenedor-volver {
  margin-top: 30px;
  margin-left: 95px;
}

body main .response #contenedor-volver #volver {
  width: auto;
  padding: 10px 25px;
  background-color: #3DBFE9;
  border: none;
  color: white;
  -webkit-transition: .2s;
  transition: .2s;
  text-decoration: none;
  cursor: pointer;
}

body main .response #contenedor-volver #volver:hover {
  background-color: #27a0c9;
}

body main .response #sucess,
body main .response #fail,
body main .response #error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main .response #sucess img,
body main .response #fail img,
body main .response #error img {
  height: 80px;
}

@media (max-width: 767px) {
  body main .response #sucess img,
  body main .response #fail img,
  body main .response #error img {
    height: 40px;
  }
}

body main .response #sucess.hidden,
body main .response #fail.hidden,
body main .response #error.hidden {
  display: none;
}

@media (max-width: 767px) {
  body main .response h2 {
    font-size: 16pt;
    line-height: 18pt;
  }
  body main .response #contenedor-volver {
    margin-left: 55px;
  }
  body main .response #sucess img,
  body main .response #fail img,
  body main .response #error img {
    height: 40px;
  }
}

body footer {
  background-color: #3DBFE9;
  text-align: center;
  font-family: 'Metropolis';
  padding: 10px 0;
  margin-top: 50px;
}

@media (min-width: 768px) {
  #mobile-menu-click,
  #menu-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #menu-items {
    display: none;
  }
  #menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #logo {
    padding: 0 10px 0 20px;
  }
}
/*# sourceMappingURL=custom.css.map */