:root {
  /*Primary colors*/
  --color-yellow: #f1bb07;
  --color-yellow-gradient: linear-gradient(to bottom, #e89b06 0%,#fdd209 25%);
  --color-yellow-gradient-2:linear-gradient(to bottom, #f6aa08 0%,#fdd209 50%);
  --color-green: #009900;
  --color-green-hover: #15c015;
  --color-light-green: #5cb73c;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #9c9c9c;
  --color-light-gray: #f8f8f8;
  --color-dark-gray: #737373;
  --color-darker-gray: #494848;
  --color-blue:#048dfb;
  --color-light-blue:#80c8ff;
  --color-orange:#f56444;
  --color-red:#ff0000;
}

:root[data-theme=dark] {
  /*Primary colors*/
  --color-yellow: #ffd800;
  --color-green: #009900;
  --color-green-hover: #15c015;
  --color-light-green: #5cb73c;
  --color-black: #fff;
  --color-white: #000;
  --color-gray: #999;
  --color-light-gray: #fbfbfb;
  --color-dark-gray: #8c8c8c;
  --color-darker-gray: #666666;
  --color-blue:#048dfb;
  --color-light-blue:#80c8ff;
  --color-orange:#f56444;
}

/*Border Radius 5\3px*/
/*Border Radius 10px*/
/*Box Shadow*/
/*transition*/
:root {
  /*Font size*/
  --font-size-s: .6rem;
  --font-size-m: 1rem;
  --font-size-l: 2rem;
  --font-size-xl: 3rem;
  /*Spacing*/
  --spacing-xs: .3rem;
  --spacing-s: .5rem;
  --spacing-m: 1rem;
  --spacing-l: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  /*Grid Calc*/
  --grid-layout-gap: 1.2rem;
  --grid-column-count: 5;
  --grid-item--min-width: 15rem;
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));
}

body {
  font-family: "D-DIN";
  font-size: 10px;
  text-align: center;
  color: var(--color-black);
  line-height: 1.2rem;
  background: var(--color-black);
  box-sizing: border-box;
}

div,
ul,
li,
h1,
h2,
h3,
h4,
p,
a,
span,
strong,
form,
input,
label,
textarea,
header,
nav,
section,
footer,
hgroup,
article,
figure,
hgroup,
content {
  position: relative;
  box-sizing: border-box;
}

body,
ul,
li,
h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

*:focus {
  outline: none;
}

a img {
  border: none;
}

h2, h3 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin: 0;
  font-weight: bold;
  line-height: 2rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 2.6rem);
  letter-spacing: -1px;
  line-height: 2rem;
  font-weight: bold;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
}
p.italic {
  font-family: "D-DIN-Bold";
}

/*Estructura general*/
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/*Bold Font*/
h1,
h2,
h3,
h4 {
  font-family: "D-DIN-Bold";
}

/*Regular Font*/
h3 {
  font-family: "D-DIN";
}

@font-face {
  font-family: "D-DIN";
  src: url("../fonts/D-DIN/D-DIN.eot");
  src: url("../fonts/D-DIN/D-DIN.eot?#iefix") format("embedded-opentype"), url("../fonts/D-DIN/D-DIN.woff2") format("woff2"), url("../fonts/D-DIN/D-DIN.woff") format("woff"), url("../fonts/D-DIN/D-DIN.ttf") format("truetype"), url("../fonts/D-DIN/D-DIN.svg#D-DIN") format("svg");
  font-weight: regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "D-DIN-Bold";
  src: url("../fonts/D-DIN/D-DIN-Bold.eot");
  src: url("../fonts/D-DIN/D-DIN-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/D-DIN/D-DIN-Bold.woff2") format("woff2"), url("../fonts/D-DIN/D-DIN-Bold.woff") format("woff"), url("../fonts/D-DIN/D-DIN-Bold.ttf") format("truetype"), url("../fonts/D-DIN/D-DIN-Bold.svg#D-DIN-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*CTA*/
.defaultcta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  border: none;
  font-size: clamp(0.8rem, 3vw, 1rem);
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  font-weight: bold;
  min-width: 14rem;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: "D-DIN-Bold";
}
.defaultcta .fas {
  font-size: 0.8rem;
  color: var(--color-yellow);
}
.defaultcta:hover, .defaultcta:active {
  text-decoration: none;
  background: var(--color-green-hover);
}
.defaultcta:hover .fas, .defaultcta:active .fas {
  color: var(--color-white);
}
.defaultcta--blue {
  background: var(--button-blue-bg);
  color: var(--button-txt);
}
.defaultcta--warning {
  background: var(--button-warning-bg);
  color: var(--button-warning-txt);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.defaultcta--warning:hover, .defaultcta--warning:active {
  background: var(--button-warning-bg-hover);
}
.defaultcta--warning:hover .cta__text, .defaultcta--warning:active .cta__text {
  animation: slideup 0.6s ease-in-out infinite alternate;
}
@keyframes slideup {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.5);
  }
}
.defaultcta--secondary {
  color: var(--button-secondary-txt);
  background-color: transparent;
  border: 2px solid var(--button-secondary-bg);
  overflow: hidden;
}
.defaultcta--secondary span {
  z-index: 1;
}
.defaultcta--secondary::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--button-secondary-bg);
  transition: width 0.3s ease;
  z-index: -1;
}
.defaultcta--secondary:hover {
  color: var(--button-txt);
  background-color: transparent;
}
.defaultcta--secondary:hover::after {
  width: 100%;
}
.defaultcta--secondary:target {
  display: none;
}
.defaultcta--disabled {
  background: var(--button-disabled-bg);
  color: var(--button-disabled-txt);
}
.defaultcta--disabled:hover, .defaultcta--disabled:active {
  background: var(--buttom-disabled-bg-hover);
}
.defaultcta--ouline {
  background-color: transparent;
  border: 2px solid var(--color-white);
}
.defaultcta--ouline:active, .defaultcta--ouline:hover {
  border-color: var(--color-green-hover);
  color: var(--color-green-hover);
}
.defaultcta--outline-white {
  color: var(--button-txt);
  background-color: transparent;
  border: 2px solid var(--color-white);
  overflow: hidden;
}
.defaultcta--outline-white span {
  z-index: 1;
}
.defaultcta--outline-white::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  transition: width 0.3s ease;
  z-index: -1;
}
.defaultcta--outline-white:hover {
  color: var(--color-black);
  background-color: transparent;
}
.defaultcta--outline-white:hover::after {
  width: 100%;
}
.defaultcta--yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
  box-shadow: 0.2rem 0.2rem var(--color-black);
  -moz-box-shadow: 0.2rem 0.2rem var(--color-black);
  -webkit-box-shadow: 0.2rem 0.2rem var(--color-black);
}
.defaultcta--white {
  background-color: var(--color-white);
  color: var(--color-black);
}

.textlink {
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: var(--color-black);
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-s);
}
.textlink:active, .textlink:hover {
  text-decoration: underline;
}
.textlink .fas {
  color: var(--color-yellow);
}

.box-cta {
  grid-column: 3/4;
  grid-row: 2/3;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  font-size: 1rem;
  text-align: left;
  border: solid var(--color-white);
  border-width: 0.5rem 0 0 0.5rem;
}
.box-cta .fas {
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  transform: rotate(-45deg);
  color: var(--color-yellow);
  font-size: 1.5rem;
}
.box-cta:hover, .box-cta:active {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.box-cta:hover .fas, .box-cta:active .fas {
  color: var(--color-black);
}
.box-cta--yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.box-cta--yellow:hover, .box-cta--yellow:active {
  background: var(--color-black);
  color: var(--color-white);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: flex-start;
}
.logo a {
  max-width: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo a img {
  width: 100%;
  height: auto;
}

.slider__item {
  display: flex;
  flex-direction: column;
}
.slider__item a, .slider__item img {
  width: 100%;
  height: auto;
  display: block;
}

.form {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
.form__item {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 2rem;
}
.form__item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 0.125rem;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}
.form__item label {
  font-size: var(--font-size-m);
  color: var(--color-dark-gray);
  top: 3rem;
  left: 1rem;
  z-index: 2;
  transition: all 1s ease;
  position: absolute;
}
.form__item input {
  font-size: var(--font-size-m);
  line-height: 20px;
  border: solid var(--color-light-gray);
  border-width: 0 0 1px 0;
  padding: var(--spacing-m);
  background-color: var(--color-light-gray);
}
.form__item input:not(:-moz-placeholder) + label {
  top: 0.5rem;
}
.form__item input:not(:placeholder-shown) + label, .form__item input:focus + label {
  top: 0.5rem;
}
.form__item:focus-within::before {
  transform: scaleX(1);
}
.form__item:focus-within input {
  box-shadow: 0 0 10px #dedede;
  -moz-box-shadow: 0 0 10px #dedede;
  -webkit-box-shadow: 0 0 10px #dedede;
}
.form__item .defaultcta {
  align-self: flex-end;
}

.social {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.social a {
  display: flex;
  flex-direction: column;
  opacity: 0.8;
}
.social a:active, .social a:hover {
  opacity: 1;
}
.social a img {
  width: 2.2rem;
  height: auto;
}

.hamburger {
  display: none;
}
.hamburger img {
  width: 2.5rem;
  height: 2.5rem;
}
.hamburger img:hover, .hamburger img:active {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .hamburger {
    display: flex;
    flex-direction: column;
  }
}

.logoHolder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  mix-blend-mode: multiply;
  width: 90%;
  max-width: 80rem;
}
.logoHolder a img {
  width: 100%;
  height: auto;
}

.metricas {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  background: var(--color-yellow-gradient-2);
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
}
@media screen and (min-width: 767px) {
  .metricas {
    width: 90%;
    position: absolute;
    bottom: -10rem;
  }
}
.metricas > div {
  padding: 1rem;
  border-right: 1px solid #f6aa08;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.metricas > div:last-child {
  border: none;
}
.metricas > div .data {
  display: flex;
  align-items: center;
}
.metricas > div .data__icon {
  font-size: 3rem;
  font-family: "D-DIN-Bold";
}
.metricas > div h2 {
  font-size: 3rem;
  line-height: 3rem;
}
.metricas > div p {
  font-size: 1.1rem;
  line-height: 1.2rem;
}

.articulo {
  width: 20rem;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  box-shadow: 0 0 10px #dedede;
  -moz-box-shadow: 0 0 10px #dedede;
  -webkit-box-shadow: 0 0 10px #dedede;
  transition: all 1s ease;
  color: var(--color-black);
}
.articulo:hover, .articulo:active {
  transform: scale(1.02);
  transition: all 1s ease;
}
.articulo:hover .arrow-link, .articulo:active .arrow-link {
  color: var(--color-yellow);
}
.articulo__img {
  display: flex;
  flex-direction: column;
  max-height: 11rem;
}
.articulo__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.articulo__desc {
  padding: 0 1rem 3rem;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  height: 100%;
}
.articulo__desc h2 {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
.articulo__desc p {
  text-align: justify;
}

.arrow-link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 1.2rem;
  color: var(--color-black);
}

.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.layout__item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 1s ease;
}
.layout__item img {
  width: 2rem;
  height: 2rem;
}
.layout__item:hover, .layout__item:active {
  color: var(--color-yellow);
  transform: scale(1.1);
  transition: all 1s ease;
}
.layout__item--disabled {
  mix-blend-mode: luminosity;
}
.layout__item .selected {
  mix-blend-mode: normal;
}

.pager {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: 6rem;
  gap: 0.3rem;
  align-self: flex-end;
  padding: var(--spacing-m) 0;
}
.pager__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0.2rem;
  gap: 0.3rem;
  cursor: pointer;
}
.pager__item .fas {
  font-size: 0.7rem;
}
.pager__item--selected, .pager__item:hover, .pager__item:active {
  background-color: var(--color-yellow);
  color: var(--color-white);
}

.title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 0;
}
.title--single {
  justify-content: center;
}
.title--single h1 {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 2.5rem;
}
.title--single h1 span {
  text-transform: uppercase;
  left: 1rem;
}
.title h1 span {
  color: var(--color-yellow);
}

.prod-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: var(--spacing-m);
  gap: 0.5rem;
}
@media screen and (min-width: 767px) {
  .prod-title {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
}
.prod-title h1 {
  color: var(--color-yellow);
  font-size: 4rem;
  text-transform: uppercase;
}
.prod-title h2 {
  text-align: left;
  line-height: 1.6rem;
}
@media screen and (min-width: 767px) {
  .prod-title h2 {
    max-width: 16rem;
  }
}

.contenido {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: justify;
  padding: 3rem 0;
  align-items: flex-start;
}

.general-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 95%;
  padding-left: 1rem;
}
.general-list li {
  list-style: none;
  text-align: left;
  list-style: disc;
  line-height: 1.5rem;
  font-size: 1rem;
}
.general-list li::marker {
  color: var(--color-yellow);
  font-size: 1.5rem;
}

.cookies {
  background-color: var(--color-white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: var(--spacing-m);
  box-shadow: 0.2rem 0.2rem var(--color-black);
  -moz-box-shadow: 0.2rem 0.2rem var(--color-black);
  -webkit-box-shadow: 0.2rem 0.2rem var(--color-black);
}

.hide {
  animation: hide 1s;
  -webkit-animation: hide 1s;
  bottom: -10rem;
}

/* Form animation*/
@keyframes hide {
  from {
    bottom: 0px;
    opacity: 1;
  }
  to {
    bottom: -10rem;
    opacity: 0;
  }
}
/* Chrome, Safari, Opera */
.alerts {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--color-yellow);
  color: #000;
  padding: var(--spacing-s);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-m);
  width: 100%;
}
.alerts img {
  fill: var(--color-yellow);
  width: 2rem;
  height: 2rem;
}
.alerts svg path {
  fill: red;
}
.alerts--error {
  background: var(--color-red);
  color: var(--color-white);
}
.alerts--error img {
  fill: var(--color-white);
}

.menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  height: 100%;
  min-width: 16rem;
}
.menu:target {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: show-menu 0.5s;
  background-color: var(--color-black);
}
@media screen and (min-width: 1200px) {
  .menu {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    height: auto;
    position: relative;
  }
}
.menu__link {
  color: var(--color-text-tertiary);
  padding: 0.6rem;
  text-align: left;
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-align: left;
  width: auto;
  border-bottom: 2px solid var(--color-text-primary);
}
@media screen and (max-width: 1200px) {
  .menu__link {
    text-align: left;
    padding: 0.6rem;
    width: 100%;
    font-size: 1.2rem;
  }
}
.menu__link:hover, .menu__link:active, .menu__link--selected {
  border-color: 2px solid var(--color-white);
}
.menu__link--outline {
  border: 2px solid var(--color-white);
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
}
.menu__hide {
  color: var(--color-white);
  font-size: 3rem;
  text-align: right;
  padding: 1rem;
}
.menu__hide:active, .menu__hide:hover {
  border-color: var(--color-black);
}
.menu__hide:target {
  animation: hide-menu 1s;
}
@media screen and (min-width: 1200px) {
  .menu__hide {
    display: none;
  }
}

/* mobile menu animation*/
@keyframes show-menu {
  from {
    right: -16rem;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
@keyframes hide-menu {
  from {
    right: 0px;
    opacity: 1;
  }
  to {
    right: -16rem;
    opacity: 0;
  }
}
.bannerbox {
  display: flex;
  flex-direction: column;
}
.bannerbox > a {
  width: 100%;
  height: auto;
}
.bannerbox img {
  width: 100%;
  height: auto;
}

.carbon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .carbon {
    width: 100%;
  }
}
.carbon a {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  background-color: #000;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-l);
  border-radius: 1rem;
  -moz-border-radius: 1rem;
  -webkit-border-radius: 1rem;
}
.carbon a > img {
  position: absolute;
  bottom: 0;
  width: 200%;
}
@media screen and (min-width: 1000px) {
  .carbon a > img {
    width: 100%;
    position: relative;
  }
}
@media screen and (min-width: 1000px) {
  .carbon a {
    overflow: initial;
    width: 100%;
    padding: 0;
    padding: initial;
    border-radius: 0;
  }
}
.carbon__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-m);
}
.carbon__text h2 {
  font-size: clamp(2.5rem, 4vw, 2.2rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  letter-spacing: -2px;
  font-style: italic;
  font-weight: bold;
  line-height: initial;
}
.carbon__text h2 span {
  color: var(--color-orange);
  font-size: clamp(3rem, 6vw, 5rem);
}
.carbon__text p {
  color: #fff;
  max-width: 500px;
}
@media screen and (min-width: 1000px) {
  .carbon__text {
    position: absolute;
    left: 3rem;
    top: 20%;
    width: 45%;
  }
}
.carbon__glove {
  width: 70%;
}
@media screen and (min-width: 1000px) {
  .carbon__glove {
    position: absolute;
    right: 20%;
    top: -2rem;
    width: 25%;
  }
}
.carbon__glove img {
  width: 100%;
  height: auto;
  rotate: 20deg;
}
.carbon__logo {
  width: 70%;
}
@media screen and (min-width: 1000px) {
  .carbon__logo {
    position: absolute;
    right: 3rem;
    bottom: 2rem;
    width: 10rem;
  }
}

.scrolled-banner h2 {
  animation: left 0.6s linear forwards;
  left: -20rem;
  opacity: 0;
}
.scrolled-banner p {
  animation: bottom 0.6s linear forwards;
  bottom: -10rem;
  opacity: 0;
}
.scrolled-banner .defaultcta {
  opacity: 0;
  animation: bottom 0.6s linear forwards;
  bottom: -5rem;
  animation-delay: 0.6s;
}

/* Banner animation*/
@keyframes left {
  from {
    left: -20rem;
    opacity: 0;
  }
  to {
    left: 0rem;
    opacity: 1;
  }
}
@keyframes bottom {
  from {
    bottom: -5rem;
    opacity: 0;
  }
  to {
    bottom: 0rem;
    opacity: 1;
  }
}
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal .closebtn {
  position: absolute;
  right: var(--spacing-l);
  top: var(--spacing-l);
  z-index: 2;
  font-size: 3rem;
  color: var(--color-black);
}
.modal .closebtn:active, .modal .closebtn:hover {
  color: var(--color-green);
}
.modal:target {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__msg {
  width: 90%;
  max-width: 40rem;
  background-color: var(--color-white);
  padding: var(--spacing-l);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  border-radius: 1rem;
  -moz-border-radius: 1rem;
  -webkit-border-radius: 1rem;
  /* Add animation */
  animation: show 0.5s;
  /* Chrome, Safari, Opera */
  -webkit-animation: show 0.5s;
}
.modal__msg h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
.modal__msg p {
  color: var(--color-text-secondary);
}

/* Form animation*/
@keyframes show {
  from {
    top: -10rem;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}
.video {
  display: flex;
  flex-direction: column;
  align-self: center;
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .video {
    flex-direction: row;
  }
}
.video__holder {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .video__holder {
    width: 70%;
  }
}
.video__holder iframe {
  display: block;
  height: 13rem;
}
@media screen and (min-width: 800px) {
  .video__holder iframe {
    height: 25rem;
  }
}
.video__desc {
  width: 100%;
  background-color: var(--color-black);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .video__desc {
    padding: 3rem;
    width: 40%;
  }
}
.video__desc img {
  width: 70%;
  max-width: 15rem;
}
.video__desc p {
  color: var(--color-white);
  text-align: justify;
  font-size: clamp(1.2rem, 2vw, 1rem);
}
@media screen and (min-width: 800px) {
  .video__desc p {
    text-align: left;
  }
}

.descripcion {
  background-color: var(--color-light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
  margin-bottom: 3rem;
  max-width: inherit;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .descripcion {
    padding: 4rem 0 6rem;
    margin-bottom: 9rem;
  }
}
.descripcion__text {
  width: 80rem;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
  align-items: center;
}
.descripcion__text p, .descripcion__text h2 {
  max-width: 65rem;
  font-size: 1.4rem;
  line-height: 2rem;
}

.servicios {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
.servicios__desc {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60rem;
}
.servicios__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 900px) {
  .servicios__list {
    grid-template-columns: 1fr 1fr;
  }
}
.servicios__list > div {
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  overflow: hidden;
}
.servicios__list--bg {
  background-color: var(--color-light-gray);
  padding: 1rem;
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
}
.servicios__details {
  text-align: left;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.servicios__details--bg {
  background-color: var(--color-light-gray);
}
.servicios__list-gallery {
  display: flex;
  flex-direction: column;
}
.servicios__list-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
}
.servicios__list-gallery--1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.servicios__list-gallery--1 img {
  grid-column: 1/4;
  grid-row: 1/3;
}
.servicios__list-gallery--1 img:last-child {
  grid-column: 3/4;
  grid-row: 2/3;
  border: solid var(--color-white);
  border-width: 0.6rem 0 0 0.6rem;
  border-radius: 0.2rem 0 0 0;
  -moz-border-radius: 0.2rem 0 0 0;
  -webkit-border-radius: 0.2rem 0 0 0;
}
.servicios__list-gallery--2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-s);
}
.servicios__list-gallery--2 img:first-child {
  grid-column: 2/4;
  grid-row: 1/3;
}
.servicios__list-gallery--2 img:nth-child(2) {
  grid-row: 1/2;
  grid-column: 1/2;
}
.servicios__list-gallery--2 img:nth-child(3) {
  grid-row: 2/3;
  grid-column: 1/2;
}
.servicios__list-gallery--3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-s);
  align-items: flex-end;
}
.servicios__list-gallery--3 img:first-child {
  grid-column: 1/4;
  grid-row: 1/2;
}
.servicios__list-gallery--3 img:nth-child(2) {
  grid-column: 4/6;
}
.servicios__list-gallery--3 img:nth-child(3) {
  grid-column: 1/6;
  grid-row: 2/3;
  height: 8rem;
}
.servicios__list-gallery--3 .box-cta {
  grid-column: 3/4;
  grid-row: 1/2;
  max-height: 8rem;
  width: 8rem;
  border-color: var(--color-light-gray);
}

.proceso {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  padding-bottom: 4rem;
}
.proceso h2 {
  text-transform: uppercase;
  max-width: 60rem;
}
.proceso p {
  font-size: 1.5rem;
  font-weight: bold;
  max-width: 40rem;
  line-height: 1.8rem;
}
.proceso__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 767px) {
  .proceso__list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
  }
}
.proceso__list-item {
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  width: 100%;
  padding: 2rem;
}
.proceso__list-item h3 {
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1.5rem;
}
.proceso__list-item--1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
@media screen and (min-width: 767px) {
  .proceso__list-item--1 {
    grid-column: 3/6;
  }
}
.proceso__list-item--1 img {
  width: 100%;
  height: auto;
  max-width: 15rem;
}
.proceso__list-item--2 {
  background-color: var(--color-gray);
}
@media screen and (min-width: 767px) {
  .proceso__list-item--2 {
    grid-column: 1/4;
    grid-row: 2/3;
  }
}
.proceso__list-item--3 {
  background-color: var(--color-dark-gray);
}
@media screen and (min-width: 767px) {
  .proceso__list-item--3 {
    grid-column: 3/6;
    top: -1rem;
  }
}
.proceso__list-item--4 {
  background-color: var(--color-darker-gray);
}
@media screen and (min-width: 767px) {
  .proceso__list-item--4 {
    grid-column: 5/8;
    grid-row: 2/3;
  }
}

@media screen and (min-width: 767px) {
  .realidad {
    width: 90%;
  }
}

.realidad-virtual {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
}
.realidad-virtual__img {
  width: 100%;
  height: auto;
  grid-column: 1/12;
  grid-row: 1/14;
  display: none;
}
@media screen and (min-width: 767px) {
  .realidad-virtual__img {
    display: flex;
  }
}
.realidad-virtual__img--movil {
  display: flex;
}
@media screen and (min-width: 767px) {
  .realidad-virtual__img--movil {
    display: none;
  }
}
.realidad-virtual__desc {
  grid-column: 2/11;
  grid-row: 5/8;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}
@media screen and (min-width: 767px) {
  .realidad-virtual__desc {
    grid-column: 5/12;
    grid-row: 7/13;
  }
}
.realidad-virtual__desc p {
  font-weight: bold;
  font-size: 1.2rem;
}

.doble-cta {
  display: flex;
  gap: var(--spacing-m);
  justify-content: center;
}
.doble-cta .defaultcta {
  min-width: inherit;
}
@media screen and (min-width: 767px) {
  .doble-cta .defaultcta {
    min-width: 14rem;
  }
}

.acreditaciones {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
}
.acreditaciones__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  width: 90%;
  gap: 0.8rem;
}
.acreditaciones__logos a {
  display: flex;
  flex-direction: column;
}
.acreditaciones__logos a img {
  width: 100%;
  height: auto;
}

.noticias {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  padding-bottom: 3rem;
  width: 100%;
  scrollbar-width: none;
}
.noticias__list {
  display: grid;
  grid-auto-columns: min-content;
  gap: var(--spacing-m);
  padding: 1rem;
  grid-auto-flow: column;
  overflow-x: auto;
}

.gente {
  width: 100%;
  max-width: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../images/gente-meridia-bg.png) no-repeat center bottom var(--color-yellow);
  background-size: cover;
}
.gente__holder {
  max-width: 80rem;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (min-width: 767px) {
  .gente__holder {
    flex-direction: row;
  }
}
.gente__img {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 767px) {
  .gente__img {
    order: 1;
  }
}
.gente__img img {
  width: 100%;
  height: auto;
}
.gente__desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-m);
  padding: 2rem 1rem;
  align-self: center;
}
@media screen and (min-width: 767px) {
  .gente__desc {
    order: 2;
  }
}
.gente__desc h2 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
}

.articles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 1rem;
}
.articles__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  padding: 2rem;
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
}
.articles__item:nth-child(even) {
  background-color: var(--color-light-gray);
}
.articles__item h2 {
  display: flex;
  flex-direction: column;
  color: var(--color-yellow);
  line-height: 1.8rem;
}
.articles__item h2 span {
  color: var(--color-black);
  font-size: 1.2rem;
}
.articles__item p a {
  color: var(--color-black);
  text-decoration: underline;
}
.articles__item p a:hover, .articles__item p a:active {
  color: var(--color-green);
}
.articles__item .defaultcta {
  align-self: flex-end;
}

.grid-style {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0 3rem;
  align-items: center;
  width: 90%;
  max-width: 50rem;
}
.newsletter h2 {
  text-transform: uppercase;
}
.newsletter__input {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 30rem;
}
.newsletter__input form {
  display: flex;
  width: 100%;
}
.newsletter__input form input {
  background-color: var(--color-light-gray);
  color: var(--color-gray);
  border: none;
  padding: 1rem;
  width: 70%;
  font-size: 1rem;
}
.newsletter__input form button {
  border-radius: 0;
  width: 30%;
  box-shadow: none;
}

.contactenos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 3rem 0;
  gap: 2rem;
}
.contactenos__info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contactenos__info p a {
  color: var(--color-black);
}
.contactenos__info p a:hover, .contactenos__info p a:active {
  text-decoration: underline;
  color: var(--color-green);
}
.contactenos__form {
  display: flex;
  flex-direction: column;
}
.contactenos__form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.contactenos__form form div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contactenos__form form div label {
  font-size: var(--font-size-m);
}
.contactenos__form form div input[type=text],
.contactenos__form form div input[type=email],
.contactenos__form form div input[type=tel],
.contactenos__form form div textarea {
  border: 1px solid var(--color-light-gray);
  background-color: var(--color-light-gray);
  font-size: var(--font-size-m);
  padding: var(--spacing-m);
}
.contactenos__form form div input[type=text]:hover, .contactenos__form form div input[type=text]:active,
.contactenos__form form div input[type=email]:hover,
.contactenos__form form div input[type=email]:active,
.contactenos__form form div input[type=tel]:hover,
.contactenos__form form div input[type=tel]:active,
.contactenos__form form div textarea:hover,
.contactenos__form form div textarea:active {
  border-color: var(--color-green);
}
.contactenos__form form div textarea {
  min-height: 6rem;
}
.contactenos__form form div input[type=submit] {
  align-self: flex-end;
  min-width: 50%;
}

.valueHolder {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.5rem;
}
@media screen and (min-width: 1000px) {
  .valueHolder {
    padding-top: 8rem;
    gap: 0;
  }
}
.valueHolder > div {
  width: 100%;
  text-align: left;
  background: var(--color-light-gray);
  padding: 3rem 2rem 2rem;
  box-shadow: 0 0 10px #dedede;
  -moz-box-shadow: 0 0 10px #dedede;
  -webkit-box-shadow: 0 0 10px #dedede;
}
@media screen and (min-width: 1000px) {
  .valueHolder > div {
    width: 45%;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .valueHolder > div:nth-child(1), .valueHolder > div:nth-child(5), .valueHolder > div:nth-child(9) {
    display: none;
  }
}
.valueHolder > div:nth-child(4), .valueHolder > div:nth-child(10) {
  background: var(--color-darker-gray);
}
.valueHolder > div:nth-child(4) p, .valueHolder > div:nth-child(10) p {
  color: var(--color-white);
}
.valueHolder > div h2 {
  font-size: 1.5rem;
  padding: 6px 15px;
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 0;
  background-color: var(--color-yellow);
}
.valueHolder > div p {
  text-align: justify;
}
.valueHolder > div.lineHolder {
  width: 100%;
  top: 0;
  border: none;
  height: 8rem;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
}
@media screen and (min-width: 1000px) {
  .valueHolder > div.lineHolder {
    width: 10%;
    padding: 0;
    border-bottom: 2px solid var(--color-yellow);
    margin-bottom: 10px;
    height: 15rem;
    top: -8rem;
  }
}
.valueHolder > div.lineHolder .line {
  top: 0;
  width: 2px;
  margin: 0 auto;
  height: 100%;
  background-color: var(--color-yellow);
}

.nosotros {
  max-width: inherit;
  width: 100%;
}
.nosotros-grid {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  padding: 3rem 0;
}
.nosotros-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;
  gap: 0.5rem;
}
.nosotros-grid__item h2 {
  font-size: 2rem;
  color: var(--color-white);
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.nosotros-grid__item h2 span {
  font-size: 2.5rem;
}
.nosotros-grid__item p {
  text-align: left;
  color: var(--color-white);
}
.nosotros-grid__item--foto {
  grid-column: 1/16;
  grid-row: 2/5;
  padding: 0;
}
.nosotros-grid__item--foto img {
  width: 100%;
  height: auto;
}
.nosotros-grid__item--mision {
  grid-column: 1/16;
  grid-row: 1/2;
  background-color: var(--color-black);
}
@media screen and (min-width: 1000px) {
  .nosotros-grid__item--mision {
    grid-column: 4/8;
    grid-row: 1/4;
  }
}
.nosotros-grid__item--vision {
  grid-column: 1/16;
  grid-row: 5/6;
  background-color: var(--color-yellow);
}
@media screen and (min-width: 1000px) {
  .nosotros-grid__item--vision {
    grid-column: 9/13;
    grid-row: 3/6;
  }
}
.nosotros-grid__item--vision h2, .nosotros-grid__item--vision p {
  color: var(--color-black);
}

.profile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  max-width: 60rem;
  width: 90%;
  padding-top: 3rem;
}
.profile__img {
  display: flex;
  flex-direction: column;
  order: 2;
}
@media screen and (min-width: 800px) {
  .profile__img {
    order: inherit;
    padding: 3rem 3rem 0;
  }
}
.profile__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  order: 1;
}
@media screen and (min-width: 800px) {
  .profile__text {
    order: inherit;
  }
}
.profile__text v h3 {
  font-weight: normal;
}
.profile__text p {
  text-align: justify;
  display: flex;
  gap: 0.5rem;
}
.profile__text p span.end {
  align-self: flex-end;
}
.profile__text p span img {
  width: 2rem;
}

.nosotros-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
  align-items: center;
  justify-content: center;
  max-width: 60rem;
}
@media screen and (min-width: 767px) {
  .nosotros-head {
    flex-direction: row;
  }
}
.nosotros-head__texto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .nosotros-head__texto {
    align-items: flex-end;
  }
}
.nosotros-head__texto h1 {
  text-transform: uppercase;
  font-size: 3.5rem;
  display: flex;
  flex-direction: column;
  line-height: 3rem;
}
@media screen and (min-width: 767px) {
  .nosotros-head__texto h1 {
    text-align: right;
  }
}
.nosotros-head__texto h1 span {
  color: var(--color-yellow);
}
.nosotros-head__texto p {
  font-weight: bold;
  text-align: center;
  max-width: 70%;
}
@media screen and (min-width: 767px) {
  .nosotros-head__texto p {
    text-align: right;
  }
}
.nosotros-head__galeria {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.nosotros-head__galeria-item {
  display: flex;
  flex-direction: column;
}
.nosotros-head__galeria-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nosotros-head__galeria-item--1 {
  grid-column: 1/4;
  grid-row: 1/3;
}
.nosotros-head__galeria-item--2 {
  grid-column: 4/7;
  grid-row: 1/6;
}
.nosotros-head__galeria-item--3 {
  grid-column: 1/5;
  grid-row: 3/6;
  border: solid var(--color-white);
  border-width: 0.5rem 0.5rem 0 0;
}

.especialidad {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 25rem;
  padding-bottom: 0.3rem;
}
@media screen and (min-width: 767px) {
  .especialidad {
    flex-direction: row;
  }
}
.especialidad__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  gap: 1rem;
}
@media screen and (min-width: 767px) {
  .especialidad__item {
    width: 50%;
    padding: 4rem 3rem;
  }
}
.especialidad__item p {
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .especialidad__item ul {
    width: 80%;
  }
}
.especialidad--desarrollo .especialidad__item--1 {
  background: url("../images/servicios/desarrollo-inmobiliario-3.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 767px) {
  .especialidad--desarrollo .especialidad__item--1 {
    order: 2;
  }
}
.especialidad--desarrollo .especialidad__item--2 {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
}
@media screen and (min-width: 767px) {
  .especialidad--desarrollo .especialidad__item--2 {
    width: 55%;
  }
}
.especialidad--proyectos .especialidad__item--1 {
  background: url("../images/servicios/gerencia-de-proyectos-4.jpg") no-repeat center;
  background-size: cover;
}
.especialidad--proyectos .especialidad__item--2 {
  background: var(--color-yellow) url("../images/gente-meridia-bg.png") no-repeat bottom center;
  background-size: contain;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .especialidad--proyectos .especialidad__item--2 {
    width: 55%;
  }
}
.especialidad--diligencia .especialidad__item--1 {
  background: url("../images/servicios/debida-diligencia-analisis-en-factibilidad-4.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 767px) {
  .especialidad--diligencia .especialidad__item--1 {
    order: 2;
  }
}
.especialidad--diligencia .especialidad__item--1 .title {
  max-width: 22rem;
}
.especialidad--diligencia .especialidad__item--2 {
  width: 100%;
}
@media screen and (min-width: 767px) {
  .especialidad--diligencia .especialidad__item--2 {
    width: 55%;
  }
}
.especialidad__title {
  display: flex;
  flex-direction: column;
  max-width: 18rem;
  width: 90%;
}
.especialidad__title h2 {
  text-transform: uppercase;
}
.especialidad__title h2, .especialidad__title .textlink {
  color: var(--color-white);
  justify-content: center;
  text-shadow: 0 0 0.8rem var(--color-black);
}

.pill-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: var(--spacing-m) 0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.pill-nav__item {
  font-size: 1rem;
  padding: var(--spacing-xs) var(--spacing-m);
  background-color: var(--color-light-gray);
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  cursor: pointer;
  white-space: nowrap;
}
.pill-nav__item--selected, .pill-nav__item:hover, .pill-nav__item:active {
  background-color: var(--color-gray);
  color: var(--color-white);
}

.proyectos {
  gap: 3rem;
  align-items: flex-start;
  padding-bottom: 3rem;
}
.proyectos__descripcion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.proyectos__descripcion h2 {
  justify-content: flex-start;
}
.proyectos__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.proyectos__galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media screen and (min-width: 767px) {
  .proyectos__galeria {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 767px) {
  .proyectos__galeria > div {
    display: flex;
    flex-direction: column;
    min-height: 9rem;
  }
}
.proyectos__galeria > div a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.proyectos__galeria > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.proyectos__galeria-cta {
  background: var(--color-black) url("../images/meridia-icono-black.jpg") no-repeat left bottom;
  background-size: 100%;
  padding: 1rem;
  grid-column: 1/3;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 767px) {
  .proyectos__galeria-cta {
    grid-column: 1/2;
  }
}
.proyectos__galeria-cta .textlink {
  color: var(--color-white);
  flex-direction: row;
  height: auto;
}
.proyectos__galeria .yellow-bg {
  background: var(--color-yellow-gradient);
  padding: 2rem;
  align-items: start;
  grid-column: 1/3;
}
.proyectos__galeria .yellow-bg ul li::marker {
  color: var(--color-black);
}
@media screen and (min-width: 767px) {
  .proyectos__galeria .yellow-bg {
    grid-column: 2/6;
    grid-row: 1/3;
  }
}
@media screen and (min-width: 767px) {
  .proyectos__galeria--2, .proyectos__galeria--3, .proyectos__galeria--4, .proyectos__galeria--5 {
    grid-column: 1/2;
  }
}
.proyectos__galeria--6 {
  display: none;
}
@media screen and (min-width: 767px) {
  .proyectos__galeria--6 {
    grid-column: 2/6;
    grid-row: 3/6;
  }
}

.tecnologia {
  max-width: inherit;
  width: 100%;
}
.tecnologia__item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 767px) {
  .tecnologia__item {
    flex-direction: row;
  }
}
.tecnologia__item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.tecnologia__item--1 h1, .tecnologia__item--2 h1, .tecnologia__item--4 h1 {
  color: var(--color-black);
}
@media screen and (min-width: 767px) {
  .tecnologia__item--2, .tecnologia__item--4 {
    flex-direction: row-reverse;
  }
}
.tecnologia__item--5 {
  margin: 0 2rem;
}
@media screen and (min-width: 767px) {
  .tecnologia__item--5 {
    margin: 2rem 0 0;
  }
}
.tecnologia__item--5 .tecnologia__item-texto {
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (min-width: 767px) {
  .tecnologia__item--5 .tecnologia__item-texto {
    border-right: 1px solid #dedede;
    border-bottom: none;
  }
}
.tecnologia__item--5 .tecnologia__item-texto:last-child {
  border: none;
}
.tecnologia__item-imagen {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 767px) {
  .tecnologia__item-imagen {
    width: 45%;
  }
}
.tecnologia__item-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tecnologia__item-texto {
  padding: 2rem;
}
@media screen and (min-width: 767px) {
  .tecnologia__item-texto {
    width: 55%;
    padding: 5rem;
  }
}
.tecnologia__item-texto h2 {
  font-weight: normal;
}
.tecnologia__item-texto p {
  text-align: justify;
}
.tecnologia__item-texto--yellow {
  background: var(--color-yellow);
}
.tecnologia__item-texto--gray {
  background: var(--color-light-gray);
}
.tecnologia__item-texto--black {
  background: var(--color-black);
}
.tecnologia__item-texto--black h1 {
  color: var(--color-yellow);
}
.tecnologia__item-texto--black h2, .tecnologia__item-texto--black p {
  color: var(--color-white);
}

.single-cta {
  padding: 2rem 0;
}

.main-banner {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  max-width: inherit;
}
.main-banner__imagen {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  grid-column: 1/9;
  grid-row: 1/9;
}
.main-banner__texto {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  grid-column: 2/8;
  grid-row: 1/9;
  color: var(--color-white);
  padding: 2rem 0;
}
@media screen and (min-width: 767px) {
  .main-banner__texto {
    grid-column: 2/6;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .main-banner__texto {
    grid-column: 2/5;
  }
}
.main-banner__texto h1 {
  display: flex;
  flex-direction: column;
  color: var(--color-yellow);
  font-size: clamp(4rem, 8vw, 6rem);
  align-items: center;
  text-transform: uppercase;
  line-height: 4rem;
  text-shadow: 0 0 10px var(--color-black);
}
@media screen and (min-width: 767px) {
  .main-banner__texto h1 {
    align-items: flex-start;
  }
}
.main-banner__texto h1 span {
  font-size: clamp(3rem, 6vw, 4rem);
  color: var(--color-white);
}
.main-banner__texto p {
  text-align: center;
  font-size: 1.3rem;
}
@media screen and (min-width: 767px) {
  .main-banner__texto p {
    text-align: left;
  }
}
.main-banner__sub {
  grid-column: 2/4;
  grid-row: 8/9;
}
.main-banner__sub h2 {
  text-transform: uppercase;
  color: var(--color-white);
  padding-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 2.2rem);
}
@media screen and (min-width: 767px) {
  .main-banner__sub h2 {
    text-align: left;
  }
}

.grid-gente {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  padding: 4rem 0;
}
.grid-gente__item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-black);
  padding: 2rem;
  gap: 1rem;
}
@media screen and (min-width: 1000px) {
  .grid-gente__item {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
  }
}
.grid-gente__item--yellow {
  background: var(--color-yellow-gradient);
  grid-template-rows: repeat(4, 1fr);
}
.grid-gente__txt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.grid-gente__txt h1 {
  font-size: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: auto;
  gap: 0.5rem;
}
.grid-gente__txt h1 span {
  font-size: 4rem;
}
.grid-gente__txt p {
  text-align: justify;
}
.grid-gente__txt--1 {
  grid-column: 1/4;
  grid-row: 1/2;
}
.grid-gente__txt--2 {
  grid-column: 4/7;
  grid-row: 4/7;
}
.grid-gente__img {
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-gente__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-gente__img--1 {
  grid-column: 4/7;
  grid-row: 1/4;
}
.grid-gente__img--2 {
  grid-column: 1/4;
  grid-row: 2/5;
  top: 15%;
}
.grid-gente__highlight {
  background-color: var(--color-black);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 3/5;
  grid-row: 3/4;
  padding: 2rem 3rem;
  top: -10%;
}
@media screen and (min-width: 1000px) {
  .grid-gente__highlight {
    padding: 0 3rem;
    order: 1;
  }
}
.grid-gente__highlight h2 {
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  gap: 0.5rem;
}
.grid-gente__highlight h2 span {
  font-family: "D-DIN";
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.highlight-gente {
  grid-column: 4/7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.highlight-gente h2 {
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  font-family: "D-DIN";
  line-height: 2rem;
}
@media screen and (min-width: 1000px) {
  .highlight-gente h2 {
    font-size: 2.5rem;
    gap: 0.5rem;
  }
}
.highlight-gente h2 .bold {
  font-family: "D-DIN-Bold";
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 3rem;
}
.highlight-gente--2 {
  grid-column: 1/3;
}
.highlight-gente--2 h2 {
  color: var(--color-white);
}

.gallery-gente {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-column: 3/7;
  gap: 0.3rem;
}
.gallery-gente__item {
  display: flex;
  flex-direction: column;
}
.gallery-gente__item a {
  display: flex;
  flex-direction: column;
}
.gallery-gente__item a img {
  width: 100%;
  height: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #000;
  width: 100%;
}
.header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__contact {
  background-color: var(--color-dark-gray);
  font-size: 1rem;
  color: var(--color-white);
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 800px) {
  .header__contact {
    padding: 0.5rem 4rem;
  }
}
.header__contact a {
  color: var(--color-white);
}
.header__contact a:hover, .header__contact a:active {
  text-decoration: underline;
}
.header__contact .contact {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  gap: var(--spacing-m);
  align-items: center;
}
.header__contact .contact a, .header__contact .contact p {
  font-size: 1rem;
  display: flex;
  gap: var(--spacing-s);
  align-items: center;
}
.header__contact .contact a img, .header__contact .contact p img {
  width: 1.4rem;
  height: 1.4rem;
}
.header__contact .contact a span, .header__contact .contact p span {
  display: none;
}
@media screen and (min-width: 800px) {
  .header__contact .contact a span, .header__contact .contact p span {
    display: flex;
  }
}
.header__contact .social {
  justify-content: flex-end;
}
@media screen and (min-width: 800px) {
  .header__contact .social #rightMenu {
    display: none;
  }
}
.header__nav {
  padding: 1rem 2rem;
}
@media screen and (min-width: 800px) {
  .header__nav {
    padding: 1rem 4rem;
  }
}
.header__nav .nav {
  position: fixed;
  right: 0;
  display: flex;
  transform: translate(50rem);
  transition: all 1s ease;
  flex-direction: column;
  z-index: 9999;
  top: 0;
  background: black;
  text-align: left;
  width: 90%;
  height: 100%;
}
@media screen and (min-width: 800px) {
  .header__nav .nav {
    flex-direction: row;
    height: auto;
    position: relative;
    padding: 0;
    width: auto;
    right: 0;
    padding: 1rem 0;
    transform: inherit;
  }
}
.header__nav .nav a {
  font-size: 1rem;
  color: var(--color-white);
  padding: 0.5rem;
}
.header__nav .nav a.current-menu-item {
  border-bottom: 2px solid var(--color-yellow);
}
.header__nav .nav a:hover, .header__nav .nav a:active {
  border-bottom: 2px solid var(--color-yellow);
}
.header__nav .nav a.closebtn {
  display: flex;
  justify-content: flex-end;
}
.header__nav .nav a.closebtn:hover, .header__nav .nav a.closebtn:active {
  border: none;
}
.header__nav .nav a.closebtn img {
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 800px) {
  .header__nav .nav a.closebtn {
    display: none;
  }
}
.header__nav .show {
  transform: translate(0);
  transition: all 1s ease;
}

content {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
content article {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 70rem;
  width: 90%;
}
content article.sliderHolder {
  max-width: inherit;
  width: 100%;
}
content article.full-width {
  max-width: inherit;
  width: 100%;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0 10rem;
  background: var(--color-black);
  border-top: 1.6rem solid var(--color-darker-gray);
}

.footer {
  width: 90%;
  max-width: 80rem;
  display: flex;
  justify-content: center;
  gap: var(--spacing-l);
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 767px) {
  .footer {
    flex-direction: row;
    gap: var(--spacing-xxl);
  }
}
.footer__box {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
  text-align: left;
}
.footer__box > div {
  display: flex;
  flex-direction: column;
}
.footer__box > div.social {
  flex-direction: row;
}
.footer__box a {
  color: var(--color-white);
}
.footer-logo {
  max-width: 10rem;
  display: flex;
  flex-direction: column;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
  align-items: flex-start;
  list-style: none;
}
.footer .footer-nav li a {
  padding: 0.3rem;
  font-size: 1rem;
  border-bottom: 2px solid var(--color-black);
}
.footer .footer-nav li a:hover, .footer .footer-nav li a:active {
  border-color: var(--color-yellow);
}
.footer .footer-nav li.current-menu-item a {
  border-color: var(--color-yellow);
}/*# sourceMappingURL=main.css.map */