@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* foreground colors */
    --light-text: #ffffff;
    --dark-text: #5B5B5B;
    --magenta-text: #D41075;
    --yellow-text: #E2E46A;
    /* background colors */
    --bg-magenta: #D41075;
    --bg-light: #ffffff;
    --bg-dark: #000000;
    --bg-gray: #F7F7F7;
    --bg-dark-green: #0F4E5B;
    --bg-pink: #FF77E6;
    --bg-light-green: #4BC17E;
    --bg-orange: #EB9241;
    --bg-yellow: #E2E46A;
    --bg-purple: #934DAD;
    --bg-yellow-2: #FABD25;
    --nav-yelow: #E2E46A;
    --nav-pink: #FF77E6;
    --nav-green: #4BC17E;
    --nav-asphalt: #0F4E5B;
    --nav-orange: #EB9241;
    --nav-purple: #934DAD;
    --nav-light-blue: #82C4D3;
    /* layout defaults */
    --default-verical-padding: 90px;
    --default-font-size: 28px;
    --defualt-h1-size: 96px;
    --defualt-h2-size: 50px;
    --mobile-container-padding: 15px;
}

#chi-siamo, #cosa-facciamo, #contattaci, #il-team, #diventa-cipolla {
    scroll-margin-top: 100px;
}


.blog-listing > p:first-of-type {
    text-align: left;
}

strong {
    font-weight: 500;
}

h1, h2, h3, p, a, label {
    letter-spacing: -0.06em;
}
body.privacy h1,
body.privacy h2,
body.privacy h3,
body.privacy p,
body.privacy a {
    letter-spacing: unset;
}
body.privacy h1,
body.privacy h2,
body.privacy h3 {
    font-weight: bold;
}
body.privacy h1 {
    font-size: 36px;
    text-align: center;
    padding-top: 40px;
}
body.privacy h2,
body.privacy h3 {
    font-size: 28px;
}
.nav-item a span {
    letter-spacing: 0;
}

.text-pink {
    color: #FF77E6;
}

.file::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #1F1F1F;
    opacity: 1; /* Firefox */
}

.file:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #1F1F1F;
}

.file::-ms-input-placeholder { /* Microsoft Edge */
    color: #1F1F1F;
}


.menu {
    display: none;
}

* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--default-font-size);
    color: var(--dark-text);
}
body.privacy,
body.privacy p {
    font-size: 20px;
}
.container-fluid {
    width: 100%;
}

.container {
    margin: 0 auto;
    height: auto;
}

header {
    background-color: var(--bg-magenta);
    height: 160px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 5;
    transition: all .3s ease-in-out;
}

body.privacy header {
    height: auto;
}
header.collapsed {
    height: 100px;
}
header .navbar {
    height: 90px;
    text-align: right;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: start;
    align-content: start;
    gap: 15px;
    transition: all .3s ease-in-out;
}
header.collapsed .navbar {
    height: 50px;
}
header .navbar .nav-item {
    width: 156px;
    display: flex;
    height: 27px;
    align-items: end;
    align-content: end;
    justify-content: center;
    padding-bottom: 15px;
    overflow: hidden;
    transition: height .2s ease-in-out;
}

.tags {
    font-weight: 500;
    font-size: 18px;
    line-height: 110.00000000000001%;
    letter-spacing: -0.06em;
    color: #437D8A;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.tags a {
    color: #437D8A;
}

.blog-listing .filter-pane {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin-bottom: 100px;
}
.blog-listing .filter-pane > span {
    font-weight: 500;
    font-size: 17px;
    line-height: 110.00000000000001%;
    letter-spacing: -0.06em;
    color: #7A7A7A;
}
.blog-listing .filter-pane > select {
    font-weight: 700;
    font-size: 16px;
    line-height: 110.00000000000001%;
    letter-spacing: -0.06em;
    color: #437D8A;
    height: 44px;
    border: none;
    outline: none;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 320px;
    padding: 0 15px;
    background: #F6F6F6 url('../images/dropdown.svg') no-repeat right 26px center;
}

header.collapsed .navbar .nav-item {
    height: 20px;
}
header .navbar .nav-item:hover {
    height: 82px;
}
header.collapsed .navbar .nav-item:hover {
    height: 60px;
}
header.collapsed .navbar .nav-item {
    padding-bottom: 10px;
}
header .navbar .nav-item.yellow {
    background-color: var(--nav-yelow);
}
header .navbar .nav-item.pink {
    background-color: var(--nav-pink);
}
header .navbar .nav-item.green {
    background-color: var(--nav-green);
}
header .navbar .nav-item.asphalt {
    background-color: var(--nav-asphalt);
}
header .navbar .nav-item.orange {
    background-color: var(--nav-orange);
}
header .navbar .nav-item.orange2 {
    background-color: #EA862A;
}
header .navbar .nav-item.orange3 {
    background-color: #E2AB24;
}

header .navbar .nav-item.purple {
    background-color: var(--nav-purple);
}
header .navbar .nav-item.lightblue {
    background-color: var(--nav-light-blue);
}
header .navbar .nav-item span {
    font-size: 16px;
    font-weight: 600;
    color: white;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    text-align: center;
    display: inline-block;
}
header.collapsed .navbar .nav-item span {
    font-size: 15px;
}
header .navbar .nav-item:hover span {
    opacity: 1;
}
header .branding {
    display: flex;
    justify-content: space-between;
}
.privacy header .branding {
    justify-content: center;
    padding: 40px 0;
}
.privacy .container-fluid {
    margin-top: 160px;
}
header .branding svg {
    transition: all .3s ease-in-out;
    height: 47px;
}
header.collapsed .branding svg {
    height: 32px;
    width: auto;
}
button.contact-us, .cta-news{
    color: black;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--bg-yellow);
    border: none;
    outline: none;
    display: inline-flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 19px;
    height: 50px;
    border-radius: 25px;
    cursor: pointer;
    padding-left: 32px;
    padding-right: 32px;
}

button.contact-us:hover svg, .cta-news:hover svg, .cta-article:hover svg {
    transform: translateX(10px);
    animation: to-right .7s linear infinite;
}

@keyframes to-right {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(3px);
    }
    100% {
        transform: translateX(-3px);
    }
}

header.collapsed button.contact-us {
    font-size: 14px;
    height: 32px;
    padding-left: 22px;
    padding-right: 22px;
    gap: 12px;
}
header.collapsed button.contact-us svg {
    height: 22px;
    width: auto;
}
button.contact-us.magenta , .cta-news.magenta {
    background-color: var(--bg-magenta);
    color: white;
}
.cta-news.ghost {
    background-color: transparent;
    color: #5B5B5B;
    border: 2px solid #5B5B5B;
}
section.hero {
    padding: 288px 0 350px 0;
    background-color: var(--bg-magenta);
    color: var(--light-text);
    text-align: center;
    position: relative;
}

h1 {
    font-size: var(--defualt-h1-size);
    font-weight: 400;
    line-height: 96%;
    margin: 0;
    padding: 0;
}

.head-menu {
    display: flex; align-content: center; align-items: center; gap: 5px;
}
.head-menu > a {
    display: none;
}

.head-menu .lang,
.head-menu .lang a {
    color: white;
    font-size: 16px;
}

.sidemenu {
    position: fixed;
    right: -101vw;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: black;
    z-index: 10;
    transition: all .3s ease-in-out;
    opacity: 0;
    padding: 15px;
}
.sidemenu.open {
    right: 0;
    opacity: 1;
}
.sidemenu .buttons {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
}
.sidemenu .buttons > svg {
    height: 28px;
}
.sidemenu .navitems {
    padding-left: 15px;
}
.sidemenu .navitems a {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 30px 0 0 0;
    font-size: 33px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

body.privacy p a {
    color: #D41075;
    text-decoration: none;
}

.form label a {
    color: inherit;
    text-decoration: underline;
}

h1 .enfasi {
    font-weight: 700;
}

h2 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    line-height: 106.5%;
    margin: 0;
    padding: 0;
}
section.hero span.subtitle {
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

section.hero .visual {
    position: absolute;
    width: 1170px;
    height: 575px;
    bottom: -285px;
    left: 50%;
    margin-left: -585px;
}

section.hero .visual img {
    position: absolute;
    left: 0;
    top: 0;
}

.velocita-efficacia {
    padding: 300px 0 147px 0;
    letter-spacing: -0.03em;
    font-size: 50px;
    font-weight: 300;
}
.enfasi span.bold {
    font-weight: 700;
}
.enfasi span.magenta {
    color: var(--magenta-text);
}

section.video {
    padding: 80px 15px 80px 15px;
    background-color: var(--bg-purple);
    text-align: center;
}
section.video h2 {
    color: white;
}
section.video div.img {
    width: 800px;
    height: 438px;
    margin-top: 50px;
    background: url("../images/video.png") no-repeat center;
    background-size: cover;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
section.video div.img svg {
    width: 80px;
    height: auto;
}

section.human {
    background-color: var(--bg-gray);
}

section.human .container {
    padding: 129px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    font-size: 50px;
    line-height: 107.5%;
    letter-spacing: -0.06em;
    font-weight: 300;
}

section.human .container > div:first-of-type {
    width: 40%;
}
section.human .container > div:last-of-type {
    width: 60%;
}

section.human p {
    text-align: right;
}

section.human svg {
    height: auto;
}

section.staff {
    padding: 40px 0;
}

section.staff .row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    align-content: start;
}
section.staff .row.non-4 {
    justify-content: start;
    gap: 20px;
}
section.staff .row .column {
    width: 24%;
}
section.staff .row .column .cover {
    width: 100%;
    padding-bottom: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
section.staff .row .column .cover img {
    opacity: 0;
    width: 100%;
    height: auto;
    transition: opacity .3s ease-in-out;
    position: absolute;
}
section.staff .row .column .cover:hover img {
    opacity: 1;
}
section.staff .row .column .didascalia {
    padding: 26px 0;
    text-align: center;
    line-height: 15px;
}
section.staff .row .column .didascalia .name {
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    width: 100%;
}
section.staff .row .column .didascalia .role {
    font-weight: normal;
    font-size: 15px;
}

section.volare {
    background-color: #52685C; /*var(--bg-magenta);*/
    color: white;
    padding: 31px 0;
}
section.volare .container {
    background: url('../images/cornice-bianca.svg') no-repeat;
    background-size: cover;
    padding: 92px 0 109px 60px;
    position: relative;
}

section.volare .container .volare-anim {
    position: absolute;
    bottom: -20px;
    right: -40px;
    width: 579px;
    height: 720px;
}
section.volare .container .volare-anim img {
    position: absolute;
    left: 0;
    top: 0;
}

p {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 38px;
}
p.enfasi {
    font-size: 50px;
}
section.volare p {
    width: 60%;
}

section.volare h2 {
    margin-bottom: 150px;
}
section.volare h2 span.yellow {
    color: #ffd233;
}

section.connessione {
    background-color: white;
}
section.connessione h2 {
    color: #5B5B5B;
    margin-bottom: 138px;
}
span.magenta {
    color: var(--magenta-text);
}
section.connessione p {
    color: #5B5B5B;
}
section.connessione .container {
    position: relative;
    padding: 138px 0 260px 0;
}
section.connessione .conn-anim {
    position: absolute;
    width: 987px;
    height: 352px;
    bottom: -170px;
    left: 50%;
    margin-left: -493px;
    background: url('../images/connessione.png') no-repeat center;
    background-size: cover;
}

section.stare-bene .container {
    padding: 265px 0;
}
section.stare-bene h2 {
    text-align: left;
}
section.stare-bene .row {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
section.stare-bene .row .column:first-of-type {
    width: 40%;
}
section.stare-bene .row .column:last-of-type {
    width: 60%;
}

section.qualita {
    padding: 138px 0;
    background-color: var(--bg-pink);
}
section.qualita h2 {
    color: white;
    margin-bottom: 76px;
}
section.qualita p {
    color: black;
}

span.black {
    color: black;
}

section.cosa-facciamo {
    background-color: #0F4E5B;
}
section.cosa-facciamo h2 {
    color: white;
    margin-bottom: 70px;
    padding-top: 80px;
}
section.cosa-facciamo .container {
    padding: 138px 0;
}
section.cosa-facciamo .row {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
section.cosa-facciamo .buttons {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 140px;
}
section.cosa-facciamo .buttons .button {
    display: inline-flex;
    height: 49px;
    border-radius: 28px;
    background-color: #FABD25;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 84%;
    letter-spacing: 0;
    color: #000000;
    padding: 0 23px 0 32px;
    gap: 21px;
}
section.cosa-facciamo .row .column {
    width: 100%;
}
section.cosa-facciamo .accordion .item {
    padding: 0 38px 30px 38px;
    overflow: hidden;
    height: 70px;
    transition: all .8s ease-in-out;
}
section.cosa-facciamo .accordion .item h3 {
    color: white;
    font-size: 50px;
    margin: 0 0 30px 0;
    padding: 0;
}
section.cosa-facciamo .accordion .item p {
    margin: 0;
    padding: 0 0 0 30px;
    font-size: 24px;
    color: white;
    letter-spacing: -0.06em;
    line-height: 110%;
    opacity: 0;
    /* transition: opacity .8s ease-in-out;*/
}
section.cosa-facciamo .accordion .item a {
    color: inherit;
    text-decoration: none;
}
section.cosa-facciamo .accordion .item a:hover {
    color: #4BC17E;
}
section.cosa-facciamo .accordion .item.active a:hover {
    color: white;
}
section.cosa-facciamo .accordion .item.active {
    background-color: #4BC17E;
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    margin-bottom: 30px;
}
section.cosa-facciamo .accordion .item.active a:hover {
    text-decoration: none;
}
section.cosa-facciamo .accordion .item.active h3 {
    color: white;
}
section.cosa-facciamo .accordion .item.active p {
    opacity: 1;
}
section.cosa-facciamo .cover {
    width: 537px;
    height: 752px;
    position: relative;
    transition: all .8s ease-in-out;
}
section.cosa-facciamo .cover img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

section.news {
    background-color: var(--nav-light-blue);
    color: #ffffff;
    padding-top: 130px;
    padding-bottom: 130px;
}
section.news .container {
    font-size: 50px;
    line-height: 107.5%;
    letter-spacing: -0.06em;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
}
section.news .container .row {
    display: flex;
    gap: 50px;
    padding-top: 90px;
    padding-bottom: 90px;
}
section.news .container .column.news-item {
    width: 50%;
    text-align: left;
    color:#ffffff;
}
section.news .news-item .thumbnail {
    width: 100%;
}
section.news .news-item h3 {
    font-size: 50px;
    font-weight: bold;
    padding: 45px 0 35px 0;
    margin: 0;
}

section.news .news-item p {
    font-size: 28px;
    padding-bottom: 30px;
    letter-spacing: -6%;
    line-height: 110%;
    margin: 0;
}

section.news .news-item .cta-article, .cta-article {
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    height: 50px;
    width: 50px;
}

section.news .news-item .cta-article svg, .cta-article svg {
    position: relative;
    top: -8px;
}

section.ci-sappiamo-fare {
    padding: 133px 0;
    overflow-x: hidden;
}
section.ci-sappiamo-fare h2 {
    margin-bottom: 133px;
}
section.ci-sappiamo-fare .animated-strip {
    font-weight: 800;
    color: white;
    font-size: 80px;
    text-shadow:
            -1px -1px 0 #878787,
            1px -1px 0 #878787,
            -1px 1px 0 #878787,
            1px 1px 0 #878787;
    width: 100vw;
    height: 100px;
    position: relative;

}
section.ci-sappiamo-fare .animated-strip span {
    display: inline-block;
    margin-right: 90px;
}

section.vibes {
    padding: 90px 0;
    background-color: var(--bg-yellow-2);
}
section.vibes h2 {
    color: black;
    text-align: left;
    margin-bottom: 80px;
}
section.vibes p {
    color: black;
    width: 90%;
}
section.vibes .row {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 100px;
}

section.vibes .row .column {
    width: 50%;
}


.form input[type="text"],
.form input[type="email"],
.form textarea {
    height: 50px;
    border-radius: 25px;
    background-color: white;
    font-size: 16px;
    padding-left: 34px;
    padding-right: 34px;
    width: 100%;
    border: 1px solid black;
    outline: none;
}
.form.orange input[type="text"],
.form.orange input[type="email"],
.form.orange textarea {
    border-color: #A58B6E;
}
.form textarea {
    resize: none;
    padding: 20px 34px;
    height: 130px;
}
.form input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 1px solid black;
    opacity: 1;
    appearance: inherit;
    background-color: white;
}
.form input[type="checkbox"]:checked {
    background-image: url('../images/white-check.svg');
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.form input.file {
    border: 2px dashed black;
    background-color: rgba(255, 255, 255, .3);
}
.form .form-row {
    margin-bottom: 38px;
    height: auto;
}
.form .form-row.centered {
    text-align: center;
}
.form .form-row.two-column {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.form .form-row.two-column .column {
    width: 50%;
}
.form label {
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    display: inline-block;
    color: white;
}
.vibes .form label {
    color: #5B5B5B;
}
.form .form-row.buttons {
    text-align: center;
    padding-top: 40px;
}
.form .form-row.privacy {
    display: flex;
    align-content: start;
    align-items: start;
    gap: 10px;
}
.form.orange .form-row.privacy {
    justify-content: center;
}
.form.orange .form-row.privacy div:last-of-type {
    line-height: 20px;
}
section.clienti {
    padding: 150px 0;
}

section.clienti .marquee img {
    width: 320px;
    height: auto;
}

section.clienti .animated-strip {
    margin-top: 120px;
}

.animatable {
    transform: translateY(100px);
    opacity: 0;
    transition: all .6s ease-in-out;
}
.showed {
    transform: translateY(0);
    opacity: 1;
}

@keyframes cloudanim {
    from {
        transform: translateX(-25px);
    }
    to {
        transform: translateX(50px);
    }
}

.clouds {
    animation: cloudanim linear 5s alternate infinite;
}

@keyframes hiw-rotation {
    from {
        transform: rotate(0deg);
        transform-box: fill-box;
        transform-origin: center center;
    }
    to {
        transform: rotate(360deg);
        transform-box: fill-box;
        transform-origin: center center;
    }
}
#how-it-works {
    animation: hiw-rotation linear 20s infinite;
}

.rotate-it {
    animation: hiw-rotation linear 20s infinite;
}

.rotate-it-faster {
    animation: hiw-rotation linear 10s infinite;
}

section.project {
    background-color: var(--bg-orange);
    padding: 138px 0;
}
section.project h2 {
    color: white;
    margin-bottom: 62px;
}
section.project p {
    color: white;
    margin-bottom: 62px;
    text-align: center;
}

span.yellow {
    color: var(--yellow-text);
}

.volare span.yellow {
    display: inline-flex;
    align-items: center;
    align-content: center;
}

.volare span.yellow svg {
    height: 70px;
}

section.bottom {
    padding: 90px 0;
    text-align: center;
}

section.bottom svg {
    height: 350px;
    width: auto;
}

footer {
    background-color: var(--bg-magenta);
    padding: 60px 0 60px 0;
    font-size: 12px;
    color: white;
    text-align: center;
}
footer .logo > svg {
    height: 205px;
}
footer .logo,
footer .recapiti {
    margin-bottom: 56px;
}
footer .social {
    margin-top: 45px;
    display: flex;
    gap: 20px;
    justify-content: start;
}
footer .company-name {
    font-size: 15px;
    font-weight: bold;
}
footer .row {
    display: flex;
    align-items: start;
    align-content: start;
    justify-content: center;
    text-align: left;
    gap: 100px;
}

footer .row .column {
    width: 250px;
    font-size: 12px;
    line-height: 173%;
}
footer .row .column a {
    color: white;
    font-weight: bold;
    font-size: 15px;
}
footer .row .column p {
    font-size: 12px;
}
footer .row .column p img {
    margin: 12px 0;
}
footer .row .column .partner {
    display: inline-flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 48px;
}
footer .credits {
    margin-top: 120px;
}
footer .credits a {
    color: #ffffff;
    text-decoration: underline;

}
a {
    text-decoration: none;
}
.ro-dialog {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    display: none;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.ro-dialog.shown {
    display: flex;
}
.ro-dialog .ro-content {
    width: 500px;
    height: auto;
    padding: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    color: #585858;
    font-size: 18px;
    border: 1px solid #585858;
}
.ro-dialog.noframe .ro-content {
    width: 1000px;
    height: 563px;
    padding: 0;
    border: none;
    border-radius: 0;
    border: 0;
}
.ro-dialog .ro-content .buttons {
    text-align: right;
    margin-top: 60px;
}
.ro-dialog.noframe .ro-content .buttons {
    display: none;
}
.videoframe {
    width: 1000px;
    height: 563px;
}
/*
.swiper-slide {
    height: 200px!important;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
 */

.slide-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

@keyframes zoomOut {
    from {
        transform: scale(1);
        transform-box: fill-box;
        transform-origin: center center;
    }
    to {
        transform: scale(.7);
        transform-box: fill-box;
        transform-origin: center center;
    }
}

#con_pink2 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 2s linear alternate infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

#con_giallo2 {
    animation: zoomOut 2s ease-in-out alternate infinite;
}

g.fill-white path {
    fill: white;
}

/* NEWS LISTING */
.listing, .single {
    padding-top: 250px;
    padding-bottom: 150px;
    text-align: center;
}

.listing .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing h1, .single .pseudo-h1, .single h1 {
    color: var(--nav-light-blue);
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 50px;
}

.single h1 {
    font-size: 46px;
    margin-bottom: 30px;
}

.listing .article {
    text-align: left;
    padding: 40px 0;
    border-top: 2px solid #5B5B5B;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 50px;
}

.listing .article > .image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}
.listing .article > .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.listing .article:first-of-type {
    border: none;
}

.listing .article h3, .single h2 {
    font-weight: 600;
    font-size: 47px;
    margin-bottom: 40px;
    margin-top: 0;
}

.listing .article p {
    font-size: 28px;
    margin: 0 0 20px 0;
}

.listing .article .date {
    font-size: 20px;
    margin: 0;
}

.cta-article {
    border: 2px solid #5B5B5B;
}

.cta-article svg {
    top: 7px;
}

.listing .buttons {
    margin-top: 50px
}



/*ARTICOLO*/

.single .corpo, .single h2 {
    text-align: left;
}

.single .corpo .date {
    font-size: 20px;
    margin-bottom: 20px;
}

.single .corpo .copertina50 {
    float: left;
    margin-right: 25px;
    margin-bottom: 5px;
    width: 50%;
    height: auto;
}

.single .corpo .copertina100 {
    margin-right: 25px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

.press h2 {
    text-align: left;
    padding-bottom: 40px;
    padding-top: 50px;
}

.press .row {
    display: flex;
    text-align: left;
	flex-wrap: wrap;
}

.press .row .column {
    width: 30%;
	margin-bottom: 30px;
}

.press .link-press {
    display: flex;
    align-items: center;
}

.text-link {
    text-decoration: underline;
    color: #5B5B5B;
    font-weight: 500;
    font-size: 16px;
    padding-right: 20px;
}

.press .testata {
    max-height: 30px;
    max-width: 40%;
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
    .container {
        width: 960px;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1599px) {
    .container {
        width: 1170px;
    }
    section.volare .container .volare-anim {
        position: absolute;
        bottom: 80px;
        right: 20px;
        width: 460px;
        height: 575px;
    }
}
@media screen and (min-width: 1600px) {
    .container {
        width: 1440px;
    }
}