    /* CSS HEX *
    --cultured: #f2f2f2;
    --medium-candy-apple-red: #df1a2d;
    --bordeaux: #95010f;
    --gainsboro: #dddddd;
    --eerie-black: #191919;

    news under15: #3097c2;
    news under17: #29b529;
    news generali: #df1a2d;
    news under19: #dc0edc;
    news cgold: #c8a900;

     SCSS RGB
    $cultured: rgba(242, 242, 242, 1);
    $medium-candy-apple-red: rgba(223, 26, 45, 1);
    $bordeaux-dark: rgba(60, 5, 5, 1);
    $gainsboro: rgba(221, 221, 221, 1);
    $eerie-black: rgba(25, 25, 25, 1);

    font-family: 'Scarecrow';
    font-family: 'Poppins';
    font-family: 'Raleway';

    */
    .nav-link-news {
        font-size: 16px !important;
        font-weight: 600 !important;
    }
    .page-header .bgimg{
        /* background-image: url(../img/contatti/bg-contatti.jpg); */
        position: fixed;
    }
    .news-body {
        min-height: 100vh;
        background-color: #252525;
    }
    .news-body .row-category{
        padding-top: 2rem;
        padding-bottom: 2rem;
        justify-content: center;
   }
   .news-body .row-category .category {
        max-width: 33%;
        color: #f2f2f2;
        text-align: center;
        cursor: pointer;
    }
    .news-body .row-category .category h6 {
        font-size: 20px;
    }
    .news-body .row-category .category h6::before{
        font-size: 20px;
    }

    .news-body .row-category .gold h6 {
        color: #f2f2f2;
        font-family: 'poppins';
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        position: relative;
    }
    .news-body .row-category .gold h6::before{
        content: 'c gold';
        text-transform: uppercase;
        color: #c8a900;
        position: absolute;
        transform: translate(1px,-1px);
    }
    .news-body .row-category .u19 h6{
        color: #f2f2f2;
        font-family: 'poppins';
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        position: relative;
    }
    .news-body .row-category .u19 h6::before{
        content: 'Under 19';
        text-transform: uppercase;
        color: #dc0edc;
        position: absolute;
        transform: translate(1px,-1px);
    }

    .news-body .row-category .generali h6{
        color: #f2f2f2;
        font-family: 'poppins';
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        position: relative;
    }
    .news-body .row-category .generali h6::before{
        content: 'News Generali';
        text-transform: uppercase;
        color: #df1a2d;
        position: absolute;
        transform: translate(1px,-1px);
    }

    .news-body .row-category .u17 h6{
        color: #f2f2f2;
        font-family: 'poppins';
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        position: relative;
    }
    .news-body .row-category .u17 h6::before{
        content: 'Under 17';
        text-transform: uppercase;
        color: #29b529;
        position: absolute;
        transform: translate(1px,-1px);
    }

    .news-body .row-category .u15 h6{
        color: #f2f2f2;
        font-family: 'poppins';
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        position: relative;
    }
    .news-body .row-category .u15 h6::before{
        content: 'Under 15';
        text-transform: uppercase;
        color: #3097c2;
        position: absolute;
        transform: translate(1px,-1px);
    }
    .news-body .row-news {
        justify-content: center;
        column-gap: 2rem;
        row-gap:2rem;
    }
    .news-body .row-news .news-box{
        min-height: 20rem;
        position: relative;
        background-color: transparent;
        color: #f2f2f2;
        overflow: hidden;
        transition: 0.4s ease all;

    }


    .news-body .row-news .news-box .news-content{
        z-index: 2;
        position: absolute;
        text-align: center;
        margin-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        left: 0;
    }
    .news-body .row-news .news-box .news-content h4 {
        text-transform: uppercase;
        font-size: 16px;
        font-family: 'Poppins';
        background-color: rgba(242, 242, 242, 0.8);
        padding: 0.25rem 1rem;
        display: inline-block;
    }
    .news-body .row-news .box-gold h4{
        color: #c8a900 ;
            }
    .news-body .row-news .box-u19 h4{
        color: #dc0edc ;
            }
    .news-body .row-news .box-generali h4{
        color: #df1a2d ;
            }
    .news-body .row-news .box-u17 h4{
        color: #29b529 ;
            }
    .news-body .row-news .box-u15 h4{
        color: #3097c2 ;
            }
    .news-body .row-news .news-box .news-content .news-description {
        font-family: 'Raleway';
        text-transform:inherit;
        margin: 0.5rem 1rem 0;
        }
    .news-body .row-news .news-box .news-content h1 {
        text-transform: uppercase;
        margin-top: 1rem;
        font-family: 'Poppins';
        font-size: 28px;
    }
    .news-body .row-news .news-box .news-content p {
        font-family: 'Raleway';
        text-transform:capitalize;
        margin: 0.5rem 1rem 0;
    }
    .news-body .row-news .news-box .read-more {
        text-transform:capitalize;
        margin: 0.5rem 1rem 0;
        background-color: transparent;
        border: none;
        border-bottom: 2px solid #f2f2f2;
        color: #f2f2f2;
        cursor: pointer;
        transition: 0.5s ease all;
        transform: translateY(200px);
        font-family: 'Raleway';
        font-style: italic;
        font-size: 14px;


    }
    /* .news-body .row-news .box-gold .read-more {
        border-bottom: 2px solid #c8a900;
        color: #c8a900 ;
    }
    .news-body .row-news .box-u19 .read-more {
        border-bottom: 2px solid #dc0edc;
        color: #dc0edc ;
    }
    .news-body .row-news .box-generali .read-more {
        border-bottom: 2px solid #df1a2d;
        color: #df1a2d ;
    }
    .news-body .row-news .box-u17 .read-more {
        border-bottom: 2px solid #29b529;
        color: #29b529 ;
    }
    .news-body .row-news .box-u15 .read-more {
        border-bottom: 2px solid #3097c2;
        color: #3097c2 ;
    } */
    .news-body .row-news .news-box:hover .news-content .read-more {
        transform: translateY(0);
    }

    .news-body .row-news .news-box .img-news{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        top: 0;
        left: 0;
        filter: blur(3px);
        transition: 0.5s ease all;

    }
    .news-body .row-news .news-box:hover .img-news {
      }

    .news-body .row-news .news-box .img-news-effect{
        background-color: rgba(60,5,5,0.5);
        background: linear-gradient(197deg, rgba(60,5,5,0.5) 5%, rgba(60,5,5,0.5) 100%);
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        top: 0;
        left: 0;
        transition: 0.5s ease all;

    }
    .news-body .row-news .news-box:hover .img-news-effect {
        background-color: rgba(60,5,5,0.5);
        background: -moz-linear-gradient(197deg, rgba(218,218,218,1) 5%, rgba(115,0,2,1) 100%);
        background: -webkit-linear-gradient(197deg, rgba(218,218,218,1) 5%, rgba(115,0,2,1) 100%);
        background: linear-gradient(197deg, rgba(218,218,218,1) 5%, rgba(115,0,2,1) 100%);
    }
    .news-body .more-news {
        text-transform:uppercase;
        margin:auto;
        margin-top: 3rem;
        text-align: center;
        background-color: transparent;
        border: 2px solid red;
        color: #f2f2f2;
        cursor: pointer;
        transition: 0.5s ease all;
        font-family: 'Poppins';
        justify-content: center;
        display: block;
        border-radius: 15px;
        padding: 0.35rem    1rem;
    }
