* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.logo-beneficicos {
  width: 100%;
  position: relative;
  margin: 40px 0;
  text-align: center;
}
.logo-beneficicos img {
  width: 100%;
  max-width: 160px;
}
.header-beneficios {
  width: 100%;
  position: relative;
}
.header-beneficios img {
  width: 100%;
  display: block;
}
.header-beneficios img:last-child {
  display: none;
}
.container-beneficios {
  width: 100%;
  max-width: 1440px;
  padding: 20px 40px;
  margin: 0 auto;
  position: relative;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
}

.container-beneficios .titulo-beneficios {
  position: relative;
  width: 100%;
  margin: 20px 0 40px 0;
}
.container-beneficios .titulo-beneficios h2 {
  color: #405ba4;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2em;
}
.container-beneficios .titulo-beneficios p {
  color: #707070;
  font-weight: normal;
  margin-top: 10px;
  font-size: 1em;
  line-height: 1.4em;
  text-align: center;
}
.container-beneficios .tabla-beneficios {
  width: 100%;
  position: relative;
  overflow: auto;
  margin: 10px 0 50px 0;
  display: none;
}
.container-beneficios .tabla-beneficios.active {
  display: block;
}
.container-beneficios .tabla-beneficios table {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-width: 1000px;
  border-collapse: collapse;
}
.container-beneficios .tabla-beneficios table thead {
  background: #405ba4;
  color: #fff;
}
.container-beneficios .tabla-beneficios table thead tr {
  width: 100%;
  overflow: hidden;
}
.container-beneficios .tabla-beneficios table thead tr th {
  font-size: 0.9em;
  font-weight: normal;
  position: relative;
  padding: 10px 20px;
}
.container-beneficios .tabla-beneficios table thead tr th::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 60%;
  display: block;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #fff;
  opacity: 0.4;
}
.container-beneficios .tabla-beneficios table thead tr th:last-child:after {
  display: none;
}
.container-beneficios .tabla-beneficios table thead tr th:first-child {
  width: 25%;
  text-align: left;
}
.container-beneficios .tabla-beneficios table tbody {
  background-color: #fff;
  position: relative;
}
.container-beneficios .tabla-beneficios table tbody tr td {
  padding: 10px 10px 10px 20px;
  text-align: center;
  color: #405ba4;
  font-size: 2em;
  border-bottom: 2px solid rgba(64, 91, 164, 0.2);
}
.container-beneficios .tabla-beneficios table tbody tr td:first-child {
  text-align: left;
  color: #302d2d;
  font-size: 0.9em;
}
.container-beneficios .tabla-beneficios table tbody tr td span {
  font-weight: bold;
}

/* SECCION ITEMS BENEFICIO CARRUSEL */
.items__beneficios {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.item__beneficio {
  width: 100%;
  text-align: center;
  padding: 5px;
}
.item__beneficio img {
  width: 100%;
}
.item__beneficio p {
  color: #707070;
  margin-top: 10px;
  font-size: 0.9em;
}
.owl-theme .owl-nav {
  width: 95%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.boton__beneficios {
  text-align: center;
  transition: all ease 0.3s;
}
.boton__beneficios img {
  width: 80px;
  cursor: pointer;
  transition: all ease 0.3s;
}
.boton__beneficios.active img {
  transform: rotate(-45deg);
}
.owl-theme .owl-nav button {
  background: rgba(0, 0, 0, 0.8) !important;
  border-radius: 50% !important;
  width: 20px;
  height: 20px;
}
.owl-theme .owl-nav button span {
  color: white !important;
}
@media screen and (max-width: 1024px) {
  .logo-beneficicos img {
    max-width: 120px;
  }
  .container-beneficios {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .container-beneficios .titulo-beneficios h2 {
    font-size: 1em;
  }
}
@media screen and (max-width: 420px) {
  .container-beneficios {
    padding: 10px;
  }
  .header-beneficios img {
    display: none;
  }
  .header-beneficios img:last-child {
    display: block;
  }
}
