/*
Theme Name: Tema Blisq Corporate
Theme URI: http://blisq.pt
Author: blisq
Author URI: http://blisq.pt
Description: Tema desenvolvido para uso exclusivo da Blisq Creative
Version: V1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blisq
Text Domain: blisq
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');

::selection {
  background-color: #ddd;
  color: #000;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.no-overflow {
  overflow: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #F2F2F2;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
}

button {
  font-family: "Inter", sans-serif;
}

h1 {
  color: #676767;
  font-size: clamp(22px, 1.85vw, 35px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-transform: uppercase;
}

h2 {
  color: #BEBEBE;
  text-overflow: ellipsis;
  font-size: clamp(18px, 1.5vw, 28px);
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.56px;
  text-transform: uppercase;
}

h3 {
  color: #717171;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -0.57px;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

p {
  color: #626262;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}

.text-balance {
  text-wrap: balance;
}

.my-10{
  margin: 10px 0;
}

/* #region animação */
.intro-animation {
  top: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  display: grid;
  grid-template-columns: 50% 50%;
  pointer-events: none;
}

.intro-animation-left {
  padding-right: 30px;
  justify-content: flex-end;
  animation: goToLeft 3s forwards;
  animation-delay: 3s;
}

@keyframes goToLeft {
  to {
    transform: translateX(-100vw);
  }
}

@keyframes goToRight {
  to {
    transform: translateX(100vw);
  }
}

.intro-animation-right {
  padding-left: 30px;
  justify-content: flex-start;
  animation: goToRight 3s forwards;
  animation-delay: 3s;
}

.intro-animation-block {
  display: flex;
  align-items: center;
  background: #222;
}

.intro-animation::before {
  content: '';
  position: fixed;
  left: 50vw;
  top: 50vh;
  width: 4px;
  height: 85px;
  background-color: #fff;
  transform: translate(-50%, -50%) scaleY(0);
  transform-origin: bottom;
  animation: growUpHide 2s forwards;
  animation-delay: 1s;
  opacity: 1;
  z-index: 6;
}

@keyframes growUpHide {
  to {
    transform: translate(-50%, -50%) scaleY(1);
  }
}

.intro-animation-image {
  animation: introImg 5s forwards;
}

@keyframes introImg {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animation-end::before {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

/* #endregion */

/* #region header */
header {
  position: absolute;
  width: 100%;
  top: 60px;
  z-index: 2;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-navigation {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  background-color: #222;
  top: -100dvh;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: all 1s;
}

.hamburger-menu-open.active+.header-navigation {
  top: 0;
}

.hamburger-menu {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.page-template-page-contactos .hamburger-menu {
  background-color: #3F3F3F;
}

.hamburger-menu-close {
  background-color: #222;
  align-self: flex-end;
  cursor: pointer;
}

.hamburger-menu>img {
  width: 100%;
  height: auto;
}

.menu-header {
  display: flex;
  align-items: center;
  column-gap: 65px;
}

.menu-header>li>a {
  color: #ABABAB;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  transition: all .2s;
}

.menu-header>li>a:hover {
  color: #fff;
}

.header-navigation-container {
  max-width: 1920px;
  padding: 0 60px;
  height: 100%;
}

.header-navigation-content::-webkit-scrollbar {
  display: none;
}

.header-navigation-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 50px 0 125px 0;
  overflow-y: auto;
  scrollbar-width: none;
}

.header-navigation-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 70px 0 90px 0;
}

.header-socials {
  display: flex;
  gap: 30px;
}

.header-socials>a {
  filter: invert(1) opacity(0.7);
  transition: all .2s;
}

.header-socials>a:hover {
  filter: invert(1);
}

.header-service>a {
  color: #676767;
  font-family: "Space Grotesk";
  font-size: clamp(20px, 2.5vw, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-transform: uppercase;
  position: relative;
  display: block;
  padding: 5px 20px;
  border-bottom: 1px solid #4C4C4C;
  transition: all .5s;
}

.header-service>a:hover {
  color: #F2F2F2;
  padding-left: 60px;
}

.header-service>a>img {
  position: absolute;
  right: 0;
  bottom: -50px;
  opacity: 0;
  visibility: hidden;
  height: auto;
  max-width: 26%;
  transition: all .5s;
}

.header-service>a:hover>img {
  opacity: 1;
  visibility: visible;
  bottom: -25px;
}

.header-service>a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all .5s;
}

.header-service>a:hover::after {
  width: 140px;
}

/* #endregion */

/* #region Footer */
footer {
  padding: 40px 0 70px 0;
  position: relative;
  background-color: #EDEDED;
}

footer::before {
  content: '';
  position: absolute;
  background: linear-gradient(180deg, #F2F2F2 0%, #EDEDED 100%);
  top: -248px;
  left: 0;
  height: 248px;
  width: 100%;
  pointer-events: none;
}

.footer-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.footer-grid {
  display: grid;
  grid-template-columns: 52% 48%;
}

.footer-grid-left {
  display: flex;
  flex-direction: column;
}

.footer-address {
  margin-bottom: 40px;
}

.footer-address>p {
  color: #292929;
  font-family: "Space Grotesk";
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
  transition: all .2s;
}

.footer-address:hover>p {
  color: #000;
}

.footer-contact {
  margin-top: auto;
}

.footer-contact>a {
  color: #323232;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 158%;
  display: block;
  margin-bottom: 10px;
  width: fit-content;
  transition: all .2s;
}

.footer-contact>a:hover {
  color: #000;
}

.footer-contact>a:last-child {
  margin-bottom: 0;
}

.footer-contact>a>span {
  color: #A6A6A6;
}

.footer-contact>a>small {
  color: #B9B9B9;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  display: block;
  line-height: 158%;
  text-transform: uppercase;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-footer>li {
  color: #323232;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  transition: all .2s;
}

.menu-footer>li:hover {
  color: #000;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
}

.footer-flex-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  column-gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 30px;
}

.footer-socials>a {
  height: fit-content;
  transition: all .2s;
}

.footer-socials>a:hover {
  opacity: 0.5;
}

.footer-text {
  color: #979797;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
}

/* #endregion */

/* #region Frontpage */
#webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f3f3f1;
  z-index: -1;
}

.btn {
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 63px;
  width: fit-content;
  background: #191919;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.btn:hover {
  background: #AD9779;
}

.btn.btn-show-list {
  display: none;
}

.btn.btn-inverted {
  background-color: #EDEDED;
  color: #1F1F1F;
}

.btn.btn-inverted:hover {
  background-color: #fff;
}

.hero {
  min-height: max(520px, 100dvh);
  padding-bottom: 75px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}

.hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.hero-wrap {
  max-width: 435px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero-title {
  color: #676767;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.hero-title>em,
.hero-title>strong {
  color: #191919;
  font-style: normal;
  display: block;
}

.fp-about-section,
.fp-about {
  position: relative;
  overflow: hidden;
}

.fp-about::before,
.fp-about::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 154px;
  background: linear-gradient(to bottom, rgba(242, 242, 242, 0.00) 0%, #F2F2F2 100%);
  pointer-events: none;
}

.fp-about::before {
  top: 0;
  bottom: auto;
  background: linear-gradient(to top, rgba(242, 242, 242, 0.00) 0%, #F2F2F2 100%);
  z-index: 1;
}

.fp-about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.fp-about-container {
  max-width: 1284px;
  margin: 0 auto;
}

.fp-about-items {
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  flex: 0 0 48%;
  position: relative;
}

.fp-about-items::-webkit-scrollbar {
  display: none;
}

.fp-about-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(134deg, rgba(237, 237, 237, 0.32) 12.58%, rgba(254, 254, 254, 0.32) 28.01%, rgba(202, 202, 202, 0.32) 45.31%, rgba(255, 255, 255, 0.32) 58.53%, rgba(237, 237, 237, 0.32) 74.4%);
}

.fp-about-item>span {
  color: #808080;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 127%;
  text-transform: uppercase;
  max-width: 300px;
}

.fp-about-content {
  max-width: 427px;
  z-index: 1;
}

.fp-about-content-wrap {
  max-width: 90%;
}

.approach {
  padding: 100px 0;
  background: #f2f2f2;
  position: relative;
}

.about-values-title,
.approach-title {
  /* color: #9C9C9C; */
  color: #6d6d6d;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
  flex: 0 0 36%;
}

.approach-flex {
  display: flex;
  gap: 15px 30px;
}

.approach-text {
  max-width: 608px;
  position: relative;
  z-index: 1;
}

.approach-text>p {
  margin-bottom: 20px;
}

.approach-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 140px;
  z-index: 1;
  position: relative;
}

.approach-item-title {
  color: #676767;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 102%;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-wrap: balance;
}

.approach-content {
  min-height: 170px;
}

.approach-item {
  background-color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 405px;
  justify-content: flex-end;
  opacity: 0;
  transition: all .5s;
  transform: translateY(10px);
}

.approach-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.service {
  padding: 140px 0;
  min-height: 100vh;
  position: sticky;
  background: #F2F2F2;
  display: flex;
  align-items: center;
  top: 0;
}

.service-container {
  max-width: 1640px;
  margin: 0 auto;
}

.service-content>p:not(:last-child) {
  margin-bottom: 10px;
}

main>section.service:has(+ section.approach) {
  position: relative;
}

.service-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.service-item {
  flex: 0 0 28%;
}

.service-image {
  flex: 0 0 65%;
  position: relative;
}

.service-image>img {
  width: 100%;
  height: auto;
  display: flex;
}

.service-item-content>p:not(:last-child) {
  margin-bottom: 15px;
}

.service:nth-child(odd) .service-list,
.service:nth-child(odd) {
  background-color: #fff;
}

.service:nth-child(odd) .service-flex {
  flex-direction: row-reverse;
}

.service:hover .block-title-before::before {
  width: 158px;
}

.block-subtitle {
  color: #9C9C9C;
  font-family: "Space Grotesk";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.block-title {
  color: #676767;
  font-size: clamp(24px, 1.6vw, 30px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
}

.block-title-before {
  padding-bottom: 25px;
}

.block-title-before::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 158px;
  height: 1px;
  background-color: #B9B9B9;
}

.block-title-before::before {
  content: '';
  width: 45px;
  height: 3px;
  background-color: #3c3c3c;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  transition: all 1s;
}

.service-list {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  background-color: #f2f2f2;
  opacity: 0;
  overflow: hidden;
  transition: 0.6s;
}

.service-list>ul {
  display: block;
  columns: 2;
  gap: 0 30px;
  transform: translateY(105%);
  transition: all 0.5s;
}

.service:hover .service-list>ul {
  transform: translateY(0);
}

.service-content-list li,
.service-list li {
  color: #626262;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 8px 10px;
  border-bottom: 1px solid #CECECE;
}

.service-content-list li:hover::before,
.service-list li:hover::before {
  margin-left: 10px;
}

.service-content-list li::before,
.service-list li::before {
  content: '';
  background-image: url(assets/images/icons/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 16px;
  aspect-ratio: 1;
  transition: all .2s;
  position: relative;
  top: 4px;
}

.service:hover .service-list {
  opacity: 1;
}

/* #endregion */

/* #region Sobre */
.about {
  min-height: max(520px, 100dvh);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.about-image {
  width: 100%;
  height: 100%;
  object-position: right;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-title-wrapper {
  position: relative;
  max-width: 1920px;
  padding: 0 60px;
  display: flex;
  justify-content: flex-end;
  transform: translateY(28vh);
}

.about-title {
  flex: 0 0 26%;
}

.about-history {
  padding: 50px 0 175px 0;
}

.about-history-flex {
  display: flex;
  flex-direction: column;
}

.about-history-image {
  width: 280px;
  height: fit-content;
}

.about-history-top {
  max-width: 833px;
}

.about-history-top>p {
  color: #676767;
  font-family: "Space Grotesk";
  font-size: clamp(19px, 1.5vw, 25px);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-transform: uppercase;
}

.about-history-bottom {
  max-width: 950px;
  display: flex;
  gap: 50px;
  margin: 95px 12% 0 auto;
}

.about-history-bottom-content {
  margin-top: 150px;
  opacity: 0;
  transition: all 0.8s;
}

.about-history-bottom-content.visible {
  opacity: 1;
}

.about-history-bottom-content>p {
  margin-bottom: 15px;
}

.about-gallery {
  background-color: #fff;
  padding: 205px 0 105px 0;
  overflow: hidden;
}

.about-gallery-top {
  max-width: 42%;
  margin: 0 6% 0 auto;
}

.about-gallery-top>p {
  color: #676767;
  font-family: "Space Grotesk";
  font-size: clamp(19px, 1.75vw, 30px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-transform: uppercase;
}

.about-gallery-bottom {
  max-width: 440px;
  margin: 0 6% 0 auto;
}

.about-gallery-wrapper {
  margin: 40px 0;
}

.about-gallery-items {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  width: max-content;
  animation: marquee-reverse 100s linear infinite;
}

.about-gallery-items:nth-child(even) {
  flex-direction: row-reverse;
  animation: marquee 100s linear infinite;
}

.about-gallery-item {
  max-width: 285px;
  height: fit-content;
}

.about-gallery-wrapper {
  margin: 40px -60px;
  overflow: hidden;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.about-values {
  padding: 100px 0 210px 0;
  overflow: hidden;
}

.about-values-items {
  display: flex;
  gap: 40px;
  margin: 0 -60px;
  animation: marquee-reverse 20s linear infinite;
}

.about-values-item {
  color: #BFBFBF;
  font-family: "Space Grotesk";
  font-size: clamp(57px, 6vw, 106px);
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
  text-transform: uppercase;
}

.about-values-items:nth-child(odd) {
  animation: marquee 20s linear infinite;
}

.about-values-wrapper {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* #endregion */

/* #region Serviço */
.single-servico .custom-logo-link {
  filter: invert(1);
}

.banner-service {
  min-height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 75px;
  display: flex;
}

.banner-service-container {
  max-width: 815px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.banner-service-title {
  color: #F2F2F2;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 15px;
}

.banner-service-title::after {
  content: '';
  width: 158px;
  height: 1px;
  background-color: #B9B9B9;
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner-service-title::before {
  content: '';
  width: 45px;
  height: 3px;
  background-color: #f2f2f2;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

.service-content-container {
  max-width: 815px;
  margin: 0 auto;
}

.others-services {
  padding-bottom: 110px;
  overflow: hidden;
}

.others-service-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 23px;
  margin-top: 120px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  padding: 40px 45px;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 9 / 11;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.00) 0%, #1F1F1F 100%);
  z-index: 1;
}

.service-card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .2s;
}

.service-card:hover>img {
  scale: 1.05;
}

.service-card-title {
  color: #FFF;
  font-family: "Space Grotesk";
  font-size: clamp(16px, 1.7vw, 30px);
  font-style: normal;
  font-weight: 400;
  line-height: 102%;
  text-transform: uppercase;
  padding-bottom: 25px;
  z-index: 1;
  position: relative;
  text-wrap: balance;
}

.service-card-title::before,
.service-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}

.service-card-title::before {
  width: 158px;
  height: 1px;
  background-color: #B9B9B9;
}

.service-card:hover .service-card-title::after {
  width: 158px;
}

.service-card-title::after {
  z-index: 1;
  height: 3px;
  width: 45px;
  bottom: -1px;
  background-color: #f2f2f2;
  transition: all .8s;
}

.service-content {
  padding: 50px 0 130px 0;
  background-image: url(assets/images/mask-service-right.webp);
  background-repeat: no-repeat;
  background-position: 70vw -35vh;
  overflow: hidden;
  position: relative;
}

.service-content::before {
  content: '';
  inset: 0;
  position: absolute;
  background-image: url(assets/images/mask-service-left.webp);
  background-repeat: no-repeat;
  background-position: -20vw;
  pointer-events: none;
  z-index: -1;
}

.service-content-intro {
  color: #ABABAB;
  font-family: "Space Grotesk";
  font-size: clamp(19px, 1.5vw, 25px);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-transform: uppercase;
  max-width: 720px;
  text-wrap: balance;
}

.service-content-wrapper {
  max-width: 586px;
  padding: 30px 0;
  margin-left: auto;
}

.service-content-wrapper>p {
  margin-bottom: 15px;
}

.service-content-list {
  margin: 30px 0;
  max-width: 533px;
}

/* #endregion */

/* #region Contacto */
.contacts {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 58%;
}

.contact-right {
  padding: 240px 60px 125px 100px;
  background-size: cover;
  position: relative;
}

.contact-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

#contact-form {
  max-width: 940px;
  position: relative;
}

.form-input {
  padding: 20px 13px;
  display: flex;
  border-bottom: 1px solid #525252;
  transition: all .2s;
}

.form-input.error {
  border-color: #ff4a4a;
}

.form-input:hover {
  border-color: #e2e2e2;
}

.form-input:hover>input,
.form-input:hover>textarea,
.form-input:hover>input::placeholder,
.form-input:hover>textarea::placeholder {
  color: #e2e2e2;
}

.form-input>label {
  max-width: 80px;
  width: 100%;
  color: #767676;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 158%;
  text-transform: uppercase;
  margin-top: 10px;
}

.form-input>textarea,
.form-input>input {
  color: #9E9E9E;
  font-family: "Space Grotesk";
  font-size: clamp(16px, 1.4vw, 26px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  background-color: transparent;
  width: 100%;
  border: none;
  transition: all .2s;
}

.form-input>textarea::placeholder,
.form-input>input::placeholder {
  text-transform: uppercase;
}

.form-input>input:focus,
.form-input>textarea:focus {
  outline: none;
}

.form-input>textarea {
  min-height: 180px;
  resize: none;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
}

.form-checkbox>label {
  color: #EDEDED;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}

.form-checkbox>label>a:hover {
  text-decoration: underline;
}

.form-checkbox>input {
  appearance: none;
  border-radius: 5px;
  border: 1px solid #797979;
  width: 25px;
  height: 25px;
  cursor: pointer;
  flex: 0 0 auto;
}

.form-checkbox>input:checked {
  background-image: url(assets/images/icons/icon-checked.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 15px;
  flex-wrap: wrap;
}

.form-field-error {
  color: #ff4a4a;
  font-size: 11px;
  padding-left: 10px;
  margin-top: 10px;
  display: block;
  letter-spacing: 0.3px;
}

.response-ajax {
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}

.btn-submit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-submit.loading::after {
  content: '';
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 5px 0 #000, -5px 0 #0002;
    background: #000
  }

  33% {
    box-shadow: 5px 0 #000, -5px 0 #0002;
    background: #0002
  }

  66% {
    box-shadow: 5px 0 #0002, -5px 0 #000;
    background: #0002
  }

  100% {
    box-shadow: 5px 0 #0002, -5px 0 #000;
    background: #000
  }
}

.contact-left {
  padding: 235px 60px 85px 60px;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin-left: auto;
  width: 100%;
}

.contact-wrapper {
  margin-top: 20px;
}

.contact-mail {
  color: #171717;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 158%;
  display: block;
}

.contact-tel {
  color: #323232;
  font-size: 16px;
  font-weight: 400;
  line-height: 158%;
  display: block;
}

.contact-tel>small {
  color: #B9B9B9;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 158%;
  display: block;
  text-transform: uppercase;
}

.contact-wrapper-bottom {
  margin-top: auto;
}

.contact-address {
  text-wrap: balance;
  margin-bottom: 10px;
}

.contact-address>p {
  color: #C9C9C9;
  font-family: "Space Grotesk";
  font-size: clamp(22px, 2.2vw, 41px);
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
}

.contact-bottom-text {
  max-width: 540px;
}

/* #endregion */

/* #region Select2 */
.select2-container {
  width: 100% !important;
}

.select2-container .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single {
  all: unset;
}

.select2-container--default .select2-selection--single {
  width: 100%;
  display: block;
  cursor: pointer;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  color: #9E9E9E;
  font-family: "Space Grotesk";
  font-size: clamp(16px, 1.4vw, 26px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-transform: uppercase;
  display: block;
  padding-right: 20px;
}

.select2-search--dropdown,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--open .select2-dropdown--below {
  border: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url(assets/images/icons/icon-select.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  right: 0;
  top: 5px;
  width: 12px;
}

.select2-container--default .select2-results>.select2-results__options {
  background-color: #1f1f1f;
  /* scrollbar-width: thin;
  scrollbar-color: #525252 #292929; */
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 2px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: linear-gradient(90deg,
      transparent 25%,
      #545454 25%, #545454 75%,
      transparent 75%);
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #f2f2f2;
}

.select2-results__option {
  color: #626262;
  font-size: 16px;
  padding: 10px 25px;
  border-bottom: 1px solid #333;
}

.select2-container--default .select2-results__option--selected {
  background-color: #1a1a1a;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #1a1a1a;
  color: #F2F2F2;
}

/* #endregion */

/* #region Páginas */
.common {
  padding: 190px 0 140px 0;
}

.common-content {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.common-content>ul {
  padding-left: 40px;
  list-style: disc;
  margin-bottom: 10px;
}

.common-content li,
.common-content>p {
  margin-bottom: 15px;
  color: #717171;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.51px;
}

.common-content li {
  margin-bottom: 0;
}

.common-content>h2 {
  margin: 45px 0 5px 0;
}

.common-content>h3 {
  padding-left: 20px;
  margin-bottom: 5px;
}

.common-content>h3+p {
  padding-left: 20px;
}

.table-wrapper {
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
}

.table-wrapper::-webkit-scrollbar {
  display: none;
}

.common-content table,
.custom-table {
  margin-bottom: 15px;
}

caption,
.custom-table caption {
  font-size: 14px;
  line-height: 1.5;
  color: #ABABAB;
  margin-bottom: 20px;
  text-align: start;
}

.common-content thead th {
  overflow: hidden;
  color: #BEBEBE;
  text-overflow: ellipsis;
  font-family: "Space Grotesk";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-align: start;
  padding-bottom: 10px;
}

.common-content thead+tbody td {
  color: #626262;
  padding: 10px 0 15px 0;
  border-bottom: 1px solid #BEBEBE;
}

.common-content td {
  font-size: 16px;
  line-height: 170%;
  font-weight: 300;
  font-style: normal;
  text-align: start;
  vertical-align: top;
}

.common-content .cookies-table td {
  font-size: 14px;
}

.common-content td:not(:last-child) {
  padding-right: 30px;
}

.common-content td>strong {
  color: #191919;
  font-weight: 500;
  line-height: 135%;
}

.main-container {
  max-width: 850px;
  margin: 0 auto;
}

blockquote {
  padding-left: 25px;
  border-left: 1px solid #191919;
}

blockquote>p {
  color: #626262;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 180%;
}

.common-content>.last-update {
  color: #626262;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  margin: 0;
  margin-top: 45px;
}

/* #endregion */

/* #region Responsivo */
@media (min-width: 2560px) {
  .hero {
    min-height: 60dvh;
  }

  .about-title-wrapper {
    max-width: 2500px;
  }

  .about-title {
    font-size: 42px;
  }
}

@media (max-width: 1740px) {
  .service-container {
    padding: 0 6%;
  }

  .service {
    padding: 100px 0;
  }
}

@media (max-width: 1680px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 725px;
    column-gap: 45px;
  }

  .about-history {
    padding: 50px 0 125px 0;
  }
}

@media (max-width: 1680px) and (min-width: 1025px) and (max-height: 600px) {
  .about {
    background-attachment: unset;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .about-title-wrapper {
    transform: none;
    padding: 60px;
    justify-content: flex-start;
    width: 100%;
    background: linear-gradient(0, #000000e3, transparent);
  }

  .about-title {
    flex: 0 0 25%;
    text-wrap: balance;
    color: #eee;
  }
}

@media (max-width: 1440px) {

  .service-content-list li:hover::before,
  .service-list li:hover::before {
    margin-left: 5px;
  }

  .form-input {
    padding: 15px 12px;
  }

  .block-subtitle,
  .approach-title {
    font-size: 18px;
  }

  .approach-item-title {
    font-size: 21px;
  }

  .approach-item-text {
    font-size: 14px;
  }

  .common-content td,
  .common-content>p {
    font-size: 16px;
  }

  .container {
    padding: 0 6%;
  }

  header {
    top: 30px;
  }

  .header-navigation-flex {
    margin: 60px 0;
  }

  .hamburger-menu {
    width: 50px;
    height: 50px;
  }

  footer {
    padding: 40px 0;
  }

  .approach-items {
    margin-top: 70px;
  }

  .approach-item {
    min-height: 345px;
  }

  .service-item {
    flex: 0 0 36%;
  }

  .service-image {
    flex: 0 0 55%;
  }

  .service-content-list li::before,
  .service-list li::before {
    flex: 0 0 12px;
  }

  .fp-about-items {
    max-height: 520px;
    flex: 0 0 40%;
  }

  .fp-about-item>span {
    font-size: 20px;
  }

  .about-gallery-item {
    max-width: 230px;
  }

  .about-gallery-bottom,
  .about-gallery-top {
    margin-right: 0;
  }

  .about-gallery-wrapper {
    margin: 40px -6vw;
  }

  .about-gallery {
    padding: 95px 0 70px 0;
  }

  .about-history {
    padding: 50px 0 85px 0;
  }

  .about-history-bottom {
    margin: 50px auto 0 auto;
  }

  .service-card {
    padding: 25px;
  }

  .service-grid {
    gap: 16px;
    margin-top: 75px;
  }

  .others-services {
    padding-bottom: 75px;
  }

  .service-content {
    padding: 50px 0 80px 0;
  }

  .banner-service {
    min-height: 350px;
    padding-bottom: 40px;
  }

  .banner-service-container {
    width: 100%;
  }

  .banner-service-title {
    text-wrap: balance;
    max-width: 440px;
  }

  .contact-left {
    padding: 155px 60px 85px 60px;
  }

  .contact-right {
    padding: 125px 60px;
  }

  .form-input>label {
    margin-top: 5px;
  }

  .form-checkbox>label {
    font-size: 14px;
  }

  .service-content-list li,
  .service-list li {
    font-size: 13px;
  }

  .service-list>ul {
    gap: 0 25px;
  }

  .about-history-top {
    max-width: 620px;
  }

  .fp-about-content-wrap {
    max-width: 83%;
  }
}

@media (max-width: 1376px) {

  .common-content li,
  .common-content>p,
  p {
    font-size: 15px;
  }

  .header-navigation-flex {
    margin: 30px 0;
  }

  .approach-item-title {
    font-size: 19px;
  }

  .common {
    padding: 140px 0 90px 0;
  }

  .approach-items {
    margin-top: 35px;
  }

  .approach-item {
    min-height: 300px;
    padding: 20px;
  }

  .service-flex {
    align-items: center;
  }

  .service-list li {
    font-size: 12px;
  }

  .fp-about-container {
    padding: 0 6%;
  }

  .fp-about-item>span {
    font-size: 18px;
    text-wrap: balance;
  }

  .fp-about-items {
    flex: 0 0 35%;
  }

  .about-gallery {
    padding: 80px 0;
  }

  .contact-right {
    padding: 125px 35px 70px 35px
  }

  .contact-left {
    padding: 155px 35px 70px 35px
  }

  .service-content {
    background-position: 90vw -35vh;
  }

  .service-content::before {
    background-position: -40vw;
  }
}

@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-flex {
    flex-direction: column;
    gap: 30px;
  }

  .approach-items {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    margin: 35px -6vw 0 -6vw;
    padding: 0 6vw;
    cursor: grab;
  }

  .approach-items.active {
    cursor: grabbing;
  }

  .approach-items::-webkit-scrollbar {
    display: none;
  }

  .approach-items.active .approach-item {
    pointer-events: none;
  }

  .approach-item {
    flex: 0 0 292px;
    opacity: 1;
  }

  .service {
    padding: 70px 0;
  }

  .block-subtitle {
    font-size: 16px;
  }

  .service-list {
    padding: 20px;
  }

  .service-list li {
    padding: 5px;
    gap: 10px;
  }

  .service-list li::before {
    flex: 0 0 10px;
  }

  .hero-title {
    font-size: 28px;
    text-wrap: balance;
  }

  .about-values {
    padding: 0 0 100px 0;
  }

  .header-navigation-content {
    padding: 30px 0 90px 0;
  }

  .menu-header {
    column-gap: 45px;
  }
}

@media (max-width: 1024px) {

  .common-content td,
  .common-content li,
  .common-content>p,
  p {
    font-size: 14px;
  }

  .main-container {
    padding: 0 6%;
  }

  .header-socials,
  .menu-header {
    gap: 15px 25px;
    flex-wrap: wrap;
  }

  .service-container {
    padding: 0 20px;
  }

  .header-service>a:hover {
    padding-left: 30px;
  }

  .header-navigation-container {
    padding: 0 30px;
  }

  .header-navigation-content {
    padding: 30px 0 90px 0;
  }

  .service-list>ul {
    transform: translateY(0);
    gap: 0 10px;
  }

  .service-list li {
    gap: 10px;
    padding: 6px;
    font-size: 11px;
  }

  .service-list {
    position: relative;
    opacity: 1;
    padding: 10px;
  }

  .service-image {
    flex: 0 0 50%;
  }

  .service-item {
    flex: 0 0 44%;
  }

  .fp-about-item>span {
    font-size: 16px;
  }

  .fp-about-content {
    max-width: 325px;
  }

  #webgl {
    position: absolute;
  }

  .about-gallery-top {
    max-width: 455px;
  }

  .about-gallery-wrapper {
    margin: 25px -6vw;
  }

  .service-card {
    padding: 18px;
  }

  .others-services {
    padding-bottom: 50px;
  }

  .banner-service-container,
  .service-content-container {
    padding: 0 25px;
  }

  .banner-service {
    padding-bottom: 40px;
    min-height: 500px;
    background-position: top;
    position: relative;
  }

  .banner-service::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(25, 25, 25, 0.00) 0%, rgba(25, 25, 25, 0.60) 100%), linear-gradient(180deg, rgba(25, 25, 25, 0.00) 0%, rgba(25, 25, 25, 0.60) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  }

  .contact-left {
    padding: 135px 35px 50px 35px;
  }

  .service-content::before {
    background-position: -50vw;
  }

  .about {
    display: flex;
    align-items: flex-end;
    min-height: max(520px, 80dvh);
  }

  .about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.00) 0%, rgba(25, 25, 25, 0.60) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%)
  }

  .about-title-wrapper {
    padding: 40px 6%;
    transform: none;
    width: 100%;
    justify-content: flex-start;
  }

  .about-title {
    flex: 0 0 58%;
    font-size: clamp(26px, 4vw, 40px);
    text-wrap: balance;
    color: #eee;
  }

  .header-navigation-flex {
    margin: 60px 0;
  }

  .form-checkbox>label {
    font-size: 12px;
  }

  .fp-about-content-wrap {
    max-width: 100%;
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  .about {
    min-height: 100dvh;
  }

  .about-title {
    font-size: 30px;
  }

  .service {
    position: relative
  }

  .header-navigation-flex {
    margin: 30px 0;
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .hero {
    min-height: 60dvh;
  }

  .service {
    min-height: fit-content;
  }
}

@media (max-width: 820px) {
  .contact-wrapper-bottom {
    margin-top: 40px;
  }

  .service-card-title {
    font-size: 21px;
    text-wrap: balance;
    padding-bottom: 16px;
    line-height: 1.1;
  }

  .footer-flex-bottom {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    margin-top: 20px;
  }

  .footer-logo {
    max-width: 226px;
  }

  .footer-logo>img {
    width: 100%;
    height: auto;
  }

  .footer-address {
    margin-bottom: 20px;
  }

  .header-service>a {
    font-size: 24px;
  }

  .header-service>a:hover>img {
    display: none;
  }

  .service:nth-child(odd) .service-flex,
  .service-flex {
    flex-direction: column;
  }

  .service {
    padding: 50px 0;
  }

  .service-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
    background-color: #f2f2f2;
  }

  .service:nth-child(odd) .service-image {
    background-color: #fff;
  }

  .service-list>ul {
    columns: auto;
  }

  .service-list li::before {
    flex: 0 0 16px;
  }

  .service-list li {
    gap: 15px;
    padding: 8px;
  }

  .service-list {
    padding: 0;
  }

  .about-values-title,
  .approach-title {
    font-size: 18px;
  }

  .about-gallery-item {
    max-width: 190px;
  }

  .about-gallery-items {
    gap: 10px;
    margin-bottom: 10px;
  }

  .service-grid {
    gap: 10px;
  }

  .service-content-list {
    margin: 20px 0;
  }

  .service-content-wrapper {
    padding: 20px 0;
  }

  .service-content {
    padding: 50px 0;
  }

  .contacts-grid {
    grid-template-columns: 100%;
  }

  .contact-left {
    padding: 125px 25px 50px 25px;
    position: sticky;
    top: 0;
  }

  .contact-right {
    padding: 40px 25px 60px 25px;
    z-index: 1;
  }

  .common-content td {
    font-size: 13px;
  }

  .common-content>h2 {
    margin: 25px 0 5px 0;
    font-size: 24px;
  }

  .service-grid {
    display: flex;
    overflow-x: auto;
    margin: 34px -6vw 0 -6vw;
    padding: 0 6vw;
    scrollbar-width: none;
    cursor: grab;
  }

  .service-grid.active {
    cursor: grabbing;
  }

  .service-content::before,
  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-grid.active .service-card {
    pointer-events: none;
  }

  .service-card {
    flex: 0 0 294px;
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .header-services {
    margin-top: 60px;
  }

  .header-navigation-flex {
    flex-direction: column;
    gap: 30px;
    order: 1;
    align-items: flex-start;
    margin: 60px 0 0 0;
  }

  .form-checkbox>label,
  .fp-about-item>span {
    font-size: 14px;
  }

  .about-history-image {
    width: 200px;
  }

  .about-history-bottom-content {
    margin-top: 85px;
  }

  .about-history-bottom {
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .service {
    padding: 36px 0;
    position: relative;
  }

  .service-flex {
    gap: 20px;
  }

  .service:nth-child(odd) .service-list,
  .service:nth-child(odd) {
    background-color: #f2f2f2;
  }

  /* .service:nth-child(odd) .service-image,
  .service:nth-child(odd) .service-list,
  .service:nth-child(odd) {
    background-color: #f2f2f2;
  }

  .service:nth-child(even) .service-image,
  .service:nth-child(even) .service-list,
  .service:nth-child(even) {
    background-color: #fff;
  } */

  .service-image {
    gap: 20px;
    padding: 0;
    grid-template-columns: 100%;
  }

  .service-list>ul {
    max-height: 160px;
    position: relative;
    overflow: hidden;
  }

  .service-list>ul.show {
    max-height: fit-content;
    overflow: auto;
  }

  .btn.btn-show-list.remove,
  .service-list>ul.show::after {
    display: none;
  }

  .service-list>ul::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0.00) 0%, #F2F2F2 100%);
  }

  .btn.btn-show-list {
    z-index: 1;
    position: relative;
    display: flex;
    background: rgba(25, 25, 25, 0.05);
    color: #191919;
    margin-left: auto;
  }

  .service-list li {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .select2-results__option {
    font-size: 14px;
  }

  .common-content li,
  .common-content>p,
  p {
    font-size: 16px;
  }

  .hero-title {
    font-size: 30px;
    text-wrap: balance;
  }

  .menu-header>li {
    flex: 0 0 140px;
  }

  .form-checkbox>label {
    font-size: 16px;
  }

  .form-input {
    align-items: baseline;
  }

  .form-checkbox>input {
    width: 20px;
    height: 20px;
  }

  .select2-container .select2-selection--single .select2-selection__rendered,
  .form-input>textarea,
  .form-input>input {
    font-size: 19px;
  }

  .about-title-wrapper {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 100%;
  }

  .footer-grid-left {
    gap: 125px;
    margin-bottom: 40px;
  }

  .footer-text {
    font-size: 12px;
  }

  .footer-flex-bottom {
    align-items: flex-end;
    flex-direction: row;
    margin-top: 0;
    column-gap: 37px;
  }

  .footer-video {
    width: 100%;
    max-width: 100%;
    height: 100%;
    aspect-ratio: 1;
    pointer-events: none;
    object-fit: cover;
  }

  .header-service>a {
    font-size: 21px;
    padding: 8px 15px;
  }

  .main-container,
  .container,
  .fp-about-container,
  .service-container,
  .header-navigation-container {
    padding: 0 25px;
  }

  .fp-about-item>span {
    max-width: 50%;
  }

  .fp-about-item+.fp-about-item {
    margin-left: -60px;
  }

  .custom-logo-link {
    max-width: 225px;
  }

  .custom-logo-link>img {
    width: 100%;
    height: auto;
  }

  .approach-flex {
    display: contents;
  }

  .approach-items {
    margin: 25px -20px;
    padding: 0 25px;
  }

  .fp-about-flex {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .fp-about-items {
    flex-direction: row;
    max-height: fit-content;
    overflow-x: scroll;
    flex: 0 0 auto;
    width: 100vw;
    margin: 0 -20px;
    padding: 0 25px;
  }

  .fp-about-content {
    max-width: 100%;
  }

  .fp-about::before,
  .fp-about::after {
    width: 20px;
  }

  .fp-about {
    padding: 0 0 80px 0;
  }

  .fp-about-item {
    flex: 0 0 338px;
  }

  .block-title {
    margin-bottom: 35px;
  }

  .hero {
    min-height: max(520px, 100dvh);
    padding-bottom: 50px;
  }

  .hero-wrap {
    gap: 15px;
  }

  .about-values-title,
  .approach-title {
    font-size: 16px;
  }

  .approach {
    order: 1;
    padding: 160px 0 50px 0;
  }

  .about-values {
    padding: 80px 0;
  }

  .about-gallery-wrapper {
    margin: 20px -25px;
  }

  .about-history-image {
    width: 160px;
  }

  .about-history-bottom-content {
    margin-top: 50px;
  }

  .service-image {
    display: contents;
  }

  .service-item {
    order: 1;
  }

  .service-list {
    order: 2;
  }

  .common {
    padding: 120px 0 50px 0;
  }

  .footer-flex {
    display: none;
  }

  .approach>.container {
    display: flex;
    flex-direction: column;
  }

  .approach-text {
    order: 1;
  }

  .approach-item-text {
    font-size: 16px;
  }

  .approach-item-title {
    font-size: 24px;
  }

  .service-grid {
    margin: 34px -25px 0 -25px;
    padding: 0 25px;
  }

  .page-template-page-sobre-nos>main {
    display: flex;
    flex-direction: column;
  }

  .page-template-page-sobre-nos .approach {
    padding: 0 0 40px 0;
  }

  .table-wrapper {
    margin: 0 -25px;
    padding: 0 25px;
  }

  caption,
  .custom-table caption {
    text-align: start;
    margin: 0 20px 20px 20px;
  }

  .contact-left {
    padding-bottom: 40px;
  }

  .about-values-items {
    gap: 20px;
  }

  .fp-about-content-wrap {
    max-width: 355px;
  }

  .service-item-content {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-item-content.show {
    display: block;
    overflow: unset;
    -webkit-line-clamp: unset;
  }
}

@media (max-width: 480px) {
  .banner-service {
    background-image: var(--service-mobile) !important;
    background-repeat: no-repeat;
  }

  .about-history-bottom {
    flex-direction: column;
    margin-top: 60px;
  }

  .about-history {
    padding: 40px 0 80px 0;
  }

  .about-history-bottom-content {
    margin-top: 0;
  }

  .about-history-image {
    max-width: 180px;
    width: 100%;
    margin-left: auto;
  }

  .form-bottom {
    gap: 20px;
  }

  .form-bottom .btn {
    width: 100%;
    justify-content: center;
  }

  .about-title {
    flex: 0 0 100%;
    font-size: 32px;
    color: #FFF;
    line-height: 115%;
  }

  .banner-service-container {
    gap: 15px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .banner-service-container>.btn {
    position: absolute;
    right: 25px;
    top: 175px;
  }

  .about-gallery-bottom {
    max-width: 265px;
  }

  .about {
    min-height: 500px;
    background-attachment: local;
  }

  .approach-item-title {
    font-size: 22px;
  }

  .approach-item-text {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 30px;
  }

  .contact-wrapper-bottom {
    margin-top: 40px;
  }

  .contact-address {
    margin-bottom: 10px;
  }

  .hamburger-menu {
    width: 40px;
    height: 40px;
  }

  .header-navigation-flex,
  .header-services {
    margin-top: 45px;
  }

  .header-service>a {
    font-size: 20px;
  }

  .about-gallery-item {
    max-width: 160px;
  }

  .banner-service {
    padding-bottom: 30px;
  }

  .custom-logo-link {
    max-width: 195px;
  }

  .hamburger-menu {
    width: 43px;
    height: 43px;
  }

  .common-content td:not(:last-child) {
    padding-right: 20px;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 28px
  }

  .about-title {
    font-size: 24px;
  }

  .form-input {
    flex-direction: column;
    gap: 5px;
  }

  .form-input>label {
    margin-top: 0;
  }

  .header-service>a {
    font-size: 18px;
  }
}

/* #endregion */