    .slogan br { display:none; } 
    .slogan {
        width: 100%;
        height: 280px; margin-top:15px; 
        color: var(--text2);
        font-weight:400;
        text-shadow: 0 0 8px rgba(210,165,76,.6);
        border-radius: var(--radius-sm);
        border:1px solid var(--outline); 
        font-family:Agency;
        text-transform:uppercase !important;
        font-size:30px;
        display: flex;
        justify-content: center; /* orizzontale */
        align-items: center;     /* verticale */
        text-align: center;
    }
    
    #slogan1 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        linear-gradient(to left, rgba(210, 175, 76, 0.5), rgba(0, 0, 0, 0.5), rgba(210, 175, 76, 0.5)),
        url("imgs/op_bkg0.webp");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; 
            }
    
    #slogan2 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        linear-gradient(to left, rgba(210, 175, 76, 0.5), rgba(0, 0, 0, 0.5), rgba(210, 175, 76, 0.5)),
        url("imgs/pika_courier0.webp");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; 
        display:none;    }
    #slogan2.active {
        animation: expandFromCenter 0.5s ease-out forwards;
    }
    
    #slogan3 {

        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        linear-gradient(to left, rgba(210, 175, 76, 0.5), rgba(0, 0, 0, 0.5), rgba(210, 175, 76, 0.5)),
        url("imgs/the_cove.webp");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; 
        
    }
    #slogan3.active {
        animation: expandFromCenter 0.5s ease-out forwards;
    }
    
    #slogan4 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        linear-gradient(to left, rgba(210, 175, 76, 0.5), rgba(0, 0, 0, 0.5), rgba(210, 175, 76, 0.5)),
        url("imgs/lot_of_cards.webp");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; 
         
         
    }

    @media (max-width: 720px){
      .slogan br { display:block;  }
      .slogan { font-size:24px; }
    }
    
    
    :root[data-theme="light"] #slogan1 { background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
        linear-gradient(to left, rgba(210, 175, 76, 0.5), rgba(255, 255, 255, 0.5), rgba(210, 175, 76, 0.5)), url("imgs/op_bkg0.webp"); 
                background-repeat: no-repeat;
        background-position: center;
        background-size: cover; }
    
    :root[data-theme="light"] #slogan2 { background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
        linear-gradient(to left, rgba(210, 175, 76, 0.5), rgba(255, 255, 255, 0.5), rgba(210, 175, 76, 0.5)), url("imgs/pika_courier0.webp"); 
                background-repeat: no-repeat;
        background-position: center;
        background-size: cover; }
        
        
        
    :root[data-theme="light"] #slogan3 { background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
        linear-gradient(to left, rgba(210, 175, 76, 0.5), rgba(255, 255, 255, 0.5), rgba(210, 175, 76, 0.5)), url("imgs/the_cove.webp"); 
                background-repeat: no-repeat;
        background-position: center;
        background-size: cover; }
        
    :root[data-theme="light"] #slogan4 { background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
        linear-gradient(to left, rgba(210, 175, 76, 0.5), rgba(255, 255, 255, 0.5), rgba(210, 175, 76, 0.5)), url("imgs/lot_of_cards.webp"); 
                background-repeat: no-repeat;
        background-position: center;
        background-size: cover; }
    