@charset "utf-8";

@import "style-d.css";
@import "style-p.css";

/* ***********************
FAVINI CSS
+++++++++++++++++++++++++ */



/*
========================================
RESET STILI PER ANCORE, PARAGRAFI, TITOLI
========================================
*/


/* SCELTA DEL FONT USATO */



@font-face {
    font-family: 'TradeGothicBoldCondTwentyOblique';
    src: url("../fonts/trade-gothic/trade_gothic_bold_no._2_oblique-webfont.eot");
    src: url("../fonts/trade-gothic/trade_gothic_bold_no._2_oblique-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/trade-gothic/trade_gothic_bold_no._2_oblique-webfont.woff") format("woff"), url("../fonts/trade-gothic/trade_gothic_bold_no._2_oblique-webfont.ttf") format("truetype"), url("../fonts/trade-gothic/trade_gothic_bold_no._2_oblique-webfont.svg#TradeGothicBoldCondTwentyOblique") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TradeGothicBoldCondTwenty';
    src: url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.eot");
    src: url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.woff") format("woff"), url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.ttf") format("truetype"), url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.svg#TradeGothicBoldCondTwenty") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TradeGothicOblique';
    src: url("../fonts/trade-gothic/trade_gothic_oblique-webfont.eot");
    src: url("../fonts/trade-gothic/trade_gothic_oblique-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/trade-gothic/trade_gothic_oblique-webfont.woff") format("woff"), url("../fonts/trade-gothic/trade_gothic_oblique-webfont.ttf") format("truetype"), url("../fonts/trade-gothic/trade_gothic_oblique-webfont.svg#TradeGothicOblique") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TradeGothicMedium';
    src: url("../fonts/trade-gothic/trade_gothic-webfont.eot");
    src: url("../fonts/trade-gothic/trade_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/trade-gothic/trade_gothic-webfont.woff") format("woff"), url("../fonts/trade-gothic/trade_gothic-webfont.ttf") format("truetype"), url("../fonts/trade-gothic/trade_gothic-webfont.svg#TradeGothicMedium") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TradeGothicBoldTwo';
    src: url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.eot");
    src: url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.woff") format("woff"), url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.ttf") format("truetype"), url("../fonts/trade-gothic/trade_gothic_bold_no._2-webfont.svg#TradeGothicMedium") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TradeGothicBoldCondTwenty';
    src: url("../fonts/trade-gothic-cond/trade_gothic_bold_condensed_no._20-webfont.eot");
    src: url("../fonts/trade-gothic-cond/trade_gothic_bold_condensed_no._20-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/trade-gothic-cond/trade_gothic_bold_condensed_no._20-webfont.woff") format("woff"), url("../fonts/trade-gothic-cond/trade_gothic_bold_condensed_no._20-webfont.ttf") format("truetype"), url("../fonts/trade-gothic-cond/trade_gothic_bold_condensed_no._20-webfont.svg#TradeGothicBoldCondTwenty") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TradeGothicCondEighteen';
    src: url("../fonts/trade-gothic-cond/trade_gothic_condensed_no._18-webfont.eot");
    src: url("../fonts/trade-gothic-cond/trade_gothic_condensed_no._18-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/trade-gothic-cond/trade_gothic_condensed_no._18-webfont.woff") format("woff"), url("../fonts/trade-gothic-cond/trade_gothic_condensed_no._18-webfont.ttf") format("truetype"), url("../fonts/trade-gothic-cond/trade_gothic_condensed_no._18-webfont.svg#TradeGothicCondEighteen") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'titolo';
    src: url("../fonts/titolo.otf");
    font-weight: normal;
    font-style: normal;
}



html {
    background-color: white;
    scroll-behavior: smooth;
	overflow-x: hidden !important;
}

@media screen and (max-width:990px) {
    html {
        overflow-x: hidden;
    }
}

body {
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: black;
    overflow-x: hidden !important;
    font-family: TradeGothicMedium, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    -ms-font-smoothing: antialiased !important;
    text-rendering: optimizelegibility !important;
    background-repeat: repeat;
    background-size: auto;
}

.body-fixed {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* animazione opacity per start animazioni gsap timeline */

.gsap_opacity_zero {
    opacity: 0;
}

.css_animation_fade_in {
    animation: css_animation_fade_in 2.5s;
}

@keyframes css_animation_fade_in {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* colori fissi */

.container-100 {
    width: calc(100% - 120px);
    margin: 0 auto;
}


.testo_slider {}

.container-30 {
    width: 50%;
    max-width: 600px;
    margin: 0 auto;
}

.container-80 {
    width: 80%;
    margin: 0 auto;
}

.container-paragrafo {
    width: 60%;
    max-width: 990px;
    margin: 0 auto;
}

.padding-top--vh {
    padding-top: 12vh;
}

.padding-top-small--vh {
    padding-top: 7vh;
}

.padding--vh {
    padding: 12vh 0;
}

.mt-nav {
    padding-top: calc(8vh + 160px);
}

@media (max-width:1250px) {

    .container-80 {
        width: calc(100% - 60px);
        margin: 0 auto;
    }
}

@media (max-width:990px) {
    .container-100 {
        width: calc(100% - 60px);
        margin: 0 auto;
    }
}



@media (max-width:1250px) {
    .container-paragrafo {
        width: 80%;
    }

}

@media (max-width:768px) {
    .padding-top--vh {
        padding-top: 50px;
    }

    .padding-top-small--vh {
        padding-top: 30px;
    }

    .padding--vh {
        padding: 50px 0;
    }

    .mt-nav {
        padding-top: calc(7vh + 70px);
    }

    .container-30 {
        width: calc(100% - 60px);
        max-width: 100%;
        margin: 0 auto;
    }

    .container-paragrafo {
        width: calc(100% - 60px);
        max-width: 100%;
        margin: 0 auto;
    }

}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

section {
    position: relative;
    z-index: 5;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: titolo;
    line-height: 115%;
}

h1 {
    font-size: 100px;
    line-height: 120px;
    font-family: TradeGothicBoldTwo;
}

h4,
.h4 a {
    font-family: TradeGothicBoldTwo;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;

}

.btn.read_more {}

.scroll__down {
    position: fixed;
    right: 5%;
    bottom: 80px;
    color: #aaa;
    font-size: 18px;
    writing-mode: vertical-rl;
    transform-origin: center;
    transform: rotate(180deg);
    animation: scroll__down 2s ease infinite;
    -webkit-transition: opacity 0.55s ease;
    transition: opacity 0.55s ease;
    z-index: 100;
}

.scroll__down--fade {
    opacity: 0;
    visibility: hidden;
}

@keyframes scroll__down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }
}



p {
    color: #000000;
    font-size: 20px;
    line-height: 160%;
    margin: 0;
    margin-bottom: 15px;
    font-family: 'TradeGothicMedium';
    font-weight: normal;
}

.paragrafo_medium p {
    font-size: 32px;
    font-family: b-2;
    color: #7C7C7C;
    line-height: 135%;
    font-weight: normal;
}

.paragrafo_medium p strong {
    color: white;
    font-weight: normal;
}

.paragrafo ul {
    margin-bottom: 15px;
    padding-left: 10px;
}

.paragrafo li {
    list-style: disc;
    margin-left: 10px;
    margin-bottom: 7px;
}

.paragrafo_medium--small p {
    font-size: 22px;
    line-height: 135%;
    font-family: b-1;
    font-weight: normal;
}

@media (max-width:768px) {
    p {
        font-size: 15px;
        line-height: 120%;
    }

}


/* === pulsanti === */

.btn--wrapper {
    display: inline-block;
}

.btn {
    font-size: 19px;
    font-family: 'TradeGothicBoldTwo';
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    padding: 12px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
}

.testo_foto .btn {
    height: 50px;
}

.btn img {
    width: 40px;
    height: auto;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.btn:hover img {
    transform: translateX(7px);
}

.btn img {
    margin-left: 15px;
}

.btn--wrapper .btn__link {
    display: none;
}

.btn--wrapper--out .btn__link {
    width: 20px;
    display: block;
}

.btn--wrapper--out .btn__arrow {
    display: none;
}

@media (max-width:768px) {
    .btn--wrapper {
        display: block;
    }

    .btn {
        font-size: 15px;
        padding: 14px 25px;
        justify-content: space-between;
    }
}

/* pulsante fondo blu */

.btn--dark {
    color: white;
    background-color: #32459A;
}

.btn--dark img {
    filter: invert(100);
}

/* pulsante fondo bianco */

.btn--light {
    color: black;
    background-color: #fff;
}

.btn:hover {}


.buttons a:hover {
    opacity: 0.6;
}

@media (max-width:990px) {
    .btn {
        font-size: 14px;
        padding: 12px 30px;
    }

    .btn img {
        width: 28px;
    }
}

/* complianz text document page */

#cmplz-document h2,
#cmplz-document h3 {
    font-size: 17px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

#cmplz-document .cmplz-subtitle {
    color: black;
}

#cmplz-document {
    max-width: 900px;
}

.cc-revoke--footer {
    display: none !important;
}

.cc-revoke.cc-left {
    z-index: 100 !important;
    position: relative !important;
    bottom: 50px !important;
    left: calc(50% - 75px) !important;
    transform: translateX(-50%);
    right: auto;
    width: 150px;
    font-size: 12px;
    text-transform: uppercase;
    font-family: r-1;
    letter-spacing: 1px;
    background-color: white !important;
    color: #aaa !important;
}


/* ================= FORM =================== */

.privacy_disclaimer_form {
    font-size: 14px;
}

.privacy_disclaimer_form a {
    text-decoration: underline;
}

.wpcf7-text,
.wpcf7-dynamictext {
    width: 100%;
    border: none;
    padding: 5px;
    color: black;
    background-color: transparent;
    border-bottom: 1px solid #D7D7D7;
    border-radius: 0 !important;
    font-size: 18px;
}

.wpcf7-textarea {
    width: 100%;
    border: none;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #D7D7D7;
    padding: 10px;
    margin-top: 15px;
    color: black;
    border-radius: 0 !important;
    font-size: 18px;
    height: 120px;
}

::placeholder {
    color: #ADADAD;
    font-size: 15px;
}

.privacy-form {
    font-size: 13px;
}

.form-row {
    color: dimgrey;
}

.form-group label,
.form-row label {
    color: black;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

/*input.wpcf7-form-control.wpcf7dtx-dynamictext.wpcf7-dynamictext {*/
/*    width: 100%;*/
/*    border-color: #ddd;*/
/*    border: none;*/
/*    padding: 5px;*/
/*    color: white;*/
/*    background-color: transparent;*/
/*    border-bottom: 1px solid white;*/
/*    display: none;*/
/*    border-radius: 0 !important;*/
/*}*/

input.wpcf7-quiz {
    width: 100%;
    border: none;
    padding: 5px;
    color: black;
    background-color: transparent;
    border-bottom: 1px solid black;
    border-radius: 0 !important;
}

input.wpcf7-form-control.wpcf7dtx-dynamictext.wpcf7-dynamictext:hover,
.wpcf7-textarea:hover,
.wpcf7-text:hover {
    border-color: black;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

input[type='radio'],
input[type='checkbox'] {
    clip: rect(1px, 1px, 1px, 1px);
    padding: 10px;
}

input[type='radio'],
input[type='checkbox'] {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50% !important;
    vertical-align: middle;
    border: 1px solid #ddd;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    border: 1px solid gray;
}

input[type='radio']:checked,
input[type='checkbox']:checked {
    background-color: black;
    border: 1px solid black;
}

.wpcf7-submit {
    background-color: #32459A;
    color: white;
    border: none;
    font-size: 18px;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    padding: 12px 30px;
    border-radius: 100px;
    font-family: 'TradeGothicBoldTwo';
}

.wpcf7-submit:hover {
    cursor: pointer;
    opacity: 0.8;
}

.privacy-form {
    font-size: 13px;
}

.form-row {
    margin-bottom: 25px;
}

#form label {
    text-transform: uppercase;
    color: black;
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

/*input.wpcf7-form-control.wpcf7dtx-dynamictext.wpcf7-dynamictext {*/
/*    width: 100%;*/
/*    border-color: #ddd;*/
/*    border: none;*/
/*    padding: 5px;*/
/*    color: white;*/
/*    background-color: transparent;*/
/*    border-bottom: 1px solid white;*/
/*    display: none;*/
/*    border-radius: 0 !important;*/
/*}*/

input.wpcf7-form-control.wpcf7dtx-dynamictext.wpcf7-dynamictext:hover,
.wpcf7-textarea:hover,
.wpcf7-text:hover {}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.form-row>.col,
.form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px
}

.form-check {
    position: relative;
    display: block;
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.form-check-input:disabled~.form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

.wpcf7 select {
    width: 90%;
    max-width: 100%;
    padding: 15px 0;
    border-radius: 0;
    border: none;
}

/* errori contact form 7 */

.wpcf7-not-valid-tip {
    font-size: 14px;
    text-transform: uppercase;
    color: red;
    margin-top: 10px;
}

.wpcf7-not-valid-tip:before {
    content: "↑";
    margin-right: 5px;
}

.wpcf7-response-output {
    border-color: #eeee !important;
    background-color: #eeee;
    text-align: center;
    color: black !important;
    padding: 20px !important;
}

.wpcf7-list-item-label {
    font-size: 13px;
}

.form_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wpcf7-list-item {
    margin: 0;
}

@media (max-width:768px) {
    .wpcf7-submit {
        font-size: 18px;
        transition: all 0.35s;
        padding: 12px 30px;
        width: 100%;
        margin-top: 30px;
    }

    .form_flex {
        display: block;
    }
}

/* ===== COMPLIANZ CUSTOMIZATION ===== */

#cmplz-manage-consent .cmplz-manage-consent {
    display: none;
}

footer a {
    text-decoration: none;
}

#gestione_cookies {
    text-decoration: none;
}

#gestione_cookies:hover {
    cursor: pointer;
}


/* ===== NAVIGAZIONE TOP ===== */
.navigazione {
    /*max-width: 100vw;*/
    /*background-color: transparent;*/
    /*position: relative;*/
    /**/
}

.navigazione a {
    font-family: titolo;
    font-size: 16px;
    position: relative;
}

.navigazione .navigazione__main a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    display: block;
    background-color: black;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
    transition-delay: 0.2s;
    opacity: 0.5;
}

.navigazione .navigazione__main a:hover:after {
    width: 100%;
}

.navigazione__head {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 80px;
    font-size: 25px;
    z-index: 9998;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.55s;
    transition: all 0.55s;
    font-family: titolo;
}

.navigazione--scroll .navigazione__head {
    top: -120px;
    filter: blur(50px);
    opacity: 0;
}

@media (min-width:990px) {
    .navigazione__logo {
        position: fixed !important;
        left: 50%;
        transform: translateX(-50%);
    }
}

.navigazione__logo img {
    height: 34px;
}

.navigazione__head__lingue li:first-child {
    margin-left: 0;
}

.navigazione__head__lingue li {
    display: inline;
    margin-left: 10px;
}

.navigazione__head__lingue li a {
    font-family: 'TradeGothicMedium';
    position: relative;
    font-size: 15px;
}

.navigazione__head__lingue li.current-lang a {
    font-family: 'TradeGothicBoldTwo';
    border-bottom: 1px solid black;
}

.navigazione__siti-favini:hover {
    cursor: pointer;
}

.mondi_favini_nav .nav_mobile_2__content__item {
    display: flex;
    gap: 7px;
    align-items: center;
    font-family: 'TradeGothicMedium';
    font-size: 18px;
}

.mondi_favini_nav .nav_mobile_2__content__item img {
    height: 15px;
}

.mondi_favini_nav {
    position: fixed;
    top: 80px;
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    height: 80px;
    font-size: 25px;
    z-index: 9998;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.55s;
    transition: all 0.55s;
    border-top: 1px solid #E5E5E5;
    animation: mondi_favini_nav 0.65s;
}

.mondi_favini_nav--show {
    display: flex;
}

.navigazione__siti-favini_open {
    opacity: 0;
    transition: all 0.65s ease;
    transform-origin: center;
    transform: rotate(-180deg);
}

.navigazione__siti-favini_open--show {
    opacity: 1;
}

@keyframes mondi_favini_nav {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NAVIGAZIONE PRINCIPALE ===== */
.nav_sticky {
    /*position: -webkit-sticky;*/
    /*position: sticky;*/
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 10000;
    -webkit-transition: all 0.55s;
    transition: all 0.55s;
}

.nav_sticky--move {
    top: 160px;
}

.navigazione__siti-favini {
    display: flex;
    align-items: center;
    gap: 7px;
}

.navigazione--scroll .nav_sticky {
    top: 0;
}

.navigazione__main {
    width: 100%;
    display: flex;
    height: 80px;
    justify-content: space-between;
    padding: 0 60px;
    align-items: center;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    -webkit-backdrop-filter: blur(17px);
    backdrop-filter: blur(17px);
    background-color: rgba(255, 255, 255, 0.3);
}

.navigazione__main ul.menu {
    font-family: TradeGothicBoldCondTwenty, Helvetica, Arial, sans-serif;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    font-size: 25px;
}

.navigazione__main ul.menu ul.sub-menu {
    display: none;
    justify-content: space-between;
    position: absolute;
    height: auto;
    align-items: center;
    padding: 0 60px;
    margin-top: 25px;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #E5E5E5;
    left: 0;
    animation: navigazione_submenu 0.65s ease;
    -webkit-backdrop-filter: blur(17px);
    backdrop-filter: blur(17px);
    background-color: rgba(255, 255, 255, 0.45);
}

.navigazione__main ul.menu ul.sub-menu.sub_menu--active {
    display: flex;
}

@keyframes navigazione_submenu {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* navigazione mobile */
.burger {
    display: none;
}

.sub_menu_label {
    display: none;
}

.nav_mobile_2 {
    display: none;
}


@media (max-width:1400px) {
    .sub-menu a {
        font-size: 13px;
        line-height: 105%;
    }
}

@media (max-width:990px) {

    .nav_content_mobile {
        /*-webkit-transition: all 0.5s;
        transition: all 0.5s; */
        opacity: 0;
        visibility: hidden;
    }

    .nav_content_mobile--show {
        visibility: visible;
        opacity: 1;
    }

    .nav_content_mobile--show .navigazione__main ul {
        animation: menu-menu-principale--appear 1s;
    }

    @keyframes menu-menu-principale--appear {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navigazione--scroll .navigazione__head {
        top: 0;
        filter: none;
        opacity: 1;
    }

    .navigazione--scroll .nav_sticky {
        top: 65px;
    }

    .burger {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
    }

    .burger_ico>div {
        width: 26px;
        height: 1px;
        background-color: black;
        margin-bottom: 4px;
    }

    .burger_ico>div:last-child {
        margin-bottom: 0;
    }

    .burger_ico {
        margin-bottom: 10px;
    }

    .navigazione__head__lingue--desktop,
    .navigazione__siti-favini {
        display: none;
    }

    .navigazione__head {
        padding: 0 30px;
        height: 65px;
        font-size: 25px;
        background-color: white;
    }

    .navigazione__main {
        height: calc(100% - 130px);
        background-color: white;
        display: block;
        padding: 0 30px;
        padding-top: 40px;
    }

    .nav_sticky {
        top: 65px;
        height: 100%;
    }

    .navigazione__logo img {
        height: 22px;
        margin-top: 3px;
    }


    .navigazione__main ul.menu {
        display: block;
        font-size: 18px;
    }

    .navigazione__main ul.menu li {
        margin-bottom: 30px;
    }

    .navigazione__main ul.menu ul.sub-menu {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        height: auto;
        height: calc(100vh - 130px);
        align-items: center;
        padding: 0 30px;
        padding-top: 40px;
        margin-top: 0;
        width: 100%;
        left: 0;
        top: 0;
        background-color: white;
        z-index: 10000;
        animation: none;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        display: block;
    }

    .navigazione__main ul.menu ul.sub-menu li a {
        font-family: 'TradeGothicMedium';
        font-size: 18px;
        color: black;
    }

    .navigazione__main ul.menu ul.sub-menu.sub_menu--active {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .navigazione__main ul.menu ul.sub-menu.sub_menu--active li {
        animation: anim_submenu_mobile 0.5s ease;
    }

    @keyframes anim_submenu_mobile {
        0% {
            opacity: 0;
            transform: translateX(50px);
        }

        20% {
            opacity: 0;
            transform: translateX(50px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .sub_menu_label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: titolo !important;
    }

    .sub_menu_label a {
        font-family: titolo !important;
    }

    .sub_menu_label:before {
        content: "";
        display: block;
        background-image: url(../img/icone/freccia-indietro.svg);
        background-position: center;
        background-size: cover;
        height: 16px;
        width: 31px;
    }


    @keyframes navigazione_submenu {
        from {
            opacity: 0;
            transform: translateX(100vw);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav_mobile_2 {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        height: 65px;
        width: 100%;
        background-color: #fff;
        z-index: 10000;
        -webkit-transition: height 0.5s ease;
        transition: height 0.5s ease;
        overflow: hidden;
    }

    .nav_mobile_2__inner {
        display: flex;
        height: 65px;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 0 30px;
    }

    .siti_favini_mobile {
        font-family: titolo;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .siti_favini_mobile img {
        transform: rotate(180deg);
        transform-origin: center;
        -webkit-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

    .siti_favini_mobile--rotate img {
        transform: rotate(0deg);
    }

    .nav_mobile_2--expand {
        height: calc(100vh - 65px);
        border-top: 1px solid #eee;
    }

    .nav_mobile_2__content__item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        margin-bottom: 40px;
        font-family: 'TradeGothicMedium';
    }


    .nav_mobile_2__content {
        padding: 40px 30px;
    }

    .nav_mobile_2__content__item img {
        height: 16px;
    }

}



/*
/////////////////////////////////////////////////////////////////
PAGINA HOME front-page.php
////////////////////////////////////////////////////////////////
*/



main.main_container {
    min-height: 100vh;
}

main.main_container.main_container--white {
    background-color: white;
}




/*
/////////////////////////////////////////////////////////////////
FOOTER footer.php
////////////////////////////////////////////////////////////////
*/
.footer {
    padding-top: 5vh;
    border-top: 1px solid #DFDFDF;
}

.footer p {
    font-size: 14px;
}

.footer .footer__flex {
    display: flex;
    flex-wrap: wrap;
}

.footer .footer__logo img {
    height: 35px;
}

.footer h4,
.footer .h4 {
    margin: 50px 0 20px 0;
    text-transform: uppercase;
}

.footer .footer__flex .social ul {
    display: flex;
    justify-content: flex-end;
}

.footer .footer__flex .social ul li img {
    width: 20px;
    height: auto;
    margin-left: 30px;
}

.footer_line {
    border-top: 1px solid #DFDFDF;
    margin-top: 7vh;
}

.footer__flex--end {
    padding: 30px 0;
}

.footer__flex--end .footer__flex__col {
    width: auto;
}

.footer__flex--end {
    justify-content: space-between;
}

.footer__flex__col {
    width: 25%;
    height: auto;
}

@media (max-width:1200px) {

    .footer .footer__flex .social {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 2vh;
    }
}
@media (max-width:768px) {
    .footer__flex__col {
        width: 50%;
        padding-right: 20px;
    }

    .footer__flex--end {
        display: block;
        text-align: center;
    }

    .footer__flex--end p {
        text-align: center;
    }

    .footer__flex--end .footer__flex__col {
        width: 100%;
    }

    .footer .footer__flex .social ul {
        justify-content: center;
        padding-top: 25px;
    }

    .footer .footer__flex .social ul li img {
        margin-left: 0;
        margin: 0 7px;
    }

    .footer h4,
    .footer .h4 {
        font-size: 15px;
    }

    .footer,
    .footer a {
        font-size: 15px;
    }

    .footer .footer__logo img {
        height: 28px;
    }

    .footer__flex__col a {
        font-size: 15px !important;
    }

}

.grecaptcha-badge {
    display: none !important;
}
