* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Colors */
    --white: #ffffff;
    --red: #bb0000;
    --yellow: #FFCE31;
    --grey: #5C5F5E;
    --lightgrey: #e9e9e9;
    --green: #5ebb00;
    --purple: #5e00bb;
    --cyan: #00bbbb;

    /* Size text */
    --text-xsmall-fontSize: 16px;
    --text-small-fontSize: 18px;
    --text-medium-fontSize: 20px;
    --text-large-fontSize: 22px;

    --h1-xsmall-fontSize: 60px;
    --h1-small-fontSize: 70px;
    --h1-medium-fontSize: 80px;
    --h1-large-fontSize: 90px;
    --h1-landscape: 45px;

    --h2-xsmall-fontSize: 32px;
    --h2-small-fontSize: 40px;
    --h2-medium-fontSize: 45px;
    --h2-large-fontSize: 52px;
    --h2-landscape: 35px;

    --h3-xsmall-fontSize: 22px;
    --h3-small-fontSize: 25px;
    --h3-medium-fontSize: 28px;
    --h3-large-fontSize: 31px;
    --h3-landscape: 25px;

    --h4-xsmall-fontSize: 18px;
    --h4-small-fontSize: 20px;
    --h4-medium-fontSize: 22px;
    --h4-large-fontSize: 24px;
    --h4-landscape: 16px;
}

.bold {
    font-weight: bold;
}

.semibold {
    font-weight: 500;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.red {
    color: var(--red);
}

.grey {
    color: var(--grey);
}

.center {
    text-align: center;
}

.isHide {
    display: none;
}

a {
    text-decoration: none;
}

a:link:not(.header__navigation__link) {
    color: #bb0000;
}

a:visited:not(.header__navigation__link) {
    color: #5E00BB;
}

a:hover:not(.header__navigation__link) {
    color: #00BBBB;
    text-decoration: underline;
}

a:active:not(.header__navigation__link) {
    color: #5EBB00;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: "Lato", sans-serif;
}

body,
button,
input,
select,
textarea {
    font-family: "Exo", sans-serif;
}

/* Sfondo */
.background {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.background img {
    width: 100%;
    height: 400vh;
    background-clip: content-box;
    object-fit: cover;
    transform: translateY(0);
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    background-color: rgba(92, 95, 94, 0.05);
    box-shadow: 0 4px 20px rgba(92, 95, 94, 0.8);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

/* Header: hamburger menù */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger svg {
    width: 55px;
}

.hamburger .line {
    stroke: var(--red);
    stroke-linecap: round;
    fill: none;
}

/* Header: item menù */
.header__navigation {
    transition: all 1s ease-in-out;
}

.isClose {
    opacity: 0;
    pointer-events: none;
}

.header__navigation__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-weight: 500;
}

.header__navigation__link {
    color: var(--grey);
    transition: all 0.4s;
}

.header__navigation__link:hover,
.header__navigation__link.active {
    color: var(--red);
}

/* Logo Ardea header svg */
#svg2 {
    width: auto;
    cursor: pointer;
    padding: 10px;
}

/* Linea logo animata */
#path14 {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Contenuto principale */
.container {
    position: fixed;
    top: 100px;
    inset: 0;
    height: 100vh;
    width: 100vw;
}

/* Menù navigazione cerchi */
.circleMenu {
    display: none;
}

.circleMenu.contacts {
    flex-direction: row;
    gap: 50px;
    top: 80px;
    transform: translateX(-50%);
    left: 50%;
}

.circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--red);
    background-color: transparent;
    position: relative;
    cursor: pointer;
}

.circle.fill {
    background-color: var(--red);
}

.triangleMenu {
    position: fixed;
    left: 0;
    min-width: 70vw;
    height: calc(100vh - 100px);
    /* filter: drop-shadow(6px 6px 12px rgba(92, 95, 94, 0.5)); */
}

.triangleMenu.contacts {
    width: 100%;
}

/* Titolo triangolo */
.menuTitle {
    text-transform: uppercase;
}

/* Centratura wrapper, section, menu, content */
.section {
    position: absolute;
    inset: 0;
    margin-top: 100px;
    opacity: 0;
    pointer-events: none;
}

.section.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding-top: 50px
}

.wrapper.contacts {
    justify-content: start;
}

.menuContent {
    position: relative;
    width: 100%;
}

.content {
    display: grid;
    gap: 20px;
}

.content:not(.contacts) {
    padding: 0 20px;
}

.content.contacts {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    text-align: left;
}

/* Timeline e overlay timeline */
.timeline-arrow {
    color: var(--red);
    stroke: var(--red);
    fill: var(--red);
}

.timeline-trigger {
    display: flex;
    cursor: pointer;
    color: var(--red);
    flex-direction: column;
    padding: 50px 0;
}

.timeline-text {
    text-transform: uppercase;
}

.timelineContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;

    --progress: 0%;
}

.timelineContainer::before {
    content: "";
    position: absolute;
    top: 0;
    /* bottom: 0px; */
    left: 50%;
    transform: translateX(-50%);
    border-left: 2px dashed var(--red);
    width: 0;
    height: var(--progress);
}

.eventContainer {
    display: flex;
    position: relative;
}

.eventContainer:nth-child(odd) {
    justify-content: flex-start;
}

.eventContainer:nth-child(even) {
    justify-content: flex-end;
    text-align: right;
}

.eventContainer:nth-child(even) .eventContent-description {
    flex-direction: row-reverse;
}

.eventContainer:nth-child(even) .eventContent-year {
    color: #000;
}

.eventContainer:nth-child(odd) .eventContent-year::after {
    background-image: url("image/arrow-right-grey.png");
}

.eventContainer:nth-child(even) .eventContent-year::after {
    background-image: url("image/arrow-right-black.png");
}

.eventContent {
    background: var(--lightgrey);
    border-radius: 10px;
    overflow: visible;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.eventContent-description {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.description-text,
.eventContent-description img {
    width: 40%;
}

.eventContent-description img {
    object-fit: cover;
}

.eventContent-year {
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--lightgrey);
}

/* .eventContent-year::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
} */

/* Fasce e titoli: colore */
.colore1 .titleEvent {
    color: var(--red)
}

.colore1 .eventContent-year {
    background: linear-gradient(270deg, rgba(233, 233, 233, 1) 0%, rgba(219, 162, 162, 1) 50%, rgba(187, 0, 0, 1) 100%);
}

.colore2 .titleEvent {
    color: var(--green)
}

.colore2 .eventContent-year {
    background: linear-gradient(90deg, rgba(233, 233, 233, 1) 0%, rgba(163, 210, 116, 1) 50%, rgba(94, 187, 0, 1) 100%);
}


.colore3 .titleEvent {
    color: var(--purple)
}

.colore3 .eventContent-year {
    background: linear-gradient(270deg, rgba(233, 233, 233, 1) 0%, rgba(161, 112, 209, 1) 50%, rgba(94, 0, 187, 1) 100%);
}

.colore4 .titleEvent {
    color: var(--cyan)
}

.colore4 .eventContent-year {
    background: linear-gradient(90deg, rgba(233, 233, 233, 1) 0%, rgba(117, 210, 210, 1) 50%, rgba(0, 187, 187, 1) 100%);
}

/* Sezione news */
.card.sectionNews {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.news {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

/* Card */
.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    background: linear-gradient(221deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.55) 25%, rgba(202, 220, 235, 1) 100%);
    box-shadow: -3px 6px 8px -2px #92b7d6;
}

.cardCharacter {
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    align-items: center;
    background-size: cover;
}

.cardCharacter.massimo {
    background-image: url("image/massimo.png");
}

.cardCharacter.valeria {
    background-image: url("image/valeria.png");
}

.cardCharacter.paola {
    background-image: url("image/paola.png");
}

.cardCharacter.ambra {
    background-image: url("image/ambra.png");
}

.animateArrow {
    display: grid;
    place-items: center;
    cursor: pointer;
    border: none;
    background-color: transparent;
    position: absolute;
}

.animateArrow path {
    fill: none;
    stroke: var(--red);
    stroke-width: 3px;
}

.animateArrow svg {
    overflow: visible;
}

.animateArrow>* {
    grid-area: 1 / 1;
}

#endShape {
    visibility: hidden;
}

.contentTitle {
    perspective: 1200px;
}

.title {
    transform-style: preserve-3d;
    display: inline-block;
}

.word {
    display: inline-block;
}

.subtitle {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.arrow {
    position: absolute;
    right: 30px;
}

.arrowImage {
    height: 30px;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(92, 95, 94, 0.8);
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.overlayCard {
    position: relative;
    background: rgba(255, 206, 50, 0.8);
    border-radius: 16px;
    width: 90%;
    height: 80%;
    margin: 120px auto 120px auto;
    overflow: auto;
}

#closeBtn {
    position: absolute;
    z-index: 10000;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.contentCard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.overlayDescription {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.boxWrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px 0;
}

.boxContent {
    background: rgba(240, 248, 255, 0.2);
    border-radius: 5px;
    height: fit-content;
    margin-bottom: 20px;
}

.boxContentImage {
    display: flex;
}

.imageProfileCard {
    height: auto;
    object-fit: contain;
}

.boxContent.news {
    display: flex;
    align-items: flex-start;
}

.boxContent-single:nth-of-type(even) {
    flex-direction: row-reverse;
}

.boxContent-single:nth-of-type(odd) {
    flex-direction: row;
}

.boxContent-single {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

li {
    margin: 8px 0;
}

.overlayHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.overlayHeader .overlayTitle {
    text-transform: uppercase;
}

.chiSiamo .overlayHeader .overlayTitle {
    white-space: nowrap;
}

.sliderCard button {
    position: fixed;
    top: 50%;
    z-index: 99;
    transform: translateY(-50%);
    border-radius: 50%;
    height: 50px;
    width: 80px;
    background-color: transparent;
    color: var(--red);
    border: none;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
}

.sliderCard #prevButton {
    right: unset;
}

/* Form contatti */
::placeholder {
    color: var(--red);
}

input[type=checkbox],
input[type=submit] {
    margin-right: 10px;
}

input[type=checkbox] {
    accent-color: var(--red);
}

input[type=text],
select,
textarea {
    width: 100%;
    border-left: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    border-top: none;
    border-right: none;
    box-sizing: border-box;
    background-color: transparent;
    resize: vertical;
}

input[type=text]:focus,
#messaggio:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(187, 0, 0, 0.4);
}

input[type=submit] {
    color: var(--white);
    padding: 12px 20px;
    border: none;
    background-color: var(--red);
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 30px auto;
}

input[type=submit]:hover {
    background-color: var(--red);
}

.content-contact-form {
    border-radius: 5px;
}

.content-contact-information {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
}

.information {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-direction: row-reverse;
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.video-item {
    padding-top: 56.25%;
    position: relative;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    padding-top: 70px;
}

.arrow-down {
    width: 25px;
    height: 25px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    transform: rotate(45deg);
}

/* Media query */
@media (max-width: 480px) {
    h1 {
        font-size: var(--h1-xsmall-fontSize);
    }

    h2 {
        font-size: var(--h2-xsmall-fontSize);
    }

    h3,
    button {
        font-size: var(--h3-xsmall-fontSize);
    }

    h4 {
        font-size: var(--h4-xsmall-fontSize);
    }

    body,
    input,
    textarea {
        font-size: var(--text-xsmall-fontSize);
    }

    .header__content {
        padding: 0px 5px;
    }

    #svg2 {
        height: 65px;
    }

    .hamburger svg {
        height: 25px;
    }

    .header__navigation__list {
        font-size: var(--text-medium-fontSize);
    }

    .eventContent {
        width: 90%;
    }

    .card {
        min-height: 100px;
    }

    .boxContent-single img {
        height: 45px;
    }

    .overlayHeader .imageTitle {
        width: 150px;
    }

    #closeBtn {
        top: 10px;
        right: 10px;
    }

    #closeBtn img {
        width: 30px;
    }

    .cardImage {
        height: 60px;
    }

    .cardCharacter:nth-child(even) .animateArrow {
        left: 20px;
    }

    .cardCharacter:nth-child(odd) .animateArrow {
        right: 20px;
    }

    .information {
        width: 100%;
    }

    .information img {
        width: 20px;
    }

    .timeline-arrow {
        width: 170px;
    }

    .timeline-trigger {
        padding: 20px 0;
    }

    .scroll-indicator {
        padding-top: 20px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    h1 {
        font-size: var(--h1-small-fontSize);
    }

    h2 {
        font-size: var(--h2-small-fontSize);
    }

    h3,
    button {
        font-size: var(--h3-small-fontSize);
    }

    h4 {
        font-size: var(--h4-small-fontSize);
    }

    body,
    input,
    textarea {
        font-size: var(--text-small-fontSize);
    }

    .header__content {
        padding: 0px 10px;
    }

    #svg2 {
        height: 70px;
    }

    .header__navigation__list {
        font-size: var(--text-large-fontSize);
    }

    .eventContent {
        width: 85%;
    }

    .boxContent-single img {
        height: 50px;
    }

    .overlayHeader .imageTitle {
        width: 180px;
    }

    #closeBtn {
        top: 20px;
        right: 20px;
    }

    #closeBtn img {
        width: 35px;
    }

    .card {
        min-height: 160px;
    }

    .cardImage {
        height: 70px;
    }

    .cardCharacter:nth-child(even) .animateArrow {
        left: 100px;
    }

    .cardCharacter:nth-child(odd) .animateArrow {
        right: 100px;
    }

    .information {
        width: 50%;
    }

    .information:last-child {
        width: 100%;
    }

    .information img {
        width: 25px;
    }

    .timeline-arrow {
        width: 190px;
    }


}

@media (min-width: 769px) and (max-width: 1279px) {
    h1 {
        font-size: var(--h1-medium-fontSize);
    }

    h2 {
        font-size: var(--h2-medium-fontSize);
    }

    h3,
    button {
        font-size: var(--h3-medium-fontSize);
    }

    h4 {
        font-size: var(--h4-medium-fontSize);
    }

    body,
    input,
    textarea {
        font-size: var(--text-medium-fontSize);
    }

    .header__content {
        padding: 0px 20px;
    }

    #svg2 {
        height: 75px;
    }

    .header__navigation__list {
        column-gap: 30px;
    }

    .header__navigation__list {
        font-size: var(--text-small-fontSize);
    }

    .boxContent-single img {
        height: 55px;
    }

    .overlayHeader .imageTitle {
        width: 210px;
    }

    #closeBtn {
        top: 25px;
        right: 25px;
    }

    #closeBtn img {
        width: 40px;
    }

    .cardImage {
        height: 80px;
    }

    .information img {
        width: 30px;
    }

    .timeline-arrow {
        width: 210px;
    }

    .card {
        min-height: 190px;
    }

    .imageProfileCard {
        width: 40%;
    }
}

@media (min-width: 1280px) {
    h1 {
        font-size: var(--h1-large-fontSize);
    }

    h2 {
        font-size: var(--h2-large-fontSize);
    }

    h3,
    button {
        font-size: var(--h3-large-fontSize);
    }

    h4 {
        font-size: var(--h4-large-fontSize);
    }

    body,
    input,
    textarea {
        font-size: var(--text-large-fontSize);
    }

    .header__content {
        padding: 0px 30px;
    }

    #svg2 {
        height: 80px;
    }

    .header__navigation__list {
        column-gap: 40px;
    }

    .header__navigation__list {
        font-size: var(--text-medium-fontSize);
    }

    .hamburger svg {
        height: 35px;
    }

    .boxContent-single img {
        height: 60px;
    }

    .overlayHeader .imageTitle {
        width: 240px;
    }

    #closeBtn {
        top: 30px;
        right: 30px;
    }

    #closeBtn img {
        width: 40px;
    }

    .card {
        min-height: 250px;
    }

    .cardImage {
        height: 90px;
    }

    .information {
        margin-bottom: 0;
    }

    .information img {
        width: 35px;
    }

    .timeline-arrow {
        width: 230px;
    }

    .imageProfileCard {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .header__navigation {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: var(--yellow);
        height: 100%;
        box-shadow: 0 4px 30px rgba(92, 95, 94, 0.8);
    }

    .header__navigation__list {
        flex-direction: column;
        align-items: center;
        height: 70%;
        justify-content: space-evenly;
    }

    .card {
        padding: 10px;
    }

    .card.cardCharacter {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .card.cardCharacter:nth-child(even) {
        background-position: 150px center;
    }

    .card.cardCharacter:nth-child(odd) {
        background-position: -150px center;
    }

    .titleEvent {
        padding: 10px 10px 0px 10px;
    }

    .eventContent-description {
        gap: 10px;
        padding: 10px;
    }

    .eventContainer:nth-child(even) {
        padding-left: 2%;
    }

    .eventContainer:nth-child(odd) {
        padding-right: 2%;
    }

    .description-text {
        width: 60%;
    }

    .eventContent-year {
        padding: 10px;
    }

    .boxContent.news {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .timeline-trigger {
        gap: 10px;
    }

    .timelineContainer {
        gap: 40px;
    }

    .overlayCard {
        padding: 25px;
    }

    .content {
        position: relative;
    }

    .menuContent {
        padding: 0 0 20px 20px;
    }

    .contentCard {
        width: 85%;
    }

    .boxContent {
        padding: 10px;
    }

    .cardTitle {
        width: 60%;
    }

    .overlayHeader {
        gap: 20px;
    }

    .overlayHeader .overlayTitle {
        letter-spacing: 3px;
    }

    #overlayCardSection {
        flex-direction: column;
    }

    #overlayCardSection .imageTitle {
        max-width: 60px;
    }

    .sliderCard #prevButton {
        left: 0%;
    }

    .sliderCard button {
        right: 0%;
    }

    .information p {
        text-align: left;
    }

    .wrapper.contacts {
        padding: 40px 20px;
        text-align: center;
    }

    .contacts .menuContent {
        padding: 0;
    }

    .animateArrow svg {
        width: 120px;
    }

    li {
        padding-left: 10px;
    }

    input[type=text],
    select,
    textarea {
        padding: 10px;
        margin-top: 5px;
        margin-bottom: 15px;
        height: 35px;
    }

    #messaggio {
        height: 75px;
    }

    .imageProfileCard {
        width: 40%;
    }

    .content-contact-form,
    .content-contact-information {
        padding-top: 30px;
    }
}

@media (min-width: 769px) {

    .card.cardCharacter {
        flex-direction: column;
        background-position: -100px center;
    }

    .content.listCharacter {
        grid-template-columns: repeat(2, 1fr);
    }

    .cardCharacter img {
        height: 105px;
    }

    .eventContent {
        width: 75%;
    }

    .titleEvent {
        padding: 20px 20px 0px 20px;
    }

    .eventContent-description {
        gap: 20px;
        padding: 20px;
    }

    .eventContainer:nth-child(even) {
        padding-left: 6%;
    }

    .eventContainer:nth-child(odd) {
        padding-right: 6%;
    }

    .description-text {
        width: 60%;
    }

    .eventContent-year {
        padding: 20px;
    }

    .card {
        padding: 20px;
    }

    .card:not(.sectionNews) {
        display: grid;
        grid-template-columns: 1fr;
        align-content: center;
        place-items: center;
        text-align: center;
    }

    .boxContent.news {
        flex-direction: row;
        gap: 50px;
    }

    .boxContent-news {
        width: 50%;
    }

    .overlayCard {
        padding: 30px;
    }

    .content {
        padding: 0 5%;
    }

    .content-contact-information {
        justify-content: end;
        margin: 0;
    }

    .content.contacts {
        flex-direction: row-reverse;
        align-items: end;
    }

    .contentCard {
        width: 75%;
    }

    .boxContent {
        padding: 20px;
    }

    .boxContent-single {
        margin: 10px auto;
        width: 70%;
    }

    .cardTitle {
        width: 100%;
    }

    .overlayHeader {
        gap: 40px;
    }

    .overlayHeader .overlayTitle {
        letter-spacing: 5px;
    }

    #overlayCardSection .imageTitle {
        max-width: 70px;
    }

    li {
        padding-left: 15px;
    }

    .animateArrow {
        bottom: 20px;
        right: 20px;
    }

    .arrowImage {
        display: none;
    }

    .timelineContainer {
        gap: 60px;
    }

    .timeline-trigger {
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 20px;
    }

    .sliderCard #prevButton {
        left: 4%;
    }

    .sliderCard button {
        top: 50%;
        transform: translateY(-50%);
        right: 4%;
    }

    .information {
        width: 100%;
        justify-content: end;
        flex-direction: row;
    }

    .information p {
        text-align: right;
    }

    .contacts .menuContent {
        padding-top: 100px;
    }

    .menuContent {
        text-align: center;
    }

    .menuTitle {
        padding-left: 0px;
    }

    .animateArrow svg {
        width: 140px;
    }

    .circleMenu {
        position: fixed;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 40vh;
        padding: 5px;
        min-width: min-content;
        z-index: 10000;
        margin-top: 50px;
    }

    .wrapper.contacts {
        align-content: space-evenly;
    }

    .wrapper {
        display: grid;
        align-items: center;
    }

    .wrapper:not(.contacts) {
        grid-template-columns: 30% 70%;
    }

    .listItem {
        grid-template-columns: repeat(2, 1fr);
    }

    .listItem p {
        grid-column: 1 / -1;
    }

    .listItem .card {
        min-height: 300px;
    }

    input[type=text],
    select,
    textarea {
        padding: 10px;
        margin-top: 5px;
        margin-bottom: 15px;
        height: 35px;
    }

    #messaggio {
        height: 75px;
    }

    .video-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-wrapper:not(.double) .video-item {
        grid-column: 1 / -1;
        width: 50%;
        justify-self: center;
        padding-top: 26.25%;
    }
}

@media (min-width: 481px) and (max-width: 1279px) {
    .hamburger svg {
        height: 30px;
    }
}

/* @media (orientation: landscape) {
    body,
    input,
    textarea {
        font-size: var(--text-small-fontSize);
    }

    h1 {
        font-size: var(--h1-landscape);
    }

    h2 {
        font-size: var(--h2-landscape);
    }

    h3,
    button {
        font-size: var(--h3-landscape);
    }

    h4 {
        font-size: var(--h4-landscape);
    }

    .header__navigation__list {
        font-size: var(--text-xsmall-fontSize);
    }

    .wrapper:not(.contacts) {
        grid-template-columns: 25% 75%;
    }

    .card {
        gap: 10px;
        padding: 10px;
        min-height: 100px;
    }

    .listItem .card {
        min-height: 80px;
        display: flex;
    }

    .cardImage {
        height: 50px;
    }

    .timeline-trigger {
        padding: 0;
    }

    .circleMenu {
        left: 10px;
    }

    .circle {
        width: 10px;
        height: 10px;
    }

    .overlayHeader .imageTitle {
        width: 150px;
    }

    .boxContent-single img {
        height: 45px;
    }
} */