/*--------------------------------------------------------------
# ***** =========== MAIN STYLES CSS ======== *****
--------------------------------------------------------------*/

/* Fonts */
:root {
  --font-primary: "Teko", sans-serif;
  --font-secondary: "Rubik", sans-serif;
}

/* Colors */
:root {
  --color-default: #222429;
  --color-default-2: #364d59;
  --color-primary: #ffba17;
  --color-primary-2: #ffc619;
  --color-primary-3: #ffaa17;
  --color-primary-4: #ff9a17e3;
  --color-secondary: #436171;
  /*--color-primary: #feb900;*/
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: var(--font-secondary);
  color: var(--color-default);
  overflow-x: hidden;
  font-size: 100%;
}

/* Añadir este estilo puede ayudarte a diagnosticar problemas de overflow */
html {
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

b {
  font-weight: 500 !important;
  color: var(--color-default-2);
}

a:hover {
  color: #ffb035;
  text-decoration: none;
}

p {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: -0.4px;
  font-weight: 400;
  color: #52565e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}


/*--------------------------------------------------------------
# Call to Action Section
--------------------------------------------------------------*/

.call-to-section .shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 340px;
  max-width: 100%;
  height: 100%;
  background: url(../img/home/call-to-shape-1.webp) right top no-repeat;
  z-index: 1;
}

.call-to-section .shape-2 {
  position: absolute;
  right: 170px;
  top: 0;
  width: 410px;
  height: 54px;
  background: url(../img/home/call-to-shape-2.webp) right top no-repeat;
  z-index: 0;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.call-to-section .inner {
  position: relative;
  display: block;
  padding: 80px 95px 55px;
  background: var(--color-primary);
  color: var(--color-default);
  border-radius: 7px;
  overflow: hidden;
  bottom: -60px;
  margin-top: -60px;
  border-left: 6px solid #1f2024;
  /*background-image: url(../img/clients/clients-bg.png);*/
}

.call-to-section .link-box {
  position: relative;
  float: right;
  padding-top: 12px;
  z-index: 3;
}

.call-to-section h2 {
  position: relative;
  float: left;
  display: block;
  font-size: 60px;
  line-height: 0.85em;
  text-transform: uppercase;
  color: var(--color-default);
  font-weight: 500;
  margin: 0px 0px 25px;
  z-index: 3;
  font-size: 4rem;
}

.call-to-section {
  position: relative;
  padding: 0;
  z-index: 1;
}

/*--------------------------------------------------------------
# Btn Styles
--------------------------------------------------------------*/

.theme-btn i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  margin-left: 3px;
}

.theme-btn {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*Btn Style One*/
.btn-style-one {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-primary-2);
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  text-shadow: 1px 1px 1px #00000024;
}

.btn-style-one .btn-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 0;
  z-index: 1;
  font-family: var(--font-primary);
}

.btn-style-one:hover {
  background: #fff;
  color: var(--color-default);
}

.btn-style-one .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.8;
  z-index: 0;
  -webkit-transform: skewX(-22deg);
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-one:hover .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  -webkit-transform: skewX(0deg);
  transform: skewX(0deg);
}

/*Btn Style Two*/
.btn-style-two {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-default);
  color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn-style-two .btn-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  padding: 19px 50px 16px;
  z-index: 1;
  letter-spacing: 0.1em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-style-two:hover {
  color: var(--color-default);
}

.btn-style-two .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: #ffffff;
  opacity: 0.2;
  z-index: 0;
  -webkit-transform: skewX(-22deg);
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-two:hover .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  -webkit-transform: skewX(0deg);
  transform: skewX(0deg);
}

.btn-style-three {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-primary-2);
  color: var(--color-default);
  border-radius: 5px;
  overflow: hidden;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  padding: 15px 40px;
  text-shadow: 1px 1px 1px #00000024;
}

.btn-style-three .btn-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 0;
  z-index: 1;
  font-family: var(--font-primary);
}

.btn-style-three:hover {
  background: #ffffff;
  color: #fff;
}

.btn-style-three .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.8;
  z-index: 0;
  -webkit-transform: skewX(-22deg);
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-three:hover .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  -webkit-transform: skewX(0deg);
  transform: skewX(0deg);
}

/*--------------------------------------------------------------
# ICONOS PLANIFICAMOS TU REFORMA
--------------------------------------------------------------*/

.sprite-box {
  width: 50px;
  /* Ajusta el tamaño del contenedor */
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sprite-box .sprite-icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transform: scale(1.5);
}

.sprite-box:hover .sprite-icon {
  color: var(--color-default);
}

/*--------------------------------------------------------------
# SECCION PLANIFICAMOS TU REFORMA
--------------------------------------------------------------*/

.services-section {
  position: relative;
  padding: 120px 0px 90px;
  background: var(--color-default) url(../img/home/reformas-bg.webp) center top repeat;
  color: #ffffff;
}

.services-section .row {
  counter-reset: slides-num;
}

.services-section .row .service-block .inner-box::before {
  content: "0" counter(slides-num) "";
  position: absolute;
  left: 45px;
  top: 50px;
  font-size: 50px;
  line-height: 1em;
  color: #ffffff;
  opacity: 0.2;
  font-family: var(--font-primary);
  font-weight: 300;
}

.service-block .inner-box {
  position: relative;
  display: block;
  padding: 50px 45px;
  background: #1c1e22;
  min-height: 100%;
  border-radius: 7px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-block .inner-box:hover .sprite-box {
  color: var(--color-default);
}

.service-block .inner-box .sprite-box {
  position: absolute;
  right: 45px;
  top: 50px;
  color: var(--color-primary);
  font-size: 45px;
  line-height: 1em;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.service-block .inner-box:hover {
  background: var(--color-primary);
}

.services-section .row .service-block .inner-box:hover::before,
.service-block .inner-box:hover .count,
.service-block .inner-box:hover h6,
.service-block .inner-box:hover h6 a {
  color: var(--color-default);
  text-decoration: underline;
}

.service-block .inner-box h6 {
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1em;
  margin-top: 100px;
}

.service-block .inner-box h6 a {
  color: #ffffff;
}

.services-section .row .service-block {
  counter-increment: slides-num;
}

.service-block {
  position: relative;
  margin-bottom: 30px;
}

.service-block .inner-box .bottom-curve {
  position: absolute;
  right: -70px;
  bottom: 0;
  width: 100px;
  height: 80%;
  background: var(--color-default);
  opacity: 0.2;
  z-index: 0;
  -webkit-transform: skewX(0deg) scaleX(0);
  transform: skewX(0deg) scaleX(0);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.sec-title .lower-text p {
  position: relative;
  display: block;
  font-size: 1.1rem;
  line-height: 2em;
  font-weight: 400;
  color: var(--thm-text);
  padding: 30px 0px 0px;
}

.services-section .sec-title {
  margin-bottom: 30px;
}

.sec-title {
  position: relative;
  margin-bottom: 50px;
}

.services-section .sec-title .lower-text p {
  color: #999b9f;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 70px;
  line-height: 0.9em;
  text-transform: uppercase;
  color: var(--color-default);
  font-weight: 400;
  margin-bottom: 0px;
}

.services-section .sec-title h2 {
  color: #ffffff;
}

.sec-title h2 .dot {
  color: var(--color-primary-3);
}

.service-block .inner-box .bottom-curve {
  position: absolute;
  right: -70px;
  bottom: 0;
  width: 100px;
  height: 80%;
  background: var(--color-default);
  opacity: 0.2;
  z-index: 0;
  -webkit-transform: skewX(0deg) scaleX(0);
  transform: skewX(0deg) scaleX(0);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.service-block .inner-box:hover .bottom-curve {
  -webkit-transform: skewX(-35deg) scaleX(1);
  transform: skewX(-35deg) scaleX(1);
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.auto-container {
  position: static;
  max-width: 1320px;
  padding: 0px 15px;
  margin: 0 auto;
}

.section-bg {
  background-color: #f5f6f7;
}

/* .section-header h4:before,
.section-header h4:after {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--color-default);
  display: inline-block;
} */

.section-header h4:before {
  margin: 0 30px 5px 0;
}

.section-header h4:after {
  margin: 0 0 5px 30px;
}

.bi-quote:before {
  font-size: 18px;
  color: #364d5991;
  margin-right: 8px;
  margin-left: 8px;
}

.bi-quote.after:before {
  font-size: 18px;
  color: #364d5991;
  margin-right: 8px;
  margin-left: 8px;
  transform: rotate(180deg);
}

.servicios-contenido {
  overflow: hidden;
  height: 0;
  /* Altura inicial de 0 para que esté oculto */
  opacity: 0;
  /* Oculto inicialmente */
  transition: height 0.5s ease, opacity 0.5s ease;
  /* Transiciones para altura y opacidad */
  padding: 20px 0;
}

.servicios-visible {
  display: block;
  /* Visibilidad cuando está activa */
}

.rotado {
  transform: rotate(90deg);
  /* Rotación de 45 grados */
}

.servicios-contenido h1 {
  margin-bottom: 0.6em;
  color: var(--color-default-2);
  font-size: 2rem;
  font-family: var(--font-secondary);
  text-transform: inherit;
  letter-spacing: -0.8px;
  margin-top: 1em;
  line-height: 1.3;
}

.servicios-contenido h2 {
  font-size: 1.8rem;
  color: var(--color-default-2);
  margin-bottom: 0.6em;
  margin-top: 1.4em;
  font-family: var(--font-secondary);
  text-transform: inherit;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.toggle-servicios {
  font-family: var(--font-primary);
}

.toggle-servicios a {
  color: var(--color-default);
  /*background-image: url("/assets/img/logo/ljreformas_logo.svg");*/
  display: flex;
  flex-direction: row;
  /*background-repeat: no-repeat;
	align-items: flex-end;
	background-position: center;
	height: 100px;
	justify-content: center;*/
  font-size: 1.4rem;
}

.servicios-contenido ul {
  font-size: 1.1rem;
  letter-spacing: -0.4px;
  color: #52565e;
  line-height: 30px;
}

.toggle-servicios i {
  color: var(--color-primary);
  margin-right: 10px;
}

.servicios-contenido h2 i {
  color: var(--color-default);
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Seccion Cuidamos cada detalle
--------------------------------------------------------------*/

.int-works-tx h4 {
  color: var(--color-default);
  font-weight: 400;
  font-size: 2.8rem;
}

.int-works-tx h6 {
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 10px 0;
}

.int-works-img {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/*--------------------------------------------------------------
# Nuestra Seccion Oferta
--------------------------------------------------------------*/
.our-offer .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.our-offer .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: "";
  background: url("../img/projects/about-bg.png") top left;
  background-repeat: no-repeat;
}

.our-offer h3 {
  color: var(--color-default-2);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.6em;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.our-offer .int-works-tx p {
  font-family: var(--font-secondary);
  font-size: 1.1em;
  margin-bottom: 3em;
  margin-top: 1em;
}

.our-offer .nav-pills {
  border-bottom: 1px solid #dfdfdf;
}

.our-offer .nav-pills li+li {
  margin-left: 40px;
}

.our-offer .nav-link {
  background: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-default);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
  letter-spacing: -.2px;
}

.our-offer .nav-link.active {
  color: var(--color-primary-3);
  background: none;
  border-bottom: 3px solid var(--color-primary-3);
}

.tab-pane p.fst-italic {
  font-size: 1em;
}

.our-offer .tab-content h4 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-default-2);
  font-family: var(--font-secondary);
  text-transform: none;
  letter-spacing: -.2px;
}

.our-offer .tab-content i {
  font-size: 1.1em;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}


/*--------------------------------------------------------------
# SECCION SOLUCIONES CREATIVAS
--------------------------------------------------------------*/

.sec-title h3 {
  position: relative;
  display: block;
  font-size: 3.2rem;
  line-height: 0.9em;
  text-transform: uppercase;
  color: var(--color-default);
  font-weight: 400;
  margin-bottom: 0px;
}

.sec-title h3 .dot {
  color: var(--color-primary-3);
}

.solutions .right-col {
  position: relative;
  margin-bottom: -60px;
  margin-top: 20px;
}

.solutions .right-col .inner {
  position: relative;
  display: block;
}

.accordion-box {
  position: relative;
}

.accordion-box .block:last-child {
  margin-bottom: 0;
}

.accordion-box .block.active-block {
  background-color: #ffffff;
  /* 	-ms-box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.05); */
}

.accordion-box .block {
  position: relative;
  background: #ffffff;
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 16px;
  /* 	-ms-box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.03);
	-webkit-box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.03); */
}


.accordion-box .block .acc-btn {
  position: relative;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 20px 40px;
  padding-right: 60px;
  color: var(--color-default);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--font-primary);
}


/* Icono de + (mostrar por defecto) */
.accordion-box .block .acc-btn i.before {
  position: absolute;
  right: 35px;
  font-size: 25px;
  color: var(--color-primary-3);
  transition: all 500ms ease;
}

/* Ocultar el icono + cuando el acordeón está activo */
.accordion-box .block .acc-btn.active i.before {
  display: none;
}

/* Icono de - (ocultar por defecto) */
.accordion-box .block .acc-btn i.after {
  position: absolute;
  right: 35px;
  font-size: 25px;
  color: var(--color-default);
  transition: all 500ms ease;
  display: none;
  /* Oculto por defecto */
}

/* Mostrar el icono - cuando el acordeón está activo */
.accordion-box .block .acc-btn.active i.after {
  display: inline;
}


.accordion-box .block .acc-btn .count {
  color: var(--color-primary);
  padding-right: 3px;
}

.accordion-box .block .acc-btn.active {
  background-color: #ffffff;
}


.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .content-solutions {
  position: relative;
  padding: 0px 40px 30px;
}


.accordion-box .block .content-solutions .text {
  display: block;
  position: relative;
  top: 0px;
  display: block;
}


.text {
  line-height: 2.125em;
  margin: 0 0;
}

.solutions .progress-box {
  position: relative;
  display: block;
  width: 100%;
  font-family: var(--font-primary);
}

.solutions .progress-box .bar-title {
  position: relative;
  font-size: 20px;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.solutions .progress-box .bar {
  position: relative;
  width: 100%;
  height: 7px;
  background: #ffffff;
  border-radius: 4px;
}

.solutions .progress-box .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 7px;
  background: var(--color-primary);
  border-radius: 4px;
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.solutions .progress-box .count-box {
  position: absolute;
  right: 0px;
  margin-right: -40px;
  bottom: 18px;
  width: 40px;
  height: 22px;
  background: var(--color-default);
  color: #ffffff;
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.solutions .progress-box .counted .count-box {
  opacity: 1;
}

.solutions .progress-box .count-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-top: 5px solid var(--color-default);
  border-left: 5px solid var(--color-default);
}

.count-bar {
  width: 0;
  transition: width 1.5s ease;
  /* Asegúrate de que tenga una transición */
  height: 20px;
  /* Establece la altura deseada */
}

.solutions .soluciones {
  margin-top: 60px;
}

.solutions .featured-block .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
}

.solutions .featured-block {
  position: relative;
  display: block;
  padding-left: 230px;
  min-height: 117px;
  margin-bottom: 40px;
}

.solutions .featured-block .image img {
  display: block;
  width: 100%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  border-radius: 7px;
}

.solutions .left-col .inner {
  position: relative;
  display: block;
  padding-right: 67px;
}

.solutions .right-col .inner {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Call To Action Section Descubre tu lugar
--------------------------------------------------------------*/
.place {
  padding: 0;
  margin-bottom: 40px;
  margin-top: 120px;
}

.place .container {
  padding: 70px 10px;
  border-radius: 15px;
}

.place .img {
  position: relative;
}

.place .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e1e1e147;
  border-radius: 15px;
  transform: rotate(12deg);
}

.place .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #e1e1e175;
  border-radius: 15px;
  transform: rotate(6deg);
}

.place .img img {
  position: relative;
  z-index: 3;
  border-radius: 2px;
}

/*--------------------------------------------------------------
# Seccion nuestra galería
--------------------------------------------------------------*/

.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #f2f2f2;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

/*--------------------------------------------------------------
# Seccion Caracteristicas
--------------------------------------------------------------*/
.features .int-works-tx ul {
  padding: 0;
}

.features .int-works-tx ul li {
  list-style: none;
}

.features .int-works-tx ul>li>p>i {
  padding-right: 10px;
}

/*--------------------------------------------------------------
# Seccion Creamos innovacion
--------------------------------------------------------------*/

#start-n {
  padding: 0 0 4em;
  box-shadow: 0px 15px 20px 0px #0000000f;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f6f7;
  margin-top: 4em;
  border-radius: 15px;
}

.quality-product h4 {
  color: #32353c;
  font-weight: 500;
  font-size: calc(1.8rem + 0.5vw);
}

.quality {
  display: flex;
  flex-direction: column;
  width: calc(7.5em + 0.2vw);
  position: relative;
  top: -30px;
  /* opacity: 0.7; */
  filter: grayscale(100%);
}

.quality-product h6 {
  color: var(--color-primary-3);
  font-size: calc(1.4rem + 0.2vw);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 26vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs-works {
  padding: 140px 0 60px 0;
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-primary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "-";
}

/*--------------------------------------------------------------
# Breadcrumbs Nuestros Trabajos 
--------------------------------------------------------------*/
.breadcrumbs-tx {
  width: 100%;
  margin: 0;
  padding: 0;
}

.breadcrumbs-texto {
  height: 40em;
  align-items: center;
}

.breadcrumbs-tx p.aos-init.aos-animate {
  font-size: 26px;
  /*  color: var(--color-primary);*/
}

.info-Breadcrumbs h2 {
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  font-family: var(--font-primary);
  height: 170px;
}

.info-Breadcrumbs p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: absolute;
  padding: 30px 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
}

.header .logo img {
  width: 120px;
  margin-left: -25px;
}

.header .logo h1 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  margin-left: 10px;
}

.header .logo h1 span {
  color: var(--color-primary);
}

.presupuesto h3 span {
  color: var(--color-primary);
  font-size: 45px;
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.presupuesto .content {
  padding: 5px;
  margin-top: 1.7em;
  max-width: 94%;
}

.presupuesto i {
  color: var(--bs-success);
  font-size: 20px;
}

.formulario__mensaje i {
  color: var(--color-primary);
  font-size: 18px;
}

.presupuesto .content h3 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  line-height: 15px;
}

.presupuesto .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.content p::before {
  content: "";
  background-color: #f4f5f8;
  position: absolute;
  width: 729px;
  height: 477px;
  top: 73%;
  left: 46%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.content img {
  margin-top: 5em;
  position: relative;
  mix-blend-mode: luminosity;
  max-width: 96%;
}

.content p::after {
  content: "";
  background-color: var(--color-primary);
  position: absolute;
  padding-top: 0px;
  width: 85px;
  height: 76px;
  top: 48%;
  left: 4%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# SECTION REFORMAS INTEGRALES
--------------------------------------------------------------*/
.constructions .card-item {
  background: #fff;
  position: relative;
  box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.02);
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--color-default-2);
  font-family: var(--font-secondary);
  text-transform: none;
  letter-spacing: -.2px;
}

.constructions .card-item p {
  margin: 0;
}

.constructions {
  background-image: url(../img/clients/pattern-2.webp);
}

/*.alt-services {
  background-image: url(../img/clients/pattern-2.webp);
}*/

/*--------------------------------------------------------------
# Seccion Porque Nosotros
--------------------------------------------------------------*/
.elegirnos .nosotros-box {
  padding: 30px;
  background: var(--color-primary-2);
  color: #fff;
  border-radius: 15px;
}

.elegirnos .nosotros-box h3 {
  font-weight: 500;
  font-size: 3.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 1px #cbcbcb;
}

.elegirnos .nosotros-box p {
  margin-bottom: 30px;
  color: #364d59e0;
  font-weight: 500;
}

.elegirnos .nosotros-box .info-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 1em 3em 1em 3em;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  font-family: var(--font-default);
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #9a9a9a;
}

.elegirnos .nosotros-box .info-btn i {
  font-size: 14px;
}

.elegirnos .nosotros-box .info-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.elegirnos .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.elegirnos .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 2em;
  margin-bottom: 30px;
  background: rgba(132, 111, 111, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.elegirnos .icon-box h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 30px 0;
}

.elegirnos .icon-box p {
  font-size: 1em;
  color: #6c757d;
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Servicios Section
--------------------------------------------------------------*/

.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  transition: all ease-in-out 0.3s;
  border: 1px solid rgba(82, 86, 94, 0.15);
  border-radius: 5px;
}

.services .service-item:hover {
  padding: 40px;
  box-shadow: 0px 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-default);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default-2);
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 1.1em;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
  font-family: var(--font-secondary);
  text-transform: none;
  letter-spacing: -.2px;
}

.services .service-item p {
  margin-bottom: 30px;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.9em;
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
section.features {
  margin-bottom: -100px;
}

.nav-tabs .nav-link {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.features h2 {
  font-size: 3.6rem;
  text-align: center;
  color: var(--color-default);
  font-weight: 400;
  margin: 10px 0 60px;
}

span.gray {
  color: var(--color-default) !important;
}

.features span {
  color: var(--color-primary);
}

.features .nav-tabs {
  border: 0;
  background-color: #f4f5f8;
  display: flex;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-align: center;
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--color-default);
  text-transform: uppercase;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 12px;
  font-family: var(--font-secondary);
  font-weight: 400;
  color: var(--color-default);
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/* Efecto .nav-link*/

.features .nav-link {
  padding: 30px 0;
  transition: color 0.3s;
  color: var(--color-default);
  position: relative;
  /* Para posicionar el pseudo-elemento */
  overflow: hidden;
  /* Para ocultar el contenido adicional */
  cursor: pointer;
  border: 0;
}

.features .nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* Mantener en 100% para cubrir todo el área */
  background: var(--color-default);
  transform: translateY(-100%);
  /* Comienza fuera de la vista, arriba */
  transition: transform 0.3s ease-in-out;
  /* Transición para el efecto */
  z-index: 0;
  /* Coloca detrás del texto */
  top: 0;
  /* Asegura que comienza desde la parte superior */
}

.features .nav-link.active {
  color: #fff;
  /* Cambia el color del texto */
  border-radius: 0;
}

.features .nav-link.active:before {
  transform: translateY(0);
  /* Desliza hacia abajo al activarse */
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane {
  display: none;
  /* Ocultar todas las pestañas por defecto */
  opacity: 0;
  /* Inicia con opacidad 0 para el efecto de desvanecimiento */
  transform: translateY(-20px);
  /* Mueve las pestañas hacia arriba */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* Transiciones para la opacidad y el movimiento */
  position: relative;
  /* Asegura que las pestañas se comporten correctamente */
  z-index: 1;
  /* Asegura que la pestaña activa esté arriba */
  border: none;
}

.features .tab-pane.active {
  display: block;
  /* Muestra la pestaña activa */
  opacity: 1;
  /* Establece la opacidad a 1 para mostrarla */
  transform: translateY(0);
  /* Restaura la posición a su lugar original */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* Asegura la transición suave al activar */
}

/* ===== Data AOS portfolio filters */

/*--------------------------------------------------------------
# Seccion Nuestro Trabajos
--------------------------------------------------------------*/
.projects .portfolio-flters {
  margin: 0 auto 36px auto;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid #364d5921;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: -2px;
  transition: all 0.3s ease-in-out;
  height: 30px;
  text-transform: uppercase;
}

.projects .portfolio-flters li:hover {
  color: var(--color-primary);
}

.projects .portfolio-flters li.filter-active {
  border-bottom: 2px solid var(--color-default);
}

.projects .portfolio-flters li:first-child {
  margin-left: 0;
}

.projects .portfolio-flters li:last-child {
  margin-right: 0;
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  transition: 0.3s;
  inset: 0;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  /*   color: var(--color-primary); */
  color: #fff;
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services .img-bg-company {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
  order: 2;
  filter: grayscale(100%)
}

div.alt-services {
  padding: 0 50px;
}

.alt-services h3 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  font-weight: 400;
  color: var(--color-default);
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 40px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.5;
}

.alt-services .icon-box h4 a {
  color: var(--color-default-2);
  transition: 0.3s;
  font-size: 1.1rem;
  font-family: var(--font-secondary);
  text-transform: none;
  letter-spacing: -.2px;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 1.7;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Seccion sobre nosotros
--------------------------------------------------------------*/
.about h2 {
  font-size: 4rem;
  font-weight: 600;
  margin: 30px 0;
  letter-spacing: -1.2px;
  color: var(--color-default-2);
  max-width: 65%;
}

.about h2::after {
  content: "";
  position: relative;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: -10px;
}

section .terminos {
  background: #ffffffe5 !important;
  padding: 60px 0;
}

.terminos>ul>li {
  font-size: 1em;
  line-height: 2em;
  font-family: var(--font-secondary);
}

section#terminos {
  /*   background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0)), url("../img/arco-reform.jpg") -29em -154em;
  background-repeat: no-repeat;
  background-attachment: fixed; */
  padding: 0;
}

.bi-caret-right {
  margin-right: 10px;
}

.bi-caret-right::before {
  font-size: 16px;
}

.terminos h2 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #42494d;
}

.terminos h1 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #42494d;
}

.terminos h1::after {
  content: "";
  position: relative;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: -10px;
  margin-bottom: 25px;
}

section .terminos p {
  font-size: 1em;
}

.about .our-story {
  padding: 30px;
  background-color: #f5f6f7;
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.3rem;
  color: #828282;
}

.about .our-story h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--font-primary);
  letter-spacing: -0.4px;
  color: #484e5c;
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-family: var(--font-secondary);
  font-weight: 400;
}

.about ul i {
  font-size: 18px;
  margin-right: 15px;
  color: var(--color-primary);
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.2s;
  color: var(--color-default);
}

.about .watch-video a {
  font-weight: 600;
  color: var(--color-default);
  margin-left: 8px;
  transition: 0.3s;
  font-family: var(--font-primary);
  text-transform: uppercase;
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  order: 2;
}

/*--------------------------------------------------------------
# Section about NEW
--------------------------------------------------------------*/
.about-section {
  position: relative;
  padding: 120px 0px 90px;
  background: #ffffff;
  border-bottom: 1px solid #f4f5f8;
}

.about-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin-left: -410px;
  width: 50%;
  height: 100%;
  background: #f4f5f8;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 30px;
}

.about-section .image-column .inner::before {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  height: 280px;
  background: var(--color-primary);
  border-radius: 8px;
}

.about-section .image-column .image-block:nth-child(1) {
  margin-left: 110px;
}

.about-section .image-column .image-block {
  position: relative;
  display: block;
  border-radius: 7px;
  overflow: hidden;
}

.about-section .image-column .image-block:nth-child(2) {
  margin-right: 140px;
  margin-top: -170px;
}

.about-section .text-column {
  position: relative;
  margin-bottom: 30px;
}

.about-section .text-column .inner {
  position: relative;
  display: block;
  padding-left: 60px;
}

.about-section .text-column .sec-title {
  margin-bottom: 35px;
}

.about-section .text-column .sec-title .lower-text {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
  font-family: var(--font-primary);
  color: var(--color-primary);
  line-height: 34px;
}

.about-section .text-column .text {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125em;
  font-family: var(--font-secondary);
}

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

.about-section .text-column .text p {
  margin-bottom: 32px;
  line-height: 2.125em;
}

.about-section .text-column .text ul {
  position: relative;
  float: left;
}

.about-section .text-column .text ul li {
  line-height: 2;
  color: #52565e;
}


.about-section .text-column .text .since {
  position: relative;
  float: left;
  margin-left: 82px;
  margin-top: 10px;
}

.about-section .text-column .text .since .txt {
  position: relative;
  display: block;
  padding: 21px 5px;
  width: 90px;
  height: 90px;
  line-height: 24px;
  text-align: center;
  background: var(--color-default);
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--font-primary);
  font-size: 20px;
  padding-top: 24px;
}

.about-section .text-column .text .since::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0px;
  width: 80px;
  height: 80px;
  background: #e8e9e9;
  border-radius: 50%;
}

.about-section .text-column .text .since::after {
  content: "";
  position: absolute;
  left: -42px;
  top: 0px;
  bottom: 0px;
  border-left: 2px solid var(--color-primary);
}

.about-section .text-column .link-box {
  padding-top: 30px;
}


.about-section .image-column .image-block img {
  display: block;
  width: 100%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  border-radius: 7px;
}

.our-company ul li i {
  font-size: 33px;
  color: var(--color-primary-3);
  margin-right: 6px;
  line-height: 0;
  position: relative;
  top: 6px;
}





/*--------------------------------------------------------------
# Stats Counter About Section
--------------------------------------------------------------*/

.stats-counter-about {
  background: #f5f6f7;
}

.stats-counter-about .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
  border-radius: 15px;
}

.stats-counter-about .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter-about .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-default);
}

.stats-counter-about .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-default);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/services/interior-reform.jpg") center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 180px 0;
}

.stats-counter .stats-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  color: white;
  border-radius: 15px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fff;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-default);
  font-size: 14px;
  color: #fff;
}

/*--------------------------------------------------------------
# Service Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color-default);
}

.services-cards h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 20px;
}

.services-cards p {
  font-size: 16px;
  margin-top: 40px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  font-weight: 400;
}

.services-cards ul li i {
  font-size: 28px;
  color: var(--color-primary-3);
  margin-right: 6px;
  line-height: 0;
}

ul.list-card {
  color: var(--color-default);
  padding: 0;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.horario {
  font-family: var(--font-secondary);
  font-weight: 400;
}

.contact .info-item {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  padding: 20px 0 30px 0;
  text-align: center;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-secondary);
  border-radius: 50%;
  border: 2px dotted var(--color-default);
  margin-bottom: 10px;
}

.contact .info-item h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 17px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color-secondary);
}

.contact .info-item a {
  color: var(--color-secondary);
  font-weight: 500;
}

.contact-home {
  padding: 0;
  overflow: unset;
  margin-top: 4em;
}

.contact-home .info-item-home {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  padding: 20px 0 30px 0;
  text-align: center;
}

.contact-home .info-item-home i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-secondary);
  border-radius: 50%;
  border: 2px dotted var(--color-default);
  margin-bottom: 10px;
}

.contact-home .info-item-home p {
  padding: 0;
  line-height: 24px;
  font-size: 17px;
  margin-bottom: 0;
  color: var(--color-default-2);
  font-weight: 500;
}

.contact-home .info-item-home a {
  color: var(--color-default-2);
  font-weight: 500;
}

.contact-home strong {
  color: var(--color-primary);
  font-weight: 500;
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: 1.2rem;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
  transition: 0.6s ease-in-out !important;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .info h2 {
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 5.9rem;
  font-weight: 700;
  position: relative;
  font-family: var(--font-primary);
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .info p {
  color: rgba(255, 255, 255, 0.99);
  font-size: 1.2em;
}

.hero .info .btn-presupuesto {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary-2);
  text-transform: uppercase;
}

.hero .info .btn-presupuesto:hover {
  background: var(--color-primary-2);
  color: black;
}

.hero .carousel-control-prev {
  justify-content: start;
}

.hero .carousel-control-next {
  justify-content: end;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  /*background: none;*/
  font-size: 1.6em;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.carousel-item-innovative {
  transform: scale(0.3) rotate(-10deg);
  transition: transform 0.5s ease-in-out;
}

.carousel-item-innovative.active {
  transform: scale(1) rotate(0deg);
}

.carousel-item-innovate {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-item-innovate.active {
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  margin: 0;
  padding: 20px;
  /*background-image: url("/assets/img/clients/clients-bg.png");*/
}

.clients h5 {
  color: #838893;
  font-size: 1rem;
  letter-spacing: -0.2px;
}

.clients .swiper-slide img {
  opacity: 0.6;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
  cursor: pointer;
}

.clients .swiper-pagination {
  margin-top: 70px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #f2f2f2;
  opacity: 1;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

/* ==== Boton TypeWriter ==== */

a#typewriter {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: white;
  border: 2px solid var(--color-primary);
  text-transform: uppercase;
  margin-top: 2em;
}


a#typewriter:hover {
  background: var(--color-primary);
  color: black;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  color: #fff;
  background: #1f2024 url("../img/footer-bg2.webp") center top no-repeat;
  font-size: 14px;
  padding: 135px 0 40px 0;
  position: relative;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .icon {
  color: var(--color-primary);
}

.footer .adress {
  color: inherit;
}

.footer .adress:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  color: #fff;
}

.footer .footer-content .footer-info h3 {
  font-size: 2.2em;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-primary);
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  margin-bottom: 0;
  color: #fff9;
}

.footer .footer-content .social-links a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 12px;
  border-radius: 25px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  line-height: 2.4;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

/* .footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 2.4;
  font-size: 1rem;
  font-weight: 400;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff !important;
  
} */

.footer .footer-legal .copyright {
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 300;
  color: #ffffffa6;
}

.footer .footer-legal .credits {
  padding-top: 4px;
  color: #ffffffa6;
  font-weight: 300;
}

.footer .footer-legal .credits a {
  color: #ffba17c4;
}

/*--------------------------------------------------------------
# FOOTER UNDERLINE
--------------------------------------------------------------*/
.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  display: inline-block;
  line-height: 2.4;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  /* Necesario para posicionar el ::after */
}

.footer .footer-content .footer-links ul a::after {
  content: "";
  /* Agrega contenido vacío para el subrayado */
  position: absolute;
  left: 50%;
  /* Comienza desde el centro */
  bottom: 6px;
  /* Coloca el subrayado debajo del texto */
  width: 0;
  /* Inicia con ancho 0 para animarlo */
  height: 1px;
  /* Ajusta el grosor de la línea */
  background-color: var(--color-primary);
  /* Color de la línea */
  transition: width 0.3s ease, left 0.3s ease;
  /* Anima el ancho y la posición */
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff !important;
}

.footer .footer-content .footer-links ul a:hover::after {
  width: 100%;
  /* Expande el subrayado al ancho completo */
  left: 0;
  /* Ajusta la posición para que se extienda desde el centro */
}


/* LA EMPRESA DISEÑO DE AMBIENTES */
.about-one {
  position: relative;
  background: #f4f5f8;
}


.about-bg {
  background: #f4f5f8;
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.about-one__image {
  position: relative;
  margin-bottom: 60px;
}


.about-one__image img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}


.about-one__image__caption {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--color-primary);
  padding: 40px;
  white-space: pre-line;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-default);
  font-weight: 500;
  font-size: 22px;
  font-family: var(--font-primary);
}



.about-one__list li {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
}

.about-one__list li:last-child {
  margin-bottom: 0;
}

.about-one__list li>i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--thm-base);
  font-size: 20px;
}

.about-one__content {
  display: flex;
  flex-direction: column;
  margin-left: 5em;
}

.about-one__content__text p {
  line-height: 2em;
  margin-bottom: 20px;
  position: relative;
}

.about-one__content h2 {
  font-size: 3.5rem;
}

.about-one__content ul li i {
  font-size: 33px;
  color: var(--color-primary-3);
  margin-right: 6px;
  line-height: 0;
  position: relative;
  top: 6px;
}

.about-one__content ul li {
  color: #52565e;
}