:root {
  --font-f-1: "Manrope", sans-serif;
  --font-f-mono: "Fragment Mono", monospace;
  --color-main: #000;
  --color-main-two: #a7a7a7;
  --color-white-100: #ffffff;
  --color-black-100: #000000;
  --color-black-200: #1b242e;
  --color-gray-100: #e6e6e6;
  --color-gray-200: #d9d9d9;
  --color-gray-300: #535353;
  --container-padding-horizontal: 3rem;
  --theme-font-size: 10px;
}

@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/typography/Manrope-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/typography/Manrope-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/typography/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/typography/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/typography/Manrope-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.icons {
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.icons-close {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m6.4 18.308l-.708-.708l5.6-5.6l-5.6-5.6l.708-.708l5.6 5.6l5.6-5.6l.708.708l-5.6 5.6l5.6 5.6l-.708.708l-5.6-5.6z'/%3E%3C/svg%3E");
}

.icons-plus {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 5.5a.5.5 0 0 1 .5.5v5.5H18a.5.5 0 0 1 0 1h-5.5V18a.5.5 0 0 1-1 0v-5.5H6a.5.5 0 0 1 0-1h5.5V6a.5.5 0 0 1 .5-.5'/%3E%3C/svg%3E");
}

.icons-minus {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M5 13v-1h13v1z'/%3E%3C/svg%3E");
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*:focus {
  outline: 0;
}

html {
  font-size: var(--theme-font-size);
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  font-family: var(--font-f-1);
  font-size: 1.6rem;
  overflow-x: hidden;
  color: var(--color-main);
  background: #f4f4f4;
}

p {
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1;
  font-weight: 400;
}

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

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.img-loaded {
  opacity: 1;
}

a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

p {
  line-height: 1.5;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}

figure img {
  height: 100%;
}

.main_site {
  overflow-x: visible;
}

.container {
  width: 100%;
  padding: 0 var(--container-padding-horizontal);
  max-width: 1920px;
  margin: 0 auto;
}

.d-none {
  display: none;
}

.o-hidden {
  overflow: hidden;
}

.custom-logo-link img {
  height: 8rem;
  width: auto;
}

.menu-opened {
  overflow: hidden;
}

.page-default {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.page-default .title {
  margin-bottom: 3rem;
  font-size: 5.2rem;
  line-height: 1.15;
  font-weight: 700;
}

.page-default-content strong {
  font-weight: 600;
}

.page-default-content h2,
.page-default-content h3,
.page-default-content h4,
.page-default-content h5,
.page-default-content h6 {
  line-height: 1;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 600;
}

.page-default-content h2:last-child,
.page-default-content h3:last-child,
.page-default-content h4:last-child,
.page-default-content h5:last-child,
.page-default-content h6:last-child {
  margin-bottom: 0;
}

.page-default-content p,
.page-default-content ol,
.page-default-content ul,
.page-default-content blockquote {
  margin-bottom: 2rem;
}

.page-default-content p,
.page-default-content li {
  font-size: 1.8rem;
}

.page-default-content li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 2rem;
}

.page-default-content li:before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-main);
  border-radius: 100%;
}

.page-default-content h2:last-child,
.page-default-content h3:last-child,
.page-default-content h4:last-child,
.page-default-content h5:last-child,
.page-default-content h6:last-child,
.page-default-content p:last-child,
.page-default-content li:last-child,
.page-default-content ul:last-child,
.page-default-content ol:last-child {
  margin-bottom: 0;
}

.page-default .entry-content p {
  margin-top: 1.6rem;
  font-size: 1.7rem;
}

.page-default .entry-content li {
  font-size: 1.7rem;
}

.page-default .entry-content h2,
.page-default .entry-content h3,
.page-default .entry-content h4,
.page-default .entry-content h5,
.page-default .entry-content h6 {
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1.6rem;
}

.page-default .entry-content ul,
.page-default .entry-content ol {
  list-style: revert;
  padding-left: 2rem;
  margin-top: 0.4rem;
}

.single-navigation-wrapper {
  position: fixed;
  z-index: 5;
  left: 0;
  width: 100%;
  bottom: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #f4f4f4;
  margin-top: 3rem;
  padding: 1.2rem var(--container-padding-horizontal);
}

.single-navigation-wrapper h4,
.single-navigation-wrapper a {
  font-size: inherit;
  font-weight: inherit;
  margin: 0 !important;
}

.single-navigation-wrapper .navigation-links {
  display: flex;
  gap: 2.5rem;
}

.navigation-button,
.navigation-close {
  position: relative;
  display: none;
}

.navigation-button::before,
.navigation-button::after,
.navigation-close::before,
.navigation-close::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #000;
}

.navigation-button {
  position: relative;
  height: 1.2rem;
  width: 4.2rem;
}

.navigation-button::before {
  top: -1px;
}

.navigation-button::after {
  bottom: 0;
}

.navigation-close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 3rem;
  height: 3rem;
}

.navigation-close::before {
  transform: rotate(45deg);
}

.navigation-close::after {
  transform: rotate(-45deg);
}

.swiper-auto .swiper-slide {
  width: auto;
}

.title-small {
  font-size: 1.6rem;
}

.title-medium {
  font-size: 2.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.03em;
}

.title-big {
  font-weight: 400;
  font-size: 5.2rem;
  line-height: 5.23rem;
  letter-spacing: -0.02em;
}

.title-big > * {
  font-size: inherit;
  line-height: inherit;
}

.title-gigantic {
  font-weight: 400;
  font-size: 7.5rem;
  line-height: 7.3rem;
  letter-spacing: -0.02em;
}

.link-show {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: normal;
  color: #000;
}

.list-categorys {
  width: 46%;
  padding-left: 1.5rem;
}

.list-categorys h3 {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
}

.list-categorys h3 small {
  display: none;
}

.list-categorys h3 span {
  display: none;
  position: relative;
  background: none !important;
}

.list-categorys h3 span::before,
.list-categorys h3 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-black-200);
}

.list-categorys h3 span::after {
  transform: rotate(90deg);
}

.list-categorys h3.active span::after {
  display: none;
}

.list-categorys-menu {
  margin: 2rem 0 6rem 0;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.list-categorys-menu li {
  line-height: 1.5;
  width: calc(33.33% - 1rem);
}

.list-categorys-menu li a {
  color: var(--color-black-200);
  transition: all 0.4s ease-in-out;
}

.list-categorys-menu li a.active {
  font-weight: 700;
}

.image-categorys {
  width: 54%;
  padding-left: 4rem;
  position: sticky;
  top: 1rem;
  height: calc(100vh - 2rem);
  margin-bottom: 0.9rem;
}

.image-categorys picture {
  position: relative;
  height: 100%;
}

.image-categorys figure {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.image-categorys figure img {
  filter: grayscale(1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-categorys figure.active {
  opacity: 1;
  position: relative;
  z-index: 5;
}

#behindHeader {
  display: none;
  height: 0;
  transition: 0.3s;
}

.header-site {
  height: 7.5rem;
  padding-top: 1.2rem;
  padding-bottom: 0.5rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: inherit;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.header-site.header--hidden {
  transform: translateY(-100%);
}

.main_site {
  padding-top: 7.5rem;
}

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

.navigation-dialog .custom-logo-link {
  display: none;
}

.navigation-dialog .navigation-container {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem 7.4rem;
}
.navigation-dialog .navigation-container > .social-links {
  display: none;
}

.menu-header a,
.header-languages li {
  color: #000;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 2.67rem;
  letter-spacing: 0.03em;
  padding: 2px 0;
}

.menu-header a[aria-current=page] {
  font-weight: 500;
}

.menu-header .item_menu_hidden {
  display: none;
}

.header-languages {
  display: flex;
}

.header-languages li {
  text-transform: uppercase;
}

.header-languages li.active a {
  font-weight: 600;
}

.footer-site {
  margin-top: 10rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.footer-site a {
  color: inherit;
}

.footer-site .footer-title {
  margin-bottom: 7rem;
}

.footer-site .footer-top {
  margin-bottom: 16.5rem;
}

.footer-site .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.8rem 4.5rem;
  padding-bottom: 5rem;
}

.footer-site .footer-bottom .col-1 {
  display: flex;
  width: 66%;
  justify-content: space-between;
  align-items: center;
}

.footer-site .footer-bottom .col-2 {
  display: flex;
  position: relative;
}

.footer-site .footer-bottom .social-links a {
  display: block;
}

.footer-site .footer-bottom p,
.footer-site .footer-bottom .menu-footer a {
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6rem;
  letter-spacing: 0.03em;
}

.footer-site .footer-bottom img {
  max-height: 4.5rem;
  opacity: 0.7;
}

.footer-site .footer-bottom .menu-footer ul li {
  line-height: 0;
}

.sct1 {
  padding-top: 7vh;
  padding-bottom: 4vh;
}

.sct1 .container > * {
  max-width: 92rem;
}

.sct2 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.sct2 .sct2-header {
  display: flex;
  padding: 1.2rem var(--container-padding-horizontal);
  justify-content: space-between;
  font-size: 2.6rem;
  line-height: 2.66rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #000;
  border-bottom: 1px solid #000;
}
.sct2 .sct2-header button {
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-f-1);
}
.sct2 .sct2-header button:hover {
  opacity: 0.7;
}

.sct2 .sct2-header > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.sct2 .marquee-projects {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

.sct2 .marquee-projects-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

@media (hover: hover) {
  .sct2 .marquee-projects:hover .marquee-projects-track {
    animation-play-state: paused;
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.sct2 .project-item {
  flex-shrink: 0;
}

.sct2 .project-item a {
  display: block;
}

.sct2 .project-item img {
  height: 48rem;
  width: auto;
}

.sct2 .project-item .title {
  padding: 1.2rem 0;
  padding-left: var(--container-padding-horizontal);
  color: #000;
}

.sct3 {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  justify-content: space-between;
}

.sct3 .sct3-header {
  padding-top: 19rem;
  padding-left: var(--container-padding-horizontal);
  padding-right: var(--container-padding-horizontal);
}

.sct3 .sct3-header .link {
  margin-top: 10rem;
}

.sct3 .project-item {
  display: block;
}

.sct3 .project-item a {
  display: block;
}

.sct3 .project-item .title {
  padding: 1.5rem 0;
}

.sct4 {
  color: #fff;
  padding-top: 7.5rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.sct4 .sc4-list {
  margin-top: 1.6rem;
  padding-bottom: 50rem;
}

.sct4 .sc4-list .title {
  line-height: 6rem;
  font-weight: 300;
}

.sct4 .sc4-list .title .desktop {
  display: none;
}

.sct5 {
  padding-top: 6rem;
}

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

.sct5 .sct5-cols .col-1 {
  width: 20rem;
}

.sct5 .sct5-cols .col-1 .title {
  font-weight: 500;
  margin-bottom: 4.5rem;
}

.sct5 .sect5-list {
  -moz-columns: 2;
  columns: 2;
  gap: 10rem;
}

.sct5 .sect5-list li {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 3rem;
}

.sct5 .link {
  margin-top: 4.5rem;
}

.sct5 .projects-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50rem;
}

.sct5 .projects-list > div {
  width: 50%;
}

.sct5 .project-item .title {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-right: var(--container-padding-horizontal);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.sct5 .project-item:first-child .title {
  padding-left: var(--container-padding-horizontal);
}

.sct5 .project-item img {
  height: 98rem;
}

.project-item a,
.project-item img {
  display: block;
}

.project-item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.about-information {
  padding: 22rem 0 0 0;
}

.about-information .container {
  max-width: 110rem;
  padding-bottom: 25rem;
  text-align: center;
}

.about-information .container p {
  font-size: 3.4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 300;
}

.about-information figure img {
  height: auto;
  width: 100%;
}

.about-characteristics {
  padding: 6rem 0 50rem 0;
}

.about-characteristics .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-characteristics .container h3 {
  font-family: var(--font-f-mono);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  margin: 0 0 2rem 0;
  width: 100%;
  font-weight: 300;
}

.about-characteristics .container h1 {
  font-weight: 400;
  line-height: 1.2;
  font-size: 5.2rem;
  letter-spacing: -0.02em;
  width: 44%;
}

.about-characteristics .container ul {
  width: 50%;
}

.about-characteristics .container li {
  margin: 0 0 8.5rem 0;
  padding: 0 0 0 4rem;
  font-size: 2.4rem;
  position: relative;
}

.about-characteristics .container li h4 {
  margin: 0 0 6.5rem 0;
  font-weight: 600;
}

.about-characteristics .container li:last-child {
  margin: 0;
}

.about-characteristics .container li:before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--color-black-100);
  border-radius: 100%;
}

.projects-content {
  padding-top: 3rem;
  padding-bottom: 0;
}

.projects-content .container {
  display: flex;
  flex-wrap: wrap;
}

.projects-categorys-list {
  -moz-columns: 3;
  columns: 3;
  gap: 2rem;
  padding-bottom: 3rem;
}

.projects-categorys-list-item {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 3rem;
}

.projects-categorys-list-item h3 {
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 400;
  margin: 0 0 2rem 0;
}

.projects-categorys-list-item li {
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
}

.projects-categorys-list-item li a {
  color: var(--color-black-200);
  transition: all 0.4s ease-in-out;
}

.projects-categorys-list-item li a.active {
  font-weight: 600;
}

.projects-categorys-list-item li.opacity {
  opacity: 0.3;
}

.projects-categorys-list-item li:last-child {
  margin: 0;
}

.projects-categorys-list-item:last-child {
  margin: 0;
}

.categorys-content {
  padding-bottom: 3rem;
}

.single-project {
  padding-bottom: 3rem;
}

.single-project .container {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding-right: 0;
}

.single-project-info {
  padding-top: 3rem;
  width: 46%;
  height: calc(100vh - 11.5rem);
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: sticky;
  flex-direction: column;
  justify-content: space-between;
  top: 9rem;
}

.single-project-info-detaills p {
  font-size: 1.8rem;
  line-height: normal;
  letter-spacing: -0.04em;
  font-family: var(--font-f-mono);
}

.single-project-info-detaills p a {
  color: var(--color-main);
}

.single-project-info-detaills p:last-child {
  margin-top: 1.5rem;
}

.single-project-info-description p {
  color: #1b242e;
  line-height: normal;
  font-size: 2.6rem;
  margin: 0 0 3rem 0;
}

.single-project-info-description p:last-child {
  margin: 0;
}

.single-project-info-description-navigation {
  margin: 7rem 0 0 0;
  display: flex;
  gap: 4rem;
}

.single-project-info-description-navigation a {
  font-size: 1.8rem;
  line-height: 1.1;
  font-family: var(--font-f-mono);
  color: var(--color-main);
  text-transform: uppercase;
}

.single-project-gallery {
  width: 54%;
  padding-left: 4rem;
}

.single-project-gallery figure {
  margin-bottom: 1rem;
}

.single-project-gallery figure img {
  width: 100%;
}

.single-project-gallery figure:last-child {
  margin-bottom: 0;
}

.btn-close-project {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: 0;
  right: 0;
  background: var(--color-black-200);
}

.single-proyecto .footer-site {
  margin-bottom: 8rem;
}

.rse-content {
  padding-bottom: 2rem;
  padding-top: 1rem;
}

.rse-item figure img {
  display: block;
  aspect-ratio: 1/1.12;
  -o-object-fit: cover;
     object-fit: cover;
}

.rse-item .content_info_item {
  margin-top: 3rem;
  padding-right: 3rem;
}

.rse-item .content_info_item h3 {
  font-size: 2.4rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2.5rem;
}

.rse-item .content_info_item p {
  font-size: 1.8rem;
}

.page-template-service .main_site .page-default {
  padding-top: 10.5rem;
}

.page-template-service .main_site .page-default h1 {
  margin-bottom: 9rem;
  font-size: 5.2rem;
}

.page-template-service .main_site .page-default ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1.3px solid var(--color-main);
  border-bottom: 1.3px solid var(--color-main);
  margin-bottom: 10rem;
}

.page-template-service .main_site .page-default ul li {
  width: 50%;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
}

.page-template-service .main_site .page-default ul li::before,
.page-template-service .main_site .page-default ul li::after {
  content: "";
  position: absolute;
}

.page-template-service .main_site .page-default ul li::before {
  top: 6rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: var(--color-main);
  border-radius: 50%;
}

.page-template-service .main_site .page-default ul li::after {
  bottom: -1px;
  left: 0;
  height: 1.3px;
  width: 100%;
  background: var(--color-main);
}

.page-template-service .main_site .page-default ul li h3 {
  font-size: 2.4rem;
  margin-bottom: 7rem;
  font-weight: 600;
}

.page-template-service .main_site .page-default ul li p {
  font-size: 2.4rem;
  line-height: 3rem;
}

.page-template-service .main_site .page-default ul li .data_info_list {
  padding: 0 3.4rem;
}

.page-template-service .main_site .page-default ul.lista-serv {
  border-bottom: 0 none;
  border-top: 0 none;
  position: relative;
}
.page-template-service .main_site .page-default ul.lista-serv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-main);
}
.page-template-service .main_site .page-default ul.lista-serv:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-main);
}
.page-template-service .main_site .page-default ul.lista-serv li:after {
  bottom: 0;
  height: 1px;
}
.page-template-service .main_site .page-default ul.lista-serv li:first-child {
  width: 100%;
  padding-right: 50%;
}

.list_projects_service {
  display: flex;
  flex-wrap: wrap;
}

.list_projects_service li {
  width: 50%;
}

.list_projects_service li a {
  display: block;
  height: 100%;
}

.list_projects_service li figure {
  position: relative;
  height: calc(100% - 5.4rem);
}

.list_projects_service li figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.list_projects_service li:first-child figure {
  padding-right: 3px;
}

.list_projects_service li:last-child figure {
  padding-left: 3px;
}

.list_projects_service.initial {
  display: none !important;
}

.title_card_image {
  line-height: 5.2rem;
  border-top: solid 1px var(--color-main);
  border-bottom: solid 1px var(--color-main);
  padding: 0 var(--container-padding-horizontal);
  font-weight: normal;
  font-size: 1.6rem;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.page-template-team .main_site .page-default h1 {
  margin-bottom: 4rem;
  font-size: 5.2rem;
  line-height: 5.227rem;
  letter-spacing: -0.02em;
}

.page-template-team .main_site .page-default p {
  font-size: 2.4rem;
  line-height: 1;
  display: block;
  max-width: 86rem;
  width: 100%;
  letter-spacing: -0.02em;
}

.page-template-team .main_site .page-default article {
  margin-bottom: 8rem;
}

.page-template-team .main_site .page-default ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6.5rem;
}

.page-template-team .main_site .page-default ul li {
  width: 16.666%;
  margin-bottom: 3.2rem;
  position: relative;
}

.page-template-team .main_site .page-default ul li figure {
  margin-bottom: 1.8rem;
}

.page-template-team .main_site .page-default ul li figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-template-team .main_site .page-default ul li h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.page-template-team .main_site .page-default ul li h3 span {
  display: block;
  font-weight: 400;
}

.page-template-team .main_site .page-default ul li a {
  display: block;
  color: var(--color-main);
}

.page-template-team .main_site .page-default ul li .data_info_list {
  padding: 0 7px;
}

.section_gallery_team {
  position: relative;
}

.section_gallery_team::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--color-main);
}

.section_gallery_team .content_title_gallery_team {
  border-top: solid 1px var(--color-main);
  border-bottom: solid 1px var(--color-main);
}

.section_gallery_team .content_title_gallery_team h3 {
  line-height: 5.4rem;
  font-weight: normal;
  font-family: var(--font-f-1);
  font-size: 2.6rem;
  text-transform: uppercase;
}

.section_gallery_team .content_images_gallery_team {
  padding: 1.4rem 0;
}

.section_gallery_team .content_images_gallery_team .data_item_gallery_team .slider_team {
  height: 47.4rem;
  width: 100%;
}

.section_gallery_team .content_images_gallery_team .data_item_gallery_team .slider_team .swiper-wrapper {
  min-height: 100%;
}

.section_gallery_team .content_images_gallery_team .data_item_gallery_team .slider_team .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.categorys-header,
.categorys-list-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6rem;
}

.categorys-header {
  margin-bottom: 2.5rem;
}

.categorys-header-item h3 {
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 600;
}

.categorys-list-item {
  margin-bottom: 2rem;
}

.categorys-list-item figure {
  display: none;
}

.categorys-list-item-sub {
  line-height: 1.4;
  color: var(--color-black-200);
}

.categorys-list-item:last-child {
  margin-bottom: 0;
}

.categorys-list-item.opacity {
  opacity: 0.3;
}

.error-section {
  padding: 12vh 0;
  text-align: center;
}

.error-section .container {
  max-width: 100rem;
}

.error-title {
  font-size: 10rem;
  letter-spacing: -0.03em;
}

.error-subtitle {
  font-size: 7rem;
  letter-spacing: -0.03em;
}

.error-description {
  font-size: 2.5rem;
  margin-top: 3rem;
}

.error-button {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

.single-team .main_site .page-default {
  padding-top: 4.5rem;
}

.single-team .main_site .page-default h1 {
  font-weight: 600;
  font-size: 4rem;
  line-height: 4.6rem;
}

.single-team .main_site .page-default h2 {
  font-weight: normal;
  font-size: 4rem;
  line-height: 4.6rem;
  margin-bottom: 7.2rem;
}

.info_team_content {
  position: relative;
}

.data_content_team {
  max-width: 139rem;
  width: 100%;
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}

.data_content_team p {
  display: block;
  margin-bottom: 4rem;
  font-size: 2rem;
  line-height: 3rem;
}

.data_social_team {
  margin-bottom: 7.6rem;
}

.data_social_team span {
  display: block;
  font-weight: 600;
  font-size: 2rem;
}

.data_social_team span.email a {
  text-decoration: underline;
}

.data_social_team a {
  color: var(--color-main);
}

.data_about_team {
  font-size: 2rem;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 5.5rem;
}

.heading_content_title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2.8rem;
}

.data_card_team {
  max-width: 20rem;
  margin-bottom: 1.8rem;
}

.navigation-wrapper {
  width: 50%;
}

.cate-current {
  display: none;
}

.volver-equipo {
  font-size: 2rem;
  line-height: 3rem;
  padding-top: 7rem;
}

/* RESPONSIVE */
@media (max-width: 1850px) {
  :root {
    --theme-font-size: 7.5px;
  }
}
@media (max-width: 1700px) {
  :root {
    --theme-font-size: 6.61px;
  }
  .main_site .data_card_team {
    width: 34rem;
    height: 42rem;
  }
}
@media (max-width: 1400px) {
  .navigation-wrapper {
    width: 60%;
  }
  .footer-site .footer-bottom .col-1 {
    width: 75%;
  }
}
@media (max-width: 1200px) {
  :root {
    --theme-font-size: 7px;
  }
}
@media (max-width: 1024px) {
  .about-information {
    padding-top: 80px;
  }
  .about-information .container {
    padding-bottom: 35px;
  }
  .about-information .container p {
    font-size: 22px;
  }
  .about-characteristics {
    padding-top: 100px;
    padding-bottom: 0;
  }
  .about-characteristics .container h3 {
    font-size: 12px;
  }
  .about-characteristics .container h1 {
    font-size: 32px;
  }
  .about-characteristics .container li {
    font-size: 17px;
    margin-bottom: 30px;
    padding-left: 20px;
  }
  .about-characteristics .container li h4 {
    margin-bottom: 25px;
  }
  .about-characteristics .container li:before {
    top: 5px;
  }
  .projects-content {
    padding: 15px 0;
  }
  .projects-categorys-list {
    gap: 40px;
  }
  .projects-categorys-list-item h3 {
    font-size: 40px;
  }
  .projects-categorys-list-item li {
    font-size: 14px;
  }
  .single-project-info,
  .single-project-gallery {
    width: 50%;
  }
  .single-project-info-detaills {
    position: relative;
  }
  .single-project-info-detaills p {
    font-size: 14px;
  }
  .single-project-info-detaills p:last-child {
    margin-top: 10px;
  }
  .single-project-info-description p {
    font-size: 18px;
    margin: 0 0 15px 0;
  }
  .single-project-info-description-navigation {
    margin: 30px 0 0 0;
  }
  .single-project-gallery {
    padding-left: 20px;
  }
  .page-template-service .main_site .page-default {
    padding-top: 15px;
  }
  .page-template-service .main_site .page-default h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .page-template-service .main_site .page-default ul {
    margin-bottom: 100px;
  }
  .page-template-service .main_site .page-default ul li h3 {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
  .page-template-service .main_site .page-default ul li p {
    font-size: 14px;
    line-height: 20px;
  }
  .page-template-service .main_site .page-default ul li .data_info_list {
    padding: 0;
  }
  .list_projects_service {
    margin-bottom: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
  .list_projects_service li {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    width: 100% !important;
  }
  .list_projects_service li figure {
    padding: 0 !important;
  }
  .list_projects_service li:first-child {
    display: none;
  }
  .list_projects_service li:last-child .title_card_image {
    border-top: 0;
  }
  .list_projects_service.initial {
    display: flex !important;
    margin-left: calc(var(--container-padding-horizontal) * -1);
    margin-right: calc(var(--container-padding-horizontal) * -1);
  }
  .list_projects_service.initial li figure {
    height: 55rem;
  }
  .list_projects_service.initial li:last-child {
    display: none;
  }
  .list_projects_service.initial li:first-child {
    display: block;
  }
  .list_projects_service.initial li::before {
    display: none;
  }
  .title_card_image {
    line-height: 1 !important;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 0;
    font-size: 14px !important;
    margin-bottom: 0 !important;
  }
  .page-template-team .main_site .page-default {
    padding-top: 30px;
  }
  .page-template-team .main_site .page-default h1 {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .page-template-team .main_site .page-default h1 span {
    margin-top: 30px;
    display: block;
  }
  .page-template-team .main_site .page-default p {
    font-size: 19px;
  }
  .page-template-team .main_site .page-default article {
    margin-bottom: 70px;
  }
  .page-template-team .main_site .page-default ul li h3 {
    font-size: 17px;
  }
  .page-template-team .main_site .page-default ul {
    margin-bottom: 30px;
  }
  .page-template-team .main_site .page-default ul li {
    width: 25%;
    margin-bottom: 30px;
  }
  .section_gallery_team .content_title_gallery_team h3 {
    font-size: 14px;
    line-height: 1;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .section_gallery_team .content_images_gallery_team .container {
    padding-left: 0;
    padding-right: 0;
  }
  .categorys-header,
  .categorys-list-item {
    gap: 40px;
  }
  .categorys-header-item h3 {
    font-size: 16px;
  }
  .categorys-list-item-sub {
    font-size: 14px;
  }
  .page-default {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .page-default .title {
    font-size: 30px;
  }
  .page-default h2,
  .page-default h3,
  .page-default h4,
  .page-default h5,
  .page-default h6 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .page-default blockquote,
  .page-default ol,
  .page-default ul,
  .page-default p {
    margin-bottom: 15px;
  }
  .page-default p,
  .page-default li {
    font-size: 16px;
  }
  .page-default li:before {
    top: 5px;
  }
  .list-categorys {
    padding-left: 0;
  }
  .list-categorys-menu {
    margin-bottom: 25px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .list-categorys-menu li {
    font-size: 14px;
    width: calc(50% - 10px);
  }
  .image-categorys {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .categorys-content {
    padding: 0 var(--container-padding-horizontal);
  }
  .navigation-wrapper {
    width: initial;
  }
  .custom-logo-link img {
    height: 7rem;
    position: relative;
    z-index: 1001;
  }
  .navigation-button,
  .navigation-close {
    display: block;
  }
  .header-content {
    align-items: center;
  }
  .navigation-dialog {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .navigation-dialog .custom-logo-link {
    display: block;
    position: absolute;
    top: 30px;
  }
  .navigation-dialog .navigation-container {
    flex-direction: column;
    justify-content: center;
    background: #f4f4f4;
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 3rem;
    margin-left: auto;
    transition: 0.4s ease-in-out;
    transform: translateX(100%);
  }
  .navigation-dialog .navigation-container > nav {
    margin-top: auto;
    padding-top: 8rem;
  }
  .navigation-dialog .navigation-container > .social-links {
    margin-top: auto;
    display: block;
  }
  .navigation-wrapper.is-menu-open .navigation-dialog {
    opacity: 1;
    visibility: visible;
  }
  .navigation-wrapper.is-menu-open .navigation-dialog .navigation-container {
    transform: translateX(0);
  }
  .menu-header .item_menu_hidden {
    display: block;
  }
  .menu-header a,
  .header-languages li {
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -0.02em;
  }
  .header-languages {
    flex-direction: column;
  }
  .about-characteristics .container h1,
  .about-characteristics .container ul {
    width: 100%;
  }
  .about-characteristics .container h1 {
    margin-bottom: 70px;
  }
  .projects-content .container {
    padding-left: 0;
    padding-right: 0;
  }
  .projects-categorys-list {
    gap: 20px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .page-template-service .main_site .page-default ul {
    border-top: 0;
  }
  .page-template-service .main_site .page-default ul.list_projects_service li:first-child h3 {
    border-bottom: 0 none !important;
  }
  .page-template-service .main_site .page-default ul li {
    padding-top: 20px;
  }
  .page-template-service .main_site .page-default ul li:after {
    display: none;
  }
  .page-template-service .main_site .page-default ul li:before {
    top: 27px;
    height: 5px;
    width: 5px;
  }
  .list_projects_service li {
    padding-top: 0;
  }
  .list_projects_service li figure {
    height: auto;
  }
  .list_projects_service.initial li .title_card_image {
    border-bottom: 1px solid var(--color-main);
  }
  .page-template-team .main_site .page-default ul li {
    width: 33.33%;
  }
  .page-template-team .main_site .page-default ul li .data_info_list {
    padding: 0 3px;
  }
  .categorys-header,
  .categorys-list-item {
    gap: 20px;
  }
  .list-categorys {
    width: 100%;
  }
  .list-categorys-accordeon {
    border-bottom: 1px solid var(--color-main);
    border-top: 1px solid var(--color-main);
    margin-bottom: 30px;
  }
  .list-categorys-accordeon h3 {
    font-size: 19px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .list-categorys-accordeon h3 small {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-top: 2px;
  }
  .list-categorys-accordeon h3 span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    margin-left: auto;
    background: var(--color-black-200);
  }
  .list-categorys-menu {
    gap: 0;
    margin: 0;
    display: none;
    overflow: hidden;
  }
  .list-categorys-menu li {
    width: 100%;
  }
  .list-categorys-menu li a {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding: 20px 25px;
    color: rgba(27, 36, 46, 0.4);
  }
  .list-categorys-menu li a.active {
    color: #1b242e;
  }
  .list-categorys-menu li:first-child a {
    padding-top: 0;
  }
  .image-categorys {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 30px;
    display: none;
  }
  .cate-current {
    display: block;
    height: 60px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
  }
  .cate-current h1 {
    font-size: 14px;
    color: var(--color-gray-300);
  }
  .footer-site .footer-bottom {
    flex-direction: column;
    position: relative;
    padding-bottom: 2.5rem;
  }
  .footer-site .footer-bottom:before {
    content: "";
    position: absolute;
    top: 9.5rem;
    left: -3rem;
    right: -3rem;
    height: 1px;
    background: var(--color-main);
  }
  .footer-site .footer-bottom .col-1 {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }
  .footer-site .footer-bottom .col-1 .logos-pie {
    grid-column: 1/3;
    margin-bottom: 2rem;
  }
  .footer-site .footer-bottom .col-1 > span {
    grid-column: 1/3;
    margin-bottom: 3rem;
  }
  .footer-site .footer-bottom .col-1 img {
    max-height: initial;
    height: 7rem;
  }
  .footer-site .footer-bottom .col-1 p, .footer-site .footer-bottom .col-1 a {
    font-size: 1.75rem;
    line-height: 1.25em;
  }
  .footer-site .footer-bottom .col-1 p.fp {
    grid-column: 1/3;
  }
  .footer-site .footer-bottom .col-1 p.fp2 {
    grid-column: 1/3;
    width: 22rem;
  }
  .footer-site .footer-bottom .col-1 p.fp2 br {
    display: none;
  }
  .footer-site .footer-bottom .col-2 {
    width: 100%;
    padding-top: 18rem;
  }
  .footer-site .footer-bottom .col-2 .copyright {
    font-size: 1.5rem;
  }
  .footer-site .footer-bottom .col-2 .copyright br {
    display: none;
  }
  .footer-site .footer-title {
    font-size: 6rem;
    margin-bottom: 2rem;
  }
  .footer-site .footer-description {
    font-size: 3rem;
    line-height: 1.2em;
    font-weight: 300;
  }
  .page-template-service .main_site .page-default ul.lista-serv li:after {
    display: block;
  }
  .page-template-service .main_site .page-default ul.lista-serv:before {
    margin-left: -3rem;
    margin-right: -3rem;
    right: 0;
    width: auto;
  }
  .single-navigation-wrapper h4, .single-navigation-wrapper a {
    font-size: 14px;
  }
  .header-site {
    height: 8.8rem;
  }
  .volver-equipo {
    font-size: 16px;
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .about-information .container {
    text-align: left;
  }
  .projects-categorys-list {
    -moz-columns: 2;
    columns: 2;
  }
  .single-project {
    padding-bottom: 0;
    height: auto;
  }
  .single-project .container {
    padding: 0;
    min-height: calc(100svh - 99px);
    flex-direction: column;
    display: flex;
    justify-content: space-between;
  }
  .single-project-info,
  .single-project-gallery {
    width: 100%;
  }
  .single-project-info {
    align-content: flex-start;
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    height: initial;
    position: initial;
  }
  .single-project-info-description-content {
    display: none;
  }
  .single-project-info-description-navigation {
    margin: 0;
    position: fixed;
    z-index: 10;
    background: #f4f4f4;
    bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.6);
    gap: 0;
    justify-content: space-between;
    padding: 15px 25px;
    width: 100%;
    left: 0;
  }
  .single-project-info-description-navigation a {
    font-size: 14px;
  }
  .single-project-info-description-navigation a[rel=next] {
    margin-left: auto;
  }
  .single-project-info-description-navigation a[rel=prev] {
    margin-right: auto;
  }
  .single-project-gallery {
    padding-left: 0;
    display: flex;
    height: 66rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .single-project-gallery::-webkit-scrollbar {
    display: none;
  }
  .single-project-gallery figure {
    height: 100%;
    margin: 0;
    aspect-ratio: 36/46;
  }
  .single-project-gallery figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .btn-close-project {
    display: none;
  }
  .rse-item figure {
    height: 350px;
  }
  .rse-item .content_info_item {
    margin-top: 20px;
  }
  .rse-item .content_info_item h3 {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .rse-item .content_info_item p {
    font-size: 14px;
    line-height: 20px;
  }
  .rse-content {
    padding-top: 13px;
  }
  .rse-content .container {
    padding-right: 0 !important;
  }
  .page-template-service .main_site .page-default ul {
    border-bottom: 0;
  }
  .page-template-service .main_site .page-default ul li {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  .page-template-service .main_site .page-default ul li:last-child {
    padding-bottom: 0;
  }
  .list_projects_service:not(.initial) li figure {
    height: 526px;
    padding: 0 var(--container-padding-horizontal) !important;
  }
  .page-template-team .main_site .page-default p {
    font-size: 14px;
    line-height: 20px;
  }
  .page-template-team .main_site .page-default ul li h3 {
    font-size: 14px;
  }
  .page-template-team .main_site .page-default ul li {
    width: 50%;
  }
  .page-template-team .main_site .page-default ul li .data_info_list {
    padding: 0 1px;
  }
  .page-template-team .main_site .page-default ul li figure {
    margin-bottom: 10px;
  }
  .section_gallery_team .content_images_gallery_team .data_item_gallery_team .slider_team {
    height: 344px;
  }
  .error-title {
    font-size: 50px;
  }
  .error-subtitle {
    font-size: 25px;
    font-weight: 500;
  }
  .error-description {
    font-size: 16px;
  }
  .error-button {
    font-size: 16px;
  }
  .single-team .main_site .page-default {
    padding-top: 30px;
  }
  .single-team .main_site .page-default h1,
  .single-team .main_site .page-default h2 {
    font-size: 25px;
    line-height: 27.5px;
    letter-spacing: -0.02em;
  }
  .single-team .main_site .page-default h2 {
    margin-bottom: 60px;
  }
  .data_social_team {
    margin-bottom: 30px;
  }
  .data_social_team span {
    font-size: 14px;
  }
  .data_about_team {
    font-size: 14px;
    line-height: normal;
  }
  .data_content_team {
    -moz-column-count: 1;
    column-count: 1;
  }
  .data_content_team p {
    font-size: 14px;
    line-height: normal;
  }
  .heading_content_title {
    font-size: 14px !important;
    margin-bottom: 16px;
  }
  :root {
    --container-padding-horizontal: 20px;
  }
  .page-default {
    padding-top: 25px;
    padding-bottom: 40px;
  }
  .page-default p,
  .page-default li {
    font-size: 14px;
  }
  .title-small {
    font-size: 14px;
  }
  .title-medium {
    font-size: 14px;
    line-height: 14px;
  }
  .link-show {
    font-size: 14px;
  }
  .sct1 {
    padding-top: 25px;
    padding-bottom: 42px;
  }
  .sct1 .title {
    font-size: 32px;
    line-height: 35px;
  }
  .sct2 .sct2-header {
    font-size: 14px;
    line-height: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .sct2 .project-item .title {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px !important;
  }
  .sct2 .project-item img {
    height: 330px;
    width: auto;
  }
  .sct3 {
    flex-wrap: wrap;
  }
  .sct3 .sct3-header {
    padding-top: 60px;
  }
  .sct3 .sct3-header .title {
    font-size: 38px;
    line-height: 39.4px;
    letter-spacing: 0;
  }
  .sct3 .sct3-header .link {
    margin-top: 16px;
  }
  .sct3 .project-item {
    padding: 0 var(--container-padding-horizontal);
  }
  .sct3 .project-item img {
    width: auto;
  }
  .sct3 .project-item .title {
    padding: 10px 0;
  }
  .sct4 {
    padding-top: 25px;
    border: 0;
  }
  .sct4 .sc4-list {
    display: grid;
    gap: 25px 20px;
    grid-template-columns: 1fr 1fr;
    margin-top: 200px;
    padding-bottom: 40px;
  }
  .sct4 .sc4-list .title {
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0;
  }
  .sct5 {
    padding-top: 50px;
  }
  .sct5 .sct5-cols .col-1 .title {
    line-height: 1.5;
    margin-bottom: 35px;
  }
  .sct5 .sct5-cols .col-2 {
    width: 100%;
  }
  .sct5 .sect5-list {
    -moz-columns: unset;
    columns: unset;
  }
  .sct5 .sect5-list .col-1 .title {
    font-weight: 600;
  }
  .sct5 .sect5-list li {
    font-size: 16px;
    font-weight: 600;
    line-height: 15.3px;
  }
  .sct5 .sect5-list li + li {
    margin-top: 18px;
  }
  .sct5 .link {
    margin-top: 60px;
  }
  .sct5 .projects-list {
    margin-top: 80px;
  }
  .sct5 .projects-list > div {
    width: 100%;
  }
  .sct5 .project-item:not(:first-child) {
    margin-top: 25px;
    padding: 0 var(--container-padding-horizontal);
  }
  .sct5 .project-item:not(:first-child) .title {
    border: 0;
  }
  .sct5 .project-item .title {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .sct5 .project-item img {
    height: auto;
  }
  .page-template-service .main_site .page-default ul.lista-serv li:after {
    display: none;
  }
  .page-template-service .main_site .page-default ul.lista-serv:after {
    display: none;
  }
  body.single-team .single-navigation-wrapper {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }
  .page-template-service .main_site .page-default ul.lista-serv li:first-child {
    padding-right: 0%;
    width: 100%;
  }
  .main_site .data_card_team {
    width: 192px;
    height: 240px;
    max-width: none;
  }
  .volver-equipo {
    font-size: 14px;
    padding-top: 3rem;
  }
}
@media (min-width: 1025px) {
  .link-show:hover {
    opacity: 0.7;
  }
  .link-opacity:hover {
    opacity: 0.7;
  }
  .footer-site a:hover {
    opacity: 0.7;
  }
  .sct2 .project-navigation {
    display: block;
  }
}
@media (min-width: 992px) {
  .main_site {
    padding-top: 9rem;
  }
  .sct-full {
    min-height: calc(100vh - 9rem);
    display: flex;
    flex-direction: column;
  }
  .sct-full .sct1 {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 5vh;
  }
  .header-site {
    height: 9rem;
  }
  .single-navigation-wrapper {
    display: none;
  }
  .menu-header {
    width: 100%;
  }
  .menu-header ul {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-site .footer-top {
    margin-bottom: 25rem;
    padding-top: 8rem;
  }
  .footer-site .footer-bottom .copyright {
    margin-left: auto;
    text-align: right;
    display: flex;
    align-items: center;
  }
  .footer-site .footer-bottom img {
    max-height: 5rem;
  }
  .footer-site .menu-footer ul {
    -moz-columns: 2;
    columns: 2;
    gap: 18px 4.5rem;
  }
}
@media (min-width: 768px) {
  .data_card_team {
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    right: 0;
    top: 0;
    width: 30rem;
    height: 37.5rem;
  }
  .data_card_team img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sct3 {
    border-bottom: 1px solid #000;
    margin-bottom: 5rem;
  }
  .sct3 .project-item {
    position: relative;
    width: 50%;
  }
  .sct3 .project-item .project-url {
    position: absolute;
    left: 0;
    top: 100%;
  }
  .sct4 .sc4-list .title .mobile {
    display: none;
  }
  .sct4 .sc4-list .title .desktop {
    display: block;
  }
}/*# sourceMappingURL=main.css.map */