@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  font-family: "Century Gothic", "Lato", sans-serif;
}

a {
  text-decoration: none;
}

html {
  width: 100%;
}

header {
  width: 100vw;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo img {
  width: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

nav {
  position: fixed;
  width: 100vw;
  border-bottom: 2px solid #37383b;
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background: white;
  z-index: 100;
  background: white;
}

.menu-items {
  position: relative;
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 14px;
  padding-left: 5%;
  align-items: center;
}

.nav-item {
  color: #5e2129;
  padding: 3px 8px 3px 8px;
}

.nav-item:hover {
  color: white;
  background: #5e2129;
  border-radius: 10px;
  padding: 3px 8px 3px 8px;
}

.burger {
  display: none;
  cursor: pointer;
  padding-right: 10px;
  margin-top: auto;
  margin-bottom: auto;
}

.burger div {
  width: 30px;
  height: 3px;
  margin: 5px;
  background-color: #5e2129;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@-webkit-keyframes navlinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes navlinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
#contbot {
  background-color: #5e2129;
  color: #ffffff;
  padding: 12px 28px; /* Un poco más de aire */
  border-radius: 4px; /* Esquinas más sutiles para seriedad */
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease; /* La clave del refinamiento */
  border: 1px solid transparent;
  letter-spacing: 1px;
}

/* Efecto Hover: Sutil y Distinguido */
#contbot:hover {
  background-color: #4a1a20; /* Un tono más oscuro del mismo color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Sombra suave para dar profundidad */
  transform: translateY(-1px); /* Elevación casi imperceptible */
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.landimg {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.headline {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.8em;
}

.min {
  font-style: italic;
}

.nosotros {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 3vw;
  column-gap: 3vw;
  margin-right: 5vw;
  -ms-grid-columns: 40% 60%;
  grid-template-columns: 40% 60%;
  -ms-grid-rows: 1.2fr 2.1fr 0.5fr;
  grid-template-rows: 1.2fr 2.1fr 0.5fr;
  grid-template-areas: "dec aheader" "dec aabout" "dec cv";
}

.aheader {
  position: absolute;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: aheader;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-items: flex-start;
  text-align: left;
  margin-top: 18vh;
  width: 80%;
}

.compromiso {
  font-size: 30px;
  font-style: italic;
  font-weight: lighter;
  color: linear-gradient(to right bottom, #272829, #37383b, #272829);
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 80%;
}

.aabout {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: aabout;
  text-align: justify;
  justify-self: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1em;
  width: 50%;
}

.cv {
  display: flex;
  flex-direction: column;
}
.cv .nombre {
  font-size: 1.5em;
}

.dec {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: dec;
  overflow: hidden;
}

.dec img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
}

.cv {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: cv;
  -ms-grid-column-align: end;
  justify-self: end;
  font-size: 0.7em;
  text-align: right;
  padding-top: 5%;
  width: 80%;
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
}

/* Fin Nosotros */
/* Inicio Divisiones */
.divisiones {
  position: relative;
  grid-area: divisiones;
  display: -ms-grid;
  display: grid;
  margin-left: 5%;
  -ms-grid-columns: 6% 1.2fr 5% 1.7fr 3%;
  grid-template-columns: 6% 1.2fr 5% 1.7fr 3%;
  -ms-grid-rows: 8% 1fr 1fr 1fr;
  grid-template-rows: 8% 1fr 1fr 1fr;
  grid-template-areas: ". . . . ." ". dheader . dinfo ." ". ddesc . dinfo ." ". . . dinfo .";
  height: 100vh;
  width: 100vw;
}

.dheader {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: dheader;
  -ms-flex-line-pack: left;
  align-content: left;
  padding-top: 20vh;
  text-align: center;
}

.promo-header {
  text-align: left;
  font-style: normal;
}

.ddesc {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: ddesc;
  -ms-flex-line-pack: justify;
  align-content: justify;
  -ms-grid-column-align: center;
  justify-self: center;
  text-align: left;
}

.div-holder {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 4;
  grid-area: dinfo;
  padding-top: 5vh;
  background: transparent;
  font-size: 14px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 5%;
  grid-template-rows: 1fr 1fr 5%;
  -webkit-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  grid-template-areas: "card1 card2" "card3 card4" ". .";
}

.div-holder * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cardhead {
  text-align: right;
  text-justify: center;
  color: white;
  font-size: 26px;
  padding-bottom: 5px;
}

.card1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: card1;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: justify;
  padding: 20px;
  width: 330px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(112, 99, 64, 0.8))), url(gallery/preven.jpg);
  background-image: linear-gradient(rgba(112, 99, 64, 0.8)), url(gallery/preven.jpg);
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  color: white;
  border: 3px solid #5e2129;
}

.card1:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: card2;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: justify;
  padding: 20px;
  width: 330px;
  border: 3px solid #5e2129;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(112, 99, 64, 0.8))), url(gallery/desarrollo4.jpg);
  background-image: linear-gradient(rgba(112, 99, 64, 0.8)), url(gallery/desarrollo4.jpg);
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  color: white;
}

.card2:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card3 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: card3;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: justify;
  padding: 20px;
  width: 330px;
  border: 3px solid #5e2129;
  justify-self: baseline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(112, 99, 64, 0.8))), url(gallery/gestion1.jpg);
  background-image: linear-gradient(rgba(112, 99, 64, 0.8)), url(gallery/gestion1.jpg);
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  color: white;
}

.card3:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card4 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: card4;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: justify;
  padding: 20px;
  width: 330px;
  border: 3px solid #5e2129;
  justify-items: end;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(112, 99, 64, 0.8))), url(gallery/coord1.jpg);
  background-image: linear-gradient(rgba(112, 99, 64, 0.8)), url(gallery/coord1.jpg);
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  color: white;
}

.card4:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/*Fin Divisiones */
/* Inicio Expertise */
.expertise {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 1fr 1fr 20%;
  grid-template-columns: 20% 1fr 1fr 20%;
  -ms-grid-rows: 10% 10% auto;
  grid-template-rows: 10% 10% auto;
  grid-template-areas: ". . . ." ". eheader edesc ." ". einfo einfo .";
  height: 100vh;
  width: 100vw;
}

/* Inicio Expertise */
.expertise-mobile {
  display: none;
}

.expertise {
  grid-area: expertise;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 10% 10% auto;
  grid-template-rows: 10% 10% auto;
  grid-template-areas: ". ." "eheader edesc" "einfo einfo";
  height: 100vh;
  width: 80%;
}

.eheader {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: eheader;
  -ms-flex-line-pack: center;
  align-content: center;
  padding-top: 1vh;
  text-align: center;
}

.experiencia {
  font-size: 1.5em;
}

.edesc {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: edesc;
  text-align: left;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.exp-holder {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: einfo;
  max-width: 900px;
  height: 500px;
  font-size: 13px;
  background: white;
  width: 100vh;
}

.exp-holder * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.esp-headlines {
  list-style: none;
  position: relative;
}

.esp-headlines li {
  padding: 15px;
  position: relative;
  z-index: 20;
  color: #dddddd;
  width: 100%;
  background: #888888;
  min-height: 65.7px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  height: 50%;
}

.nh-anim {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.esp-headlines li:hover, a:hover {
  cursor: pointer;
}

li.selected {
  background: #333333;
}

.esp-headlines .highlight {
  width: 100%;
  background: #888888;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.esp-headlines {
  float: left;
  width: 30%;
}

.esp-preview {
  float: left;
  width: 70%;
  position: relative;
  z-index: 5;
  position: relative;
}

.esp-preview img {
  display: block;
  width: 100%;
  height: 500px;
  margin: 0 auto 5px auto;
}

.esp-content {
  position: absolute;
  background: #333333;
  z-index: 10;
  padding: 10px;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  width: 800px;
}

.resume {
  position: absolute;
  bottom: 15px;
  left: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  color: #bbb;
}

a.title {
  display: block;
  color: #dddddd;
  margin: 0 0 12px 0;
  font-size: 18px;
}

a.title:hover {
  background: none;
  text-decoration: underline;
}

.top-content {
  display: block;
}

/* Fin Expertise

/*Inicio Clientes y Alianzas */
.clientes {
  display: -ms-grid;
  display: grid;
  margin-top: 5vh;
  -ms-grid-columns: 40% 25% 25%;
  grid-template-columns: 40% 25% 25%;
  -ms-grid-rows: 12% 10% 50% 5%;
  grid-template-rows: 12% 10% 50% 5%;
  -webkit-column-gap: 5%;
  column-gap: 5%;
  -ms-flex-line-pack: start;
  align-content: start;
  grid-template-areas: ". . ." ". botclientes botalianzas" ". cl al" ". . .";
  height: 100vh;
  width: 100vw;
  z-index: 1;
}

.botclientes {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: botclientes;
  z-index: 3;
  text-align: left;
  font-size: 2em;
  color: #60615C;
}

.botalianzas {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: botalianzas;
  z-index: 3;
  text-align: left;
  font-size: 2em;
  color: #60615C;
}

.climg {
  background-image: url(gallery/wn6.jpg);
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  background-size: cover;
  height: 100vh;
  width: 40%;
  overflow: hidden;
}

.cl {
  position: relative;
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: cl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  height: 60vh;
  overflow: hidden;
  list-style-type: none;
  z-index: 5;
}

.cli {
  position: relative;
  width: 24vw;
  color: black;
  font-size: 16px;
  padding-bottom: 20px;
  -webkit-animation: marquee 50s normal linear infinite;
  animation: marquee 50s normal linear infinite;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
  100% {
    -webkit-transform: translateY(-400vh);
    transform: translateY(-400vh);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
  100% {
    -webkit-transform: translateY(-400vh);
    transform: translateY(-400vh);
  }
}
.al {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: al;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 3;
}

.ali {
  color: black;
  font-size: 16px;
  padding-bottom: 30px;
}

marquee {
  height: 70vh;
}

/* Fin Clientes*/
/* Inicio Blog */
.blog {
  display: -ms-grid;
  display: grid;
  padding-top: 15vh;
  margin-left: 5%;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: 70% 30%;
  grid-template-rows: 70% 30%;
  height: 100vh;
  width: 95%;
  grid-template-areas: "news" "links";
}

.tmob {
  display: none;
}

.links {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: links;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  color: black;
}

.links li {
  list-style: none;
  padding-top: 30px;
  text-decoration: none;
}

.links a {
  padding: 5px;
  color: black;
  border-radius: 5px;
}

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

.links h1 {
  font-weight: 0.5em;
}

.news {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: news;
}

.tnews {
  border-bottom: 1px solid black;
  font-size: 13px;
  padding: 3px;
  margin: 3px;
}

.thead, th {
  background-color: #5e2129;
  color: white;
  text-align: center;
}

td {
  padding: 3px 5px 3px 5px;
}

/* Inicio Contacto */
.contacto {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5% 1fr 8% 1fr 15%;
  grid-template-columns: 5% 1fr 8% 1fr 15%;
  -ms-grid-rows: 10% 48% auto;
  grid-template-rows: 10% 48% auto;
  grid-template-areas: " . . . . ." ". saludos . formulario ." ". datos . formulario .";
  background: linear-gradient(135deg, #8C292F 20%, #333333 80%);
  height: 100vh;
}

.saludos {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: saludos;
  padding-top: 15vh;
  color: #bfbfbf;
}

.formulario {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  grid-area: formulario;
  padding-top: 10vh;
}

.datos {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: datos;
  color: #bfbfbf;
  font-size: large;
  height: auto;
  padding: 10px;
}

.email {
  text-decoration: none;
  color: #bfbfbf;
  font-size: x-large;
}

#contact input[type=text], #contact input[type=email], #contact input[type=tel], #contact input[type=url], #contact textarea, #contact button[type=submit] {
  font: 400 12px/16px "Open Sans", Helvetica, Arial, sans-serif;
}

#contact {
  background: #F9F9F9;
  padding: 25px;
  margin: 50px 0px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type=text], #contact input[type=email], #contact input[type=tel], #contact input[type=url], #contact textarea {
  width: 100%;
  border: 1px solid #CCC;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px 10px;
}

#contact input[type=text]:hover, #contact input[type=email]:hover, #contact input[type=tel]:hover, #contact input[type=url]:hover, #contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #AAA;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type=submit] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #60615C;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type=submit]:hover {
  background: #272829;
  -webkit-transition: background 0.3s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type=submit]:active {
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus, #contact textarea:focus {
  outline: 0;
  border: 1px solid #999;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

@media only screen and (max-width: 1100px) {
  .menu-items {
    width: 60%;
  }
  .aabout {
    font-size: 14px;
  }
}
@media only screen and (max-width: 850px) {
  .menu-items {
    position: absolute;
    top: 10vh;
    height: 90vh;
    width: 40%;
    right: 0px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 10vh;
    background-color: white;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s ease-in;
    transition: -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
    z-index: 100;
  }
  .menu-items a {
    font-size: 12px;
    opacity: 0;
  }
  .burger {
    display: block;
  }
  .toggle .line1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    -webkit-transform: rotate(45deg) translate(-5px, -6px);
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .nav-active {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .headline {
    font-size: 1em;
  }
  .nosotros {
    padding-top: 15vh;
    position: relative;
    height: auto;
    width: 100vw;
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 0;
    column-gap: 0;
    row-gap: 10px;
    justify-items: center;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: 1fr 0.5fr auto auto;
    grid-template-rows: 1fr 0.5fr auto auto;
    grid-template-areas: "dec" "aheader" "aabout" "cv";
  }
  .aheader {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: aheader;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    align-self: center;
    justify-self: center;
    text-align: left;
    margin-top: 20px;
    width: 90%;
  }
  .compromiso {
    font-size: 24px;
    font-style: italic;
    font-weight: lighter;
    color: linear-gradient(to right bottom, #272829, #37383b, #272829);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 95%;
  }
  .aabout {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: aabout;
    text-align: justify;
    -ms-grid-column-align: center;
    justify-self: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    width: 90%;
  }
  .firma {
    text-align: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    justify-self: flex-start;
    background: white;
    width: 100%;
  }
  .dec {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: dec;
    overflow: hidden;
  }
  .dec img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-size: cover;
    overflow: hidden;
  }
  .cv {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: cv;
    -ms-grid-column-align: end;
    justify-self: end;
    font-size: 12px;
    text-align: right;
    padding-top: 20%;
    width: 70%;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }
  .divisiones {
    position: relative;
    padding-top: 15vh;
    display: -ms-grid;
    display: grid;
    margin-top: 50px;
    row-gap: 30px;
    -ms-grid-columns: 90%;
    grid-template-columns: 90%;
    -ms-grid-rows: 5% 10% auto;
    grid-template-rows: 5% 10% auto;
    grid-template-areas: "dheader" "ddesc" "dinfo";
    height: 220vh;
    width: 100vw;
  }
  .dheader {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: dheader;
    padding-bottom: 10%;
    padding-top: 0;
  }
  .ddesc {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: ddesc;
  }
  .div-holder {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: dinfo;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    width: 100%;
    -ms-grid-rows: 1fr [4];
    grid-template-rows: repeat(4, 1fr);
    row-gap: 10px;
    height: auto;
    grid-template-areas: "card1" "card2" "card3" "card4";
  }
  .divisiones {
    place-self: center;
  }
  .card1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: card1;
    width: 100%;
    place-self: center;
  }
  .card2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: card2;
    width: 100%;
  }
  .card3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: card3;
    width: 100%;
  }
  .card4 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: card4;
    width: 100%;
  }
  .expertise {
    display: none;
  }
  .expertise-mobile {
    position: relative;
    padding-top: 150px;
    margin: 5%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 95%;
    grid-template-columns: 95%;
    min-height: 300vh;
    width: 100%;
    -ms-grid-rows: 50px 50px auto;
    grid-template-rows: 50px 50px auto;
    row-gap: 20px;
    grid-template-areas: "eheader" "edesc" "exp";
  }
  .eheader-mobile {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: eheader;
    place-self: center left;
  }
  .edesc-mobile {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: edesc;
  }
  .exp-holder-mob {
    width: 100%;
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: exp;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cardhead-mob {
    text-align: right;
    text-justify: center;
    color: white;
    font-size: 20px;
    padding-bottom: 10px;
  }
  .exp1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: card1;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: right;
    padding: 50px;
    margin-bottom: 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 39, 53, 0.8))), url(gallery/Corporativo.jpg);
    background-image: linear-gradient(rgba(31, 39, 53, 0.8)), url(gallery/Corporativo.jpg);
    -o-object-fit: cover;
    object-fit: cover;
    width: 70%;
    height: 180px;
    background-size: cover;
    color: white;
  }
  .exp2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: card2;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: right;
    padding: 50px;
    margin-bottom: 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 39, 53, 0.8))), url(gallery/societario.jpg);
    background-image: linear-gradient(rgba(31, 39, 53, 0.8)), url(gallery/societario.jpg);
    -o-object-fit: cover;
    object-fit: cover;
    width: 70%;
    height: 180px;
    background-size: cover;
    color: white;
  }
  .exp3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: card3;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: right;
    padding: 50px;
    margin-bottom: 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 39, 53, 0.8))), url(gallery/Contractual.jpg);
    background-image: linear-gradient(rgba(31, 39, 53, 0.8)), url(gallery/Contractual.jpg);
    -o-object-fit: cover;
    object-fit: cover;
    width: 70%;
    height: 180px;
    background-size: cover;
    color: white;
  }
  .exp4 {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: right;
    padding: 50px;
    margin-bottom: 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 39, 53, 0.8))), url(gallery/Inmobiliario.jpg);
    background-image: linear-gradient(rgba(31, 39, 53, 0.8)), url(gallery/Inmobiliario.jpg);
    -o-object-fit: cover;
    object-fit: cover;
    width: 70%;
    height: 180px;
    background-size: cover;
    color: white;
  }
  .exp5 {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: right;
    padding: 50px;
    margin-bottom: 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 39, 53, 0.8))), url(gallery/Condominal.jpg);
    background-image: linear-gradient(rgba(31, 39, 53, 0.8)), url(gallery/Condominal.jpg);
    -o-object-fit: cover;
    object-fit: cover;
    width: 70%;
    height: 180px;
    background-size: cover;
    color: white;
  }
  .exp6 {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: right;
    padding: 50px;
    margin-bottom: 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 39, 53, 0.8))), url(gallery/Industrial.jpg);
    background-image: linear-gradient(rgba(31, 39, 53, 0.8)), url(gallery/Industrial.jpg);
    -o-object-fit: cover;
    object-fit: cover;
    width: 70%;
    height: 180px;
    background-size: cover;
    color: white;
  }
  .exp7 {
    grid-area: card7;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: right;
    padding: 50px;
    margin-bottom: 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 39, 53, 0.8))), url(gallery/Notarial.jpg);
    background-image: linear-gradient(rgba(31, 39, 53, 0.8)), url(gallery/Notarial.jpg);
    -o-object-fit: cover;
    object-fit: cover;
    width: 70%;
    height: 180px;
    background-size: cover;
    color: white;
  }
  .exp8 {
    grid-area: card8;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: right;
    padding: 50px;
    margin-bottom: 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 39, 53, 0.8))), url(gallery/Comp.jpg);
    background-image: linear-gradient(rgba(31, 39, 53, 0.8)), url(gallery/Comp.jpg);
    -o-object-fit: cover;
    object-fit: cover;
    width: 70%;
    height: 180px;
    background-size: cover;
    color: white;
  }
  .clientes {
    display: -ms-grid;
    display: grid;
    padding-top: 25vh;
    margin-left: 5%;
    margin-right: 5%;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: 5% auto 5% auto;
    grid-template-rows: 5% auto 5% auto;
    -webkit-column-gap: 0%;
    column-gap: 0%;
    row-gap: 5vh;
    -ms-flex-line-pack: start;
    align-content: start;
    grid-template-areas: "botclientes" "cl" "botalianzas" "al";
    width: 100vw;
    z-index: 1;
  }
  .climg {
    display: none;
  }
  .cli {
    width: 90%;
  }
  .cl {
    height: 200px;
  }
  .al {
    width: 90%;
  }
  .tmob {
    display: inline-block;
  }
  .tdesk {
    display: none;
  }
  .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .links a {
    font-size: 14px;
  }
  .blog {
    position: relative;
    display: -ms-grid;
    display: grid;
    margin-top: 20vh;
    padding-top: 15vh;
    margin-left: 5%;
    -ms-grid-columns: 90%;
    grid-template-columns: 90%;
    place-self: center;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: auto;
    width: 100%;
    grid-template-areas: "news" "links";
  }
  .contacto {
    position: relative;
    margin-top: 20vh;
    padding-top: 20vh;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 95%;
    grid-template-columns: 95%;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    padding-left: 5%;
    width: 95%;
    height: auto;
    grid-template-areas: "saludos" "datos" "formulario";
    background: linear-gradient(135deg, #8C292F 20%, #333333 80%);
  }
  .saludos {
    padding-top: 20px;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: saludos;
  }
  .sal {
    font-size: 16px;
  }
  .datos {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: datos;
    color: #bfbfbf;
    font-size: 14px;
    height: auto;
    padding: 10px;
  }
  .email {
    text-decoration: none;
    color: #bfbfbf;
    font-size: 18px;
  }
  .formulario {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: formulario;
    padding-top: 0;
  }
}
@media only screen and (max-height: 600px) {
  .expertise-mobile {
    margin-top: 300px;
    padding-top: 100px;
  }
  .logo img {
    width: 200px;
  }
  .menu-items {
    height: 80vh;
  }
}
/*# sourceMappingURL=zgstyles.css.map */