:root {
  --font-primary: "Chronicle Text G1", serif;
  --font-headings: "Chronicle Display", serif;
  --font-paralucent: "Paralucent Stencil", Arial, Helvetica, sans-serif;

  --color-black-light: #212121;
  --color-black-dark: #1f1f1f;
  --color-black-header: #1f1f1f;
  --color-yellow: #fed83d;
  --color-yellow-dark: #f4c542;
  
  --fs-19: 1.1875rem;
  --fs-section-heading: clamp(2.2rem, 1.9rem + 1.72vw, 3.5rem);

  --section-space: 90px;
  --contained-max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background: var(--color-black-light);
  color: #fff;
  font-family: var(--font-primary);
  line-height: 1.4;
}



h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  text-wrap: balance;
}

h1,
h2,
h3 {
  font-family: var(--font-headings);
  font-weight: 100;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1.4rem;
}

a {
  color: inherit;
  text-decoration-color: #bbb;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul[role="list"] {
  list-style: none;
  padding: 0;
}

:target {
  scroll-margin-block: calc(100px + 5ex);
}

b {
  color: var(--color-yellow);
}

/* HEADER */
header {
  width: 100%;
  padding: 10px 40px 14px;
  background: var(--color-black-header);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  position: fixed;
  top: 0;
  z-index: 2;
}

.logo {
  max-width: 150px;
  margin-top:0px;
}

.logo-right {
  grid-column: 3;
  justify-self: end;
  max-width: 80px;
  margin-top:10px;
}

nav ul {
  display: flex;
  gap:40px;
  font-size: var(--fs-19);
  font-weight: 200;
}

nav ul li a {
  cursor:pointer
}

.main-menu-btn {
  display: none;
}




@media (max-width: 1159.9px) {

  .main-nav li:last-child a {

    margin-left:0 !important
  }
  .menu-text {
    color: white;
    font-size: 10px;
    font-family: arial;
    margin-top: 4px;
  }


  .main-menu-btn {
    display: block;
    background: none;
    border: none;
    margin-top: 5px;
  }
  .main-nav {
    width: 100%;
    position: absolute;
    top: 71px;
    left: 0;
    background: var(--color-black-header);
    transform: translateX(-120%);
    transition: transform .5s ease-in-out;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
    padding-inline: 40px;
  }
}

nav ul li a {
  font: var(--font-primary);
  text-decoration: none;
}
nav ul li a:hover {
  color: var(--color-yellow);
}
.main-nav a {
  line-height: 1;
}




 .main-nav li:last-child a{
  background: #f4c542;
  padding: 5px 20px;
  color: #212121;
  width: auto;
  border-radius: 7px;
  padding-bottom: 6px;
  background-image: url('./../../images/icono-cta.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 23px;
  background-position: 93%;
  padding-right: 58px;
  cursor: pointer;
  margin-top: -5px;
  margin-left: 50px;
  
}
 .main-nav li:last-child:hover a{
  background: #fed83d;
  background-image: url('./../../images/icono-cta.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 23px;
  background-position: 93%;
}
nav ul li:last-child > a:hover {
    color:#212121;
}

 #main-nav ul {
  margin-bottom: 9px;
}

.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3ch;
}

footer {
  background: var(--color-black-dark);
  padding: 25px 40px;
}
.site-footer .container {
  display: grid;
  justify-content: space-between;
  align-items: center;
  row-gap: 1.5rem;
}
footer ul {
  margin: 0;
}
.footer-legal {
  grid-row: 2;
}
.footer-social ul {
  align-items: center;
  gap: clamp(20px, 2.4vw, 16px);
}
.footer-legal ul {
  flex-direction: column;
	gap: 0.5rem;
}
.footer-social img {
  max-width: 40px;
  object-fit: cover;
  width: 100%;
}
@media(min-width: 960px) {
  .site-footer .container {
    grid-template-columns: 2fr 1fr;
    row-gap: 0.75rem;
  }
  .footer-legal ul {
    flex-direction: row;
    gap: 35px;
  }
  .footer-social {
    grid-row: 1 / span 2;
    justify-self: end;
  }
}
@media(min-width: 1280px) {
  .site-footer .container {
    grid-template-columns: repeat(3, auto);
  }
  .footer-legal {
    grid-row: 1;
    grid-column: 2;
  }
  .footer-social {
    grid-row: 1;
    grid-column: 3;
  }
}

.hero {
  margin-top: 90px;
  position: relative;
}
.hero img {
  width: 100%;
}
.heroOverlay {
 
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.overlayContent {

  position: absolute;
  left: 100px;
  width: 32%;
  top: 10%;
  z-index: 1;
}
.degradado-horizontal {
  background: linear-gradient(to right, rgba(33,33,33,.8) 20%, rgba(33,33,33,0) 70%); /* Rojo a Azul */
}


.separation {
  width: 90px;
  height: 5px;
  background: #f4c542;
  margin-top: 31px;
  margin-bottom: 24px;
  border-radius: 4px;

}
.separation-ser {
  width: 40px;
  height: 5px;
  background: #f4c542;
  margin-top: 3px;
  margin-bottom: 10px;
  border-radius: 4px;

}
.botonCtaHome {
  background: #f4c542;
  padding: 10px 20px;
  color: #212121;
  width: auto;
  position: absolute;
  border-radius: 7px;
  padding-bottom: 13px;
  background-image: url('./../../images/icono-cta.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 23px;
  background-position: 93%;
  padding-right: 58px;
  cursor:pointer
}



.overlayContent h2 {
  font-size: 1.4vw;
  margin-bottom:20px;
}

.overlayContent h1 {
  font-size: 2.6vw;
  font-weight: bold;
}

section:not(.hero) {
  max-width: var(--contained-max-width);
  margin-top: var(--section-space);
  margin-inline: auto;
  padding-inline: 40px;
  margin-top:50px;
}

.content-wrapper {
  max-width: var(--contained-max-width);
  margin-top: var(--section-space);
  margin-inline: auto;
  padding-inline: 40px;
}


.swiper-slide h1 {
  position: absolute;
  bottom: 10%;
  width: 600px;
  left: 6%;
  font-size: 2.5rem;
}
  
.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
} 
.swiper-pagination-bullet-active {


  background-color: #f4c542;

}
section.servicios ,section.sectores {
  margin-top: 80px;
}




section h2 {
  font-size: var(--fs-section-heading);
  margin-bottom: 5px;
}
section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  margin-top: 11px;
  margin-bottom: 7px;
}
article h3 {
  font-size: 1.3rem;
  margin-top: 0px;
  min-height: 100px
}
section h4 {
  font-size: 1rem;
  font-family: var(--font-primary);
  font-weight: 100;
  margin-bottom: 30px;
  margin-top: 10px;
}
section h4 span {
  font-size: 1.3rem;
  line-height: 1.2;
}

form input,
form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  background: #d9d9d9;
  border: 1px solid #fff;
  border-radius: 5px;
}
form button {
  padding: 10px 40px;
  background:#fed83d;
  border: none;
  color: #000;
  cursor: pointer;
  margin-top: 20px;
}

form {
  position: relative;
}
form button {
  position: absolute;
  right: 0;
  bottom: -11px;
}


.intro-company {
  display: flex;
  gap: 50px;
  margin-top:50px !important;
}
.intro-company div {
  font-size: 1.2rem;
  text-align: left;
  width: 50%;
  line-height:1.1;
  margin-top:10px;
}
.servicios-text {
  font-size: 1.2rem;
    line-height: 1.2;
    padding-bottom: 70px;
  
}

section p {
  font-size: 1.2rem;
  line-height:1.1
}

.iconDelegaciones {
  width: 131px;
  height: 100px;
  background-image: url('./../../images/icon-ubicaciones.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 82px;
  position: absolute;
  background-position-x: 35px;
  
}
.iconTrabajadores {
  width: 100px;
  height: 100px;
  background-image: url('./../../images/icon-trabajadores.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 82px;
  position: absolute;
  background-position-x: 19px;
  
}
.iconEquipos {
  width: 100px;
  height: 100px;
  background-image: url('./../../images/icon-rueda.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 82px;
  position: absolute;
  background-position-x: 7px;
  
}


 .intro-company-itt ,  .intro-company-cm93{
  
  background: #303030;
  border: 1px solid #505050;
  padding: 40px;
  border-radius: 9px;

}


.single-post {
  font-size: 1.2rem;
  line-height:1.1
}

.intro-company-cm93 {
  margin-top: 16px;
}
.intro-company__logo {
  max-width: 600px;
  text-align: left;
  margin-bottom: 30px;
}
.intro-company-itt img {
  width: 162px;
}
.intro-company-cm93 img {
  width: 194px;
}

#donde-estamos {
  width:100%;
  max-width: none;
  padding-inline: 0;
}
#donde-estamos h2 {
  margin-left:35px;
}

.donde-estamos__map {
  display: grid;
  grid-template-columns: 32% 68%;
  overflow:hidden;
  transition: .5s ease-in-out;
  padding: 0 35px;
}
.donde-estamos__map.opened {
  grid-template-columns: 32% 68%;
}

.donde-estamos__map ol{  
  padding-left: 0;
  max-height: 75vh;
  overflow-y: scroll;
  margin-bottom:0;
    /* Firefox */
    scrollbar-width: none;

    /* IE / Edge antiguo */
    -ms-overflow-style: none;

}

  /* Chrome, Safari, Edge */
  .donde-estamos__map ol::-webkit-scrollbar {
    display: none;
  }


.donde-estamos__map ol li div  {
  color:#ddd;
}



.donde-estamos__map ol li div {
    opacity:1;
    transition: 1s;
    transition-delay: .7s;
    color:#ddd
}

.donde-estamos__map.opened ol li div {
  opacity:1;
}

.g-map {
  height:75vh;
  border-radius: 10px;
}

.mobile-location-info {
  display: none;
}
@media (max-width: 991px) {
  .donde-estamos__map ol {
    display: block;
    height:300px;
  }
  .donde-estamos__map {
    grid-template-columns: 100%;
  }
  .donde-estamos__map .g-map {
    grid-row: 1;
    grid-column: 1;
  }
  .donde-estamos__map .mobile-location-info.active {
    grid-row: 1;
    grid-column: 1;
    align-self: end;
    z-index: 1;
    display: block;
    padding-top: 0.4rem;
    padding-bottom: 1rem;
    background-color: #fff;
    color: var(--color-black-dark);
    font-size: var(--font-size-xs);

    --flow-space: var(--space-xxs);
  }
  .donde-estamos__map .mli__wrapper {
    max-width: 670px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 20% 75%;
    align-items: center;
    justify-items: center;
  }
  .donde-estamos__map .mli__pin {
    width: 30px;
  }
  .mli__pin path {
    fill: var(--color-yellow);
  }
  .donde-estamos__map .mli__name,
  .donde-estamos__map .mli__address,
  .donde-estamos__map .mli__tel {
    text-align: left;
  }
  .donde-estamos__map .mli__name {
    font-size: 1.25em;
  }
  .donde-estamos__map .mli__address,
  .donde-estamos__map .mli__tel {
    font-size: 0.9em;
  }
  .donde-estamos__map.mli__gmaps {
    display: block;
  }
}

.botonNoticias {

  background-color: #fed83d;
  padding:8px 20px;
  color:#212121;
  text-decoration: none;
  display: inline-block;
}

.ubicacion {
  padding-block: var(--space-xxs);
  display: grid;
  grid-template-columns: 5rem 1fr;
  background-color: #303030;
  padding: 18px 11px;
  border: 1px solid #505050;
  border-radius: 10px;
  color: #fff;
  padding-right: 23px;
  margin-bottom:4px;
  margin-right: 2px;
}
.form-error {
  font-size: 0.9rem;
  line-height: 10px;
  color: #f4c542;
}

.ubicacion h3,
.ubicacion p {
  font-size: var(--font-size-xs);
  text-align: left;
  -webkit-hyphens: none;
  hyphens: none;
}

.ubicacion__list-marker {
  display: grid;
  place-content: center;
  position: relative;
  font-size: var(--font-size-xs);
  cursor: pointer;
}
.ubicacion__list-marker > * {
  grid-row: 1;
  grid-column: 1;
}
.ubicacion__list-marker .pin {
  width: 1.8rem;
}
.ubicacion__list-marker path {
  fill:var(--color-yellow-dark);
}
.marqued path {
  fill: var(--color-yellow-dark); /* #c42127; */
  }
.ubicacion__list-marker .num {
    color: #000;
    line-height: 2;
    text-align: center;
}
.ubicacion__list-marker .marqued + .num {
  color:#000;
}

#map .gm-style-iw-c {
  max-width: 260px !important;
  padding: 4px 6px 0 12px !important;
}
#map .gm-style-iw-c .gm-style-iw-d {
  margin: 0;
  transform: translateY(-16px);
  color:#242424;
}
.gm-style-iw-d h3 {
  margin: 0;
  margin-bottom: 0.5rem;
}
.gm-style h3 { 
  font-size: 1.2rem; 
}
.gm-style p { 
  font-size: 1rem;
}
.gm-ui-hover-effect {
  height: 32px!important;
  width: 32px!important;
  z-index: 10;
}
.gm-ui-hover-effect:focus-visible {
  outline: 1px solid;
  outline-offset: -4px;
}
.gm-ui-hover-effect span {
  margin: 4px!important;
}


.stats {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  margin-bottom: 70px;
}
.stats .counters {
  flex: 1;
  font-size: 20px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.4rem;
}
.counters .number {
  font-family: var(--font-paralucent);
  font-size: 4rem;
  line-height: 1;
}

.home .sectores-content , .page-id-922 .sectores-content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.home .sectores-content {
  border: 1px solid #505050;
  border-radius: 10px;
  background: #303030;
  display:block;
}
.home .sectores-content img {
  text-align: right;
  margin-left: auto;
  border-radius:0;
}

.home .sector ,.page-id-922 .sector{
  display: grid;
  grid-template-rows: 1fr 4em;
  text-decoration: none;

}
.home .sector picture ,.page-id-922 .sector picture{
  grid-column: 1;
  grid-row: 1 / span 2;
  opacity: .7;
  transition: .5s;
}
.home .sector picture:hover ,.page-id-922 .sector picture:hover{
  opacity: 1;
}

 .sector {
  border-radius: 10px;
  overflow: hidden;
}




.home .sector h3 {
  grid-column: 1;
  
  font-family: var(--font-paralucent);
  text-align: center;
  font-size:1.9rem;
  
  z-index: 2;  
  position: absolute;
  margin-left: 30px;
  margin-top: 15px;
}

.home .sector p {
  position: absolute;
  margin-left: 30px;
  margin-top: 104px;
  max-width: 30%;
}

.sector .separation {
  position: absolute;
  margin-left: 30px;
  margin-top: 75px;
}

.home .sector img,
.servicio img {
  object-fit: cover;
  border-radius: 0px;
}
.servicio img , .image-serv-holder{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.servicios-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 50px;
}

.servicios-content li.servicio {
  width:32%;
}

.servicio h3 {
  font-family: var(--font-paralucent);
  font-size: 1.4rem;
}

.noticias-content {

  align-items: center;
  /* gap: 24px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr)*/

}
.noticias-content a {
  text-decoration: none;
}

article img {
  flex: 1 1 0;
  width: 100%;
  max-width: 100%;
 height:auto;
  border-radius: 8px;
  margin-bottom:10px;
}

section.contacto {
  margin-bottom: 180px;
  margin-top:100px;
}

.contacto-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.alt-contact {
  bottom: 0;
}
.contacto-content .highlighted {
  font-size: 1.2rem;
  color: var(--color-yellow);
  line-height: 1;
}
.contacto-content .alt-contact {
  font-size: 1.2rem;
  line-height: 1;
 
}

/* NOTICIAS */
.grid-noticias {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}
.content-wrapper h1 {
  margin-top: 100px;
  font-size: 3rem;
  margin-bottom: 10px;
}
.content-wrapper p {
  font-size: 1rem;
}

.noticia {
  flex: 0 0 calc(33.333% - 50px);
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.noticia h2 {
  font-size: 1.5rem;
  margin-top: 10px;
  text-align: left;
}
.noticia a {
  text-decoration: none;
}
.noticia img {
  width: 100%;
  height: auto;
}

/* SECTORES */
.page-template-sectores :target {
  scroll-margin-block: calc(180px + 5ex);
}
.page-template-sectores .content-wrapper {
  max-width: var(--contained-max-width);
  margin-inline: auto;
  padding-inline: 40px;
}
.subtitle-sectores {
  text-align: left;
  margin-block: 10px;
}
#sector-list {
  margin: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 5px;

}




  #sector-list {
    grid-template-columns: repeat(3, 1fr);
  }

  

.sector-item {
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-paralucent);
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
}
@media(max-width: 641px) {

 

  #sector-list li{
    margin-bottom:20px
  
  }

  form button {
    left:0;
    right:auto;
    bottom:-70px;
  }

  .sector-item {
  
  font-size: 1.7rem;
  
  }
}

.sector-item picture {
  border-radius: 10px;
  margin: 11px;
  transition: opacity 0.5s ease;
  opacity: .7;
  overflow: hidden;
}

.sector-item picture:hover {
 
  opacity: 1;

}


.selected-brand-logo {
    width:200px;
    margin-top:42px;
}
/* #sector,
#selected-brand {
  min-height: 10rem;
} */
#sector {
  margin-bottom: 1.5rem;
}
#sector h2 {
  margin-top: 3.5rem;
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 60px;
}
#sector .excerpt,
#selected-brand .excerpt {
  margin-block: 1em 1.5em;
  font-size: 1.2rem;
}
.marcas-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 50px;
}
@media(min-width: 641px) {
  .marcas-list {
    grid-template-columns: repeat(6, 1fr);
  }

}
.lineas-list a{
  text-decoration: underline;
}

.lineas-list li {
    list-style: circle;
    margin-top:16px;
}
.lineas-list  {
  margin-top:20px;
}
.sepLine {
  width:100%;
  border-top:1px solid #ddd;
  margin-top:40px;
}

#lineas {
  min-height: 25vh; /* 50vh; */
  margin-bottom: 3rem;
}
#lineas summary {
  font-weight: 700;
  margin-bottom: 1em;
  cursor: pointer;
}
#lineas .productos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2em;
}
.productos-grid img {
  height: 100%;
  max-height: 200px;
  width: auto;
  margin-bottom: 0.25em;
  object-fit: cover;
}
.productos-grid a {
  text-decoration: none;
}

.brands-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 150px;
  margin-top: 100px;
  margin-bottom: 100px;
  align-items: center;
}
.brand-item {
  flex-grow: 1;
}
.brand-item img {
  width: 100%;
}

.product-brand-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  margin-bottom: 60px;
  transition: height 1s;
}

.product-item {
  flex-basis: calc(20% - 20px);
}
.product-item img {
  width: 100%;
}


.text-intro-marca {
  margin-top: 20px;
  margin-bottom: 50px;
  text-align: left;
  font-size: 1.1rem;
}
.product-group-title {
  text-align: left;
  margin-bottom: 12px;
  margin-top: 16px;
  background-image: url("../../images/more-icon.png");
  background-repeat: no-repeat;
  padding-right: 30px;
  width: auto;
  display: inline-block;
  background-position-x: right;
  font-size: 1.2rem;
  line-height: 1.1;
  cursor: pointer;
}
.product-name {
  border-bottom: 1px solid #fff;
  font-size: 1.2rem;
  margin-top: 10px;
  padding-bottom: 3px;
}

.desplegable-group {
  text-align: left;
  margin-bottom: 100px;
}

.product-group.plegado .product-brand-grid {
  height: 0;
  overflow: hidden;
  margin-bottom: 0px;
}

.product-group.desplegado .product-brand-grid {
  height: auto;
}

.swiper-button-next, .swiper-button-prev {
  color:#fff;
}
.ubicacion__list-info {
  color:#ddd;
}
.ubicacion__list-info h3 {
  font-weight: bold;
  font-size:1.4rem
}

.ubicacion__list-info a {
  color:#ddd;
}
p.ubicacion__gmaps {
  margin-top: 0.4rem;
}
p.ubicacion__gmaps a  {
  color:#ddd;
}
.ubicacion__tel a {
  color:#ddd;
  text-decoration: none;
}
.ubicacion__tel {
  margin-top: 6px;
}
.ubicacion__horarios {
  color:#ddd;
  margin-top: 6px;
}
#map .ubicacion__horarios {
  color:#000;
}
.donde-estamos__map ol {
  margin-top:0;
  margin-right:2px;
}

.content-wrapper p {

  font-size: 1.2rem;
  line-height:1.1

}

.image-serv-holder {
    border-radius: 8px;
    overflow: hidden;
}
.image-serv-holder img {
  transition:.4s ;
}
.image-serv-holder img:hover{
  transform: scale(1.2);
}

.marca-item img, .marca-item {
  transition: .3s;
}
.marca-item {
  opacity: .5;
}
.marca-item.current {
  opacity: 1;
}

.marca-web-link {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-family: var(--font-haffer);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f4c542;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.marca-web-link:hover {
  opacity: 1;
}

@media(max-width: 1100px) {

  .servicios-content {
    flex-wrap: wrap;
  }

  
  
  .sector h3 {
    font-size: 1.3rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  nav ul li a {
    font-size: 16px;
  }
  .logo {
    max-width: 120px;
  }
  .footer-social img {
    max-width: 30px;
  }
  .intro-company-itt img {
    width: 142px;
  }
  .intro-company-cm93 img {
    width: 180px;
  }
  .intro-company-cm93 {
    margin-top: 8px;

  }
  .intro-company div {
    font-size: 0.9rem;
  }
  article h3 {
    font-size: 1.1rem;
  }


  

  .contacto-content .highlighted {
    font-size: 1rem;
  }
  .contacto-content .alt-contact {
    font-size: 1rem;
  }
}

@media(max-width: 640px) {


  .sectores-content.desktop p {
    font-size:1rem;
    min-width:80%;
  } 
  section.hero {
    margin-top:70px;
  }

  .home .sector {
    margin-bottom: 20px;
  }

  #map.g-map {
      height:60vh
  }

  .hero h1 {
    width: 95%;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .servicios-content li.servicio {
    width:100%
  }
  .intro-company {
    flex-direction: column;
  }
  .sectores-content {
    flex-direction: column;
  }
  .servicios-content {
    flex-direction: column;
    gap: 80px;
  }
  .noticias-content {
    flex-direction: column;
    gap: 80px;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: none;
  }
  .contacto-content {
    flex-direction: column;
  }
  .contacto-content .alt-contact {
    margin-top: 40px;
  }
  .intro-company div {
    width: 100%;
  }
  .sector h3 {
    font-size: 1.7rem;
  }
  .servicio h3 {
    margin-top: 15px;
  }
  .grid-noticias {
    gap: 20px;
  }
  .noticia {
    flex: 0 0 100% ;
  }
  .noticia h2 {
    font-size: 1.5rem;
    height: 80px;
    margin-bottom:30px
  }
  #sector-list {
    
      grid-template-columns: repeat(1, 1fr);
    
  }
  

}

@media(min-width: 400px) and (max-width: 640px) {

  article h3 {
    min-height: 20px;
  }

  section.servicios {
    margin-top: 40px;
  }
  .counters .number {
    font-size: 5rem;
    margin-bottom: -5px;
  }
  .stats .counters {
    font-size: 1.6rem;
    margin-top: 20px;
  }

  .stats {
    
    flex-direction: column;
  }


}
@media(max-width: 399.9px) {
  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media(max-width: 1500px) {
nav ul {
  gap: 40px;
}
}

.rgpd-checkbox{
  display: grid;
  align-items: baseline;
  grid-template-columns: auto 1fr;
}

.rgpd-checkbox p{
  margin-left: 8px;
  font-size: 14px;
}

.page-template-servicio-postventa H2{
  font-size: 35px;
}

.cm93-hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.servicio a {
  text-decoration: none;
}


.botonNoticias ,   form button {
  background: #f4c542;
  padding: 10px 20px;
  color: #212121;
  width: auto;
  position: absolute;
  border-radius: 7px;
  padding-bottom: 13px;
  background-image: url('./../../images/icono-cta.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 23px;
  background-position: 93%;
  padding-right: 58px;
  cursor:pointer
}
.botonServicios {
  background: #f4c542;
  padding: 6px 10px;
  color: #212121;
  width: auto;
  position: absolute;
  border-radius: 7px;
  padding-bottom: 8px;
  background-image: url('./../../images/icono-cta.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 23px;
  background-position: 93%;
  padding-right: 58px;
  cursor:pointer;
  bottom:20px;
}


.botonCtaHome:hover {
  background: #fed83d;
  background-image: url('./../../images/icono-cta.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 23px;
  background-position: 93%;
 
}

@media(max-width: 1400px) { 

  .overlayContent {
    top:30px;
  }
  .counters .number {
    font-size: 4rem;
  }
  nav ul {
    gap: 27px;
    font-size: 16px;
  }

}

@media(max-width: 1100px) and (min-width:640px) {
  .iconEquipos, .iconTrabajadores,.iconDelegaciones{
      display:none;
  }

}

@media(max-width: 1100px) { 

  


  .overlayContent h1 {
    font-size: 2vw;
  }
  .separation {
   
    margin-top: 18px;
    margin-bottom: 12px;
    
  }
}

@media(max-width: 980px) { 
  .overlayContent h1 {
    font-size: 5.5vw;
  }
  .overlayContent {
    width:80%;
    left:30px;
    top:18%;
  }
  .overlayContent h2 {
    font-size: 4vw;
  }
  .degradado-horizontal {
    background: linear-gradient(to right, rgba(33,33,33,.8) 15%, rgba(33,33,33,0) 60%);
  }
  .iconEquipos {
    background-position-y: 15px;
    background-size: 62px;
  }
  .iconTrabajadores {
    background-position-y: 20px;
    background-size: 62px;
  }
  .iconDelegaciones {
    background-size: 62px;
    background-position-x: 26px;
    background-position-y: 22px;
  }
}

@media (max-width: 1159.9px) {
  .main-nav li:last-child {
    margin-left:0; 
    margin-bottom:80px;
    margin-top:40px;
  }
  
}
.footer-social img.facebook-icon {
    width: 25px;
}
.footer-social img.instagram-icon {
  width: 30px;
}
.footer-social img.email-icon {
  width: 35px;
}







/* *************** SECTORES ************* */




.sectoresSection  h2.pretitle-sectores {
  margin-top: 140px;
    color: #f4c542;
    text-align: center;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
}

.content-wrapper.sectoresSection h1 {
  margin-top: 0px;
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: center;
}

.sectoresSection p.subtitle-sectores {
  text-align: center;
  width: 60%;
  margin: auto;
  font-size: 1.2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 200;
  margin-top: 19px;
}

.dynamicSteps {

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom:60px;
  font-family: "Raleway", sans-serif;
  width: 78%;
  margin-left: auto;
  margin-right: auto;

}
.dyn_step1 {
  color: #fff;
  font-family: "Raleway", sans-serif;
}
.dyn_step span {
  border-radius: 100px;
  background-color: #f4c542;
  color: #212121;
  padding: 7px 15px;
  margin-right: 16px;
  padding-bottom: 10px;
  font-weight: bold;
}
.stepArrow{
  color: #fff;
  opacity: 1;
  margin-top: 5px;
}
.stepArrow.active{
  color: #f4c542;
  opacity: 1;
}

.stepArrow img {
  width: 70px;
} 

.sectoresSection  .step  {

  color:#fff;
  font-family: "Raleway", sans-serif;
  font-size:1.3rem;
  font-weight: 500;
  margin-top: 100px;
  margin-bottom: 10px;
}

.sectoresSection  .step span {
  color: #f4c542;
}
.sectoresSection  .step01 {
  margin-top: 60px;
} 
.sectoresSection  .step02 {
  margin-bottom: 40px;
} 


.SectorName {
  margin-top: -110px;
  z-index: 1;
  opacity: 1;
  position: relative;
  font-size: 1.8rem;
}

.sectoresSection .sector-item picture {
  border-radius: 10px;
  margin: 11px;
  transition: opacity 0.5s ease;
  opacity: 1;
  overflow: hidden;
  box-sizing: border-box
}

.sectoresSection .sector-item picture:hover {
 
  outline:2px solid #f4c542;
  box-sizing: border-box
}
.sectoresSection .sector-item picture.selected {
  outline:2px solid #f4c542;
  box-sizing: border-box
}

.sectoresSection .SectorDescription {
  font-family: "Raleway", sans-serif;
  font-size: .9rem;
  width: 190px;
  margin: auto;
  position: relative

}
.sectoresSection picture {
  position: relative;
}
.gradientSectorOverlay {
  /*background: linear-gradient(to top, rgba(33,33,33,.8) 30%, rgba(33,33,33,0) 100%);*/
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.stepCompleted {
  width: 60px;
  position: absolute;
  right: 20px;
  top: 15px;
  opacity:0;
  transition: .5s;
}

.stepCompleted.selected {
  opacity:1;
}

.sector-hero {
  width: 100%;
  text-align: center;
  font-family: var(--font-paralucent);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.sector-hero picture {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.sector-hero picture img {
  width: 100%;
  display: block;
}


.sectoresSection #marcas {
  background: #303030;
  border: 1px solid #505050;
  border-radius: 10px;
  padding: 40px 50px;
} 

.sectoresSection .sepLine {
  display:none;
}

.productos-grid a {
  margin-top: 0px;
  background: #303030;
  border: 1px solid #505050;
  padding: 33px 30px;
  border-radius: 10px;

  background-image: url('./../../images/iconArrowFam.png');
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: 96%;
  width: 30%;
  display: block;
}

.sectoresSection .lineas-list p {
margin-bottom:30px;
}

.sectoresSection .lineas-list li p a {
 
  margin-top: 16px;
  background: #303030;
  border: 1px solid #505050;
  padding: 33px 30px;
  border-radius: 10px;
  
}

.sectoresSection .lineas-list li p a {
  background-image: url('./../../images/iconArrowFam.png');
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: 96%;
  width: 100%;
  display: block;
}
.sectoresSection .lineas-list li {
  list-style: none;
}

@media(max-width: 800px) { 

  
  .dynamicSteps {
    width:100%;
    flex-direction: column;
    margin-bottom:10px;
  }

  .dyn_step {
    font-size:14px;
    margin-bottom: 18px;
  }
  .stepArrow {
    display:none;
  }
  .dyn_step span {
    border-radius: 100px;
    background-color: #f4c542;
    color: #212121;
    padding: 7px 13px;
      padding-bottom: 4px;
    margin-right: 8px;
    padding-bottom: 9px;
    font-weight: bold;
  }
  .sectoresSection .step {
    margin-top:30px;
  }
  .sectoresSection p.subtitle-sectores {
    width:100%;
  }
}

.bannerMarcas {
  display: flex;
  background-color: #303030;
  border: 1px solid #505050;
  border-radius: 10px;
  padding:30px 20px;
  margin-top: 30px;
}
.iconoMarcas{
  width:40px;
}
.textoMarcas {
    margin-left: 40px;
}
.tituloBanner  {
    font-size: 19px;
    font-weight: bold;
    color:#f4c542;
    text-transform: uppercase;;
}
.subtituloBanner{
  font-size: 18px;
  color: #fff;
  width: 60%;
}
.imagenBanner {

 margin-left: auto;
  margin-right: 29px;
  align-self: center;
  opacity: .5;
}

.sectoresIcons {
  display: flex;
  margin-top: 90px;
  margin-bottom: 80px;
}

.sec-icon {
  margin:auto;
  width:80px;
}
.sec-tit {

  margin-top:30px;
  font-size:18px;
  font-weight: bold;
  margin: auto;
  text-align: center;

}
.sec-text {

  margin-top:20px;
  font-size:15px;
  margin: auto;
  text-align: center;

}
.sec-column {
  margin-right:40px;
}

@media(max-width: 641px) { 

  .sectoresIcons {
    flex-direction: column;
  }
  .imagenBanner {
    display:none
  }
  .subtituloBanner{
    width:90%
  }
  .sec-column {
    margin-bottom:60px;
  }

}


#selected-brand  {
  transition: 0.5s;
  opacity: 0;
}

.visibleNow {
  opacity:1 !important;
}


ul.servicios-content {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;

}
ul.servicios-content .servicio {
  max-width: calc( 50% - 25px );
  background-color: #303030;
  border:1px solid #505050;
  padding:0px 0px;
  border-radius: 10px;
}
.servicio-card {
  display: flex;
  flex-direction: column;

}
.textserv-holder {
  max-width:95%;
  padding:3px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height:300px
}

.image-serv-holder{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left:2px solid #505050
}

.twocolNews {
  display: flex;
  gap:10px;
}
.threeRowsNews {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  align-items: stretch;
  gap:13px
}
.threeRowsNews article {
  max-width: 100%;
  flex: 1; 
  justify-content: flex-start;
  align-items:start;
  display: flex;
  flex-direction: row;
  background: #303030;
  border: 1px solid #505050;
  border-radius: 10px;


}

article.destacado {
  background: #303030;
  border: 1px solid #505050;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

article.destacado h3 {
  padding:18px;
  max-height:20%;
  font-size: 1.9rem;
}
.noticias-content p {
  font-size: 0.9rem;
  padding:20px;
}

.threeRowsNews article h3{
  max-width:90%;
  padding:20px;
  font-size: 1.9rem;
}

.threeRowsNews article a{
  max-width: 37%;
}
.threeRowsNews article a img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right:2px solid #505050
}
article.destacado a img {

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom:2px solid #505050


}
article img {
  margin-bottom:0;

}
.noticias-content {
  margin-bottom:30px;
  margin-top:30px
}

@media (max-width: 1300px) {
  .servicio h3 {
    font-size:1.1rem
  }
  .servicios-text { 
    font-size: .9rem;
  }
  .botonServicios {
    font-size:14px;
    
    padding: 5px 10px;
    padding-right: 45px;
  }


}

@media (max-width: 1159px) {

  ul.servicios-content .servicio {
    max-width: 100%;
  }

}
@media (max-width: 640px) {
  .textserv-holder {
    max-width: 65%;
  }
  .image-serv-holder{
  display: none;
  }
  .servicios-content {
    flex-direction: column;
    gap: 21px;
  }
  .textserv-holder {
    max-width: 100%;
  }

}

@media(max-width: 1159px) and (min-width:690px) { 

  .servicio h3 {
    font-size: 1.9rem;
  }
  .servicios-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 800px) {


  .twocolNews {
    flex-direction: column;
  }
  .threeRowsNews {
    max-width:100%;
  }
  .threeRowsNews article h3 {
      font-size:1.4rem
  }
  article.destacado h3  {
    font-size:1.4rem
  }

}
.textNotWrapper {
position: relative;
height: 100%;
} 
.textNotWrapper p {
  position: absolute;
  bottom:0px;
  right:0;
  color:#f4c542;
  text-decoration: underline;
}
 
@media (max-width: 800px) {
  .textNotWrapper p {
      bottom:-12px;
  }

}