 :root {
     --text-color: #FFF;
     --bg-color: #1B263B;
     --adv-bg-color: #415A77;
     --desktop-max-width: 608px;
 }

 * {
     box-sizing: border-box;
     transition: 0.3s all ease-out;
 }

 *:focus {
     outline: none;
 }

 html,
 body {
     scroll-behavior: smooth;
 }

 html {
     font-size: 20px;
 }

 /* 
        font-family: "SoleSans", Arial, Helvetica, sans-serif;
        font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
        font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
        font-family: "sole_display", Georgia, Times, "Times New Roman", serif;
        */

 body {
     font-family: "SoleSans", Arial, Helvetica, sans-serif;
     background-color: #1B263B;
     padding: 0;
     margin: 0;
     color: var(--text-color);
     -webkit-transition: all 0.35s;
     transition: all 0.35s;
     overflow-x: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 div {
     width: 100%;
 }

 .lancio_punt_cnt {
     display: flex;
     flex-direction: row;
     justify-content: flex-start;
     align-items: center;
     max-width: 608px;
     height: 180px;
     padding: 15px 20px;
     border-radius: 14px;
     background: #415A77;
     margin-top: 20px;
 }

 .lancio_punt_img {
     display: flex;
     flex-direction: row;
     justify-content: flex-start;
     align-items: center;
     width: 141px;
     height: 141px;
 }

 .lancio_punt_img img {
     width: 100%;
     height: auto;
 }

 .lancio_punt_testi {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
     padding-left: 20px;
     width: calc(100% - 141px);
 }

 .lancio_punt_occhiello {
     color: var(--text-color);
     font-family: "SoleSans", Arial, Helvetica, sans-serif;
     font-size: .8rem;
     font-style: normal;
     font-weight: 600;
     line-height: normal;
     text-align: center;
     width: fit-content;
     padding: 5px 10px;
     background-color: #E6175C;
 }

 .lancio_punt_titolo {
     color: var(--text-color);
     font-family: "SoleSans", Arial, Helvetica, sans-serif;
     font-size: 1.3rem;
     font-style: normal;
     font-weight: 600;
     line-height: normal;
     padding: 5px 0;
 }

 .lancio_punt_sommario {
     color: var(--text-color);
     font-family: "SoleSans", Arial, Helvetica, sans-serif;
     font-size: .6rem;
     font-style: normal;
     font-weight: 400;
     line-height: normal;
 }


 .lancio_punt_btn {
     padding: 10px 0 0;
     position: relative;
     text-align: right;
 }

 .lancio_punt_btn button {
     color: var(--text-color);
     font-family: "SoleSans", Arial, Helvetica, sans-serif;
     font-size: 1.rem;
     font-style: normal;
     font-weight: 500;
     line-height: normal;
     border-radius: 6px;
     background: #0F0F0F;
     padding: 10px 36px 10px 10px;
     width: fit-content;
     border: none;
     outline: none;
     position: relative;
     cursor: pointer;
 }

 .lancio_punt_btn button::after {
     content: url("icona-freccia.svg");
     position: absolute;
     top: 7px;
     right: 6px;
 }

 .lancio_punt_btn a:link {}

 .lancio_punt_btn a:hover button {
     background-color: #E6175C;
 }

 @media only screen and (min-width: 481px) {
     .mobile {
         display: none;
     }
 }

 @media only screen and (max-width: 480px) {
     .lancio_punt_cnt {
         flex-direction: column;
         justify-content: center;
         align-items: center;
         max-width: 100%;
         height: auto;
         padding: 15px;
     }

     .lancio_punt_img {
         flex-direction: column;
         justify-content: center;
         align-items: center;
         width: 100%;
         height: auto;
     }

     .lancio_punt_testi {
         padding-left: 0;
         padding-top: 20px;
         width: 100%;
     }


     .desktop {
         display: none;
     }
 }