
.enfoque{
    margin-top: 50px;
   /* padding:1rem;  */
    font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic,
    "AppleGothic", sans-serif; 
     font-size:2rem;   
   /*   text-shadow: 2px 0.8px 0.8px rgba(24, 58, 66, 0.986);   */ 
  
    
 /*   line-height: 100%;   */
   
}

.parenthesis_enfoque {
   position: relative;
   width: 90%;
   padding: 20px 30px; 
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   background-color: rgba(0, 0, 0, 0.623); /* Black w/opacity/see-through */
}

.parenthesis_enfoque strong{
    font-weight: 900;
    color: rgb(10, 195, 241);
    color: white;
    font-weight: bold;
    text-shadow: 3px 3px 3px #0f0f0f;
}

.parenthesis_enfoque::before,
.parenthesis_enfoque::after {
    position: absolute;
    top: 0;
    content: "";
    width: 40px;
    height: 100%;
    border-top: 6px solid rgb(255, 255, 255);
    border-bottom: 6px solid rgb(255, 255, 255);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.parenthesis_enfoque::before {
    left: 0;
    border-left: 6px solid rgb(255, 255, 255);
    border-radius: 8px 0 0 8px;
}

.parenthesis_enfoque::after {
    right: 0;
    border-right: 6px solid rgb(255, 255, 255);
    border-radius: 0 8px 8px 0;
}

.parenthesis_enfoque:hover{
    background: rgba(8, 194, 231, 0.575);
}