:root {
  --primary-font: "bahnschrift", sans-serif;
  --secondary-font: "Inter Tight", sans-serif;
  --base-size-font: 18px;

  --primary-color: #e20613;
  --secondary-color: #1d1d1b;
  --tertiary-color: #8b8b8b;
  --quaternary-color: #f5f5f5;

  --transition: all 0.4s ease;
  --custom-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  --box-shadow: 0px 2.589681386947632px 10.358725547790527px 0px #0000001f;
  --border-radius: 15px;

  --title: 2.5rem; /* Títulos */
  --text-content-size: 1rem; /* Párrafos, textos de contenido */
}

html {
  overscroll-behavior: none;
}

html,
body {
  height: 100%;
}
body {
  font-family: var(--secondary-font);
  font-size: var(--base-size-font);
  font-weight: 400;
  line-height: 1;
  color: var(--secondary-color);
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--secondary-color);
}
h1,
h2 {
  font-size: 2rem;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong {
  color: var(--secondary-color);
}
.-dark strong {
  color: var(--primary-color);
}
p {
  font-family: var(--secondary-font);
  color: var(--tertiary-color);
  font-weight: 400;
  font-size: var(--text-content-size);
  margin-bottom: 15px;
  line-height: 1.5;
}

@media screen and (min-width: 580px) {
  h1,
  h2 {
    font-size: var(--title);
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	GENERAL
*	=======================================================================================================
**/
a {
  transition: var(--transition);
}
.d-flex {
  display: flex;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/*-------------------- Botones  ------------------*/
.btn {
  line-height: 1.5;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  padding: 7px 20px;
  border-radius: 9999rem;
  position: relative;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
  color: #fff;
}
.btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
  margin-right: 12px;
}
.btn.-black {
  background-color: var(--secondary-color);
}
.btn.-red {
  background-color: var(--primary-color);
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 650ms;
}

.btn:hover:before {
  left: 100%;
}
.arrow-btn {
  width: 15px !important;
  height: 15px !important ;
}
/*-------------------- Sections  ------------------*/
section {
  padding: 30px 0;
  overflow-x: clip;
}
.section-title {
  justify-content: center;
  margin-bottom: 30px;
}
.section-title h2 {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-size: var(--title);
}

/*-------------------- Container - main  ------------------*/

.container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 1.5rem;
}
main {
  margin-top: 80px;
}
main.-intern {
  margin: 80px 0;
}
main.-nosotros {
  margin: 80px 0 0;
}
main.-intern.-product{
	margin-bottom: 0;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 100%;
    padding: 0 6rem;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Poste  ------------------*/
.poste-container {
  position: absolute;
  display: inline-block;
  top: 30px;
  left: 30px;
}
.poste {
  display: block;
  width: 14px;
  position: relative;
  z-index: 2;
}
.luz-circular,
.luz-abajo {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.luz-circular {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    transparent 70%
  );
  filter: blur(15px);
  pointer-events: none;
  z-index: 1;
  animation: titilar 2s infinite;
}

@keyframes titilar {
  0% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.luz-abajo {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 250px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/*-------------------- Banner intern  ------------------*/
.banner-intern {
  height: 93px;
  position: relative;
  margin-bottom: 40px;
}
.banner-intern h2 {
  color: #fff;
  font-size: 2rem;
}
.banner-intern__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  z-index: 9;
}
.banner-intern .gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../images/welcome-adorno2.svg),
    linear-gradient(90deg, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0) 100%);
  background-repeat: no-repeat;
  background-size: 250px, 100%;
  background-position: left -23px top -20px, left top;
  z-index: 2;
}
.intern-product{
	margin-bottom: 0!important;
}
@media screen and (min-width: 580px) {
  .banner-intern h2 {
    font-size: var(--title);
  }
}
@media screen and (min-width: 980px) {
  .banner-intern {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	HEADER
*	=======================================================================================================
**/
.content-logo {
  background-color: #fff;
}
.content-logo::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 100%;
  background-color: #fff;
  left: -500px;
  top: 0;
}
.content-logo img {
  width: 206px;
  transition: var(--transition);
}
.header-wrapper {
  align-items: center;
  justify-content: space-between;
}
.item-header {
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.item-header .menu {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}
.item-header .menu li {
  position: relative;
  display: flex;
}
.item-header .menu li > a {
  color: #fff;
  padding: 15px;
  transition: var(--transition);
  position: relative;
}
.item-header .menu li.current-menu-item {
  position: relative;
}
.item-header .menu li.current-menu-item > a::after,
.item-header .menu li:hover > a::after {
  content: "";
  position: absolute;
  width: 6.72px;
  height: 6.72px;
  background-color: var(--secondary-color);
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}
.header {
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: var(--transition);
  background-color: #fff;
}

.header-wrapper__item {
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  position: relative;
}
.header-menu {
  display: none;
}
.header-btn {
  display: none;
}
.menu-toggle,
.header-last-col {
  width: 20%;
}
@media screen and (min-width: 580px) {
  .header-last-col {
    display: none;
  }
  .header-btn {
    display: flex;
    justify-content: flex-end;
  }
  .header-wrapper__item {
    width: 33%;
  }
}
@media screen and (min-width: 980px) {
  .header {
    background-color: var(--primary-color);
  }
  .header-menu {
    display: flex;
  }
  .content-logo {
    padding-right: 80px;
  }
  .header-wrapper__item {
    width: auto;
  }
}
@media screen and (min-width: 1280px) {
}

.header.activeFixed {
  position: fixed !important;
  transform: translateY(0);
  box-shadow: var(--box-shadow);
}
.header.activeFixed .header-wrapper__item {
  height: 70px;
}
.header.activeFixed .content-logo img {
  width: 200px;
}
.horizontal-scroll-progress-container {
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.scroll-progress-bar {
  height: 4px;
  background: var(--secondary-color);
  width: 0.6vh;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
}

/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
.header__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: transparent;
  padding: 10px;
  margin-right: 15px;
}
.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 22px;
  left: 15px;
  height: 16px;
  width: 22px;
}
.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
}
.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}
.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

#overlay {
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  opacity: .5;
  position: fixed;
  transition: left 0.5s ease;
  top:0;
  left: -100%;
  z-index: 99999;
}
#overlay.active {
  left: 0;
}

#sidebar {
    height: 100vh;
    width: 90%;
    max-width: 1120px;
    background-color: rgb(244, 246, 252);
    padding-top: 100px;
    position: fixed;
    overflow: hidden;
    transition: right 0.5s ease;
    right: -100%;
    top: 0;
    z-index: 999999;
}
#sidebar.active {
  right: 0; /* Mueve el div dentro de la pantalla */
}
#sidebar .container {
  height: 100%;
}
#sidebar .logo {
  width: 100%;
  max-width: 200px;
}

#sidebar .menu-sidebar li a {
    font-size: 1.2rem;
    margin-bottom: 30px;
    display: flex;
    color: var(--secondary-color);
    padding: 10px 0;
    transition: var(--transition);
    position: relative;
}
#sidebar .menu-sidebar li.current a, #sidebar .menu-sidebar li:hover a {
    color: var(--secondary-color);
}
#sidebar .redes {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
#sidebar .redes img, #sidebar .redes svg {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.datos {
  padding: 0px;
  line-height: 1.4;
}
.datos,
.datos a {
  color: #fff;
}
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 30px;
  align-items: center;
}
.sidebar-wrapper .row {
    flex-direction: column;
    gap: 65px;
    width: 100%;
    margin-bottom: 40px;
}
.sidebar-wrapper .col-50 {
  width: 100%;
}
.content-sidebar {
  padding: 40px 0;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--secondary-color);
  width: max-content;
  position: relative;
}
.content-sidebar .datos:nth-child(1) {
  padding-left: 0;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #sidebar {
    width: 80%;
  }
  .sidebar-wrapper {
    padding: 0;
  }
  .sidebar-wrapper .row {
    flex-direction: row;
  }
  .sidebar-wrapper .col-50 {
    width: 50%;
  }
  .content-sidebar {
    align-items: end;
    gap: 0;
  }
  .content-sidebar .datos:nth-child(2) {
    border-right: 1px solid #fff;
  }
  .datos {
    padding: 0 40px;
  }
	.menu-toggle {
    display: none;
  }
}

#close-btn {
  position: absolute;
  padding: 10px;
  top: -60px;
  right: 35px;
  background: transparent;
}
#close-btn img {
  width: 18px;
}








/**
*	FOOTER
*	=======================================================================================================
**/
footer {
  font-family: var(--primary-font);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}
.footer__wrapper {
  flex-direction: column;
  padding: 60px 0 55px;
  gap: 60px;
  align-items: center;
  text-align: center;
}
.footer__inner {
  background-image: url(../images/adorno-3.svg);
  background-repeat: no-repeat;
  background-size: 410px;
  background-position: top -35px right -30px;
  background-color: var(--secondary-color);
}
.footer__logo {
  width: 270px;
}

.footer__wrapper > .footer_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__wrapper > .footer_item:nth-child(1) {
  width: 100%;
  justify-content: center;
}
.footer__wrapper > .footer_item:nth-child(3),
.footer__wrapper > .footer_item:nth-child(4) {
  justify-content: space-between;
}
.footer_item h3 {
  font-size: var(--text-content-size);
  color: var(--primary-color);
  margin-bottom: 20px;
}
.footer_item a {
    color: #fff;
    margin-bottom: 3px;
    display: block;
    font-size: var(--text-content-size);
}
.datos-empresa {
  padding-top: 20px;
  border-top: 1px solid var(--primary-color);
  margin-top: 20px;
}
.libro-de-reclamaciones {
  width: 198px;
  margin-top: 40px;
}
.footer__redes {
  gap: 8px;
  margin-top: 20px;
}
.footer__redes img {
  width: 37px;
}
.copyright {
  color: var(--secondary-color);
  font-size: 1rem;
}

.copyright__wrapper {
  height: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  flex-direction: column;
  padding: 20px 0;
}
.omelet {
  gap: 5px;
}
.omelet img {
  width: 63px;
}
@media screen and (min-width: 580px) {
  .footer__wrapper {
    flex-direction: row;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    align-items: normal;
  }
  .footer__wrapper > .footer_item {
    width: 45%;
    align-items: flex-start;
  }
  .footer__wrapper > .footer_item:nth-child(1) {
    width: 45%;
  }
  .copyright__wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 980px) {
  .footer__wrapper {
    flex-wrap: nowrap;
  }
  .footer__wrapper > .footer_item {
    width: 23.33%;
  }
  .footer__wrapper > .footer_item:nth-child(1) {
    width: 30%;
  }
  .copyright__wrapper {
    height: 52px;
    gap: 5px;
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	HOME
*	=======================================================================================================
**/
/*-------------------- Welcome  ------------------*/

#welcome {
  padding: 0;
  position: relative;
  margin-bottom: 30px;
}
#welcome-slider {
  overflow: hidden;
  height: calc(100vh - 80px);
}
#welcome-slider .slick-slide {
  height: calc(100vh - 80px);
}
.welcome__item {
  position: relative;
}
#welcome-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#welcome .gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/welcome-adorno1.svg),
    url(../images/welcome-adorno2.svg),
    linear-gradient(0deg, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0) 100%);
  background-repeat: no-repeat;
  background-size: 600px, 250px, 100%;
  background-position: left -150px bottom -130px, left -23px top -20px, left top;
  z-index: 2;
}
.welcome__redes {
  position: absolute;
  top: 40%;
  right: 20px;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
  transform: translateY(-50%);
  display: none;
}
.welcome__redes a {
  display: flex;
}
.welcome__redes img {
  width: 37px;
  height: 37px;
  transition: var(--transition);
}
.welcome__redes a:hover img {
  transform: scale(1.1);
}
#welcome-txt {
  position: absolute;
  z-index: 10;
  width: 100%;
  margin-left: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}
#welcome-txt h1,
#welcome-txt h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
#welcome-txt .slick-slide {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
#welcome-txt p {
  color: #fff;
  line-height: 1.4;
}
.welcome-txt__content {
  margin-bottom: 30px;
  text-align: center;
}
.btns-sliders button {
  width: 35px;
  height: 35px;
}
.btns-sliders svg {
  width: 35px;
  height: 35px;
}
.welcome__buttons {
  position: absolute;
  display: flex;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  z-index: 99;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 30px;
}
.welcome__buttons button {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.welcome__buttons button > img {
  width: 16px;
  height: 20px;
  object-position: center;
  object-fit: contain;
}
.welcome__buttons button:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.light-1 {
  width: 14px;
}
#welcome .poste-container {
  display: none;
  top: 45px;
  left: auto;
  right: 35px;
}
#welcome .slick-track{
	display: flex!important;
	align-items: center;
}
@media screen and (min-width: 580px) {
  #welcome-txt h1,
  #welcome-txt h2 {
    font-size: 3.6rem;
  }
  .welcome__buttons {
    width: 435px;
    height: 180px;
    background-image: url(../images/bg-buttons-welcome.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    justify-content: end;
    padding: 0 6rem 30px 0;
    overflow: hidden;
  }
  #welcome .poste-container {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  #welcome .gradient {
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: url(../images/welcome-adorno1.svg),
      url(../images/welcome-adorno2.svg),
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 35%, rgba(0, 0, 0, 0) 100%);
    background-repeat: no-repeat;
    background-size: 769px, 313px, 100%;
    background-position: left -80px bottom -100px, left -23px top -20px, left center;
  }
  #welcome-txt {
        width: 45%;
        margin-left: 6rem;
        padding: 20px;
        max-width: 615px;
    }
  .welcome__redes {
    display: flex;
  }
  .welcome-txt__content {
    text-align: left;
  }
  #welcome-txt .slick-slide {
    align-items: flex-start;
  }
  .welcome__light {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Categorías  ------------------*/
#main-categories {
  background: linear-gradient(
    to bottom,
    white 80%,
    var(--quaternary-color) 20%
  );
}
.main-categories__wrapper {
  gap: 40px;
  flex-direction: column;
}
.main-categories__item {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 3 / 4;
}
.main-categories__content {
  position: absolute;
  width: 100%;
  min-height: 87px;
  bottom: 0;
  left: 0;
  padding: 30px;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}

.main-categories__content h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5rem;
  max-width: 330px;
}
.main-categories__content .btn-category {
  width: 18px;
  display: flex;
  transition: transform 0.3s ease;
}
.main-categories__item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 35%,
    rgba(0, 0, 0, 0) 100%
  );
  bottom: 0;
  left: 0;
}
.main-categories__item:hover .btn-category {
  animation: bounce 1s ease-in-out infinite;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.main-category__fondo {
  transition: var(--transition);
}
.main-categories__item:hover .main-category__fondo {
  transform: scale(1.05);
}
.main-categories__item .number {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  padding: 30px;
  z-index: 9;
}
.main-categories__item .circle {
  width: 118px;
  height: 118px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: -24px;
  z-index: 8;
}
@media screen and (min-width: 580px) {
  .main-categories__wrapper {
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 980px) {
  .main-categories__wrapper {
    gap: 40px;
  }
  .main-categories__content h2 {
    font-size: 2rem;
  }
  .main-categories__content {
    padding: 40px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Productos destacados  ------------------*/
#featured-products {
  background: linear-gradient(
    to bottom,
    var(--quaternary-color) 55%,
    var(--secondary-color) 45%
  );
  padding: 100px 0 70px;
  position: relative;
}
.f-products__header {
  justify-content: space-between;
  gap: 33px;
  align-items: center;
  margin-bottom: 50px;
  flex-direction: column;
  text-align: center;
}
.f-products__header p:last-child {
  margin-bottom: 0;
}
.f-products-header__description {
  width: 100%;
}
.f-products__buttons {
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
  justify-content: end;
  display: none;
}
.f-products__buttons button {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.f-products__buttons button > svg {
  width: 16px;
  height: 20px;
  object-position: center;
  object-fit: contain;
}
.f-products__buttons button > svg .cls-1 {
  fill: var(--secondary-color);
  transition: var(--transition);
}
.f-products__buttons button:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.f-products__buttons button:hover > svg .cls-1 {
  fill: #fff;
}
.f-products__wrapper {
  justify-content: flex-end;
  flex-direction: column;
}
#f-products__carousel {
  width: 100%;
}

.f-products__item {
  margin: 0 10px;
  color: #fff;
}
.f-products__item img {
  transition: var(--transition);
}
.f-products__item:hover img {
  transform: scale(1.05);
}
.f-products-item__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.f-products-item__content {
  padding: 25px 10px 0;
}
.f-products-item__content h3 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.f-products-item__content span {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-weight: 400;
}
.featured-products__faro {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 44%;
  display: none;
}
.featured-products__faro img {
  height: 100%;
}
.featured-products__faro .luz-circular {
  top: -8px;
  left: 46%;
  transform: translateX(-50%);
}
@media screen and (min-width: 580px) {
  .f-products__header {
    flex-direction: row;
    gap: 60px;
    text-align: left;
  }
  .f-products-header__description {
    width: 35%;
  }
  .f-products__buttons {
    display: flex;
  }
  .f-products__item {
    margin: 0 20px;
  }
}
@media screen and (min-width: 980px) {
  .featured-products__faro {
    display: flex;
  }
  .f-products__header {
    gap: 80px;
  }
  .f-products__wrapper {
    flex-direction: row;
  }
  #f-products__carousel {
    width: 85%;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Últimos proyectos  ------------------*/
#last-projects {
  background: url(../images/adorno-2.svg), url(../images/adorno-1.svg),
    var(--secondary-color);
  background-repeat: no-repeat;
  background-size: 689px, 689px, 100%;
  background-position: bottom -45px left -140px, top right -240px, center;
  padding: 150px 0;
}
#last-projects h2 {
  color: #fff;
}
.last-projects__header {
  justify-content: space-between;
  gap: 33px;
  align-items: center;
  margin-bottom: 50px;
  flex-direction: column;
  text-align: center;
}
.last-projects__header p:last-child {
  margin-bottom: 0;
}
.last-projects-header__description {
  width: 100%;
}
.last-projects__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
  justify-content: end;
}
.last-projects__buttons button {
  border: 1px solid var(--tertiary-color);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.last-projects__buttons button > svg {
  width: 16px;
  height: 20px;
  object-position: center;
  object-fit: contain;
}
.last-projects__buttons button > svg .cls-1 {
  fill: #fff;
  transition: var(--transition);
}
.last-projects__buttons button:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.last-projects__buttons button:hover > svg .cls-1 {
  fill: #fff;
}
.l-projects__item {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 5 / 6;
  margin: 0 20px;
}
.l-projects__fondo {
  transition: var(--transition);
}
.l-projects__item:hover .l-projects__fondo {
  transform: scale(1.05);
}
.l-projects__item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  bottom: -10px;
  left: 0;
}
.l-projects__content {
  position: absolute;
  width: 100%;
  min-height: 87px;
  bottom: 0;
  left: 0;
  padding: 20px;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 9;
  color: #fff;
  font-size: var(--text-content-size);
}
.l-projects__content h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: var(--text-content-size);
  max-width: 330px;
  margin-bottom: 6px;
  transition: var(--transition);
}

.l-projects__content .btn-project {
  width: 18px;
  display: flex;
  transition: transform 0.3s ease;
}
.project__tag {
  font-size: var(--text-content-size);
  color: #fff;
  background-color: var(--primary-color);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  display: flex;
  z-index: 9;
  position: absolute;
  right: 0;
  top: 15px;
  border-radius: 20px 0 0 20px;
}
.project__circle {
  width: 100px;
  height: 100px;
  border-radius: 71px;
  position: absolute;
  right: -30px;
  bottom: -26px;
  z-index: 8;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.l-projects__item:hover .project__circle {
  width: 120%;
  height: 120%;
  opacity: 0.8;
}
.project__title {
  width: 70%;
}
@media screen and (min-width: 580px) {
  .last-projects__header {
    gap: 80px;
    flex-direction: row;
    text-align: left;
  }
  .l-projects__content {
    padding: 40px;
  }
  .project__circle {
    width: 140px;
    height: 140px;
    right: -30px;
    bottom: -27px;
  }
}
@media screen and (min-width: 980px) {
  .last-projects-header__description {
    width: 35%;
  }
  .l-projects__item:hover h2 {
    font-size: 1.3rem;
  }
  .project__circle {
    width: 130px;
    height: 130px;
    right: -35px;
    bottom: -30px;
  }
}
@media screen and (min-width: 1280px) {
  .project__circle {
        width: 90px;
        height: 90px;
        right: -17px;
        bottom: -18px;
    }
	.l-projects__content {
    padding: 25px;
  }
}

/*-------------------- Conócenos  ------------------*/
#conocenos {
  padding: 0;
  background-color: var(--quaternary-color);
}
.conocenos__wrapper {
  align-items: center;
  flex-direction: column;
}
.conocenos__content {
  width: 100%;
  padding: 6rem 1.5rem;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  align-items: center;
}
.conocenos__content h2 strong{
	color: var(--primary-color);
}
.conocenos__content > p:last-of-type {
  margin-bottom: 0;
}
.conocenos__img {
  width: 100%;
  height: 400px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .conocenos__wrapper {
    flex-direction: row;
  }
  .conocenos__content {
    width: 50%;
    padding: 0 6rem 0 8rem;
    text-align: left;
    align-items: flex-start;
  }
  .conocenos__img {
    width: 50%;
  }
  .conocenos__img {
    height: 775px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Clientes  ------------------*/
#clients {
  padding: 55px 0;
}
#cliente_slider .slick-slide {
  width: 100%;
  height: 90px;
  object-fit: contain;
  object-position: center;
  margin: 0 30px;
/*   filter: brightness(2) contrast(1.2);
  opacity: 0.7; */
}
#cliente_slider .slick-track {
  display: flex !important;
  align-items: center;
}

/**
*	NOSOTROS
*	=======================================================================================================
**/
/*-------------------- Datos - 1era sección  ------------------*/
.datos-nosotros__header {
  justify-content: space-between;
  gap: 33px;
  align-items: center;
  margin-bottom: 65px;
  flex-direction: column;
  text-align: center;
}
.datos-nosotros__header p:last-child {
  margin-bottom: 0;
}
.datos-nosotros-header__description {
  width: 100%;
}
.datos-nosotros__item {
  flex: 1;
}
.datos-nosotros__item .redes {
  flex-direction: row;
  gap: 8px;
}
.datos-nosotros__item .redes img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}
.datos-nosotros__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
.datos-nos-item__header img {
  width: 16px;
  height: 14px;
  object-fit: contain;
  object-position: center;
}
.datos-nos-item__header {
  gap: 8px;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 13px;
}
.datos-nos-item__header h3 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: var(--text-content-size);
}
.datos-nosotros__item a {
  color: var(--tertiary-color);
}
@media screen and (min-width: 580px) {
  .datos-nosotros__header {
    flex-direction: row;
    gap: 60px;
    text-align: left;
  }
  .datos-nosotros-header__description {
    width: 43%;
  }
  .datos-nosotros__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
@media screen and (min-width: 980px) {
  .datos-nosotros__header {
    gap: 80px;
  }
  .datos-nosotros__wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
  }
  .datos-nosotros-header__description {
    width: 35%;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Mapa - 2da sección  ------------------*/
#form-contact {
  padding-bottom: 0;
}
.form-contact__img {
  height: 325px;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.form-contact__wrapper {
  position: relative;
}
.form-contact__wrapper::after {
  position: absolute;
  width: 400px;
  height: 50%;
  content: "";
  left: -350px;
  bottom: 0;
  background-color: var(--quaternary-color);
  z-index: -1;
}
.form-contact__map {
  width: 100%;
  height: 350px;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  position: relative;
  z-index: 9;
  top: 10%;
  right: 0;
}
.form-contact__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faro-contacto {
    width: 193px;
    height: 563px;
    position: absolute;
    top: 80px;
    left: 80px;
}
.faro-contacto svg{
	width: 100%;
	height: 100%;
	object-fit: contain
}
.faro-contacto .luz-circular{
	left: 150px;
}
.faro-contacto .luz-abajo{
	left: 150px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
}
@media screen and (min-width: 580px) {
  .form-contact__wrapper {
    padding-right: 50px;
  }
  .form-contact__map {
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 40px;
  }
  .form-contact__img {
    height: 592px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Form - 3era sección  ------------------*/
#form-contact-form {
  padding: 120px 0;
  background: var(--quaternary-color);
}
.form-contact-form__wrapper {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  font-size: var(--text-content-size);
  margin-bottom: 30px;
  font-family: var(--primary-font);
}
.form-row .form-group {
  width: 100%;
}
form {
  width: 100%;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  padding: 7px 8px;
  border-bottom: 1px solid var(--secondary-color);
  background-color: transparent;
  font-family: var(--secondary-font);
  color: var(--tertiary-color);
  resize: none;
  width: 100%;
}
textarea {
  height: 110px;
}
.form-footer {
  color: var(--tertiary-color);
  line-height: 1.5;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 20px;
}
.form-footer > div {
  width: 100%;
}
.form-footer button {
  width: 100%;
}
@media screen and (min-width: 580px) {
  .form-row {
    flex-direction: row;
    gap: 40px;
  }

  .form-row .form-group {
    width: 50%;
  }
}
@media screen and (min-width: 980px) {
  #form-contact-form {
    background: linear-gradient(to left, #fff 10%, var(--quaternary-color) 10%);
  }
  form {
    width: 810px;
  }
  .form-row {
    gap: 40px;
  }
  .form-footer {
    flex-direction: row;
  }
  .form-footer > div {
    width: 70%;
  }
  .form-footer button {
    width: 20%;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	PROYECTOS
*	=======================================================================================================
**/
/*-------------------- Filtros  ------------------*/
#projects-pres {
  padding-bottom: 0;
}
.projects-pres__header {
  justify-content: space-between;
  gap: 33px;
  align-items: center;
  margin-bottom: 40px;
  flex-direction: column;
  text-align: center;
}
.projects-pres__header p:last-child {
  margin-bottom: 0;
}
.projects-pres-header__description {
  width: 100%;
}
.projects-pres__filters {
  flex-direction: column;
}
.project-filter__categories {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  color: #fff;
  gap: 20px;
  padding: 0 20px;
}
.project-filter__categories,
.projects-counts {
  width: 100%;
  height: 70px;
  align-items: center;
  font-family: var(--primary-font);
  font-size: var(--text-content-size);
}
.projects-counts {
  flex-direction: row;
  justify-content: center;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0;
}
.project-filter__categories select {
  width: 100%;
  padding: 5px 10px;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  color: var(--tertiary-color);
  appearance: auto;
  font-family: var(--secondary-font);
}
@media screen and (min-width: 580px) {
  #projects-pres {
    padding-bottom: 30px;
  }
  .projects-pres__header {
    flex-direction: row;
    gap: 40px;
    text-align: left;
    margin-bottom: 50px;
  }
  .projects-pres-header__description {
    width: 43%;
  }
  .project-filter__categories {
    padding: 0 40px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
  }
  .projects-pres__filters {
    flex-direction: row;
  }
  .project-filter__categories,
  .projects-counts {
    width: 50%;
    height: 122px;
  }
  .projects-counts {
    background-color: var(--quaternary-color);
    justify-content: flex-end;
    padding: 0 50px;
  }
}
@media screen and (min-width: 980px) {
  .projects-pres__header {
    gap: 80px;
    padding: 0 30px;
  }
  .projects-pres-header__description {
    width: 35%;
  }
  .project-filter__categories {
    padding: 0 150px 0 50px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Grid proyectos  ------------------*/
.projects-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.projects-grid__item {
  margin: 0;
  aspect-ratio: 12 / 13;
}

@media screen and (min-width: 580px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 980px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .projects-grid__item.-large {
    grid-column: span 2;
    aspect-ratio: 16 / 8;
    height: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	SINGLE PROJECT
*	=======================================================================================================
**/

.single-project-pres {
  padding-bottom: 0 !important;
}
.single-project__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.single-project-article {
  background: linear-gradient(to bottom, #fff 20%, var(--secondary-color) 20%);
}
.single-project__wrapper {
  flex-direction: column;
  gap: 40px;
  padding: 40px 0 60px 0;
}
.single-project__content {
  width: 100%;
  border-radius: var(--border-radius);
  background-color: #fff;
  padding: 30px 25px;
  margin: 0;
}
.single-project__content p {
  text-align: justify;
}
.single-project__adittional {
  width: 100%;
  border-radius: var(--border-radius);
  background-color: var(--quaternary-color);
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 90px;
}
.single-project-gallery {
  padding-top: 40px;
}
.single-project-gallery h3 {
  margin-bottom: 20px;
}
.single-project_grid-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.single-project-grid-galery__img {
  border-radius: var(--border-radius);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.single-project__adittional-item {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--secondary-color);
  margin-bottom: 25px;
  color: var(--tertiary-color);
}
.single-project__adittional-item h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.single-project__adittional .single-project__adittional-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 580px) {
  .single-project_grid-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 980px) {
  .single-project__wrapper {
    flex-direction: row;
    padding: 40px 0 60px 50px;
  }
  .single-project__content {
    width: 80%;
    margin: -80px 0 0;
    padding: 60px;
  }
  .single-project__adittional {
    width: 20%;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Más proyectos  ------------------*/
#more-projects {
  position: relative;
  padding-top: 100px;
  background: url(../images/adorno-2.svg), var(--secondary-color);
  background-repeat: no-repeat;
  background-size: 600px, 100%;
  background-position: top -140px left -140px, center;
}
#more-projects .title {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}
#more-projects .title h2 {
  color: #fff;
  font-size: var(--title);
  font-family: var(--primary-font);
  font-weight: 700;
}
#more-projects .title h2 span {
  color: var(--primary-color);
  font-size: var(--title);
  font-family: var(--primary-font);
  font-weight: 700;
}
#more-projects::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 160px;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 0;
}
.more-projects_grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  position: relative;
  z-index: 9;
}
.more-projects-grid__item {
  margin: 0;
  aspect-ratio: 12 / 13;
}
@media screen and (min-width: 580px) {
  .more-projects_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 980px) {
  .more-projects_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #more-projects::after {
    height: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	NOSOTROS
*	=======================================================================================================
**/
/*-------------------- Presentación  ------------------*/
.nosotros-press__wrapper {
  flex-direction: column;
  gap: 60px;
}
.nosotros-press__content {
  width: 100%;
}
.nosotros-press__img {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 628px;
  margin: 0 0 -70px;
}
.nosotros-press__content h1 {
  max-width: 400px;
  margin-bottom: 40px;
}
.nosotros-press__content h1 strong {
  color: var(--primary-color);
}
.nosotros-press__content p {
  text-align: justify;
}
.nosotros-press__content p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .nosotros-press__wrapper {
    flex-direction: row;
  }
  .nosotros-press__content {
    width: 45%;
  }
  .nosotros-press__img {
    width: 55%;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- History  ------------------*/
#history {
  background-color: var(--quaternary-color);
  padding: 110px 0;
}
.history__header {
  justify-content: space-between;
  gap: 33px;
  align-items: center;
  margin-bottom: 50px;
  flex-direction: column;
  text-align: center;
}
.history__header p:last-child {
  margin-bottom: 0;
}
.history-header__description {
  width: 100%;
}
.history__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
  justify-content: end;
}
.history__buttons button {
  border: 1px solid var(--tertiary-color);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.history__buttons button > svg {
  width: 16px;
  height: 20px;
  object-position: center;
  object-fit: contain;
}
.history__buttons button > svg .cls-1 {
  fill: var(--secondary-color);
  transition: var(--transition);
}
.history__buttons button:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.history__buttons button:hover > svg .cls-1 {
  fill: #fff;
}

#history__slider {
  position: relative;
}
#history__slider::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 1px;
  background-color: var(--primary-color);
  right: -300px;
  top: 65px;
}
.history-slider__item h3 {
  font-size: 2rem;
  font-weight: 400;
  font-family: var(--primary-font);
}
.history-slider__item {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  margin: 15px;
}
.history-slider-item__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.history-slider__item .separador {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  position: relative;
}
.history-slider__item .separador::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: var(--primary-color);
  right: -15px;
}
.history-slider__item .circle {
  width: 18px;
  height: 18px;
  border-radius: 50px;
  background-color: var(--primary-color);
}
.history-slider__item .line {
  height: 1px;
  width: 100%;
  background-color: var(--primary-color);
}
@media screen and (min-width: 580px) {
  .history__header {
    gap: 80px;
    flex-direction: row;
    text-align: left;
  }
  #history__slider::after {
    top: 66px;
  }
}
@media screen and (min-width: 980px) {
  .history-header__description {
    width: 35%;
  }
  #history__slider h3 {
    font-size: var(--title);
  }
  #history__slider::after {
    top: 74px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Misión/Visión  ------------------*/
#mision {
  background: url(../images/adorno-2.svg),
    url(../images/adorno-1.svg), var(--secondary-color);
  background-repeat: no-repeat;
  background-size: 400px, 400px, 100%;
  background-position: bottom -45px left -140px,
    top right -240px, center;
  padding: 0;
  overflow: hidden;
}
.mision__wrapper h2 {
    color: #fff;
    margin-bottom: 20px
}
.mision__wrapper {
  flex-direction: column;
  align-items: flex-end;
  height: auto;
  padding: 100px 0;
  gap: 55px;
  text-align: center;
}
.mision-wrapper__mision,
.mision-wrapper__light,
.mision-wrapper__vision {
  width: 100%;
}
.mision-wrapper__mision .mision-wrapper__content {
  border-radius: var(--border-radius);
}
.mision-wrapper__vision .mision-wrapper__content {
  border-radius: var(--border-radius);
}
.mision-wrapper__content {
  background-color: var(--primary-color);
  padding: 25px;
  color: #fff;
  height: auto;
}
.mision-wrapper__content p {
  color: #fff;
}
.mision-wrapper__content p:last-child {
  margin-bottom: 0;
}
.mision-wrapper__light {
  display: none;
}
.mision-faro-doble {
  display: none;
  position: absolute;
  width: 26px;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
}
.mision-faro-doble .luz-circular {
  top: -40px;
  left: calc(50% - 150px);
}
.mision-faro-doble .luz-circular.-luz2 {
  top: -40px;
  left: calc(50% + 150px);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #mision {
    background: url(../images/faro-doble.png), url(../images/adorno-2.svg),
      url(../images/adorno-1.svg), var(--secondary-color);
    background-repeat: no-repeat;
    background-size: 1150px, 689px, 689px, 100%;
    background-position: top 40px center, bottom -45px left -140px,
      top right -240px, center;
  }	
  .mision-faro-doble {
    display: flex;
  }
  .mision-wrapper__light {
    display: flex;
    flex-direction: column;
  }
  .mision__wrapper {
    flex-direction: row;
    height: 660px;
    padding: 0 0 40px;
    gap: 0;
    text-align: center;
	  justify-content: center;
  }
  .mision-wrapper__mision,
  .mision-wrapper__light,
  .mision-wrapper__vision {
    width: 33.3%;
  }
	.mision-wrapper__light{
		width:20%;
	}
  .mision-wrapper__mision .mision-wrapper__content {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
  }
  .mision-wrapper__vision .mision-wrapper__content {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
  }
  .mision-wrapper__content {
    height: 185px;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Valores  ------------------*/
#valores {
  padding: 100px 0 0;
}
.valores__wrapper {
  gap: 20px;
  flex-direction: column;
}
.valores__wrapper h2 {
  margin-bottom: 40px;
}
.valores__content {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
.valores__grid {
  width: 100%;
}
.valores__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 0 0 -70px;
}
.valores-grid__item {
  height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--border-radius);
  padding: 0 20px 0 100px;
  position: relative;
  overflow: hidden;
}
.valores-grid__item h3,
.valores-grid__item p {
  color: #fff;
}
.valores-grid__item p:last-child {
  margin-bottom: 0;
}
.valores-grid__item h3 {
  margin-bottom: 10px;
}
.valores-grid__item:nth-child(6n + 1),
.valores-grid__item:nth-child(6n + 3),
.valores-grid__item:nth-child(6n + 5) {
  background-color: var(--secondary-color);
}
.valores-grid__item:nth-child(6n + 2),
.valores-grid__item:nth-child(6n + 4) {
  background-color: var(--primary-color);
}

@media screen and (min-width: 580px) {
  .valores__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .valores-grid__item:nth-child(6n + 1),
  .valores-grid__item:nth-child(6n + 4),
  .valores-grid__item:nth-child(6n + 5) {
    background-color: var(--secondary-color);
  }
  .valores-grid__item:nth-child(6n + 2),
  .valores-grid__item:nth-child(6n + 3) {
    background-color: var(--primary-color);
  }
}
@media screen and (min-width: 980px) {
  .valores__wrapper {
    flex-direction: row;
    gap: 80px;
  }
  .valores__content {
    width: 30%;
    text-align: left;
  }
  .valores__grid {
    width: 70%;
  }
  .valores__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Team  ------------------*/
#team {
  background-color: var(--quaternary-color);
  padding: 190px 0 100px;
}
.slider-team__item {
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  margin: 0 20px;
}
.slider-team-item__img {
  aspect-ratio: 1 / 1;
  border-radius: 300px;
  overflow: hidden;
  margin-bottom: 20px;
}
.slider-team__item span {
  color: var(--tertiary-color);
}
.slider-team__item h3 {
  margin-bottom: 6px;
}
.team-header__item {
  width: 100%;
}
.team-header__description {
  text-align: center;
}
.team__header {
  justify-content: space-between;
  gap: 33px;
  align-items: center;
  margin-bottom: 80px;
  flex-direction: column;
  text-align: center;
}
.team__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
}
.team__buttons button {
  border: 1px solid var(--tertiary-color);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.team__buttons button > svg {
  width: 16px;
  height: 20px;
  object-position: center;
  object-fit: contain;
}
.team__buttons button > svg .cls-1 {
  fill: var(--secondary-color);
  transition: var(--transition);
}
.team__buttons button:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.team__buttons button:hover > svg .cls-1 {
  fill: #fff;
}
@media screen and (min-width: 580px) {
  .team__header {
    gap: 80px;
    flex-direction: row;
    text-align: left;
  }
}
@media screen and (min-width: 980px) {
  .team-header__item {
    width: 33.3%;
  }
  .team__buttons {
    justify-content: end;
  }
}
@media screen and (min-width: 1280px) {
}

/*-------------------- Testimonios  ------------------*/

.testimonials__wrapper {
  flex-direction: column;
  padding: 85px 0;
  gap: 40px;
}
.testimonials__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.testimonials__content h2 {
  color: var(--secondary-color);
}
.testimonials__content h2 strong {
  color: var(--primary-color);
}
#slider-testimonials {
  width: 100%;
}
.slider-testimonials__item {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.comillas {
  width: 58px;
  margin-bottom: 20px;
}
.slider-testi__content span {
  color: var(--secondary-color);
  font-weight: 700;
  margin-top: 20px;
  display: block;
}
.slider-testi__img {
  width: 263px;
  height: 263px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}
.slider-testi__content {
  max-width: 500px;
}
.testimonials__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-start;
}
.testimonials__buttons button {
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.testimonials__buttons button > svg {
  width: 16px;
  height: 20px;
  object-position: center;
  object-fit: contain;
}
.testimonials__buttons button > svg .cls-1 {
  fill: var(--secondary-color);
  transition: var(--transition);
}
.testimonials__buttons button:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.testimonials__buttons button:hover > svg .cls-1 {
  fill: #fff;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .testimonials__content h2 {
    color: #fff;
  }
  .testimonials__content h2 strong {
    color: var(--secondary-color);
  }
  #testimonials {
    background-image: url(../images/bg-testimonials.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left top;
  }
  .slider-testimonials__item {
    gap: 80px;
  }
  .testimonials__buttons button {
    border: 1px solid #fff;
  }
  .testimonials__wrapper {
    flex-direction: row;
    gap: 0;
  }
  .testimonials__content {
    width: 30%;
    align-items: flex-start;
    text-align: left;
  }
  #slider-testimonials {
    width: 70%;
  }
  .slider-testimonials__item {
    flex-direction: row;
  }
  .testimonials__buttons button > svg .cls-1 {
    fill: #fff;
  }
}
@media screen and (min-width: 1280px) {
}

.container-loader {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  height: 100vh;
  top: 0;
  left: 0;
  background: url(../images/welcome-adorno1.svg), url(../images/adorno-3.svg),
    var(--secondary-color);
  background-repeat: no-repeat;
  background-size: 600px, 600px, 100%;
  background-position: left -150px bottom -130px, right -152px top -114px,
    left top;
}

.container-loader .loader {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #33333359;
  animation: animate 2s linear infinite;
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.logo-preloader {
  width: 116px;
  position: absolute;
  z-index: 1;
}
.container-loader .loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to top, transparent, rgba(0, 255, 249, 0.4));
  background-size: 100px 180px;
  background: no-repeat;
  border-top-left-radius: 100px;
}
.container-loader .loader::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff, 0 0 50px #ffffff, 0 0 60px #ffffff, 0 0 70px #ffffff, 0 0 80px #ffffff, 0 0 90px #ffffff, 0 0 100px #ffffff;
}
.container-loader .loader span {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
}


/* ------------ Legales ---------------- */

.page-legal{
   min-height: 50vh;
}

.page-legal .section-title{
    margin-bottom:40px;
}

.page-legal .site-section-header h1{
    margin: 0;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    margin-bottom:45px;
    color:var(--primary-color);
}

.page-legal:not(.lista-deseos) .container{
    max-width:980px!important;
}

.text-legal{
    font-weight: 300;
    line-height:1.8;
    text-align: justify;
    /*font-size: 1.5rem;*/
}

.text-legal p{
    margin-bottom:1rem;
}

.text-legal h1,
.text-legal h2,
.text-legal h3,
.text-legal h4,
.text-legal h5{
    margin:1rem 0;
    font-size: 2rem;
   color: #000!important;
    font-weight: 700!important;
    line-height: 1.2!important;
    font-family:var(--secondary-font);
}

.text-legal h1 strong,
.text-legal h2 strong,
.text-legal h3 strong,
.text-legal h4 strong,
.text-legal h5 strong{
    font-weight: 400!important;
}

.text-legal ol,
.text-legal ul{
    margin-left:16px!important;
    list-style:disc!important;
}

.text-legal ol li,
.text-legal ul li{
    margin-bottom:10px;
    list-style: disc;
}

.text-legal ol,
.text-legal ol li{
    list-style:decimal!important;
}

.text-legal a{
    font-weight:700;
    text-decoration: underline;
     color: var(--primary-color)!important;
}

.form-group-wrapper h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}
.libro-reclamaciones-form{
    position:relative;
}

.libro-reclamaciones-form .wpcf7-form-control-wrap br{
    display:none!Important;
}

.libro-reclamaciones-form .form-row{
    margin:0;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom:20px;
    width:100%;
}

@media screen and (min-width : 580px) {
    .libro-reclamaciones-form .form-row{
        grid-template-columns: repeat(2,1fr);
        grid-column-gap: 25px;
        grid-row-gap: 25px;
    }
}
@media screen and (min-width: 980px) {

}

@media screen and (min-width: 1280px) {
    
}


.libro-reclamaciones-form .form-row .form-group{
    margin: 0;
	width: 100%;
}
.libro-reclamaciones-form .form-group-wrapper{
    margin-bottom:30px;
}

.libro-reclamaciones-form .form-group-wrapper-last{
    margin:0;
}

.libro-reclamaciones-form br{
    display:none;
}

.libro-reclamaciones-form .form-group br{
    display:none!important;
}

.libro-reclamaciones-form .small,
.libro-reclamaciones-form small{
   
    font-size: 12px;
    margin-top: 10px;
    display: block;
}

.libro-reclamaciones-form .wpcf7-list-item-label{
    margin:0;
    
}

.libro-reclamaciones-form input::-webkit-outer-spin-button,
.libro-reclamaciones-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.libro-reclamaciones-form input[type=number] {
  -moz-appearance: textfield;
}
.form-group-check span {
    margin: 0;
    margin-bottom: 10px;
}

@media screen and (min-width : 580px) {
    .form-group-check span{
        margin:0;
    }
}
@media screen and (min-width: 980px) {

}

@media screen and (min-width: 1280px) {
    
}

.form-group-check span:last-child{
    margin:0;
}

.form-group-check .wpcf7-list-item label{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin:0;
    margin-right: 40px;
}

.form-group-check .wpcf7-list-item input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width:21px!important;
    height:21px!important;
    padding:0;
    flex-shrink: 0;
    position:relative;
    margin-right:10px!important;
    cursor:pointer;
}

.form-group-check .wpcf7-list-item input::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    transition:all .3s ease;
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;
    background-color:#fff;
    border: 1px solid #808080;
}

.form-group-check .wpcf7-list-item input:checked::before{
    background-image: url(../images/checked-white.svg);
    background-color:var(--primary-color);
    border-color:var(--primary-color);
   
}

.libro-reclamaciones-form .wpcf7-response-output{
    margin:0px!important;
    margin-top:20px!important;
}

.libro-reclamaciones-form  form.wpcf7-form {
    position:relative;
    margin:0!important;
    display:block;
}

.libro-reclamaciones-form  form.submitting:after{
    content:"";
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,.8);
    position: absolute;
    top:0;
    left:0;
    /*background-image: url(../images/loader.gif);*/
    /*background-size: 20%;*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    z-index:2;
}

.libro-reclamaciones-form  form.wpcf7-form .ajax-loader{
    display:none!important;
}
.libro-reclamaciones-form .form-group-info {
    display: flex;
    flex-direction: column;
    color: var(--tertiary-color);
    line-height: 1.4;
}


.libro-reclamaciones-form .form-group-info span{
    margin-bottom:10px;
}


.libro-reclamaciones-form .form-group-info span:last-child{
    margin:0;
}

.form-group-wrapper-title {
    height: 35px !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 15px;
}

.form-group-wrapper-title > div{
    transform: none!important;
    background-color: #fff!important;
    margin: 0!important;
    padding: 0!important;
    height: 100%!important;
    position:absolute;
    top:0;
    transition:none!important;
    opacity:1;
    visibility:visible;
}

.form-group-wrapper-title > div h2{
    margin:0;
}
.form-group-wrapper-title > div.wpcf7cf-hidden{
    opacity:0;
    visibility:hidden;
}



.libro-reclamaciones-form  .form-group > label > span,
.libro-reclamaciones-form  .form-group > [data-class="wpcf7cf_group"] > label > span{
    width:auto;
    margin-left:2px;
    color:#ffc6c4;
}

/*.libro-reclamaciones-form .form-group .wpcf7-not-valid {*/
/*    border: 1px solid #f14040!important;*/
/*}*/

.libro-reclamaciones-form .wpcf7-not-valid-tip{
    display:none!important;
}

#tipo_respuesta{
    height:65px;
    position:relative;
}
#tipo_respuesta [data-class="wpcf7cf_group"]{
    position:absolute;
    top:0;
    height:100%!Important;
    width:100%;
    margin:0!important;
    padding:0!important;
    opacity:1;
    visibility:visible;
    background-color: #fff!important;
}
 
#tipo_respuesta [data-class="wpcf7cf_group"].wpcf7cf-hidden{
    opacity:0;
    visibility:hidden;
}
.libro-reclamaciones-info {
    margin: 20px 0;
    line-height: 1.5;
    text-align: justify;
	color: var(--tertiary-color);
}
.libro-reclamaciones-info p{
    margin-bottom:20px;
    line-height: 1.4;
}

.libro-reclamaciones-info p span{
    color:#ffc6c4;
}

.libro-reclamaciones-info br{
    display:block;
}

.libro-reclamaciones-section{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.libro-reclamaciones-section img{
     max-width: 125px;
    border-radius: 8px;
    background-color:#fff;
    padding: 4px;
}

.page-info-wrapper{
    width:100%;
    max-width:100%;
    margin:0 auto;
    text-align: justify;
}

@media screen and (min-width: 580px) {
    .page-info-wrapper{
        max-width:720px;
    }

}

@media screen and (min-width: 980px) {
    
}

@media screen and (min-width: 1280px) {
    .page-info-wrapper{
        max-width:960px;
    }

}

.text-legal-tabs-single .text-legal-tabs-content{
    padding:0;
}

.text-legal-tabs-content .card,
.text-legal-tabs-content .card-header{
    padding:0;
    background-color:transparent;
    border:0;
    box-shadow:none;
    color:#565656;
    font-size:1.4rem;
    font-weight:400;
}

.text-legal-tabs-content .card{
    margin-bottom:20px;
    padding:25px;
    background-color:#fff;
    box-shadow:0 2px 20px 0 rgb(31 38 135 / 7%);
    border-radius:12px;
}

.text-legal-tabs-content .card:last-child{
    border:0;
}

.text-legal-tabs-content .card-header span{
    font-weight:500;
    cursor: pointer;
    position:relative;
    transition:all .3s ease;
    padding-right:30px;
    width: 100%;
    display: block;
    /*text-transform: uppercase;*/
    /*letter-spacing: 1px;*/
    font-size:1.5rem;
}

.text-legal-tabs-content .card-header span:after{
    content:"";
    width:12px;
    height: 12px;
    position: absolute;
    top:4px;
    right:0;
    background-image: url(../images/select-arrow.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition:all .3s ease;
}

.text-legal-tabs-content .card-header span[aria-expanded="true"]:after{
    transform:scaley(-1);
    
}

.text-legal-tabs-content .card-header span[aria-expanded="false"]:after{
    transform:scaley(1);
}

.text-legal-tabs-content .card-body{
    padding:0;
    border-top: 1px solid #f6f6f6;
    padding-top:25px;
    margin-top:25px;
}

.text-legal-tabs-content .card-body .card-body-content{
    display:flex;
    align-items:center;
    flex-direction:column;
    max-width:680px;
    margin:0 auto;
}

@media screen and (min-width : 580px) {
  .text-legal-tabs-content .card-body .card-body-content{
        flex-direction:row;
        max-width:100%;
    }
}
@media screen and (min-width: 980px) {
    
}

@media screen and (min-width: 1280px) {
   
}

.text-legal-tabs-content .card-body .card-body-content-image{
    flex-shrink:0;
    position:relative;
}

.text-legal-tabs-content .card-body .card-body-content-image:after{
    content:"";
    position:absolute;
    right: 24px;
    top:50%;
    transform:translateY(-50%)scalex(-1);
    width: 150px;
    height: 210px;
    background-image: url(../images/adorno.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index:-1;
}

.text-legal-tabs-content .card-body .card-body-content-image img{
    width:100%;
    margin:0 auto;
    margin-bottom:25px;
}

@media screen and (min-width : 580px) {
  .text-legal-tabs-content .card-body .card-body-content-image img{
        width:200px;
        margin:0;
        margin-right:150px;
    }
}
@media screen and (min-width: 980px) {
    
}

@media screen and (min-width: 1280px) {
   .text-legal-tabs-content .card-body .card-body-content-image img{
        width:340px;
    }
}

.text-legal-tabs-content .card-body .card-body-content-info{
    width:100%;
}


.text-legal-tabs-content .card-body .card-body-content-info p{
    margin-bottom:20px;
}

.text-legal-tabs-content .card-body .card-body-content-info ul li{
    margin-bottom:20px;
    padding-left:30px;
    position:relative;
}

.text-legal-tabs-content .card-body .card-body-content-info ul li:last-child{
    margin:0;
}

.text-legal-tabs-content .card-body .card-body-content-info ul li:after{
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:16px;
    height:16px;
    background-image: url(../images/check-list-full.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

