
    /* CSS HEX

    --mint-cream: #e6efec;
    --yellow-green: #aada2f;
    --carrot-orange: #f39200;
    --star-command-blue: #1480c4;
    --gunmetal: #192c38;

    CSS HSL
    --mint-cream: hsla(160, 22%, 92%, 1);
    --yellow-green: hsla(77, 70%, 52%, 1);
    --carrot-orange: hsla(36, 100%, 48%, 1);
    --star-command-blue: hsla(203, 81%, 42%, 1);
    --gunmetal: hsla(203, 38%, 16%, 1);

    SCSS RGB
    $mint-cream: rgba(230, 239, 236, 1);
    $yellow-green: rgba(170, 218, 47, 1);
    $carrot-orange: rgba(243, 146, 0, 1);
    $star-command-blue: rgba(20, 128, 196, 1);
    $gunmetal: rgba(25, 44, 56, 1);
    */

    .news {
        margin-top: 10rem;
        padding-bottom:10rem;

    }
    .news .container_intro {
        position: relative;
    }
    .news .content_intro{
    }
    .news .titolo {
        margin-bottom: 3rem;
        color: #e6efec;
        text-align: center;
    }
    .news .titolo h1{
        font-size: 70px;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    .news .titolo h1:before {
        position: absolute;
        content:  "NEWS";
        font-size: 70px;
        font-weight: bold;
        color: #192c38;
        transform: translate(4px,-2px);
    }
    .news .titolo span {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        line-height: 5px;
    }
    .news .description {
        margin-top: 3rem;
        margin-bottom: 8rem;
        text-align: center;
    }
    .news .body {
        justify-content: center;
    }
    .news .body .news_card{
        padding: 2.5rem;
        text-align: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-radius: 10px;
        transition: all 0.4s;
        transition-delay: 0.1s;
    }
    .news .body .news_card a{
        text-decoration: none;
        color:inherit;
    }
    .news .body .news_card a:hover{
        cursor: pointer;
    }
    .news .body .news_card a:visited{
        text-decoration: none;
        color:none;
    }
    .news .body .news_card:hover {
        background-color: rgba(230, 239, 236, 0.75);
    }

    .news .body .news_card .news_title {
        min-height: 100px;
        margin-bottom: 0;
        position: relative;
    }

    .news .body .news_card .news_title h4{
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 0;
        bottom: 0;
        position: absolute;
        transform: translate(-50%,-50%);
        left: 50%;
        top: 50%;
        min-width: inherit;
        min-width: fit-content;
        min-width: -webkit-fill-available;
    }
    .news .body .news_card hr{
        max-width: 60%;
        height: 3px;
        color: #F39204;
        margin: 1rem auto;
        opacity: 0.75;
        border-radius: 5px;
    }
    .news .body .news_card .news_data {
        margin-bottom: 0.5rem;

    }
    .news .body .news_card .news_data p{
        margin-bottom: 0;
        text-align: right;
        padding-right:2rem;
        font-size: 12px;
        text-transform: uppercase;
    }
    .news .body .news_card .news_description{
        margin-bottom: 0.5rem;
    }
    .news .body .news_card .news_description p{
        text-align: justify;
    }
    .news .body .news_card .news_img{
        box-shadow: 0 6px 26px 6px rgb(0 0 0 / 25%);
        border-radius: 10px;
        margin: 0 3px;
        transition: 0.5s ease-in-out;
    }
    .news .body .news_card .news_img a {
        padding: 0;
    }

    .news .body .news_card .news_img img{
        padding: 0;
        border-radius: 10px;
        transition: 0.75s ease-in-out;
        max-width: inherit;
        max-width: -webkit-fill-available;
    }
    .news .body .news_card:hover .news_img{
        transform: scale(1.05);
    }
    .news .body .news_card:hover .news_img img {
    }
    .news .body .news_card_active .news_img{
        transform: scale(1.05);
    }
    .news .body .news_card_active .news_img img {
    }

    .news .body .news_card_active {
        background-color: rgba(230, 239, 236, 0.75);
    }


    @media (max-width: 575.98px) {
        .news .body .news_card{
            padding: 1rem;
            max-width: 90%;
       }
        .news .body .news_card .row{
            margin-left: 0;
            margin-right: 0;
        }
        .news .body .news_card .news_title {
            min-height: 50px;
        }
        .news .body .news_card hr {
            margin: 0.5rem auto;
        }
        .news .body .news_card .news_data {
            margin-bottom: 0;
        }
        .news .body .news_card .news_description p{
            font-size: 14px;
            line-height:22px;
        }
        .news .body .news_card_active .news_img {
            transform: none;
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
        }
     }
