@import url(https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;900&display=swap);
/* VARS */
/*COLORS*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline; }

a {
  text-decoration: none; }

header {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 9998;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease all;
  background: #134175;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; }
  @media screen and (max-width: 1200px) {
    header {
      border-top: 2px solid red; } }
  @media screen and (max-width: 1024px) {
    header {
      border-top: 2px solid green; } }
  @media screen and (max-width: 768px) {
    header {
      display: flex;
      justify-content: flex-end;
      border-top: 2px solid blue; } }
  @media screen and (max-width: 600px) {
    header {
      border-top: 2px solid cyan; } }
  @media screen and (max-width: 480px) {
    header {
      border-top: 2px solid magenta; } }

nav {
  width: 100%; }
  nav ul {
    display: flex;
    justify-content: center;
    align-items: center; }
  nav li {
    list-style: none; }
  nav a {
    color: #FFF;
    font-size: .9rem;
    padding: 0 1em; }
  nav a:hover {
    color: #68A0E1; }
  @media screen and (max-width: 768px) {
    nav {
      display: block;
      -ms-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      padding: 0;
      margin: 0;
      background: #333333;
      width: 200px;
      height: 100vh;
      position: fixed;
      top: 0px;
      left: -300px;
      z-index: 9999 !important; }
      nav ul {
        padding: 0;
        margin: 0;
        display: block; }
      nav ul li {
        width: 100%;
        display: block;
        padding: 0;
        border-right: none;
        padding: 15px 10px; }
      nav ul li a {
        width: 100%;
        display: block;
        /* border-bottom: solid 2px #000;
      border-top: solid 1px #4a5572; */
        list-style: none;
        text-align: left;
        color: #fff;
        font-size: 1em;
        text-decoration: none;
        height: auto; }
      nav ul li:hover {
        /* background: #597781; */ }
      nav ul li a:hover {
        background: none; } }

#hamburger {
  display: none; }
  @media screen and (max-width: 768px) {
    #hamburger {
      display: block;
      width: 35px;
      height: 30px;
      left: 33%;
      margin-top: 5px;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.5s ease-in-out;
      -moz-transition: 0.5s ease-in-out;
      -o-transition: 0.5s ease-in-out;
      transition: 0.5s ease-in-out;
      cursor: pointer;
      z-index: 9999; }
      #hamburger span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #FFF;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out; }
      #hamburger span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center; }
      #hamburger span:nth-child(2) {
        top: 11px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center; }
      #hamburger span:nth-child(3) {
        top: 22px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center; }
      #hamburger.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -3px;
        left: 9px; }
      #hamburger.open span:nth-child(2) {
        width: 0%;
        opacity: 0; }
      #hamburger.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 22px;
        left: 8px; } }

.menuShow {
  left: 0; }

/*GENERALES*/
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.animado, a {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

html, body {
  width: 100%;
  height: 100%; }

body {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #707070; }

.wrap {
  width: 90%;
  margin: auto;
  max-width: 1400px;
  overflow-x: hidden; }

section {
  overflow-x: hidden; }

.flexCenter {
  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;
  min-height: 100vh;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

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

.animar {
  opacity: 0; }

.animarAfter {
  opacity: 0;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms; }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

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

.col30 {
  width: 29%; }
  @media screen and (max-width: 768px) {
    .col30 {
      width: 100%; } }

.col60 {
  width: 59%; }
  @media screen and (max-width: 768px) {
    .col60 {
      width: 100%; } }

.col2 {
  width: 49%; }
  @media screen and (max-width: 768px) {
    .col2 {
      width: 100%; } }

.col3 {
  width: 33%; }
  @media screen and (max-width: 768px) {
    .col3 {
      width: 100%; } }

@media screen and (max-width: 768px) {
  .uno {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; } }

@media screen and (max-width: 768px) {
  .dos {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; } }

.content p {
  margin-bottom: 1em;
  line-height: 1.5rem; }
  .content p:last-child {
    margin-bottom: 0; }
  .content p.little {
    font-size: 14px;
    margin-bottom: 0.4em;
    font-style: italic; }
  .content p.justificado {
    text-align: justify; }
  @media screen and (max-width: 768px) {
    .content p {
      text-align: center; } }

.content li {
  font-size: 1em;
  list-style-position: inside; }

.content span {
  font-weight: 500; }

.content .center {
  text-align: center; }

.content ul,
.content ol {
  list-style-position: inside;
  margin: 3em 0;
  margin-left: 1em; }
  .content ul li,
  .content ol li {
    list-style-position: inside; }
    .content ul li:last-child,
    .content ol li:last-child {
      margin-bottom: 0; }

.content a {
  color: inherit; }
  .content a:hover {
    color: #000; }

.content blockquote {
  font-size: 2em;
  font-family: inherit;
  width: 70%;
  margin: 2em auto; }
  .content blockquote::after {
    content: "";
    display: block;
    width: 50%;
    margin: auto;
    height: 5px;
    background: #000; }

.content img {
  display: block;
  width: 80%;
  margin: auto;
  height: auto; }
  .content img.inline {
    display: inline;
    width: 15px;
    height: 15px;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    margin: 0 5px;
    vertical-align: middle; }

.content.center {
  text-align: center; }

.content span {
  font-weight: 900; }

.title {
  font-size: 3rem;
  color: #134175;
  margin: 0 0 2em 0;
  text-align: center; }

.subtitle {
  font-size: 1.5rem;
  color: #134175;
  margin: -4em 0 2em 0;
  text-align: center;
  font-weight: normal; }

#intro {
  width: 100%;
  min-height: 100vh;
  background: url(../img/intro.jpg) 50% 50%;
  background-size: cover;
  position: relative; }

.iso {
  width: 190px;
  position: absolute;
  right: 5%;
  top: 80px;
  display: none; }
  .iso img {
    display: block;
    width: 100%; }

.logo {
  width: 300px;
  position: absolute;
  left: 5%;
  top: 80px; }
  .logo img {
    display: block;
    width: 100%; }

.introTitle {
  position: absolute;
  right: 5%;
  top: 60%;
  text-align: right;
  display: flex;
  flex-direction: column !important; }
  @media screen and (max-width: 768px) {
    .introTitle {
      width: 80%;
      right: 50%;
      top: 450px;
      transform: translateX(50%);
      text-align: center; } }
  .introTitle span {
    display: block;
    border-radius: 10px 0 0 10px;
    font-weight: 900; }
  .introTitle .firstLine {
    color: #134175;
    padding: 1rem;
    font-size: 3rem;
    background: white;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, white 39%); }
    @media screen and (max-width: 768px) {
      .introTitle .firstLine {
        font-size: 2.4rem; } }
  .introTitle .secondLine {
    color: #FFF;
    padding: 1rem;
    padding-left: 2rem;
    font-size: 2.4rem;
    background: #021F38; }
    @media screen and (max-width: 768px) {
      .introTitle .secondLine {
        font-size: 1.8rem; } }

#aboutUs {
  background-color: #134175;
  color: #fff;
  padding: 3rem 0; }

.imgTitle {
  display: flex;
  justify-content: center;
  align-items: center; }
  .imgTitle img {
    display: block;
    max-height: 350px; }

#usToday {
  display: grid;
  grid-template-columns: repeat(3, 1fr); }
  @media screen and (max-width: 768px) {
    #usToday {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 480px) {
    #usToday {
      grid-template-columns: repeat(1, 1fr); } }

.usTodayItem {
  background-image: linear-gradient(to bottom right, #dfdfdf, white);
  padding: 4em 0;
  text-align: center;
  padding: 1em;
  color: #134175;
  min-height: 300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center; }

.about-us_icon img {
  margin-bottom: 1rem;
  display: block;
  width: 80px; }

.about-us_number {
  font-size: 1.5em;
  font-weight: 600; }

.about-us_text {
  margin-top: .2rem;
  font-size: 1.5em;
  font-weight: bold; }

#services {
  padding: 50px 0; }

.servicesWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.service {
  width: 33.333333%;
  color: #FFF;
  background-color: #134175;
  text-align: center; }
  @media screen and (max-width: 768px) {
    .service {
      width: 100%;
      margin-bottom: 80px; } }
  .service .header img {
    display: block;
    width: 120px;
    transform: translateY(-50%);
    margin: auto; }
  .service h3 {
    display: block;
    font-size: 1.6rem;
    margin-top: -50px;
    min-height: 100px; }
    @media screen and (max-width: 768px) {
      .service h3 {
        min-height: auto; } }
    .service h3 span {
      display: block;
      padding: 5px 0;
      background: white;
      background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 41%); }
  .service .content {
    padding: 2rem; }
  .service:nth-child(2) {
    background-color: #142237; }

#team {
  padding: 50px 0; }

.bio {
  margin-top: 100px; }
  .bio:first-child {
    margin-top: 0px; }

.bioFoto img {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: auto; }
  @media screen and (max-width: 768px) {
    .bioFoto img {
      margin-bottom: 1rem; } }

.bioData h3 {
  color: #134175;
  font-size: 3em;
  display: inline-block;
  border-bottom: 1px solid #134175;
  padding-right: 1em;
  margin-bottom: .2em; }
  @media screen and (max-width: 768px) {
    .bioData h3 {
      width: 100%;
      padding-right: 0;
      text-align: center; } }

.bioData h4 {
  display: block;
  font-size: 2em;
  font-weight: normal; }
  @media screen and (max-width: 768px) {
    .bioData h4 {
      width: 100%;
      text-align: center; } }

.bioData .content {
  margin-top: 1em;
  text-align: justify; }

.bioData.iz {
  text-align: right; }
  .bioData.iz h3 {
    padding-left: 1em;
    padding-right: 0; }
  .bioData.iz .content {
    justify-content: center; }

.more {
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  @media screen and (max-width: 768px) {
    .more {
      justify-content: center; } }
  .more img {
    display: block;
    width: 29px; }
  .more button {
    background-color: #134175;
    border: none;
    padding: .5em 1em;
    color: #FFF;
    cursor: pointer;
    border-radius: 5px; }
  .more.iz {
    justify-content: flex-end; }
    @media screen and (max-width: 768px) {
      .more.iz {
        justify-content: center; } }

.fancybox-stage {
  width: 50%;
  margin: auto; }

.linkedinBio {
  margin-left: 10px; }

#offices {
  padding: 100px 0;
  background-color: #EDEDED;
  margin-top: 100px; }
  #offices h2 {
    color: #134175;
    font-size: 3em; }
    @media screen and (max-width: 768px) {
      #offices h2 {
        text-align: center;
        margin-bottom: 1em; }
        #offices h2 br {
          display: none; } }

.office {
  color: #000; }
  @media screen and (max-width: 768px) {
    .office {
      margin-bottom: 2em; } }
  .office img {
    display: block;
    width: 80px;
    height: 56px;
    margin-bottom: 1em; }
    @media screen and (max-width: 768px) {
      .office img {
        margin: auto;
        margin-bottom: 2em; } }
  .office .content {
    font-size: 1.2em; }
  .office a {
    color: #134175;
    font-weight: 900; }
    @media screen and (max-width: 768px) {
      .office a {
        display: block;
        text-align: center; } }

footer {
  background-color: #2d2d30;
  padding: 50px 0;
  color: #FFF;
  font-size: 10px;
  text-align: center; }

#contact {
  margin: 50px 0; }

form {
  width: 100%;
  margin-top: -60px; }
  form label {
    display: block;
    margin-bottom: .2em; }
  form input {
    width: 100%;
    display: block;
    margin-bottom: 1em;
    outline: none;
    border: 1px solid #134175;
    height: 40px;
    color: #707070;
    padding: 5px; }
  form textarea {
    width: 100%;
    display: block;
    resize: none;
    outline: none;
    border: 1px solid #134175;
    height: 132px;
    color: #707070;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    padding: 5px; }

.sendWrap {
  display: flex;
  justify-content: center;
  margin: 2em 0; }
  .sendWrap button {
    background: #134175;
    border: none;
    border-radius: 5px;
    color: #FFF;
    padding: .5rem 1rem; }
    .sendWrap button:hover {
      transform: translate(1.05); }

.companyData {
  padding: 1em 0; }
  .companyData:first-child::after {
    content: '';
    display: block;
    width: 50%;
    height: 1px;
    margin: 2em auto 0 auto;
    text-align: center;
    background-color: #134175; }
  .companyData .logoContact {
    display: block;
    width: 100%;
    max-width: 100px;
    margin: auto;
    margin-bottom: 10px; }
  .companyData .url {
    text-align: center;
    margin-bottom: 2rem; }
    .companyData .url a {
      color: #134175; }
  .companyData .linkedin img {
    display: block;
    width: 100%;
    max-width: 30px;
    margin: auto; }

