:root {
    --text-color: #FFFFFF;
    --bg-color: #FFFFFF;
    --adv-bg-color: #D7DEE5;
    --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: var(--bg-color);
    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_cnt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    max-width: 608px;
    border-radius: 14px;
    background: #161616;
    margin: 20px auto;
    /* box-shadow: 0 4px 0 0 rgba(15, 15, 15, 0.08); */
}

.lancio_titolo a:link {
    color: var(--text-color);
    text-decoration: none;
}

.lancio_titolo a:visited {
    color: var(--text-color);
    text-decoration: none;
}

.lancio_titolo a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.lancio_titolo a:active {
    color: var(--text-color);
    text-decoration: underline;
}

.lancio_img {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 150px;
}

.lancio_img img {
    width: auto;
    height: 150px;
}

.lancio_testi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    width: calc(100% - 130px);
}

.lancio_occhiello {
    color: #38A7FF;
    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;
}

.lancio_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_sommario {
    color: var(--text-color);
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}


.lancio_btn {
    padding: 10px 20px 0;
    position: relative;
    text-align: right;
}

.lancio_btn button {
    color: var(--text-color);
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: .8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.20);
    padding: 10px 36px 10px 10px;
    width: fit-content;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
}

.lancio_btn button::after {
    content: url("icona-freccia.svg");
    position: absolute;
    top: 9px;
    right: 6px;
}

.lancio_btn a:link {}

.lancio_btn a:hover button {
    background-color: #38A7FF;
}

@media only screen and (min-width: 481px) {
    .mobile {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .lancio_cnt {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        height: auto;
    }

    .lancio_img {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
    }


    .lancio_img img {
        width: 100%;
        height: auto;
    }

    .lancio_testi {
        padding: 20px;
        width: 100%;
    }

    .lancio_btn {
        padding: 10px 0;
        position: relative;
        text-align: left;
    }

    .lancio_btn button {
        font-size: .9rem;
    }

    .lancio_btn button::after {
        top: 11px;
        right: 6px;
    }

    .desktop {
        display: none;
    }
}