@charset "UTF-8";
:root {
  --blanco: #ffffff;
  --aqua: #33cccc;
  --azul: #20295c;
  --gris: #5b5b5b;
  --negro: #202020;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("opentype");
  font-weight: 600;
}
html,
body {
  font-family: Open sans, "Poppins", sans-serif;
  font-size: 20px;
  color: var(--black);
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

.text-aqua {
  color: var(--aqua) !important;
}

.text-gris {
  color: var(--gris) !important;
}

.text-azul {
  color: var(--azul) !important;
}

.d-pad {
  padding: 70px 8%;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 30px;
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.btn-cta {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  background-color: transparent;
  border: 2px solid var(--azul);
  color: var(--azul);
  text-transform: uppercase;
  font-weight: 700;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}
.popup .popup-content {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  max-width: 100%;
  max-height: 100%;
}
.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  background-color: var(--aqua);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1010;
}
.popup .popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 574px) and (min-width: 0px) {
  .popup {
    width: auto;
  }
  .popup .popup-content {
    max-width: 90%;
  }
}

.body-gracias {
  background-color: var(--azul);
}

/* Estilo para el contenedor de la imagen ampliada */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7); /* Fondo negro con 70% de opacidad */
}
/* Estilo para la imagen ampliada */
.modal img {
  width: 41%;
  height: auto;
  margin-left: 31%;
  margin-top: 8%;
}
@media (max-width: 1400px) and (min-width: 575px) {
  .modal img {
    width: 43%;
    height: auto;
    margin-left: 31%;
    margin-top: 13%;
  }
}
@media (max-width: 574px) and (min-width: 0px) {
  .modal img {
    width: 70%;
    margin-left: 13%;
    margin-top: 52%;
  }
}

/* Estilo para cerrar la imagen */
.close {
  position: absolute;
  top: 2%;
  right: 22%;
  color: #fff;
  cursor: pointer;
  font-size: 115px;
}
@media (max-width: 1400px) and (min-width: 575px) {
  .close {
    top: 12%;
    right: 21%;
    font-size: 87px;
  }
}
@media (max-width: 574px) and (min-width: 0px) {
  .close {
    top: 18%;
    right: 3%;
    font-size: 87px;
  }
}

.mobile-item {
  display: none;
}

.line {
  margin: 2% 0%;
  border: 2px solid var(--aqua);
  width: 8%;
  left: 47%;
  position: relative;
}

.cintilla {
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, var(--aqua)), color-stop(35%, var(--azul)));
  background: linear-gradient(to right, var(--aqua) 35%, var(--azul) 35%);
}
.cintilla p {
  margin: 0px;
}
.cintilla .tel a {
  color: var(--azul);
  font-weight: 700;
}
.cintilla a {
  text-decoration: none;
  color: var(--aqua);
}
.cintilla .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cintilla .box .left .tel {
  font-size: 16px;
}
.cintilla .box .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cintilla .box .right .servicios {
  font-size: 16px;
}
.cintillaMobile .tel {
  background-color: var(--aqua);
  margin: 0;
  padding: 2% 8%;
  text-align: center;
  font-size: 16px;
}
.cintillaMobile .tel a {
  text-decoration: none;
  font-weight: 700;
  color: var(--azul);
}
.cintillaMobile .box {
  background-color: var(--azul);
  padding: 2% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cintillaMobile .box a {
  font-size: 15px;
  margin: 0;
  text-decoration: none;
  color: var(--aqua);
}

.navbar {
  padding: 5px 8.8%;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .logo {
  width: 140px;
}
.navbar .btn-cta {
  width: 18%;
  font-size: 16px;
  padding: 12px;
}
.navbar .nav-link {
  font-size: 16px;
  padding: 7px 0px !important;
  margin: 0 9px;
  color: var(--azul) !important;
}
.navbar .nav-link.active {
  font-weight: 700;
}
@media (max-width: 500px) and (min-width: 0px) {
  .navbar {
    padding: 18px 5%;
  }
  .navbar .logo {
    width: 70px;
  }
  .navbar .btn-cta {
    padding: 9px 10px;
    font-size: 15px;
  }
}

.footer {
  background-image: url("../img/redesign/coberlum-footer.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.footer .btn-cta {
  border-color: white;
  color: white;
  width: 35%;
}
.footer form {
  padding: 0 15%;
}
.footer form .form-control {
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  border-radius: 8px !important;
}
.footer a {
  text-decoration: none;
}
@media (max-width: 574px) and (min-width: 0px) {
  .footer .tienes {
    font-size: 20px;
  }
  .footer .estamos {
    font-size: 35px;
  }
  .footer .line {
    width: 25%;
    left: 40%;
  }
  .footer .btn-cta {
    width: 100%;
    margin-bottom: 15%;
  }
  .footer .informacion {
    font-size: 18px;
    text-align: center;
  }
  .footer .servicio {
    font-size: 17px;
    text-align: center;
  }
  .footer .iconos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.copyright {
  background-color: var(--grey);
  padding: 15px 8%;
  position: relative;
}
.copyright img {
  position: absolute;
  bottom: 0%;
  right: 10%;
  background-color: white;
  border: 1px solid var(--azul);
  padding: 1%;
}
.copyright .fs-16 {
  font-size: 14px;
  margin: 0px;
}
.copyright .custom {
  margin-right: 15%;
}
.copyright a {
  color: var(--black);
  text-decoration: none;
}
@media (max-width: 574px) and (min-width: 0px) {
  .copyright img {
    position: relative;
    left: 34%;
    margin-bottom: 4%;
    margin-top: -18%;
    padding: 5%;
  }
  .copyright p {
    font-size: 13px !important;
    text-align: center;
  }
  .copyright .custom {
    font-size: 14px;
    text-align: center;
    margin-right: 0;
    margin-top: 4%;
    margin-bottom: 4%;
  }
}

.home {
  /* Estilo para el fondo oscurecido */
}
.home .sec1 {
  margin-bottom: -23%;
}
.home .sec1 #videoFondo {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  /* Coloca el video detrás del contenido */
}
.home .sec1 .contenido {
  position: relative;
  top: -50%;
  padding: 0% 8%;
  text-align: start;
}
.home .sec1 .contenido .belleza {
  color: var(--gris);
  font-size: 18px;
}
.home .sec1 .contenido .unico {
  color: var(--azul);
  font-size: 35px;
}
.home .sec1 .contenido .eleva {
  color: var(--negro);
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 574px) and (min-width: 0px) {
  .home .sec1 {
    margin-bottom: 0%;
    background-color: var(--grey);
    background-size: cover;
  }
  .home .sec1 .contenido {
    position: relative;
    top: -71%;
    padding: 0% 8%;
    text-align: start;
  }
  .home .sec1 .contenido .belleza {
    color: var(--gris);
    font-size: 18px;
  }
  .home .sec1 .contenido .unico {
    color: var(--azul);
    font-size: 35px;
  }
  .home .sec1 .contenido .eleva {
    color: var(--negro);
    font-size: 28px;
    font-weight: 500;
  }
  .home .sec1 .top-50 {
    top: 18% !important;
  }
  .home .sec1 .logo {
    width: 18%;
    margin-bottom: 19%;
  }
  .home .sec1 .btn-cta {
    width: 100%;
    height: 40px;
    font-size: 16px;
  }
  .home .sec1 .belleza {
    font-size: 15px !important;
    text-align: center;
  }
  .home .sec1 h1 {
    text-align: center;
    font-size: 25px;
  }
  .home .sec1 .eleva {
    font-size: 18px !important;
    text-align: center;
    font-weight: 700 !important;
  }
  .home .sec1 #videoFondo {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
  }
  .home .sec1 .top-50 {
    top: 13% !important;
  }
}
.home .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.home .sec2 {
  padding: 10% 0% 6%;
  background-image: url("../img/redesign/fondo-paneles.webp");
  background-size: cover;
}
.home .sec2 .carousel-control-next, .home .sec2 .carousel-control-prev {
  width: 6%;
}
.home .sec2 .carousel-control-next {
  right: -100px;
  /* overflow-x: auto; */
}
.home .sec2 .carousel-control-prev {
  left: -100px;
  /* overflow-x: auto; */
}
.home .sec2 h2 {
  font-size: 35px;
}
.home .sec2 .encob {
  font-size: 18px;
}
.home .sec2 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 3%;
}
.home .sec2 .grid .item {
  background-color: white;
}
.home .sec2 .grid .box {
  background-color: var(--blanco);
  padding: 5%;
  min-height: 150px;
}
.home .sec2 .grid .box h4, .home .sec2 .grid .box p {
  margin: 0;
}
.home .sec2 .grid .box h4 {
  color: var(--azul);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5%;
}
.home .sec2 .grid .box p {
  font-size: 17px;
}
.home .sec2 .grid img {
  width: 100%;
  cursor: pointer;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.home .sec2 .btn-cta {
  padding: 13px 2px;
  width: 40%;
  color: white;
  border-color: white;
  font-size: 16px !important;
}
@media (max-width: 574px) and (min-width: 0px) {
  .home .sec2 h2 {
    font-size: 25px;
  }
  .home .sec2 .line {
    width: 30%;
    left: 34%;
  }
  .home .sec2 .carousel-control-next {
    right: 0px;
    /* overflow-x: auto; */
  }
  .home .sec2 .carousel-control-prev {
    left: 0px;
    /* overflow-x: auto; */
  }
  .home .sec2 .grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .home .sec2 .grid .item {
    padding: 0% 17%;
  }
  .home .sec2 .encob {
    font-size: 16px;
  }
  .home .sec2 .btn-cta {
    width: 100%;
  }
}
.home .sec3 {
  background-color: #DCDDE0;
}
.home .sec3 .conoce {
  font-size: 18px;
  color: var(--gris);
  margin: 0px;
}
.home .sec3 .panel {
  font-size: 38px;
  color: var(--azul);
}
.home .sec3 .encob {
  font-size: 16px;
  margin-bottom: 5%;
}
.home .sec3 h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--azul);
}
.home .sec3 .box {
  border-left: 4px solid var(--aqua);
  padding-left: 5%;
}
.home .sec3 .box p {
  font-size: 17px;
}
.home .sec3 .glide {
  text-align: start;
  margin-bottom: 5%;
}
.home .sec3 .glide .glide__arrow {
  top: 93%;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
}
.home .sec3 .glide .glide__arrow--right {
  right: 35%;
}
.home .sec3 .glide .glide__arrow--left {
  left: 54%;
}
.home .sec3 .btn-cta {
  width: 30%;
}
@media (max-width: 574px) and (min-width: 0px) {
  .home .sec3 .panel {
    font-size: 35px;
  }
  .home .sec3 .encob {
    font-size: 15px;
  }
  .home .sec3 .glide img {
    margin-bottom: 5%;
  }
  .home .sec3 .glide h3 {
    text-align: center;
  }
  .home .sec3 .glide p {
    font-size: 15px;
  }
  .home .sec3 .glide .glide__arrow {
    top: 107%;
  }
  .home .sec3 .glide .glide__arrow--right {
    right: 35%;
  }
  .home .sec3 .glide .glide__arrow--left {
    left: 35%;
  }
  .home .sec3 .btn-cta {
    margin-top: 15%;
    width: 100%;
  }
}
.home .sec4 .row {
  margin: 0;
  padding: 0;
}
.home .sec4 .left {
  background-color: var(--azul);
  padding: 7% 3% 7% 11%;
}
.home .sec4 .bg-custom {
  background-image: url("../img/redesign/R2_Full_WhiteOK_USAR EN DICIEMBRE.png");
  background-color: var(--blanco);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.home .sec4 .line {
  width: 20%;
  left: 0%;
  margin: 5% 0%;
}
.home .sec4 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
}
.home .sec4 .box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--aqua);
}
.home .sec4 .box p {
  font-size: 13px;
  color: var(--blanco);
}
@media (max-width: 574px) and (min-width: 0px) {
  .home .sec4 .compromiso {
    text-align: center;
  }
  .home .sec4 .calidad {
    text-align: center;
  }
  .home .sec4 .line {
    margin-left: 39%;
  }
  .home .sec4 .left {
    padding: 7% 3% 7% 4%;
  }
}
.home .sec5 {
  background-image: url("../img/redesign/fondo-paneles-accion.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.home .sec5 h2 {
  font-size: 35px;
}
.home .sec5 .encob {
  font-size: 18px;
}
.home .sec5 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 5%;
}
.home .sec5 .grid .box {
  background-color: var(--blanco);
  padding: 1% 5%;
  min-height: 190px;
}
.home .sec5 .grid .box h3, .home .sec5 .grid .box p {
  margin: 0;
}
.home .sec5 .grid .box h3 {
  color: var(--azul);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5%;
}
.home .sec5 .grid .box p {
  font-size: 15px;
}
.home .sec5 .grid img {
  width: 100%;
}
.home .sec5 .grid .item:hover {
  -webkit-box-shadow: 0px 0px 8px 1px grey;
          box-shadow: 0px 0px 8px 1px grey;
  -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
}
.home .sec5 .btn-cta {
  width: 35%;
  font-size: 16px;
  padding: 12px 20px;
}
@media (max-width: 574px) and (min-width: 0px) {
  .home .sec5 h2 {
    font-size: 30px;
  }
  .home .sec5 .line {
    width: 20%;
    left: 41%;
  }
  .home .sec5 .grid {
    padding: 0% 8%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .home .sec5 .btn-cta {
    width: 100%;
  }
}
.home .sec6 .accordion .accordion-button.collapsed::after {
  background: url("../img/redesign/icono-mas.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.home .sec6 .accordion .accordion-button::after {
  background-position: center !important;
  background-size: contain !important;
  background: url("../img/redesign/icono-menos.webp");
  background-repeat: no-repeat;
}
.home .sec6 .accordion .accordion-button:not(.collapsed) {
  color: var(--blanco);
  background-color: var(--azul);
  -webkit-box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
          box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.home .sec6 .accordion .accordion-button:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.home .sec6 .accordion .accordion-item:first-of-type {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.home .sec6 .accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.home .sec6 .accordion .accordion-item {
  margin-bottom: 3%;
  border: 1px solid lightgrey;
}
.home .sec6 .accordion .accordion-item h2 button {
  font-size: 18px !important;
}
.home .sec6 .accordion .accordion-item .accordion-body {
  font-size: 16px;
}
@media (max-width: 574px) and (min-width: 0px) {
  .home .sec6 {
    padding: 15% 0%;
  }
  .home .sec6 .line {
    width: 20%;
    left: 40%;
    margin-bottom: 10%;
  }
  .home .sec6 img {
    padding: 0% 5%;
  }
}

.nosotros .lineVertical {
  background-color: var(--aqua);
  width: 4px;
  height: 61%;
  margin-left: 109%;
  margin-top: 44%;
}
.nosotros .lineHorizontal {
  background-color: var(--aqua);
  width: 20%;
  height: 4px;
  margin: 6% 0%;
}
.nosotros .sec1 {
  padding: 6% 0%;
  background-image: url("../img/nosotros/coberlum-nosotros-banner-header.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.nosotros .sec1 h1 {
  font-size: 29px;
  font-weight: 600;
}
.nosotros .sec2 h2 {
  font-size: 38px;
}
.nosotros .sec2 h4 {
  font-size: 20px;
}
.nosotros .sec3 {
  padding: 6% 0%;
  background-image: url("../img/nosotros/coberlum-nosotros-fondo-azul.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.nosotros .sec3 .btn-cta {
  padding: 2% 0%;
  border-color: white;
  color: white;
  font-size: 13px;
  width: 35%;
}
.nosotros .sec4 {
  padding: 6% 0%;
}
.nosotros .sec4 h2 {
  font-size: 38px;
}
.nosotros .sec4 .d-flex p {
  font-size: 15px;
}
.nosotros .sec4 .btn-cta {
  width: 20%;
  font-size: 13px;
  padding: 1.2% 0%;
}
.nosotros .sec5 {
  background-image: url("../img/nosotros/coberlum-nosotros-pilares-fondo.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6% 0%;
}
.nosotros .sec5 .lineHorizontal {
  width: 10%;
  margin: 2% 44% 3%;
}
.nosotros .sec5 h2 {
  font-size: 38px;
}
.nosotros .sec5 .btn-cta {
  background-color: white;
  color: var(--gris);
  border-color: lightgrey;
}
.nosotros .sec5 .btn-cta:hover {
  background-color: var(--azul);
  color: var(--blanco);
  border-color: var(--azul);
}
.nosotros .sec5 button p {
  font-size: 14px;
  text-transform: none;
  font-weight: normal;
}
.nosotros .sec6 .customBg {
  background-image: url("../img/nosotros/coberlum-nosotros-img-02.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.nosotros .sec6 .col-md-6 {
  padding: 6% 4%;
}
.nosotros .sec6 .col-md-6 h2 {
  font-size: 38px;
}
.nosotros .sec6 .btn-cta {
  font-size: 14px;
  padding: 2.4% 0%;
  width: 39%;
  text-transform: none;
}
@media (max-width: 574px) and (min-width: 0px) {
  .nosotros .sec3 h2 {
    font-size: 35px;
    text-align: center;
  }
  .nosotros .sec3 .lineaHorizontalMobile {
    border-bottom: 4px solid var(--aqua);
    width: 20%;
    margin-left: 40%;
    margin-bottom: 4%;
  }
  .nosotros .sec3 p {
    text-align: center;
  }
  .nosotros .sec3 .btn-cta {
    width: 100%;
    padding: 2% 0%;
    font-size: 18px;
  }
  .nosotros .sec3 .col-md-4 {
    margin-top: 5%;
    text-align: center;
  }
  .nosotros .sec4 {
    text-align: center;
  }
  .nosotros .sec4 .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nosotros .sec4 .lineHorizontal {
    margin-left: 40%;
  }
  .nosotros .sec4 .col-md-6 {
    margin-bottom: 5%;
  }
  .nosotros .sec4 .btn-cta {
    margin-top: 0px !important;
    width: 100%;
    padding: 2.3%;
    font-size: 16px;
  }
  .nosotros .sec5 .accordion-item {
    border-radius: 0 !important;
    margin-bottom: 2%;
  }
  .nosotros .sec5 .accordion-button {
    color: var(--gris);
  }
  .nosotros .sec5 .accordion-button:not(.collapsed) {
    background-color: var(--azul);
    color: white;
    border-radius: 0px;
  }
  .nosotros .sec5 .accordion-button.collapsed::after {
    background: url("../img/nosotros/icono-check-01.webp");
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: 0;
    margin-right: 0.5em;
  }
  .nosotros .sec5 .accordion-button:not(.collapsed)::after {
    background: url("../img/nosotros/icono-check-01.webp");
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: 0;
    margin-right: 0.5em;
  }
  .nosotros .sec6 {
    padding: 6% 3%;
  }
  .nosotros .sec6 h2 {
    text-align: center;
    font-size: 35px !important;
  }
  .nosotros .sec6 p {
    text-align: center;
  }
  .nosotros .sec6 .btn-cta {
    width: 100%;
  }
  .nosotros .sec6 .lineaHorizontalMobile {
    border-bottom: 4px solid var(--aqua);
    width: 20%;
    margin-left: 40%;
    margin-bottom: 4%;
  }
  .nosotros .sec6 .customBg {
    height: 400px;
    background-size: cover;
  }
}

@media (max-width: 574px) and (min-width: 0px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 20px;
  }
  .fs-18 {
    font-size: 16px;
  }
  .fs-16 {
    font-size: 14px;
  }
  .btn-cta {
    width: 80%;
  }
  .mobile-item {
    display: block;
  }
  .desktop-item {
    display: none;
  }
}

/* language switcher */
.traduc {
  font-size: 14px;
  background: #FFF;
  padding: 5px 10px;
  border-radius: 15px;
  color: #20295C !important;
}
