.banner {
    background-color: #33AD9F; /* Color de fondo */
    color: white;
    text-align: center;
    margin-bottom: 40px;
    /*border-radius: 8px;*/
    border-top-left-radius: 15px; 
    border-top-right-radius: 15px;
    padding: 50px 20px;
}

.banner h1 {
  font-size: 1.5rem; /* Tamaño moderado para el título */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner p {
  font-size: 1.1rem; /* Tamaño moderado para el subtítulo */
  margin-top: 1px;
}

/* Responsividad para pantallas medianas */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2rem; /* Reduce el tamaño en pantallas más pequeñas */
  }

  .banner p {
    font-size: 1rem; /* Ajustamos el tamaño del subtítulo */
  }
}

/* Responsividad para pantallas pequeñas */
@media (max-width: 576px) {
  .banner h1 {
    font-size: 1.5rem; /* Título más pequeño en pantallas muy pequeñas */
  }

  .banner p {
    font-size: 0.9rem; /* Subtítulo más pequeño */
  }
}


.col .contents{
    padding: 0px 30px;
    border-left: 2px solid #bababa;
}
.col .contents .box{
    position: relative;
    padding: 20px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.4s;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.col .contents .box:hover{
    box-shadow: 0px 3px 12px 0px #ccc;
    border: 1px solid transparent;
}
.col .contents .box::before{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    right: calc(100% + 22px);
    top: 0;
    background-color: #11a372;
    border: 2px solid white;
}
.box h4{
    position: relative;
    color: #11a372;
}
.box h3{
    font-size: 19px;
    padding: 10px 0px 6px;
    font-family: helvetica;
    color: #444;
}
.box p{
    line-height: 1.2;
    color: #666;
    font-size: 17px;
}
@media(max-width: 768px){
    
    .row .col:nth-child(2){
        margin-top: 30px;
    }
}
