.container-doc h2{
    font-family: "AvenirNextLTPro-Bold","sans-serif";
    font-size: 2.35rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #2c2e35;
    margin-top: 16px;
    margin-bottom: 26px;
}
.container-doc{
    padding-top: 50px;
    
}
.container-doc .row{
    row-gap: 20px;
}
.box-card{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c2e35;
    border: 1.5px solid white;
    border-radius: 15px;
    -webkit-box-shadow: 10px 10px 34px 0px rgba(0,0,0,0.28);
    -moz-box-shadow: 10px 10px 34px 0px rgba(0,0,0,0.28);
    box-shadow: 10px 10px 34px 0px rgba(0,0,0,0.28);
    transition: 0.4s ease-in-out;
    height: 100%;
    min-height: 110px;
    padding: 15px;
}
.box-card:hover{
    background: #20ecb4;
    border: 1.5px solid black;
    transform: scale(1.01) translate(20px,0px);
    -webkit-transform: scale(1.01) translate(20px,0px);
    -moz-transform: scale(1.01) translate(20px,0px);
    color:white;
}

.box-card p{
    font-family: "AvenirNextLTPro-Bold","sans-serif";
    font-size: clamp(18px, 2vw, 22px);
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
    margin-bottom: 0;
}

