/* ---------------------------------------------- MAIN INDEX ----------------------------------- */

.main {
  /*   background-color: var(--colormain); */
  grid-column: 1 / -1;
}

.reglon {
  display: block;
}

.masgrande {
  font-size: 1.1em;
}

.container-portada {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  /*   position: relative; */
  /*   justify-content: space-between; */
}

.div-portada-img {
  background-image: url(/portada-peru-contrata.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 70%;
  position: relative;
}

/* .div-portada-img2 {
  display: none;
} */

.texto-encima-portada {
  position: absolute;
  padding: 15px;
  top: 177px;
  left: 50px;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 28px;
  font-weight: 600;
}

.portada-imagen {
  display: block;
}

.portada-contador {
  display: grid;
  /*   grid-template-columns: 100%; */
  width: 30%;
  padding: 20px;
  background-color: var(--plomoclaro);
}

.div-div-counter {
  display: flex;
}

.div-cifras-prov,
.div-cifras-ent {
  display: flex;
  /*   border:1px solid black; */
}

.texto-cifras {
  margin: auto 10px auto auto;
  /*   width: 30%; */
  font-size: 18px;
  font-weight: 600;
  color: #54595f;
}

.texto-counter {
  font-size: 19px;
  font-weight: 400;
  color: red;
  margin: auto;
}

.div-counter-prov,
.div-counter-ent {
  width: 77%;
  margin-bottom: 10px;
  padding: 8px;
}

.div-counter-prov {
  border: 2px solid black;
}

.div-counter-ent {
  border: 2px dashed black;
}

#counter-prov,
#counter-ent {
  font-size: 55px;
  font-weight: 600;
  color: red;
  line-height: 90%;
  margin: auto;
}

.titulo-contador {
  display: flex;
  font-size: 28px;
  font-weight: 600;
  color: #54595f;
}

.titulo-contador div:first-child {
  width: 23%;
}

.titulo-contador div:nth-child(2) {
  margin: 10px auto;
}

.slider-portada {
  display: none;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
  /*  background-image: url(/portada-peru-contrata.jpg); */
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3)
    ),
    url(/portada-peru-contrata.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

@media (max-width: 1300px) {
  .texto-encima-portada {
    padding: 10px;
    top: 150px;
    left: 33px;
    right: 380px;
    color: white;
  }
}

@media (max-width: 1185px) {
  .div-portada-img {
    width: 65%;
  }

  .portada-contador {
    width: 35%;
    padding: 10px;
  }

  .texto-cifras {
    font-size: 16px;
  }

  .texto-counter {
    font-size: 17px;
  }

  #counter-prov,
  #counter-ent {
    font-size: 43px;
  }

  .titulo-contador {
    font-size: 26px;
  }

  .texto-encima-portada {
    padding: 10px;
    top: 140px;
    left: 30px;
    right: 240px;
    color: white;
  }
}

@media (max-width: 899px) {
  .container-portada {
    display: none;
  }

  /*   body {
    grid-template-columns: 100vw;
  } */

  .div-cifras-ent,
  .div-cifras-prov,
  .div-cifras-mas {
    background-color: rgba(0, 0, 0, 0.7);
    display: block;
  }

  .div-cifras-mas {
    width: 77%;
  }

  .div-counter-prov,
  .div-counter-ent,
  .div-counter-mas {
    width: 100%;
    margin-bottom: 0;
    padding: 5px 18px;
    display: grid;
  }

  #counter-prov,
  #counter-ent {
    font-size: 30px;
  }

  .div-div-counter {
    font-size: 18px;
    font-weight: 600;
    color: red;
    margin: auto;
    display: block;
    text-align: center;
  }

  .texto-counter,
  .texto-mas {
    font-size: 18px;
    font-weight: 600;
    color: white;
  }

  .div-counter-prov,
  .div-counter-ent {
    border: 0;
  }

  .slider-portada {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px;
  }

  .slide.active {
    opacity: 1;
  }

  .slider-text {
    color: white;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 25px;
  }

  .slider-text p {
    line-height: 0;
  }
}

.div-cifras-mas {
  margin-right: 380px;
}

.slide {
  justify-content: left;
  padding-left: 40px;
}

@media (max-width: 699px) {
  .div-cifras-mas {
    width: 205px;
  }
}

/* marquee */

#scroll-container {
  overflow: hidden;
  width: 70%;
  margin: auto;
}

#scroll-text {
  white-space: nowrap;
  animation: scroll-right 15s linear infinite;
}

.marquee {
  font-size: 12px;
}

.marquee span {
  font-weight: bold;
}

.marquee a {
  font-size: 12px;
  color: red;
  font-weight: bold;
  text-decoration: underline;
}

@keyframes scroll-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1000px) {
  #scroll-container {
    width: 90%;
  }
}

@media (max-width: 630px) {
  #scroll-container {
    display: none;
  }
}

/* titulos de seccion */

.div-linea-iconn {
  position: relative;
  margin-left: 200px;
  margin-bottom: 20px;
}

.iconn {
  color: var(--colortitulosecciones);
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-60%);
  font-size: 22px;
}

.div-linea-iconn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  /*   right: 50px; */
  height: 6px;
  background-color: var(--colortitulosecciones);
  width: 65px;
}

.div-titulos-secciones {
  /* line-height: 0.2; */

  padding-top: 30px;
}

.titulos-secciones-first,
.titulos-secciones {
  color: var(--colortitulosecciones);
  font-size: 24px;
  font-weight: 600;
  margin-left: 200px;
  display: inline-block;
  margin-block-start: 0;
  margin-block-end: 10px;
}

/* .titulos-secciones-first {
  margin-top: 15px;
} */

.subtitulo-secciones-arrib {
  color: var(--colortitulosecciones);
  font-size: 18px;
  font-weight: 600;
  margin-left: 200px;
  /*   margin-top: 35px; */
  font-style: italic;
  width: max-content;
  animation: destacd 1s infinite;
  display: none;
}

.subtitulo-secciones-cost {
  display: inline-block;
  color: var(--colortitulosecciones);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  margin-left: 10px;
  /* width: max-content; */
  background-color: yellow;
  animation: destacd2 1s infinite;
}

@keyframes destacd {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.03);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes destacd2 {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.03);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 575px) {
  .div-titulos-secciones {
    padding-top: 20px;
  }
  .subtitulo-secciones-cost {
    display: none;
  }
  .subtitulo-secciones-arrib {
    display: block;
    background-color: yellow;
    margin-bottom: 0;
  }
}

@media (max-width: 359px) {
  .div-titulos-secciones {
    margin-bottom: 10px;
  }
}

/* bloque topes */

.container-topes {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  /* margin-left: 200px;
  margin-right: 200px; */
  margin-bottom: 80px;
}

.div-topes {
  display: flex;
  justify-content: space-around;
  margin: auto;
}

.div-img-topes {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 400px;
}

.background-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/topes-background.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(0.7px); /* Aplica el desenfoque solo al fondo */
}

.background-opacit {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(201, 201, 201);
  opacity: 0.5;
  width: 100%;
  height: 100%;
}

.div-img-topes p {
  z-index: 1;
  background-color: rgba(0, 0, 0, 1);
  color: white;
  font-size: 30px;
  font-weight: 600;
  padding: 7px;
  text-align: center;
  width: 200px;
  margin: 10px 0; /* Ajusta el margen superior e inferior */
}

.div-img-topes p a {
  color: white;
  display: inline-block;
  width: 100%;
}

@media (max-width: 575px) {
  .div-img-topes {
    width: 450px;
    height: 360px;
  }
}

@media (max-width: 525px) {
  .div-img-topes {
    width: 400px;
    height: 320px;
  }
}

@media (max-width: 490px) {
  .div-img-topes {
    width: 375px;
    height: 300px;
  }
}

@media (max-width: 455px) {
  .div-img-topes {
    width: 350px;
    height: 280px;
  }
}

@media (max-width: 430px) {
  .div-img-topes {
    width: 325px;
    height: 260px;
  }
}

@media (max-width: 400px) {
  .div-img-topes {
    width: 300px;
    height: 240px;
  }
  .div-img-topes p {
    font-size: 22px;
    width: 150px;
  }
}

@media (max-width: 370px) {
  .div-img-topes {
    width: 275px;
    height: 220px;
  }
}

@media (max-width: 325px) {
  .div-img-topes {
    width: 250px;
    height: 200px;
  }
}

/* bloque enlaces frecuentes */
/* .container-enlaces-frecuentes {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-left: 200px;
  margin-right: 200px;
  margin-bottom: 50px;
} */

/* .div-enlaces-frecuentes {
  display: flex;
  width: 940px;
  justify-content: space-around;
  margin: auto;
} */

/* .div-enlaces-frecuentes > div > a {
  align-self: center;
} */

/* .a-enlace-frec {
  display: inline-block;
  padding: 5px 5px 15px 5px;
  color: #000000;
} */

/* .a-enlace-frec i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  color: var(--colorplomotextos);
  background-color: var(--plomoclaro);
  font-size: 44px;
  border-radius: 60px;
  
} */

/* .enlace-frecuente .a-titulo-enlace {
  font-size: 18px;
  font-weight: 600;
  color: var(--colorplomotextos);
  text-decoration: underline;
} */

/* .enlace-frecuente {
  width: 160px;
  display: flex;
  flex-direction: column;
  text-align: center;
} */

/* .enlace-frecuente:hover {
  background-color: rgba(226, 226, 226, 0.5);
} */

/* .div-slider-boletin {
  align-self: center;
  width: 316px;
  height: 350px;
  display: flex;
  flex-direction: column;
  background-color: black;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
} */

/* .slider-container {
  display: flex;
  width: 300%;
  overflow: hidden;
  margin-left: -100%;
}
 */
/* .titulo-slider-bole {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
} */

/* .slide-bole {
  margin: auto;
  width: 95%;
  height: 95%;
  display: flex;
  margin-top: 5px;
} */

/* .slide-bole a {
  display: flex;
  margin: 0 auto;
  padding: 8px;
  text-align: center;
} */

/* .slide-bole img {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
} */

/* .prev-bole,
.next-bole {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  text-align: center;
  font-family: monospace;
}

.prev-bole {
  left: 0;
}

.next-bole {
  right: 0;
}

.prev-bole:hover,
.next-bole:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.div-enlaces-frecuentes
  .enlace-frecuente:nth-child(4)
  .a-titulo-enlace
  span:first-child {
  display: none;
} */

@media (max-width: 1650px) {
  .div-enlaces-frecuentes {
    width: 750px;
  }
  .div-slider-boletin {
    width: 300px;
  }
}
@media (max-width: 1500px) {
  .div-enlaces-frecuentes {
    width: 650px;
  }
  .div-slider-boletin {
    width: 260px;
    height: 320px;
  }
  .container-enlaces-frecuentes {
    margin-left: 180px;
    margin-right: 180px;
  }
  .titulos-secciones,
  .titulos-secciones-first,
  .subtitulo-secciones-arrib {
    margin-left: 160px;
  }

  .div-linea-iconn {
    margin-left: 160px;
  }
}
@media (max-width: 1300px) {
  .div-enlaces-frecuentes {
    width: 685px;
  }
  .div-slider-boletin {
    width: 215px;
    height: 290px;
  }
  .container-enlaces-frecuentes {
    margin-left: 90px;
    margin-right: 90px;
  }
  .enlace-frecuente .a-titulo-enlace {
    font-size: 16px;
  }
  .a-enlace-frec i {
    width: 100px;
    height: 100px;
    font-size: 38px;
    border-radius: 50px;
  }
  .titulos-secciones,
  .titulos-secciones-first,
  .subtitulo-secciones-arrib {
    margin-left: 110px;
  }
  .div-linea-iconn {
    margin-left: 110px;
  }
}
@media (max-width: 1100px) {
  .div-enlaces-frecuentes {
    width: 600px;
  }
  .div-slider-boletin {
    width: 200px;
    height: 260px;
  }
  .container-enlaces-frecuentes {
    margin-left: 50px;
    margin-right: 50px;
  }
  .titulos-secciones,
  .titulos-secciones-first,
  .subtitulo-secciones-arrib {
    margin-left: 80px;
  }
  .div-linea-iconn {
    margin-left: 80px;
  }
}
@media (max-width: 1000px) {
  .div-enlaces-frecuentes {
    width: 500px;
  }
  .div-slider-boletin {
    width: 175px;
    height: 245px;
  }
  .container-enlaces-frecuentes {
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 50px;
  }
  .enlace-frecuente .a-titulo-enlace {
    font-size: 13px;
  }
  .a-enlace-frec i {
    width: 80px;
    height: 80px;
    font-size: 33px;
    border-radius: 40px;
  }
  .titulos-secciones,
  .titulos-secciones-first,
  .subtitulo-secciones-arrib {
    margin-left: 50px;
  }
  .div-linea-iconn {
    margin-left: 50px;
  }
  .enlace-frecuente {
    width: 110px;
  }
}
@media (max-width: 760px) {
  .div-enlaces-frecuentes {
    flex-wrap: wrap;
    width: 350px;
  }
  .div-slider-boletin {
    width: 185px;
    height: 260px;
    align-self: start;
    margin-top: 5px;
  }
  .container-enlaces-frecuentes {
    margin-left: 20px;
    margin-right: 20px;
  }
  .titulos-secciones,
  .titulos-secciones-first,
  .subtitulo-secciones-arrib {
    margin-left: 40px;
  }
  .div-linea-iconn {
    margin-left: 40px;
  }
  .enlace-frecuente .a-titulo-enlace {
    font-size: 16px;
  }
  .a-enlace-frec i {
    width: 88px;
    height: 88px;
    font-size: 35px;
    border-radius: 44px;
  }
  .enlace-frecuente {
    margin-bottom: 20px;
    width: 130px;
  }
}
@media (max-width: 650px) {
  .div-enlaces-frecuentes {
    width: 400px;
    margin-bottom: 40px;
  }
  .div-slider-boletin {
    width: 260px;
    height: 315px;
    margin: auto;
  }
  .container-enlaces-frecuentes {
    flex-wrap: wrap;
    width: 400px;
    /*     margin: 50px auto; */
  }
  /*   .titulos-secciones{
    margin-top: 40px;
  } */
  .div-linea-iconn {
    margin-left: 40px;
  }
  .a-enlace-frec i {
    width: 77px;
    height: 77px;
    border-radius: 39px;
  }
  .enlace-frecuente {
    width: 200px;
  }
  .titulo-slider-bole {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .div-enlaces-frecuentes {
    width: 300px;
  }
  .div-slider-boletin {
    width: 260px;
    height: 315px;
  }
  .container-enlaces-frecuentes {
    width: 300px;
  }
  .enlace-frecuente {
    width: 150px;
  }
  .div-enlaces-frecuentes
    .enlace-frecuente:nth-child(4)
    .a-titulo-enlace
    span:first-child {
    display: block;
  }
  .div-enlaces-frecuentes
    .enlace-frecuente:nth-child(4)
    .a-titulo-enlace
    span:nth-child(2) {
    display: none;
  }
  .div-enlaces-frecuentes .enlace-frecuente:nth-child(2) .a-titulo-enlace span {
    display: none;
  }
}

@media (max-width: 350px) {
  .titulos-secciones,
  .titulos-secciones-first,
  .subtitulo-secciones-arrib {
    margin-left: 25px;
    margin-right: 10px;
  }
  .div-linea-iconn {
    margin-left: 25px;
  }
  .container-enlaces-frecuentes {
    width: 255px;
    /*    margin-right: 15px; */
  }
  .div-enlaces-frecuentes {
    width: 255px;
  }
  .enlace-frecuente {
    width: 120px;
  }
  .enlace-frecuente .a-titulo-enlace {
    font-size: 13.5px;
  }
}
@media (max-width: 300px) {
  .titulos-secciones,
  .titulos-secciones-first,
  .subtitulo-secciones-arrib {
    margin-left: 15px;
  }
  .div-linea-iconn {
    margin-left: 15px;
  }
  .container-enlaces-frecuentes {
    width: 260px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .div-enlaces-frecuentes {
    width: 260px;
  }
  .enlace-frecuente {
    width: 110px;
  }
  /*   .enlace-frecuente .a-titulo-enlace{
    font-size: 12px;
  } */
}

@media (max-width: 295px) {
  .div-titulo2 i {
    display: none;
  }
}

/* topcalcusflyer */

.container-calcus {
  background-color: var(--plomoclaro);
  padding-bottom: 20px;
}
.div-calcus {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  margin-left: 200px;
  margin-right: 200px;
  margin-bottom: 50px;
}
.calcu-lottie {
  width: 30%;
  padding-bottom: 20px;
  border: 2px dotted black;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.5);
}

.calcu-lottie:hover {
  border: 5px solid var(--colortitulosecciones);
  transform: scale(1.05);
}

.calcu-lottie a {
  margin: 0 auto;
}

.lottie-player {
  width: 300px;
  height: 300px;
  margin-top: -20px;
}

.calcu-lottie .a-titulo-calcu {
  color: black;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  width: 250px;
  margin-top: -20px;
}

.a-titulo-calcu span {
  font-size: 22px;
  font-weight: 900;
  /*   color: var(--colortitulosecciones); */
}

.calcu-lottie a:nth-child(3) {
  display: none;
}

.container-div-calcus {
  display: block;
}

@media (max-width: 1500px) {
  .div-calcus {
    margin-left: 160px;
    margin-right: 160px;
  }
}
@media (max-width: 1450px) {
  .lottie-player {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1300px) {
  .calcu-lottie .a-titulo-calcu {
    font-size: 20px;
    width: 200px;
  }
  .a-titulo-calcu span {
    font-size: 20px;
  }
  .div-calcus {
    margin-left: 110px;
    margin-right: 110px;
  }
}
@media (max-width: 1150px) {
  .calcu-lottie .a-titulo-calcu {
    font-size: 18px;
  }
  .a-titulo-calcu span {
    font-size: 18px;
  }
  /*     .div-calcus{
      margin-left: 80px;
      margin-right: 80px;
    } */
}
@media (max-width: 1000px) {
  .div-calcus {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 760px) {
  .lottie-player {
    width: 150px;
    height: 150px;
  }
  .calcu-lottie .a-titulo-calcu {
    font-size: 15px;
    width: 150px;
  }
  .a-titulo-calcu span {
    font-size: 15px;
  }
  .div-calcus {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 650px) {
  .container-div-calcus {
    display: flex;
  }
  .div-calcus {
    display: grid;
    gap: 1.5em;
    margin: 40px auto 20px;
    /*             margin-left: 80px;
            margin-right: 40px; */
  }
  .calcu-lottie {
    width: 390px;
    /*             height: 150px; */
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 0;
    margin: 0;
    border-left: 15px solid var(--colorplomotextos);
  }
  .calcu-lottie a:first-child {
    /*             width: 35%;
            align-self: center; */
    display: none;
  }
  /*           .lottie-player {
            width: 140px;
            height:140px;
            margin-top: 0;
          } */
  .lottie-player-2 {
    width: 140px;
    height: 140px;
    margin-top: 0;
  }
  .calcu-lottie a:nth-child(3) {
    display: block;
  }
  .calcu-lottie .a-titulo-calcu {
    font-size: 22px;
    width: 60%;
    text-align: left;
    align-self: center;
    margin-top: 0;
    padding-left: 20px;
  }
  .a-titulo-calcu span {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  /*             .div-calcus{
              margin-left: 55px;
              margin-right: 20px;
            } */
  .calcu-lottie {
    width: 350px;
  }
  /*             .lottie-player {
              width: 120px;
              height:120px;
            } */
  .lottie-player-2 {
    width: 120px;
    height: 120px;
  }
  .calcu-lottie .a-titulo-calcu {
    font-size: 20px;
  }
  .a-titulo-calcu span {
    font-size: 20px;
  }
  /*   .div-titulos-secciones {
    padding-top: 20px;
  } */
}
@media (max-width: 430px) {
  /*     .div-calcus{
      margin-left: 45px;
      margin-right: 10px;
    } */
  .calcu-lottie {
    width: 280px;
  }
  /*     .lottie-player {
      width: 100px;
      height:100px;
    } */
  .lottie-player-2 {
    width: 100px;
    height: 100px;
  }
  .calcu-lottie .a-titulo-calcu {
    font-size: 16.5px;
    width: 70%;
  }
  .a-titulo-calcu span {
    font-size: 16.5px;
  }
  .titulos-secciones span {
    display: none;
  }
}

@media (max-width: 355px) {
  /*   .div-calcus{
    margin-left: 40px;
    margin-right: 5px;
  } */
  .calcu-lottie {
    width: 235px;
  }
  /*   .lottie-player {
    width: 75px;
    height:75px;
  } */
  .lottie-player-2 {
    width: 75px;
    height: 75px;
  }
  .calcu-lottie .a-titulo-calcu {
    font-size: 14.5px;
  }
  .a-titulo-calcu span {
    font-size: 14.5px;
  }
  /*   .calcu-lottie a:first-child{
    width: 30%;
  } */
}

/* secc servs */
.container-servs {
  background-color: white;
  padding-bottom: 20px;
}
.div-servs {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  margin-left: 200px;
  margin-right: 200px;
  margin-bottom: 50px;
}
.servs {
  width: 48%;
  padding-bottom: 30px;
  padding-top: 10px;
  border: 2px solid rgb(100, 100, 100, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.servs #destacada-wrap-circle,
.servs .div-titulo-underline {
  font-size: 28px;
  font-weight: bold;
}

.div-titulo-underline {
  align-self: center;
}

.parrafo-servs {
  font-size: 25px;
  font-weight: 400;
  margin: 20px 50px;
}

.div-button-servs {
  display: flex;
  padding-top: 20px;
}

.button-servs {
  background-color: #000000;
  padding: 15px 40px;
  border-radius: 4px;
}

.div-button-servs a {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: auto;
}

/* .a-button-servs:hover .span-button-servs{
  font-size: 20px;
} */

.a-button-servs:hover {
  font-size: 20px;
  border-radius: 4px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

/* palabra destacada con tipo circulo alrededor */
#destacada-wrap-circle {
  align-self: center;
  /*   margin-block-start: 0.5em;
  margin-block-end: 0.5em; */
}

.highlighted {
  position: relative;
  /*   padding: 5px; */
}

.highlighted svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 200%;
  width: 110%;
  margin-top: -15px;
  margin-left: -10px;
  /*   z-index: -1; */
}

.highlighted svg path {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}

/* palabra destacada con doble underline */
.underline-container {
  position: relative;
  display: inline-block;
}

.underline-text {
  position: relative;
  z-index: 1;
}

.underline {
  position: absolute;
  width: 100%;
  height: 34px;
  z-index: 0;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: underline 2s ease-in-out infinite;
}

.underline-top {
  top: 5px;
}

.underline-bottom {
  bottom: 0;
}

@keyframes underline {
  0% {
    stroke-dashoffset: 200;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -200;
  }
}

.underline1,
.underline2 {
  display: inline-block;
}

@media (max-width: 1500px) {
  .div-servs {
    margin-left: 160px;
    margin-right: 160px;
  }
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 26px;
  }
  .parrafo-servs {
    font-size: 23px;
    margin: 20px 30px;
  }
}

/* @media (max-width:1320px){
  .div-servs{
    margin-left: 160px;
    margin-right: 160px;
  }
} */

@media (max-width: 1300px) {
  .div-servs {
    margin-left: 110px;
    margin-right: 110px;
  }
}

@media (max-width: 1150px) {
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 24px;
  }
  .parrafo-servs {
    font-size: 21px;
    /*   margin: 8px 30px; */
  }
  /*   .highlighted svg {
    height: 180%;
    margin-top: -10px;
    margin-left: -5px;
  }
  .underline {
    height: 25px;
  } */

  /*   .div-servs{
    margin-left: 80px;
    margin-right: 80px;
  } */

  .highlighted svg {
    margin-left: -7px;
  }
}

@media (max-width: 1100px) {
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 21px;
  }
  .parrafo-servs {
    font-size: 18px;
  }
  .div-servs {
    margin-left: 80px;
    margin-right: 80px;
  }
  .underline {
    height: 25px;
  }
  .highlighted svg {
    margin-top: -12px;
  }
}

@media (max-width: 1000px) {
  .div-servs {
    margin-left: 50px;
    margin-right: 50px;
  }
  .highlighted svg {
    /*   height: 165%; */
    margin-top: -12px;
    /*   margin-left: -7px; */
  }
}

@media (max-width: 815px) {
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 20px;
  }
  .parrafo-servs {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .div-servs {
    margin-left: 40px;
    margin-right: 40px;
  }

  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 18px;
  }
  .parrafo-servs {
    font-size: 16px;
  }
  .button-servs {
    padding: 10px 30px;
  }
  .div-button-servs a {
    font-size: 16px;
  }
  .a-button-servs:hover {
    font-size: 18px;
  }
  .servs {
    padding-bottom: 20px;
  }
  .highlighted svg {
    /*     height: 180%; */
    margin-top: -10px;
    margin-left: -5px;
  }
  .underline {
    height: 20px;
  }
  /*   .servs{
    width: 49%;
  } */
}

@media (max-width: 650px) {
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 16px;
  }
  .parrafo-servs {
    font-size: 15px;
  }
  .highlighted svg {
    /*     margin-top: -7px; */
  }
  .underline {
    height: 20px;
  }
}

@media (max-width: 600px) {
  .div-servs {
    display: grid;
    gap: 2em;
  }
  .servs {
    width: 100%;
  }
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 26px;
  }
  .parrafo-servs {
    font-size: 23px;
    margin: 10px 30px;
    text-align: center;
  }
  .highlighted svg {
    /*     height: 200%; */
    margin-top: -15px;
    margin-left: -10px;
  }
  #destacada-wrap-circle {
    margin-block-end: 0.5em;
  }
  .button-servs {
    padding: 15px 40px;
  }
  .div-button-servs a {
    font-size: 18px;
  }
  .a-button-servs:hover {
    font-size: 20px;
  }
  .underline {
    height: 34px;
  }
}

@media (max-width: 500px) {
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 20px;
  }
  .parrafo-servs {
    font-size: 18px;
  }
  .highlighted svg {
    /*     height: 180%; */
    margin-top: -12px;
    margin-left: -6px;
  }
  .underline {
    height: 25px;
  }
}

@media (max-width: 430px) {
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 22px;
    line-height: 1.4;
  }
  .servs #destacada-wrap-circle,
  .underline1 {
    text-align: center;
  }
  .parrafo-servs {
    font-size: 18px;
  }
  .button-servs {
    padding: 10px 30px;
  }
  .div-button-servs a {
    font-size: 16px;
  }
  .a-button-servs:hover {
    font-size: 18px;
  }
  #destacada-wrap-circle span {
    display: block;
  }
  .underline1,
  .underline2 {
    display: block;
  }
  .underline1 {
    margin-top: 10px;
  }
  .underline2 {
    margin-top: -20px;
  }
  .highlighted svg {
    height: 130%;
    width: 115%;
    margin-top: -6px;
    margin-left: -10px;
  }
  .underline {
    height: 35px;
  }
}

@media (max-width: 350px) {
  .servs #destacada-wrap-circle,
  .servs .div-titulo-underline {
    font-size: 18px;
  }
  .parrafo-servs {
    font-size: 16px;
  }
  .button-servs {
    padding: 10px 30px;
  }
  .div-button-servs a {
    font-size: 16px;
  }
  .a-button-servs:hover {
    font-size: 18px;
  }
  .highlighted svg {
    margin-top: -5px;
  }
  .underline {
    height: 28px;
  }
}

@media (max-width: 300px) {
  .button-servs {
    padding: 10px 20px;
  }
  .div-button-servs a {
    font-size: 14px;
  }
  .a-button-servs:hover {
    font-size: 16px;
  }
}

/* seccion pestañas tab */

.container-tablist-proced {
  background-color:/* white;*/ var(--plomoclaro);
  /* padding-bottom: 50px; */
  padding-bottom: 200px;
}

.div-tablist {
  margin: 0 auto;
  margin-top: 40px;
  margin-left: 200px;
  margin-right: 200px;
  margin-bottom: 50px;
}

.container-tabcitos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.custom-tabs {
  display: flex;
  /*   flex-wrap: wrap; */
  flex-wrap: nowrap;
  overflow-x: auto;
}

.custom-tab {
  cursor: pointer;
  padding: 10px;
  /*   border: 1px solid #ccc; */
  margin: 5px 5px 0 5px;
  border-radius: 5px 5px 0 0;
  /* background-color: rgba(255, 221, 193, 0.95); */
  background-color: rgba(250, 194, 148, 0.95);
  transition: background-color 0.3s;
  height: 90px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  white-space: normal;
  justify-content: space-between;
}

.custom-tab.active {
  background-color: var(--plomomasclaro);
  font-weight: bold;
}

.custom-content-container {
  display: flex;
  flex-wrap: wrap;
  /*   width: 100%; */
}

.custom-content {
  display: none;
  width: 100%;
  padding: 30px 40px;
  /*   border: 1px solid #ccc; */
  margin: 0 5px;
  border-radius: 0 0 5px 5px;
}

.custom-content.active {
  background-color: var(--plomomasclaro);
}

.custom-tab:hover {
  border-top: 3px solid var(--colortitulosecciones);
  border-left: 3px solid var(--colortitulosecciones);
  border-right: 3px solid var(--colortitulosecciones);
}

.custom-tab.active:hover {
  border: 0;
}

.custom-content p span {
  font-weight: bold;
}

.ul-tipo-proced {
  padding-left: 25px;
}

.ul-tipo-proced li {
  line-height: 1.8;
  margin-left: 20px;
  margin-bottom: 15px;
}

.ul-tipo-proced li span:first-child {
  font-weight: bold;
}

sup {
  font-size: 0.67em;
  vertical-align: super;
  top: 0;
}

.custom-content a {
  text-decoration: underline;
  color: blue;
  display: inline-block;
  margin-right: 40px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.custom-content p:nth-child(3),
.custom-content p:nth-child(4) {
  font-style: italic;
}

.custom-content p:nth-child(3) {
  margin-top: 20px;
}

.custom-tab .arrow {
  display: none;
}

@media (max-width: 1500px) {
  .div-tablist {
    margin-left: 160px;
    margin-right: 160px;
  }
}

@media (max-width: 1300px) {
  .div-tablist {
    margin-left: 110px;
    margin-right: 110px;
  }
}

@media (max-width: 1100px) {
  .div-tablist {
    margin-left: 80px;
    margin-right: 80px;
  }
}

@media (max-width: 1000px) {
  .div-tablist {
    margin-left: 50px;
    margin-right: 50px;
  }
  .custom-content a {
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
    margin-right: 0;
  }
  .custom-content p:nth-child(4) {
    margin-bottom: 60px;
  }
  .custom-tabs {
    flex-wrap: wrap;
    overflow-x: hidden;
  }

  .custom-tab.active {
    /* background-color: rgba(255, 221, 193, 0.95); */
    background-color: rgba(250, 194, 148, 0.95);
    font-weight: normal;
  }

  .custom-tab {
    flex: 0 0 100%;
    height: 60px;
    border-radius: 5px 5px 5px 5px;
  }

  .custom-content {
    flex: 0 0 100%;
  }

  .custom-tab .arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    transition: transform 0.3s;
  }

  .custom-tab.active .arrow {
    transform: rotateX(180deg);
  }
}

@media (max-width: 760px) {
  .div-tablist {
    margin-left: 30px;
    margin-right: 20px;
  }
  .ul-tipo-proced li {
    line-height: 1;
    margin-left: 0;
  }
}

@media (max-width: 555px) {
  .ul-tipo-proced {
    padding-left: 25px;
  }
}

@media (max-width: 385px) {
  .ul-tipo-proced {
    padding-left: 20px;
  }
}

@media (max-width: 359px) {
  /*   .titulos-secciones,
  .subtitulo-secciones-arrib {
    margin-right: 40px;
  } */
  /*   .div-titulos-secciones {
    line-height: 1;
  } */
  .iconn {
    transform: translateY(-90%);
  }

  .div-linea-iconn::before {
    top: -15px;
  }
}

@media (max-width: 350px) {
  .div-tablist {
    margin-left: 20px;
  }
}

@media (max-width: 317px) {
  .palabralarga {
    display: none;
  }
}

@media (max-width: 300px) {
  .div-tablist {
    margin-left: 15px;
    margin-right: 15px;
  }
  .palabralarga {
    display: block;
  }
}

/* seccion Normativa -------------------------*/

.container-normativa {
  padding-bottom: 80px;
}

.div-normas {
  display: flex;
  justify-content: center;
  /*  margin-top: 60px; */
}

.div-normas p {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 100px;
  font-size: 25px;
  font-weight: 600;
  border-radius: 65px;
  border: 3px solid rgb(255, 91, 21);
  color: rgb(255, 91, 21);
  margin: 40px;
}

.div-normas p:hover {
  color: white;
  background-color: rgb(255, 91, 21);
}

@media (max-width: 966px) {
  .div-normas p {
    padding-right: 80px;
  }
}
@media (max-width: 926px) {
  .div-normas p {
    padding: 35px 70px;
    border-radius: 60px;
    margin: 25px;
  }
}
@media (max-width: 786px) {
  .div-normas p {
    padding: 30px 60px;
    border-radius: 55px;
  }
}
@media (max-width: 746px) {
  .div-normas p {
    padding: 25px 45px;
    border-radius: 50px;
    margin: 25px;
  }
}
@media (max-width: 686px) {
  .div-normativa {
    display: flex;
    justify-content: center;
  }
  .div-normas {
    flex-direction: column;
    width: 500px;
    /* margin-top: 40px; */
  }
  .div-normas p {
    padding: 40px 50px;
    border-radius: 65px;
    margin: 30px;
  }
}

@media (max-width: 525px) {
  .container-normativa {
    padding-bottom: 60px;
  }
  .div-normas {
    width: 420px;
    margin-top: 20px;
  }
  .div-normas p {
    padding: 30px 30px;
    border-radius: 55px;
    margin: 20px;
  }
}

@media (max-width: 475px) {
  .div-normas {
    width: 350px;
  }
  .div-normas p {
    padding: 28px 30px;
    font-size: 22px;
  }
}

@media (max-width: 405px) {
  .div-normas {
    width: 300px;
  }
  .div-normas p {
    padding: 25px 25px;
  }
}

@media (max-width: 305px) {
  .div-normas {
    width: 280px;
  }
  .div-normas p {
    padding: 20px 20px;
  }
}

@media (max-width: 280px) {
  .div-normas {
    width: 260px;
  }
  .div-normas p {
    padding: 15px 15px;
  }
}

/* seccion slider licitaciones -------------------------*/

.container-lics {
  /* padding-bottom: 200px; */
  padding-bottom: 50px;
  background-color: var(--plomoclaro);
}

.div-slider-licbanners {
  margin-left: 200px;
  margin-right: 200px;
  margin-top: 40px;
  /*   padding-left: 20px;
  padding-right: 20px; */
  overflow: hidden;
  position: relative;
  /* width: calc(100vw - 400px - 40px); */
  width: calc(100vw - 400px - 15px); /* Los 15px creo por scroll en Y */
}

.slider-container-lics {
  display: flex;
  width: 199.99%; /* cambiar aqui si son mas imagenes */
  overflow: hidden;
  margin-left: -33.33%;
}

/* .slide-tipbanner {
  margin: auto;
  width: 33.33%;
  display: flex;
} */

.slide-licbanner {
  margin: auto;
  width: 33.33%;
  /* width: calc(100% / 3 - 20px); */
  /*   box-sizing: border-box;
  padding: 10px;  */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .slide-licbanner a {
  display: flex;
  margin: 0 auto;

  text-align: center;
} */

.slide-licbanner .contenido-lic {
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  /* width: 100%; */
  min-width: 250px;
  max-width: 300px;
  height: 300px; /* Altura fija */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  transition: transform 0.3s, background-color 0.3s;
}

.slide-licbanner .contenido-lic:hover {
  transform: scale(1.05);
  background-color: #bebebe;
}

.slide-licbanner .contenido-lic p:first-of-type {
  margin-bottom: 5px;
  font-size: 1em;
}

.slide-licbanner .contenido-lic p:first-of-type span {
  background-color: yellow;
  padding: 5px;
}

.slide-licbanner .contenido-lic p:nth-of-type(2) {
  font-size: 0.95em;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.slide-licbanner .ver-mas-slide {
  /* display: flex; */
  justify-content: space-around;
  align-items: center;
  min-width: 250px;
  max-width: 300px;
  height: 300px;
}

.btn-ver-mas {
  display: inline-block;
  padding: 20px 40px;
  background-color: var(--colornav);
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

/* .btn-ver-mas {
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} */

.btn-ver-mas:hover {
  background-color: #a10101;
  transform: scale(1.05);
}

.prev-lic,
.next-lic {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  text-align: center;
  font-family: monospace;
}

.prev-lic {
  left: 0;
}

.next-lic {
  right: 0;
}

.prev-lic:hover,
.next-lic:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1500px) {
  .div-slider-licbanners {
    margin-left: 160px;
    margin-right: 160px;
    /* width: calc(100vw - 320px); */
    /* width: calc(100vw - 320px - 40px); */
    width: calc(100vw - 320px - 15px);
  }
}

@media (max-width: 1300px) {
  .div-slider-licbanners {
    margin-left: 110px;
    margin-right: 110px;
    /* width: calc(100vw - 220px); */
    /* width: calc(100vw - 220px - 40px); */
    width: calc(100vw - 220px - 15px);
  }
}

@media (max-width: 1100px) {
  .div-slider-licbanners {
    margin-left: 80px;
    margin-right: 80px;
    /* width: calc(100vw - 160px); */
    /* width: calc(100vw - 160px - 40px); */
    width: calc(100vw - 160px - 15px);
  }
}

@media (max-width: 1000px) {
  .div-slider-licbanners {
    margin-left: 50px;
    margin-right: 50px;
    /* width: calc(100vw - 100px); */
    /* width: calc(100vw - 100px - 40px); */
    width: calc(100vw - 100px - 15px);
  }
  .slider-container-lics {
    width: 300%; /* cambiar aqui si son mas imagenes */
    margin-left: -50%;
  }
  .slide-licbanner {
    width: 50%;
    /*   height: 100%; */
  }
}

@media (max-width: 760px) {
  .div-slider-licbanners {
    margin-left: 40px;
    margin-right: 40px;
    /* width: calc(100vw - 80px); */
    /* width: calc(100vw - 80px - 40px); */
    width: calc(100vw - 80px - 15px);
  }
}

@media (max-width: 650px) {
  .div-slider-licbanners {
    margin-left: 70px;
    margin-right: 70px;
    /* width: calc(100vw - 140px); */
    /* width: calc(100vw - 140px - 40px); */
    width: calc(100vw - 140px - 15px);
  }
  .slider-container-lics {
    width: 600%; /* cambiar aqui si son mas imagenes */
    margin-left: -100%;
  }
  .slide-licbanner {
    width: 100%;
    /*   height: 100%; */
  }
}

@media (max-width: 500px) {
  .div-slider-licbanners {
    margin-left: 40px;
    margin-right: 40px;
    /* width: calc(100vw - 80px); */
    /* width: calc(100vw - 80px - 40px); */
    width: calc(100vw - 80px);
  }
}
@media (max-width: 400px) {
  .div-slider-licbanners {
    margin-left: 10px;
    margin-right: 10px;
    /*     padding-left: 10px;
    padding-right: 10px; */
    /* width: calc(100vw - 50px); */
    /* width: calc(100vw - 50px - 40px); */
    width: calc(100vw - 40px);
  }
  /*   .slide-licbanner a {
    padding: 10px;
  } */
}

@media (max-width: 305px) {
  .slide-licbanner .contenido-lic p:first-of-type span {
    line-height: 1.5;
  }
}
