/* Page Title Info */

.page-title-info {
    background-color: var(--white);
    color: var(--primary);
    padding: 25px 0;
}
.page-title-info .nh_titulo_pagina {
    position: relative;
    top: -150px;
    color: white;
}
.page-title-info .title {
    font-size: 34px;
}
.page-title-info .nh-description {
    /* background-color: var(--light-primary); */
    column-count: 4;
    column-gap: 40px;
    font-weight: 400;
    font-size: 16px;
    /* line-height: 130%; */
    text-align: left;
    margin-top: 30px;
    padding:5% 0%;
    position: relative;
    z-index: 1;
}
/* .page-title-info .nh-description::before,
.page-title-info .nh-description::after {
    background-color: var(--light-primary);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 47%;
    z-index: -1;
    border-radius: 30px;
    clip-path: polygon(
        0% 0%, 
        85% 0%, 
        100% 15%, 
        100% 100%, 
        0% 100%
    );
} */
.page-title-info .nh-description::before {
    left: 0;

}
.page-title-info .nh-description::after {
    right: 0;
}
/* .custom-shape {
  width: 300px;
  height: 200px;
  background: #ddd;

} */
.page-title-info .nh-description p {
    padding:0%;
}
.page-title-info .nh-description br {
    display: none;
}
.page-title-info .nh-description p br {
    display: block;
}
.page-title-info .see-more-btn {
    display: none;
}

@media(max-width:768px) {
    .page-title-info {
        padding-bottom: 10px;
    }    
    .page-title-info .nh-page-title-info {
        position: relative;
        top: -40px;
    }
    .page-title-info .nh_titulo_pagina {
        top: -100px;
    }
    .page-title-info .nh_titulo_pagina h1 {
        text-align: center;
        font-size: 30px !important;
    }
    .page-title-info .description-container {
        position: relative;
    }
    .page-title-info .nh-description {
        font-size: 16px;
        column-count: 1;
        text-align: center;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .page-title-info .nh-description.show-more-height {
        overflow: hidden;
        height: 200px;
        transition: max-height 0.3s ease;        
    }
    .page-title-info .see-more-btn {
        display: block;
        margin-top: 10px;
        background-color: var(--white);
        color: var(--primary);
        border: 1px solid var(--primary) !important;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 14px;
        border-radius: 4px;
        text-align: center;
        width: 100%;
    }
    .page-title-info .nh-description {
        padding: 15% 0%;
    }    
    .page-title-info .nh-description::before {
        width: 100%;
    }
    .page-title-info .nh-description::after {
        display: none;
    }    
}