@font-face {
    font-family: "Arnold 2.1";
    src: url("fonts/ARNORG__.TTF") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 25px;
    color: #2B2B29;
    background-color: #F9F1E8;
    scroll-behavior: smooth;
}

h1, .h1 {
    font-size: 80px;
    line-height: 90px;
}
h2, .h2 {
    font-size: 50px;
    line-height: 59px;
}
h3, .h3 {
    font-size: 40px;
    line-height: 47px;
}
h4, .h4 {
    font-size: 24px;
    line-height: 28px;
}
h5, .h5 {
    font-size: 20px;
    line-height: 23px;
}
h6, .h6 {
    font-size: 18px;
    line-height: 20px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Arnold 2.1", sans-serif;
}

p {
    font-size: 16px;
    line-height: 25px;
}

@media (max-width: 991px) {
    h2, .h2 {
        font-size: 45px;
        line-height: 53px;
    }
    h3, .h3 {
        font-size: 30px;
        line-height: 35px;
    }
}

.form-control {
    font-size: 18px;
    line-height: 25px;
    padding: 13px 23px;
    border: none;
    border-radius: 11px;
}

.form-select {
    font-size: 18px;
    line-height: 25px;
    padding: 13px 23px;
    border-radius: 11px;
}

.form-range {
    -webkit-appearance: none;
    height: 3px;
    background: #2A2B29;
    outline: none;
}
.form-range::-webkit-slider-runnable-track {
    height: 3px;
    background: #2A2B29;
}
.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #EF7D00;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -8.5px;
}
.form-range::-moz-range-track {
    height: 3px;
    background: #2A2B29;
}
.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #EF7D00;
    border-radius: 50%;
    cursor: pointer;
}

.form-range-label {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
}
.form-range-label > span {
    position: relative;
    text-align: center;
    flex: 1;
}
.form-range-label > span:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -18px;
    display: block;
    width: 1px;
    height: 10px;
    background-color: #2A2B29;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.checkbox-wrapper-30 {
    display: inline-block;
}
.checkbox-wrapper-30 .checkbox {
    --bg: #fff;
    --brdr: #EF7D00;
    --brdr-actv: #EF7D00;
    --brdr-hovr: #EF7D00;
    --dur: calc((var(--size, 2)/2) * 0.6s);
    display: inline-block;
    width: calc(var(--size, 1) * 15px);
    position: relative;
}
.checkbox-wrapper-30 .checkbox:after {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}
.checkbox-wrapper-30 .checkbox > * {
    position: absolute;
}
.checkbox-wrapper-30 .checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    background-color: var(--bg);
    border-radius: calc(var(--size, 1) * 4px);
    border: calc(var(--newBrdr, var(--size, 1)) * 1px) solid;
    color: var(--newBrdrClr, var(--brdr));
    outline: none;
    margin: 0;
    padding: 0;
    transition: all calc(var(--dur) / 3) linear;
}
.checkbox-wrapper-30 .checkbox input:hover,
.checkbox-wrapper-30 .checkbox input:checked {
    --newBrdr: calc(var(--size, 1) * 2);
}
.checkbox-wrapper-30 .checkbox input:hover {
    --newBrdrClr: var(--brdr-hovr);
}
.checkbox-wrapper-30 .checkbox input:checked {
    --newBrdrClr: var(--brdr-actv);
    transition-delay: calc(var(--dur) /1.3);
}
.checkbox-wrapper-30 .checkbox input:checked + svg {
    --dashArray: 16 93;
    --dashOffset: 109;
}
.checkbox-wrapper-30 .checkbox svg {
    fill: none;
    left: 0;
    pointer-events: none;
    stroke: var(--stroke, var(--border-active));
    stroke-dasharray: var(--dashArray, 93);
    stroke-dashoffset: var(--dashOffset, 94);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    top: 0;
    transition: stroke-dasharray var(--dur), stroke-dashoffset var(--dur);
}
.checkbox-wrapper-30 .checkbox svg,
.checkbox-wrapper-30 .checkbox input {
    display: block;
    height: 100%;
    width: 100%;
}

@media (max-width: 991px) {
    .form-range-label > span {
        font-size: 10px;
        line-height: 16px;
    }
}

.btn {
    font-size: 16px;
    line-height: 25px;
    font-weight: bold;
    color: #FFFFFF;
    padding: 10px 23px;
    border-radius: 24px;
}
.btn:hover {
    color: #FFFFFF;
}

.btn-animated {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.btn-animated .span-mother {
    display: flex;
    overflow: hidden;
}
.btn-animated:hover .span-mother {
    position: absolute;
}
.btn-animated:hover .span-mother span {
    transform: translateY(100%);
}
.btn-animated .span-mother span:nth-child(1) {transition: 0.2s;}
.btn-animated .span-mother span:nth-child(2) {transition: 0.3s;}
.btn-animated .span-mother span:nth-child(3) {transition: 0.4s;}
.btn-animated .span-mother span:nth-child(4) {transition: 0.5s;}
.btn-animated .span-mother span:nth-child(5) {transition: 0.6s;}
.btn-animated .span-mother span:nth-child(6) {transition: 0.7s;}
.btn-animated .span-mother span:nth-child(7) {transition: 0.8s;}
.btn-animated .span-mother span:nth-child(8) {transition: 0.9s;}
.btn-animated .span-mother span:nth-child(9) {transition: 1.0s;}
.btn-animated .span-mother span:nth-child(10) {transition: 1.1s;}
.btn-animated .span-mother span:nth-child(11) {transition: 1.2s;}
.btn-animated .span-mother span:nth-child(12) {transition: 1.3s;}
.btn-animated .span-mother span:nth-child(13) {transition: 1.4s;}
.btn-animated .span-mother span:nth-child(14) {transition: 1.5s;}
.btn-animated .span-mother span:nth-child(15) {transition: 1.6s;}
.btn-animated .span-mother span:nth-child(16) {transition: 1.7s;}
.btn-animated .span-mother span:nth-child(17) {transition: 1.8s;}
.btn-animated .span-mother span:nth-child(18) {transition: 1.9s;}
.btn-animated .span-mother span:nth-child(19) {transition: 2.0s;}
.btn-animated .span-mother span:nth-child(20) {transition: 2.1s;}
.btn-animated .span-mother span:nth-child(21) {transition: 2.2s;}
.btn-animated .span-mother span:nth-child(22) {transition: 2.3s;}
.btn-animated .span-mother span:nth-child(23) {transition: 2.4s;}
.btn-animated .span-mother span:nth-child(24) {transition: 2.5s;}
.btn-animated .span-mother span:nth-child(25) {transition: 2.6s;}
.btn-animated .span-mother span:nth-child(26) {transition: 2.7s;}
.btn-animated .span-mother span:nth-child(27) {transition: 2.8s;}
.btn-animated .span-mother span:nth-child(28) {transition: 2.9s;}
.btn-animated .span-mother span:nth-child(29) {transition: 3.0s;}
.btn-animated .span-mother span:nth-child(30) {transition: 3.1s;}
.btn-animated .span-mother span:nth-child(31) {transition: 3.2s;}
.btn-animated .span-mother span:nth-child(32) {transition: 3.3s;}
.btn-animated .span-mother span:nth-child(33) {transition: 3.4s;}
.btn-animated .span-mother span:nth-child(34) {transition: 3.5s;}
.btn-animated .span-mother span:nth-child(35) {transition: 3.6s;}
.btn-animated .span-mother span:nth-child(36) {transition: 3.7s;}
.btn-animated .span-mother span:nth-child(37) {transition: 3.8s;}
.btn-animated .span-mother span:nth-child(38) {transition: 3.9s;}
.btn-animated .span-mother span:nth-child(39) {transition: 4.0s;}
.btn-animated .span-mother span:nth-child(40) {transition: 4.1s;}
.btn-animated .span-mother2 {
    display: flex;
    position: absolute;
    overflow: hidden;
}
.btn-animated:hover .span-mother2 {
    position: unset;
}
.btn-animated .span-mother2 span {
    transform: translateY(-100%);
}
.btn-animated:hover .span-mother2 span {
    transform: translateY(0);
}
.btn-animated .span-mother2 span {
    transition: 0.2s;
}
.btn-animated .span-mother2 span:nth-child(2) {transition: 0.3s;}
.btn-animated .span-mother2 span:nth-child(3) {transition: 0.4s;}
.btn-animated .span-mother2 span:nth-child(4) {transition: 0.5s;}
.btn-animated .span-mother2 span:nth-child(5) {transition: 0.6s;}
.btn-animated .span-mother2 span:nth-child(6) {transition: 0.7s;}
.btn-animated .span-mother2 span:nth-child(7) {transition: 0.8s;}
.btn-animated .span-mother2 span:nth-child(8) {transition: 0.9s;}
.btn-animated .span-mother2 span:nth-child(9) {transition: 1.0s;}
.btn-animated .span-mother2 span:nth-child(10) {transition: 1.1s;}
.btn-animated .span-mother2 span:nth-child(11) {transition: 1.2s;}
.btn-animated .span-mother2 span:nth-child(12) {transition: 1.3s;}
.btn-animated .span-mother2 span:nth-child(13) {transition: 1.4s;}
.btn-animated .span-mother2 span:nth-child(14) {transition: 1.5s;}
.btn-animated .span-mother2 span:nth-child(15) {transition: 1.6s;}
.btn-animated .span-mother2 span:nth-child(16) {transition: 1.7s;}
.btn-animated .span-mother2 span:nth-child(17) {transition: 1.8s;}
.btn-animated .span-mother2 span:nth-child(18) {transition: 1.9s;}
.btn-animated .span-mother2 span:nth-child(19) {transition: 2.0s;}
.btn-animated .span-mother2 span:nth-child(20) {transition: 2.1s;}
.btn-animated .span-mother2 span:nth-child(21) {transition: 2.2s;}
.btn-animated .span-mother2 span:nth-child(22) {transition: 2.3s;}
.btn-animated .span-mother2 span:nth-child(23) {transition: 2.4s;}
.btn-animated .span-mother2 span:nth-child(24) {transition: 2.5s;}
.btn-animated .span-mother2 span:nth-child(25) {transition: 2.6s;}
.btn-animated .span-mother2 span:nth-child(26) {transition: 2.7s;}
.btn-animated .span-mother2 span:nth-child(27) {transition: 2.8s;}
.btn-animated .span-mother2 span:nth-child(28) {transition: 2.9s;}
.btn-animated .span-mother2 span:nth-child(29) {transition: 3.0s;}
.btn-animated .span-mother2 span:nth-child(30) {transition: 3.1s;}
.btn-animated .span-mother2 span:nth-child(31) {transition: 3.2s;}
.btn-animated .span-mother2 span:nth-child(32) {transition: 3.3s;}
.btn-animated .span-mother2 span:nth-child(33) {transition: 3.4s;}
.btn-animated .span-mother2 span:nth-child(34) {transition: 3.5s;}
.btn-animated .span-mother2 span:nth-child(35) {transition: 3.6s;}
.btn-animated .span-mother2 span:nth-child(36) {transition: 3.7s;}
.btn-animated .span-mother2 span:nth-child(37) {transition: 3.8s;}
.btn-animated .span-mother2 span:nth-child(38) {transition: 3.9s;}
.btn-animated .span-mother2 span:nth-child(39) {transition: 4.0s;}
.btn-animated .span-mother2 span:nth-child(40) {transition: 4.1s;}

.btn-animated-2 {
    transition: all 0.5s;
}
.btn-animated-2 span {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: 0.5s;
}
.btn-animated-2 span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: 0.5s;
}
.btn-animated-2:hover span {
    padding-right: 15px;
}
.btn-animated-2:hover span:after {
    opacity: 1;
    right: 0;
}

.btn-arancio {
    background-color: #EF7D00;
    border: solid 1px #EF7D00;
}
.btn-arancio:hover {
    background-color: #EF7D00;
}

.btn-bianco {
    color: #EF7D00;
    background-color: #FFFFFF;
    border: solid 1px #FFFFFF;
}
.btn-bianco:hover {
    color: #EF7D00;
    background-color: #FFFFFF;
}

.badge-azzurro {
    font-family: "Arnold 2.1", sans-serif;
    font-size: 20px;
    line-height: 23px;
    padding: 6px 15px;
    background-color: #68C1ED;
    border-radius: 10px;
}
.badge-giallo {
    font-family: "Arnold 2.1", sans-serif;
    font-size: 20px;
    line-height: 23px;
    padding: 6px 15px;
    background-color: #FFCF00;
    border-radius: 10px;
}

main {
    padding: 50px 0;
}

.box-avvisi {
    position: fixed;
    display: flex;
    right: 85px;
    bottom: 45px;
    z-index: 999;
}
.card-avviso {
    position: relative;
    max-width: 350px;
    padding: 25px;
    background-color: #FFBE76;
    border: solid 5px #EF7D00;
}
.box-avvisi > .card-avviso {
    margin-left: 8px;
}
.card-avviso .chiudi {
    content: url("../../_img/_icon/chiudi.svg");
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.card-avviso p.titolo {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
}
.card-avviso p.titolo:before {
    content: url("../../_img/_icon/avviso.svg");
    margin-right: 5px;
}
.card-avviso p:not(.titolo) {
    font-size: 12px;
    line-height: 18px;
}
.card-avviso p:not(.titolo):last-of-type {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .box-avvisi {
        right: 50%;
        transform: translateX(50%);
        flex-direction: column;
    }
    .card-avviso {
        width: max-content;
    }
    .box-avvisi > .card-avviso {
        margin-left: 0;
        margin-top: 8px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#menu-principale {
    position: relative;
    padding: 40px 0;
    z-index: 999;
}
#menu-principale.fixed,
#menu-principale.always-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 8px 0;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
}
#menu-principale .logo {
    max-width: 185px;
}
#menu-principale.fixed .logo,
#menu-principale.always-fixed .logo {
    display: none;
}
#menu-principale .logo-fixed {
    display: none;
    max-width: 95px;
}
#menu-principale.fixed .logo-fixed,
#menu-principale.always-fixed .logo-fixed {
    display: inline-block;
}
#menu-principale .hamburger {
    position: relative;
    display: none;
    cursor: pointer;
    z-index: 1000;
}
#menu-principale .hamburger input {
    display: none;
}
#menu-principale .hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 3em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
#menu-principale .hamburger svg .line {
    fill: none;
    stroke: #FFFFFF;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
#menu-principale.fixed .hamburger svg .line,
#menu-principale.always-fixed .hamburger svg .line,
#menu-principale .hamburger input:checked + svg .line {
    stroke: #2B2B29;
}
#menu-principale .hamburger svg .line-top-bottom {
    stroke-dasharray: 12 63;
}
#menu-principale .hamburger input:checked + svg {
    transform: rotate(-45deg);
}
#menu-principale .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}
#menu-principale .menu {
    margin: 0;
    padding: 16px 0;
    text-align: center;
    border-bottom: dashed 2px #FFFFFF;
}
#menu-principale .menu > li {
    position: relative;
    display: inline-block;
    margin: 0 25px;
}
#menu-principale .menu > li:has(.menu-dropdown):after {
    content: url("../../_img/_icon/chevron_destra_small_bianca.svg");
    display: inline-block;
    line-height: 1px;
    margin-left: 3px;
    vertical-align: middle;
    transform: rotate(90deg);
    transition: all .25s ease-in-out;
}
#menu-principale.fixed .menu > li:has(.menu-dropdown):after,
#menu-principale.always-fixed .menu > li:has(.menu-dropdown):after {
    content: url("../../_img/_icon/chevron_destra_small.svg");
}
#menu-principale .menu > li:has(.menu-dropdown).active:after,
#menu-principale .menu > li:has(.menu-dropdown):hover:after {
    content: url("../../_img/_icon/chevron_destra_small_arancio.svg");
}
#menu-principale .menu > li:has(.menu-dropdown):hover:after {
    transform: rotate(-90deg);
}
#menu-principale .menu > li > a {
    font-family: "Arnold 2.1", sans-serif;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
}
#menu-principale.fixed .menu > li > a,
#menu-principale.always-fixed .menu > li > a {
    color: #2B2B29;
}
#menu-principale .menu > li.active > a,
#menu-principale .menu > li:hover > a {
    color: #EF7D00;
}
#menu-principale .menu > li > .menu-dropdown {
    position: absolute;
    left: 50%;
    top: 100%;
    display: none;
    padding: 38px 33px 23px;
    background-color: #FFFFFF;
    transform: translateX(-50%);
    opacity: 0;
}
#menu-principale .menu > li:hover > .menu-dropdown {
    display: block;
    opacity: 1;
}
#menu-principale .menu > li > .menu-dropdown > ul {
    margin: 0;
    padding: 0;
    text-align: start;
    list-style: none;
}
#menu-principale .menu > li > .menu-dropdown > ul > li:not(:last-child) {
    margin-bottom: 13px;
}
#menu-principale .menu > li > .menu-dropdown > ul > li > a {
    font-family: "Arnold 2.1", sans-serif;
    font-size: 16px;
    line-height: 19px;
    color: #2A2B29;
    text-decoration: none;
    display: block;
    width: max-content;
}
#menu-principale .menu > li > .menu-dropdown > ul > li.active > a,
#menu-principale .menu > li > .menu-dropdown > ul > li:hover > a {
    color: #EF7D00;
}
#menu-principale .cambio-lingua {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    text-align: left;
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
}
#menu-principale .cambio-lingua .current-lang {
    color: #FFFFFF;
    background: transparent;
}
#menu-principale.fixed .cambio-lingua .current-lang,
#menu-principale.always-fixed .cambio-lingua .current-lang {
    color: #2B2B29;
}
#menu-principale .cambio-lingua .current-lang:after {
    content: url("../../_img/_icon/chevron_destra_small_bianca.svg");
    display: inline-block;
    line-height: 1px;
    margin-left: 10px;
    transform: rotate(90deg);
}
#menu-principale.fixed .cambio-lingua .current-lang:after,
#menu-principale.always-fixed .cambio-lingua .current-lang:after {
    content: url("../../_img/_icon/chevron_destra_small.svg");
}
#menu-principale .cambio-lingua .lang-text {
    display: inline-block;
    margin: 0;
}
#menu-principale .cambio-lingua .lang-dropdown {
    position: absolute;
    top: 100%;
    display: none;
    margin-top: 2px;
    background: #ffffff47;
    border-top: solid 1px #FFFFFF;
}
#menu-principale.fixed .cambio-lingua .lang-dropdown,
#menu-principale.always-fixed .cambio-lingua .lang-dropdown {
    border-top: solid 1px #2B2B29;
}
#menu-principale .cambio-lingua:hover .lang-dropdown {
    display: block;
}
#menu-principale .cambio-lingua .selecting-lang {
    padding: 5px 10px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}
#menu-principale.fixed .cambio-lingua .selecting-lang,
#menu-principale.always-fixed .cambio-lingua .selecting-lang {
    color: #2B2B29;
}

#menu-slide {
    position: fixed;
    left: -100%;
    top: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 35px;
    background-color: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    transition: all .5s;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 999;
}
#menu-slide ul {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}
#menu-slide ul > li:not(:last-child) {
    margin-bottom: 35px;
}
#menu-slide ul > li > a {
    font-family: "Arnold 2.1", sans-serif;
    font-size: 20px;
    line-height: 23px;
    color: #2B2B29;
    text-decoration: none;
}
#menu-slide ul > li.active > a {
    color: #EF7D00;
}
#menu-slide ul > li > .chevron {
    content: url("../../_img/_icon/chevron_destra_small.svg");
    display: inline-block;
    line-height: 1px;
    margin-left: 3px;
    vertical-align: middle;
    transform: rotate(90deg);
    transition: all .25s ease-in-out;
}
#menu-slide ul > li > .menu-dropdown {
    display: none;
}
#menu-slide ul > li > .menu-dropdown > ul > li {
    margin-top: 15px;
    margin-bottom: 0;
}
#menu-slide ul > li > .menu-dropdown > ul > li > a {
    font-size: 16px;
    line-height: 18px;
}
#menu-slide ul > li > .menu-dropdown > ul > li.active > a {
    color: #EF7D00;
}
#menu-slide ul > li > .menu-dropdown.show {
    display: block;
}
#menu-slide .btn-arancio {
    width: max-content;
    margin: 0 auto 40px;
}
#menu-slide .cambio-lingua {
    width: max-content;
    margin: 0 auto;
}
#menu-slide .cambio-lingua .current-lang {
    color: #2B2B29;
}
#menu-slide .cambio-lingua .current-lang:after {
    content: url("../../_img/_icon/chevron_destra_small.svg");
}
#menu-slide .cambio-lingua .lang-dropdown {
    border-top: solid 1px #2B2B29;
}
#menu-slide .cambio-lingua .selecting-lang {
    color: #2B2B29;
}

@media (max-width: 1499px) {
    #menu-principale .menu > li {
        margin: 0 17px;
    }
    #menu-principale .btn,
    #menu-principale .cambio-lingua {
        display: block;
        width: max-content;
        margin: 0 auto;
    }
}
@media (max-width: 1399px) {
    #menu-principale .menu > li {
        margin: 0 5px;
    }
}
@media (max-width: 1199px) {
    #menu-principale.fixed .col-logo,
    #menu-principale.always-fixed .col-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #menu-principale .logo {
        width: 120px;
    }
    #menu-principale .logo-fixed {
        width: 75px;
    }
    #menu-principale .hamburger {
        position: absolute;
        right: calc(var(--bs-gutter-x) * .5);
        display: inline-block;
    }
    #menu-principale .menu,
    #menu-principale div:not(#menu-slide) > .btn-arancio,
    #menu-principale div:not(#menu-slide) > .cambio-lingua {
        display: none;
    }

    #menu-slide.open {
        left: 0;
        transition: all .5s;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#slider-home {
    margin-top: -265px;
}
#slider-home .owl-carousel {
    position: relative;
}
#slider-home .owl-carousel .item {
    position: relative;
    display: flex;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
}
#slider-home .owl-carousel .item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #000000 0%, #050505F4 0%, #0B0B0BE7 0%, #121212DA 0%, #1D1D1DC4 0%, #000000D4 0%, #19191958 42%, #80808000 100%) 0% 0% no-repeat padding-box;
}
#slider-home .owl-carousel .item h1 {
    position: relative;
    color: #FFFFFF;
    text-shadow: -4px 4px 0px #000000;
    margin-top: 35%;
}
#slider-home .owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    display: flex;
    transform: translateX(-50%);
}
#slider-home .owl-carousel .owl-dots > .owl-dot {
    margin: 0 5px;
    border-radius: 50%;
}
#slider-home .owl-carousel .owl-dots > .owl-dot.active {
    border: solid 3px #FDEAD5;
}
#slider-home .owl-carousel .owl-dots > .owl-dot > span {
    width: 13px;
    height: 13px;
    margin: 0;
    background-color: #FFFFFF;
}
#slider-home .owl-carousel .owl-dots > .owl-dot.active > span {
    background-color: #EF7D00;
    border: solid 3px #FAC080;
}

@media (max-width: 1499px) {
    #slider-home {
        margin-top: -250px;
    }
}
@media (max-width: 1399px) {
    #slider-home {
        margin-top: -222px;
    }
}
@media (max-width: 1199px) {
    #slider-home {
        margin-top: -200px;
    }
}
@media (max-width: 991px) {
    #slider-home .owl-carousel .item {
        height: 75vh;
    }
    #slider-home .owl-carousel .item h1 {
        display: none;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#img-copertina {
    height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    #img-copertina {
        height: 400px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#homepage .badge-azzurro {
    display: inline-block;
    margin-bottom: 16px;
    transform: rotate(-10deg);
}
#homepage .box-numeri {
    text-align: center;
}
#homepage .box-numeri .col:not(:last-of-type) {
    border-right: dashed 1px #B7B7B7;
}
#homepage .box-numeri .stat-number {
    font-family: "Arnold 2.1", sans-serif;
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 6px;
}
#homepage .box-numeri .stat-suffix {
    font-size: 18px;
    line-height: 27px;
}
#homepage .flex-container {
    display: flex;
    width: 100%;
    height: 460px;
    overflow: hidden;
}
#homepage .flex-container > .flex-slide {
    position: relative;
    color: #FFFFFF;
    text-decoration: none;
    flex: 1;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 500ms ease;
    border-radius: 11px;
}
#homepage .flex-container > .flex-slide:not(:last-child) {
    margin-right: 16px;
}
#homepage .flex-container > .flex-slide:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #2A2B29 100%, #135802 100%) 0% 0% no-repeat padding-box;
    border-radius: 11px;
}
#homepage .flex-container > .flex-slide:hover {
    flex-grow: 2;
    background-blend-mode: screen;
}
#homepage .flex-container > .flex-slide > .flex-title {
    position: absolute;
    left: 40px;
    bottom: 30px;
    font-family: "Arnold 2.1", sans-serif;
    font-size: 24px;
    line-height: 28px;
}
#homepage .flex-container > .flex-slide > .flex-scopri {
    position: absolute;
    right: 40px;
    bottom: 30px;
    text-decoration: underline;
    opacity: 0;
    transition: all 500ms ease;
}
#homepage .flex-container > .flex-slide:hover > .flex-scopri {
    opacity: 1;
}

@media (max-width: 991px) {
    #homepage .box-numeri .col {
        min-width: 50%;
        padding-top: 20px;
        padding-bottom: 20px;
        border-right: none!important;
    }
    #homepage .box-numeri .col:nth-child(1),
    #homepage .box-numeri .col:nth-child(2) {
        border-bottom: dashed 1px #B7B7B7;
    }
    #homepage .box-numeri .stat-suffix {
        font-size: 14px;
        line-height: 21px;
    }
    #homepage .flex-container {
        height: auto;
        flex-direction: column;
    }
    #homepage .flex-container > .flex-slide {
        min-height: 250px;
        background-size: cover;
    }
    #homepage .flex-container > .flex-slide:not(:last-child) {
        margin-right: 0;
        margin-bottom: 16px;
    }
    #homepage .flex-container > .flex-slide:hover {
        flex-grow: 1;
    }
    #homepage .flex-container > .flex-slide > .flex-title {
        left: 23px;
    }
    #homepage .flex-container > .flex-slide > .flex-scopri {
        right: 23px;
        opacity: 1;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-per-chi {
    padding: 50px 0 100px;
}
#fascia-per-chi .col-testo {
    position: sticky;
    top: 125px;
    height: max-content;
}
#fascia-per-chi .badge-azzurro {
    display: inline-block;
    margin-bottom: 16px;
    transform: rotate(-10deg) translateX(-15%);
}
.card-per-chi {
    position: relative;
    padding: 40px 45px;
    background-color: #FFFFFF;
    box-shadow: 0px 6px 12px #00000029;
    border-radius: 11px;
    transition: all .5s ease-in-out;
}
#fascia-per-chi .card-per-chi.position-sticky {
    top: 0;
}
#fascia-per-chi .card-per-chi.position-sticky:not(:last-of-type) {
    transform: scale(0.9);
}
.card-per-chi img {
    border-radius: 11px;
}
.card-per-chi .col-desc:after {
    content: url("../../_img/logo.svg");
    position: absolute;
    top: 25px;
    right: 20px;
    width: 100px;
}

@media (max-width: 1399px) {
    .card-per-chi .col-desc:after {
        width: 75px;
    }
}
@media (max-width: 1199px) {
    .card-per-chi {
        padding: 20px 25px;
    }
    #fascia-per-chi .card-per-chi.position-sticky {
        top: 90px;
    }
    .card-per-chi .col-desc:after {
        content: none;
    }
}
@media (max-width: 991px) {
    #fascia-per-chi .col-testo {
        position: unset;
    }
    .card-per-chi {
        text-align: center;
        padding: 16px 20px 25px;
    }
    .card-per-chi img {
        margin-bottom: 23px;
    }
}
@media (max-width: 575px) {
    #fascia-per-chi {
        padding: 25px 0 50px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-sicurezza {
    position: relative;
    color: #FFFFFF;
    background-color: #145802;
}
#fascia-sicurezza:after {
    content: url("../../_img/deco_sicurezza.svg");
    position: absolute;
    top: 0;
    right: 138px;
    transform: translateY(-50%);
}
#fascia-sicurezza .col-carousel {
    padding-left: 0;
}
#fascia-sicurezza .owl-carousel .item {
    height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 11px 11px 0;
}
#fascia-sicurezza .owl-carousel .owl-dots {
    position: absolute;
    right: 35px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#fascia-sicurezza .owl-carousel .owl-dots > .owl-dot {
    margin: 5px 0;
    border-radius: 50%;
}
#fascia-sicurezza .owl-carousel .owl-dots > .owl-dot.active {
    border: solid 3px #FDEAD5;
}
#fascia-sicurezza .owl-carousel .owl-dots > .owl-dot > span {
    width: 13px;
    height: 13px;
    margin: 0;
    background-color: #FFFFFF;
}
#fascia-sicurezza .owl-carousel .owl-dots > .owl-dot.active > span {
    background-color: #EF7D00;
    border: solid 3px #FAC080;
}
#fascia-sicurezza .badge-giallo {
    display: inline-block;
    color: #2B2B29;
    margin-bottom: 16px;
    transform: rotate(-10deg) translateX(-15%);
}
#fascia-sicurezza .lista-icone {
    margin: 50px 0 0;
    padding: 35px 0;
    text-align: center;
    border-top: dashed 1px #FFFFFF;
    border-bottom: dashed 1px #FFFFFF;
}
#fascia-sicurezza .lista-icone li {
    display: inline-block;
    margin: 0 40px;
    text-align: center;
}
#fascia-sicurezza .lista-icone li > img {
    display: block;
    margin: 0 auto 10px;
}

@media (max-width: 1499px) {
    #fascia-sicurezza .lista-icone li {
        margin: 0 30px;
    }
}
@media (max-width: 1399px) {
    #fascia-sicurezza .lista-icone li {
        margin: 0 18px;
    }
}
@media (max-width: 1199px) {
    #fascia-sicurezza .owl-carousel .item {
        height: 800px;
    }
    #fascia-sicurezza .lista-icone li {
        margin: 0 20px;
    }
}
@media (max-width: 991px) {
    #fascia-sicurezza:after {
        content: none;
    }
    #fascia-sicurezza .col-carousel {
        padding: 0;
    }
    #fascia-sicurezza .owl-carousel .item {
        height: 400px;
        border-radius: 0;
    }
    #fascia-sicurezza .owl-carousel .owl-dots {
        right: 50%;
        bottom: 18px;
        transform: translateX(50%);
        flex-direction: row;
    }
    #fascia-sicurezza .owl-carousel .owl-dots > .owl-dot {
        margin: 0 5px;
    }
    #fascia-sicurezza .col-desc {
        padding: 35px calc(var(--bs-gutter-x) * .5) 60px;
    }
}
@media (max-width: 575px) {
    #fascia-sicurezza .lista-icone li {
        margin: 0 15px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-percorsi {
    padding: 150px 0;
}
#fascia-percorsi .img-deco {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#fascia-percorsi .lista-percorsi {
    position: relative;
    display: flex;
    margin: 0;
    padding: 0;
}
#fascia-percorsi .lista-percorsi > li {
    display: inline-flex;
    min-height: 45px;
    margin: 0 30px;
    text-align: center;
    flex: 1;
    flex-direction: column;
    justify-content: end;
}
#fascia-percorsi .lista-percorsi > li:hover {
    border-radius: 34px;
}
#fascia-percorsi .lista-percorsi > li.percorso-giallo:hover {
    background-color: #FFCF00;
}
#fascia-percorsi .lista-percorsi > li.percorso-arancio:hover {
    background-color: #EF7D00;
}
#fascia-percorsi .lista-percorsi > li.percorso-viola:hover {
    background-color: #8829AA;
}
#fascia-percorsi .lista-percorsi > li.percorso-verde:hover {
    background-color: #49AD33;
}
#fascia-percorsi .lista-percorsi > li.percorso-blu:hover {
    background-color: #164194;
}
#fascia-percorsi .lista-percorsi > li.percorso-rosso:hover {
    background-color: #E51312;
}
#fascia-percorsi .lista-percorsi > li.percorso-nero:hover {
    background-color: #000000;
}
#fascia-percorsi .lista-percorsi > li:after {
    content: "";
    display: block;
    width: 100%;
    height: 7px;
    border-radius: 34px;
}
#fascia-percorsi .lista-percorsi > li.percorso-giallo:after {
    background-color: #FFCF00;
}
#fascia-percorsi .lista-percorsi > li.percorso-arancio:after {
    background-color: #EF7D00;
}
#fascia-percorsi .lista-percorsi > li.percorso-viola:after {
    background-color: #8829AA;
}
#fascia-percorsi .lista-percorsi > li.percorso-verde:after {
    background-color: #49AD33;
}
#fascia-percorsi .lista-percorsi > li.percorso-blu:after {
    background-color: #164194;
}
#fascia-percorsi .lista-percorsi > li.percorso-rosso:after {
    background-color: #E51312;
}
#fascia-percorsi .lista-percorsi > li.percorso-nero:after {
    background-color: #000000;
}
#fascia-percorsi .lista-percorsi > li:hover:after {
    content: none;
}
#fascia-percorsi .lista-percorsi > li > a {
    font-size: 14px;
    display: block;
    color: #2B2B29;
    text-decoration: none;
    text-transform: uppercase;
}
#fascia-percorsi .lista-percorsi > li:hover > a {
    color: #FFFFFF;
    padding: 10px 0;
}

@media (max-width: 1399px) {
    #fascia-percorsi .img-deco {
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 1199px) {
    #fascia-percorsi .lista-percorsi > li {
        margin: 0 20px;
    }
}
@media (max-width: 991px) {
    #fascia-percorsi {
        padding: 50px 0;
    }
    #fascia-percorsi .img-deco {
        left: -40%;
        top: 15%;
        max-height: 120px;
        transform: rotate(40deg) translate(50%, -50%);
    }
    #fascia-percorsi .lista-percorsi {
        display: none;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-gruppi .col-gruppi {
    padding: 75px calc(var(--bs-gutter-x) * .5) 75px 135px;
    background-color: #FFFFFF;
    box-shadow: 0px 6px 12px #00000029;
    border-radius: 11px;
}
#fascia-gruppi .badge-giallo {
    display: inline-block;
    color: #2B2B29;
    margin-bottom: 8px;
    transform: rotate(-10deg) translateX(-15%);
}
.card-gruppo {
    position: relative;
    min-height: 465px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 11px;
}
#gruppi .card-gruppo {
    margin-bottom: 20px;
}
.card-gruppo:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #2A2B29 100%, #135802 100%) 0% 0% no-repeat padding-box;
    border-radius: 11px;
}
.card-gruppo:after {
    content: url("../../_img/freccia_destra.svg");
    position: absolute;
    right: 25px;
    bottom: 30px;
    opacity: 0;
}
.card-gruppo:hover:after {
    opacity: 1;
}
.card-gruppo .card-title {
    position: absolute;
    left: 40px;
    bottom: 30px;
    font-family: "Arnold 2.1", sans-serif;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
}
#fascia-gruppi .owl-carousel .item {
    margin-right: 166px;
}
#fascia-gruppi .owl-carousel .owl-nav {
    display: flex;
    margin: 30px 25px 0;
    justify-content: space-between;
}
#fascia-gruppi .owl-carousel .owl-nav button {
    display: inline-flex;
    margin: 0;
}
#fascia-gruppi .owl-carousel .owl-nav button:hover {
    background-color: transparent;
}
#fascia-gruppi .owl-carousel .owl-nav .owl-prev {
    opacity: 0;
}
#fascia-gruppi .owl-carousel .owl-nav .owl-next span {
    content: url("../../_img/_icon/chevron_destra.svg");
}

@media (max-width: 1199px) {
    #fascia-gruppi .col-gruppi {
        padding: 75px calc(var(--bs-gutter-x) * .5) 75px 75px;
    }
}
@media (max-width: 991px) {
    #fascia-gruppi .col-gruppi {
        padding: 40px calc(var(--bs-gutter-x) * .5);
        border-radius: 0;
        box-shadow: none;
    }
    .card-gruppo {
        min-height: 400px;
    }
    .card-gruppo:after {
        opacity: 1;
    }
    .card-gruppo .card-title {
        left: 25px;
    }
    #fascia-gruppi .owl-carousel .item {
        margin-right: 66px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-orari {
    padding: 50px 0 0;
}
#fascia-orari .col-orari,
#fascia-orari .col-trovi-anche {
    display: flex;
    align-items: start;
}
#fascia-orari .col-orari {
    padding-top: 80px;
    padding-right: 78px;
    padding-bottom: 80px;
    border-right: dashed 1px #B7B7B7;
}
#fascia-orari .col-trovi-anche {
    padding-top: 80px;
    padding-left: 78px;
    padding-bottom: 80px;
}
#fascia-orari .col-orari img,
#fascia-orari .col-trovi-anche img {
    width: 85px;
    margin-right: 55px;
}
#fascia-orari .col-trovi-anche small {
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
}

@media (max-width: 1199px) {
    #fascia-orari .col-orari {
        padding-top: 50px;
        padding-right: 40px;
        padding-bottom: 50px;
    }
    #fascia-orari .col-trovi-anche {
        padding-top: 50px;
        padding-left: 40px;
        padding-bottom: 50px;
    }
    #fascia-orari .col-orari img, #fascia-orari .col-trovi-anche img {
        width: 65px;
    }
}
@media (max-width: 991px) {
    #fascia-orari {
        padding: 0;
    }
    #fascia-orari .col-orari, #fascia-orari .col-trovi-anche {
        padding: 40px calc(var(--bs-gutter-x) * .5);
        text-align: center;
        flex-direction: column;
    }
    #fascia-orari .col-orari {
        border-right: none;
        border-bottom: dashed 1px #B7B7B7;
    }
    #fascia-orari .col-orari img, #fascia-orari .col-trovi-anche img {
        width: 50px;
        margin: 0 auto 18px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-galleria {
    padding: 100px 0;
}
#fascia-galleria .owl-carousel .owl-stage {
    padding-top: 60px;
}
#fascia-galleria .owl-carousel .item {
    margin: 0 145px;
}
#fascia-galleria .owl-carousel .owl-stage .owl-item:nth-child(odd) {
    transform: translateY(-40px) rotate(-10deg);
}
#fascia-galleria .owl-carousel .item img {
    border-radius: 11px;
}

@media (max-width: 1199px) {
    #fascia-galleria {
        padding: 50px 0;
    }
}
@media (max-width: 991px) {
    #fascia-galleria .owl-carousel .item {
        margin: 0 95px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
footer {
    color: #FFFFFF;
}
footer .box-contattaci {
    padding: 65px 0 35px;
    background-color: #EF7D00;
}
footer .box-footer {
    padding: 195px 0 70px;
    background-color: #EF7D00;
    background-image: url("../../_img/bg_footer.svg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
footer .box-footer a {
    color: #FFFFFF;
    text-decoration: none;
}
footer .box-footer a:not(.btn):hover {
    text-decoration: underline;
}
footer .box-footer img {
    max-width: 150px;
    margin-bottom: 30px;
}
footer .box-footer h6 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}
footer .box-footer .lista-social {
    line-height: 1px;
    margin: 0;
    padding: 0;
    text-align: center;
}
footer .box-footer .lista-social li {
    position: relative;
    display: inline-flex;
    margin: 0 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
footer .box-footer .lista-social li:before {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    background-color: #145802;
    border-radius: 50%;
    transition: 0.4s;
    z-index: -1;
}
footer .box-footer .lista-social li:hover:before {
    width: 0;
    height: 0;
}
footer .box-footer .lista-social li.instagram {
    background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
}
footer .box-footer .lista-social li.facebook {
    background: #3b5998;
}
footer .box-footer .lista-social li > a {
    position: relative;
    width: 20px;
    z-index: 1;
}
footer .box-footer .lista-social li.instagram > a {
    content: url("../../_img/_icon/instagram.svg");
}
footer .box-footer .lista-social li.facebook > a {
    content: url("../../_img/_icon/facebook.svg");
}
footer .container-fluid {
    padding: 40px calc(var(--bs-gutter-x) * .5);
    background-color: #104702;
}
footer .container-fluid small {
    font-size: 12px;
    line-height: 18px;
}

@media (max-width: 991px) {
    footer .box-footer {
        padding: 130px 0 50px;
        background-image: url("../../_img/bg_footer_mobile.svg");
    }
    footer .container-fluid {
        padding: 25px calc(var(--bs-gutter-x) * .5);
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#parco .lista-parco {
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
    columns: 2;
}
#parco .lista-parco > li {
    width: max-content;
    cursor: pointer;
}
#parco .lista-parco > li:not(:last-child) {
    margin-bottom: 16px;
}
#parco .lista-parco > li > a {
    color: #2B2B29;
    text-decoration: none;
}
#parco small {
    font-size: 12px;
    line-height: 18px;
}
#parco .form-select {
    padding: 10px 23px;
    border: solid 3px #2A2B29;
    border-radius: 0;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-chi-siamo {
    color: #FFFFFF;
    background-color: #145802;
}
#fascia-chi-siamo .col-carousel {
    padding-left: 0;
}
#fascia-chi-siamo .owl-carousel .item {
    height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 11px 11px 0;
}
#fascia-chi-siamo .owl-carousel .owl-dots {
    position: absolute;
    right: 35px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#fascia-chi-siamo .owl-carousel .owl-dots > .owl-dot {
    margin: 5px 0;
    border-radius: 50%;
}
#fascia-chi-siamo .owl-carousel .owl-dots > .owl-dot.active {
    border: solid 3px #FDEAD5;
}
#fascia-chi-siamo .owl-carousel .owl-dots > .owl-dot > span {
    width: 13px;
    height: 13px;
    margin: 0;
    background-color: #FFFFFF;
}
#fascia-chi-siamo .owl-carousel .owl-dots > .owl-dot.active > span {
    background-color: #EF7D00;
    border: solid 3px #FAC080;
}
#fascia-chi-siamo .badge-giallo {
    display: inline-block;
    color: #2B2B29;
    margin-bottom: 16px;
    transform: rotate(-10deg) translateX(-15%);
}
@media (max-width: 991px) {
    #fascia-chi-siamo:after {
        content: none;
    }
    #fascia-chi-siamo .col-carousel {
        padding: 0;
    }
    #fascia-chi-siamo .owl-carousel .item {
        height: 400px;
        border-radius: 0;
    }
    #fascia-chi-siamo .owl-carousel .owl-dots {
        right: 50%;
        bottom: 18px;
        transform: translateX(50%);
        flex-direction: row;
    }
    #fascia-chi-siamo .owl-carousel .owl-dots > .owl-dot {
        margin: 0 5px;
    }
    #fascia-chi-siamo .col-desc {
        padding: 35px calc(var(--bs-gutter-x) * .5) 60px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-faq .card-faq {
    display: flex;
    padding: 50px 138px;
    background-color: #FFFFFF;
    box-shadow: 0px 6px 12px #00000029;
    border-radius: 11px;
}
#accordionFaq {
    margin-left: 40px;
}
#fascia-faq .card-faq #accordionFaq {
    flex: 1;
}
#accordionFaq > .accordion-item {
    border: none;
    border-bottom: solid 1px #707070;
    border-radius: 0;
}
#accordionFaq > .accordion-item > .accordion-header > .accordion-button {
    color: #2A2B29;
    padding: 16px 30px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}
#accordionFaq > .accordion-item > .accordion-header > .accordion-button:after {
    background-image: url("../../_img/_icon/piu.svg");
}
#accordionFaq > .accordion-item > .accordion-header > .accordion-button:not(.collapsed) {
    font-weight: bold;
}
#accordionFaq > .accordion-item > .accordion-header > .accordion-button:not(.collapsed):after {
    background-image: url("../../_img/_icon/meno.svg");
}
#accordionFaq > .accordion-item > .accordion-collapse > .accordion-body {
    padding: 0 30px 30px;
}
#accordionFaq > .accordion-item > .accordion-collapse > .accordion-body > p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    #fascia-faq .col-lg-12 {
        padding: 0;
    }
    #fascia-faq .card-faq {
        padding: 50px calc(var(--bs-gutter-x) * .5);
        border-radius: 0;
        flex-direction: column;
        box-shadow: none;
    }
    #fascia-faq .card-faq h3 {
        text-align: center;
    }
    #fascia-faq .card-faq h3 > br {
        display: none;
    }
    #accordionFaq {
        margin: 0;
    }
    #accordionFaq > .accordion-item > .accordion-header > .accordion-button {
        padding: 16px 0;
    }
    #accordionFaq > .accordion-item > .accordion-collapse > .accordion-body {
        padding: 0 0 30px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#percorsi .col-altezza {
    padding-right: 60px;
    border-right: dashed 1px #B7B7B7;
}
#percorsi .col-altezza small {
    font-size: 12px;
    line-height: 18px;
}
#percorsi .col-altezza .form-control {
    padding: 10px 23px;
    border: solid 3px #2A2B29;
    border-radius: 0;
}
#percorsi .col-eta {
    padding-left: 60px;
}
#percorsi .col-eta small {
    font-size: 12px;
    line-height: 18px;
}
#percorsi .col-eta .form-control {
    padding: 10px 23px;
    border: solid 3px #2A2B29;
    border-radius: 0;
}
#percorsi .info {
    display: flex;
    align-items: center;
}
#percorsi .info:before {
    content: url("../../_img/_icon/info.svg");
    line-height: 1;
    margin-right: 13px;
    vertical-align: middle;
}
.card-percorso {
    background-color: #FFFFFF;
    border: solid 2px;
}
#percorsi .card-percorso {
    margin-bottom: 30px;
}
.card-percorso .card-header {
    padding: 20px 40px;
}
.card-percorso .card-header h4 {
    color: #FFFFFF;
    margin: 0;
}
.card-percorso .card-body {
    padding: 20px 40px;
}
.card-percorso .card-body .lista-info {
    margin: 0;
    padding: 0;
}
.card-percorso .card-body .lista-info > li {
    display: inline-block;
    margin-bottom: 20px;
}
.card-percorso .card-body .lista-info > li:not(:last-child) {
    margin-right: 30px;
}
.card-percorso .card-body .desc {
    padding-top: 20px;
    border-top: dashed 1px #B7B7B7;
}
.card-percorso .card-footer {
    display: flex;
    padding: 0 40px 20px;
}
.card-percorso .card-footer a {
    font-weight: 600;
    color: #2A2B29;
    display: flex;
    width: 100%;
    text-decoration: none;
    justify-content: space-between;
}
.card-percorso .card-footer a > img {
    max-width: 90px;
    opacity: 0;
}
.card-percorso .card-footer a:hover > img {
    opacity: 1;
}

@media (max-width: 1199px) {
    .card-percorso .card-header {
        padding: 20px 30px;
    }
    .card-percorso .card-body {
        padding: 20px 30px;
    }
    .card-percorso .card-footer {
        padding: 0 30px 20px;
    }
}
@media (max-width: 991px) {
    #percorsi .col-altezza {
        padding-right: calc(var(--bs-gutter-x) * .5);
        border-right: none;
    }
    #percorsi .col-eta {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    #percorsi .card-percorso {
        margin-bottom: 16px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#percorso {
    padding-top: 161px;
}
#percorso-categoria h6 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
#percorso-categoria .owl-carousel .owl-stage {
    padding-top: 60px;
}
#percorso-categoria .owl-carousel .owl-stage .owl-item:nth-child(odd) {
    transform: translateY(-40px) rotate(-10deg);
}
#fascia-galleria .owl-carousel .item img {
    border-radius: 11px;
}

@media (max-width: 1199px) {
    #percorso {
        padding-top: 141px;
    }
}
@media (max-width: 991px) {
    #percorso-categoria .btn {
        width: 100%;
    }
    #percorso-categoria .col-carousel {
        padding: 0;
    }
    #percorso-categoria .owl-carousel .item {
        margin: 0 95px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#percorso .col-mappa {
    padding-right: 90px;
    border-right: dashed 1px #B7B7B7;
}
#percorso .col-desc {
    padding-left: 50px;
}
#percorso .col-desc .lista-info {
    width: max-content;
    margin-bottom: 25px;
    padding: 20px;
    border: solid 3px;
}
#percorso .col-desc .lista-info > li {
    display: inline-block;
}
#percorso .col-desc .lista-info > li:not(:last-child) {
    margin-right: 25px;
}
#percorso .col-desc .info {
    margin-top: 100px;
}
#percorso .col-desc .info:before {
    content: url("../../_img/_icon/info.svg");
    line-height: 1;
    margin-right: 5px;
    vertical-align: middle;
}
#percorso .col-desc .info > a {
    color: #EF7D00;
}
#percorso h6 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
#percorso .owl-carousel .owl-stage {
    padding-top: 60px;
}
#percorso .owl-carousel .owl-stage .owl-item:nth-child(odd) {
    transform: translateY(-40px) rotate(-10deg);
}
#percorso .owl-carousel .item img {
    border-radius: 11px;
}

@media (max-width: 991px) {
    #percorso .col-mappa {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }
    #percorso .col-mappa .lista-info {
        width: auto;
        margin-bottom: 25px;
        padding: 20px;
        padding-bottom: 0;
        border: solid 3px;
    }
    #percorso .col-mappa .lista-info > li {
        display: inline-block;
        margin-bottom: 20px;
    }
    #percorso .col-mappa .lista-info > li:not(:last-child) {
        margin-right: 25px;
    }
    #percorso .col-desc {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    #percorso .col-desc .info {
        margin-top: 50px;
    }
    #percorso .btn {
        width: 100%;
    }
    #percorso .col-carousel {
        padding: 0;
    }
    #percorso .owl-carousel .item {
        margin: 0 95px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
.table-prezzi thead > tr > th {
    font-family: "Arnold 2.1", sans-serif;
    font-size: 20px;
    line-height: 23px;
    font-weight: normal;
    padding: 10px 30px;
    border-bottom: 0;
}
.table-prezzi thead > tr > th:first-child {
    border-radius: 11px 0 0 11px;
}
.table-prezzi thead > tr > th:last-child {
    border-radius: 0 11px 11px 0;
}
.table-prezzi tbody > tr > td {
    font-size: 18px;
    line-height: 27px;
    padding: 20px 30px;
    background-color: transparent;
    border-bottom: 0;
    align-content: center;
}
.table-prezzi tbody > tr:not(:first-child) > td {
    border-top: dashed 1px #B7B7B7;
}
.table-prezzi tbody > tr > td > * {
    vertical-align: middle;
}
.table-prezzi tbody > tr > td .pallino-giallo {
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-right: 5px;
    background-color: #FFE600;
    border-radius: 50%;
    vertical-align: middle;
}
.table-prezzi tbody > tr > td .pallino-arancione {
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-right: 5px;
    background-color: #F39200;
    border-radius: 50%;
    vertical-align: middle;
}
.table-prezzi tbody > tr > td .pallino-arancione-scuro {
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-right: 5px;
    background-color: #EA5B0B;
    border-radius: 50%;
    vertical-align: middle;
}
.table-prezzi tbody > tr > td .pallino-viola {
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-right: 5px;
    background-color: #82368C;
    border-radius: 50%;
    vertical-align: middle;
}
.table-prezzi tbody > tr > td .pallino-viola-scuro {
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-right: 5px;
    background-color: #662383;
    border-radius: 50%;
    vertical-align: middle;
}
.table-prezzi tbody > tr.space {
    height: 13px;
}
.table-prezzi tbody > tr.bg-verde > td {
    color: #FFFFFF;
    background-color: #49AD33;
    border-top: none;
}
.table-prezzi tbody > tr.bg-verde > td:first-child {
    border-radius: 11px 0 0 11px;
}
.table-prezzi tbody > tr.bg-verde > td:last-child {
    border-radius: 0 11px 11px 0;
}
.table-prezzi tbody > tr.bg-blu > td {
    color: #FFFFFF;
    background-color: #334FAD;
    border-top: none;
}
.table-prezzi tbody > tr.bg-blu > td:first-child {
    border-radius: 11px 0 0 11px;
}
.table-prezzi tbody > tr.bg-blu > td:last-child {
    border-radius: 0 11px 11px 0;
}
.table-prezzi tbody > tr.bg-rosso > td {
    color: #FFFFFF;
    background-color: #E51312;
    border-top: none;
}
.table-prezzi tbody > tr.bg-rosso > td:first-child {
    border-radius: 11px 0 0 11px;
}
.table-prezzi tbody > tr.bg-rosso > td:last-child {
    border-radius: 0 11px 11px 0;
}
.table-prezzi tbody > tr.bg-nero > td {
    color: #FFFFFF;
    background-color: #000000;
    border-top: none;
}
.table-prezzi tbody > tr.bg-nero > td:first-child {
    border-radius: 11px 0 0 11px;
}
.table-prezzi tbody > tr.bg-nero > td:last-child {
    border-radius: 0 11px 11px 0;
}

#accordionPrezzi > .accordion-item {
    margin-bottom: 12px;
    border: none;
    border-radius: 11px;
}
#accordionPrezzi > .accordion-item > .accordion-header > .accordion-button {
    color: #2A2B29;
    padding: 10px 30px;
    background-color: #FFFFFF;
    box-shadow: none;
    border-radius: 11px;
}
#accordionPrezzi > .accordion-item > .accordion-collapse > .accordion-body {
    padding: 10px 30px;
}
#accordionPrezzi > .accordion-item > .accordion-collapse > .accordion-body > table > tbody > tr > td {
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
    border-bottom: none;
}
#accordionPrezzi > .accordion-item > .accordion-collapse > .accordion-body > table > tbody > tr > td:not(:last-child) {
    border-right: solid 1px #707070;
}

@media (max-width: 991px) {
    .table-prezzi thead {
        display: none;
    }
    .table-prezzi tbody > tr > td {
        display: block;
    }
    .table-prezzi tbody > tr:not(.bg-verde,.bg-blu,.bg-rosso,.bg-nero) > td {
        padding-left: 0;
        padding-right: 0;
    }
    .table-prezzi tbody > tr > td:first-child {
        padding-bottom: 0;
    }
    .table-prezzi tbody > tr > td:last-child {
        padding-top: 0;
        border-top: none;
    }
    .table-prezzi tbody > tr > td .pallino-verde,
    .table-prezzi tbody > tr > td .pallino-verde-scuro {
        margin-bottom: 10px;
    }
    .table-prezzi tbody > tr.bg-verde > td:first-child,
    .table-prezzi tbody > tr.bg-blu > td:first-child,
    .table-prezzi tbody > tr.bg-rosso > td:first-child,
    .table-prezzi tbody > tr.bg-nero > td:first-child {
        border-radius: 11px 11px 0 0;
    }
    .table-prezzi tbody > tr.bg-verde > td:last-child,
    .table-prezzi tbody > tr.bg-blu > td:last-child,
    .table-prezzi tbody > tr.bg-rosso > td:last-child,
    .table-prezzi tbody > tr.bg-nero > td:last-child {
        border-radius: 0 0 11px 11px;
    }
    #accordionPrezzi > .accordion-item > .accordion-collapse > .accordion-body > table > tbody > tr > td {
        display: block;
        text-align: left;
        padding-left: 0;
        padding-top: 10px;
        padding-right: 0;
        padding-bottom: 10px;
    }
    #accordionPrezzi > .accordion-item > .accordion-collapse > .accordion-body > table > tbody > tr > td:not(:last-child) {
        border-right: none;
    }
    #accordionPrezzi > .accordion-item > .accordion-collapse > .accordion-body > table > tbody > tr > td > br {
        display: none;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-calendario {
    padding: 0 0 60px;
}

#calendar {
    display: inline-block;
    width: 320px;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
#calendar_weekdays div {
    display: inline-block;
    vertical-align: top;
}
#calendar_content,
#calendar_weekdays,
#calendar_header {
    position: relative;
    width: 320px;
    max-width: 100%;
    overflow: hidden;
    float: left;
    z-index: 10;
}
#calendar_weekdays div,
#calendar_content div {
    width: 40px;
    max-width: calc(100% / 7);
    height: 40px;
    overflow: hidden;
    text-align: center;
    background-color: #ffffff;
    color: #787878;
}
#calendar_content {
    -webkit-border-radius: 0px 0px 12px 12px;
    -moz-border-radius: 0px 0px 12px 12px;
    border-radius: 0px 0px 12px 12px;
}
#calendar_content div {
    float: left;
}
#calendar_content div:hover {
    background-color: #f8f8f8;
}
#calendar_content div.blank {
    background-color: #e8e8e8;
}
#calendar_content div.orario-1 {
    background-color: #A6E697;
}
#calendar_content div.orario-2 {
    background-color: #E7C347;
}
#calendar_content div.orario-3 {
    background-color: #6BC0E6;
}
#calendar_header,
#calendar_content div.today {
    zoom: 1;
}
/*#calendar_content div.today {
    color: #ffffff;
}*/
#calendar_header {
    display: flex;
    width: 100%;
    height: 37px;
    text-align: center;
    background-color: #ff6860;
    padding: 18px 0;
    -webkit-border-radius: 12px 12px 0px 0px;
    -moz-border-radius: 12px 12px 0px 0px;
    border-radius: 12px 12px 0px 0px;
    align-items: center;
}
#calendar_header h4 {
    color: #ffffff;
    width: 70%;
    margin-bottom: 0;
}
i[class^="fa fa-chevron"] {
    color: #ffffff;
    width: 15%;
    border-radius: 50%;
    cursor: pointer;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#fascia-calendario .lista-legenda {
    margin-bottom: 50px;
    padding: 0 0 35px;
    border-bottom: dashed 1px #B7B7B7;
    list-style: none;
}
#fascia-calendario .lista-legenda > li > span {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 25px;
    border-radius: 11px;
    vertical-align: middle;
}
#fascia-calendario .lista-legenda > li:not(:last-child) {
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    #fascia-calendario .lista-legenda {
        margin-bottom: 35px;
    }
    #fascia-calendario .lista-legenda > li:before {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#attivita-lista .flex-container {
    display: flex;
    width: 100%;
    height: 460px;
    overflow: hidden;
}
#attivita-lista .flex-container > .flex-slide {
    position: relative;
    color: #FFFFFF;
    text-decoration: none;
    flex: 1;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 500ms ease;
    border-radius: 11px;
}
#attivita-lista .flex-container > .flex-slide:not(:last-child) {
    margin-right: 16px;
}
#attivita-lista .flex-container > .flex-slide:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #2A2B29 100%, #135802 100%) 0% 0% no-repeat padding-box;
    border-radius: 11px;
}
#attivita-lista .flex-container > .flex-slide:hover {
    flex-grow: 2;
    background-blend-mode: screen;
}
#attivita-lista .flex-container > .flex-slide > .flex-title {
    position: absolute;
    left: 40px;
    bottom: 30px;
    font-family: "Arnold 2.1", sans-serif;
    font-size: 24px;
    line-height: 28px;
}
#attivita-lista .flex-container > .flex-slide > .flex-scopri {
    position: absolute;
    right: 40px;
    bottom: 30px;
    text-decoration: underline;
    opacity: 0;
    transition: all 500ms ease;
}
#attivita-lista .flex-container > .flex-slide:hover > .flex-scopri {
    opacity: 1;
}

@media (max-width: 991px) {
    #attivita-lista .flex-container {
        height: auto;
        flex-direction: column;
    }
    #attivita-lista .flex-container > .flex-slide {
        min-height: 250px;
        background-size: cover;
    }
    #attivita-lista .flex-container > .flex-slide:not(:last-child) {
        margin-right: 0;
        margin-bottom: 16px;
    }
    #attivita-lista .flex-container > .flex-slide:hover {
        flex-grow: 1;
    }
    #attivita-lista .flex-container > .flex-slide > .flex-title {
        left: 23px;
    }
    #attivita-lista .flex-container > .flex-slide > .flex-scopri {
        right: 23px;
        opacity: 1;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#attivita-scheda .col-mappa {
    padding-right: 90px;
    border-right: dashed 1px #B7B7B7;
}
#attivita-scheda .col-desc {
    padding-left: 50px;
}
#attivita-scheda .col-desc .info {
    margin-top: 100px;
}
#attivita-scheda .col-desc .info:before {
    content: url("../../_img/_icon/info.svg");
    line-height: 1;
    margin-right: 5px;
    vertical-align: middle;
}
#attivita-scheda .col-desc .info > a {
    color: #EF7D00;
}
#attivita-scheda h6 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
#attivita-scheda .owl-carousel .owl-stage {
    padding-top: 60px;
}
#attivita-scheda .owl-carousel .owl-stage .owl-item:nth-child(odd) {
    transform: translateY(-40px) rotate(-10deg);
}
#attivita-scheda .owl-carousel .item img {
    border-radius: 11px;
}

@media (max-width: 991px) {
    #attivita-scheda .col-mappa {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }
    #attivita-scheda .col-desc {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    #attivita-scheda .col-desc .info {
        margin-top: 50px;
    }
    #attivita-scheda .btn {
        width: 100%;
    }
    #attivita-scheda .col-carousel {
        padding: 0;
    }
    #attivita-scheda .owl-carousel .item {
        margin: 0 95px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#gruppo .owl-carousel .owl-stage {
    padding-top: 60px;
}
#gruppo .owl-carousel .owl-stage .owl-item:nth-child(odd) {
    transform: translateY(-40px) rotate(-10deg);
}
#gruppo .owl-carousel .item img {
    border-radius: 11px;
}

@media (max-width: 991px) {
    #gruppo .col-carousel {
        padding: 0;
    }
    #gruppo .owl-carousel .item {
        margin: 0 95px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#contatti h3 {
    color: #EF7D00;
}
#contatti a.h6 {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    display: block;
    text-decoration: none;
}
#form-richiesta-info {
    padding-left: 150px;
    border-left: dashed 1px #B7B7B7;
}
#form-richiesta-info > .row:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    #form-richiesta-info {
        padding-left: 75px;
    }
}
@media (max-width: 991px) {
    #form-richiesta-info {
        padding-left: 0;
        padding-top: 30px;
        border-left: none;
    }
}
@media (max-width: 575px) {
    #form-richiesta-info .g-recaptcha {
        display: inline-block;
        transform: scale(0.8) translate(-13%,-13%);
    }
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
#quatro-zero-quattro {
    height: 100vh;
    color: #FFFFFF;
    padding-top: 111px;
    background-image: url("../../_img/404.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    align-items: center;
}
#quatro-zero-quattro h1 {
    font-size: 200px;
    line-height: 234px;
}
#quatro-zero-quattro h2 {
    margin-bottom: 50px;
}

@media (max-width: 575px) {
    #quatro-zero-quattro {
        background-image: url("../../_img/404_mobile.jpg");
        background-position: center;
    }
    #quatro-zero-quattro h1 {
        font-size: 80px;
        line-height: 90px;
    }
}