@charset "utf-8";

/* +++++++++++++++++++++++++
LEITWIND WEBSITE  - ASSETS CSS
+++++++++++++++++++++++++ */

/* ======== FONT ========= */

/* oswald */
@font-face {
    font-family: 'oswald_medium';
    src: url('../fonts/Oswald-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'oswald_regular';
    src: url('../fonts/Oswald-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

.oswald_mega {
    font-size: clamp(40px, 10rem, 200px);
    font-family: 'oswald_medium';
    line-height: 100%;
}

.oswald_80 {
    font-size: clamp(35px, 5rem, 80px);
    font-family: 'oswald_medium';
    line-height: 110%;
}

.oswald_65 {
    font-size: clamp(32px, 4rem, 65px); 
    font-family: 'oswald_medium';
    line-height: 110%;
}

.oswald_55 {
    font-size: clamp(30px, 3.5rem, 55px);
    font-family: 'oswald_medium';
    line-height: 110%;
}

.oswald_40 {
    font-size: clamp(30px, 2.7rem, 40px);
    font-family: 'oswald_regular';
}

.oswald_30 {
    font-size: clamp(27px, 2rem, 30px);
    font-family: 'oswald_regular';
}

/* Barlow */

/* barlow */
@font-face {
    font-family: 'barlow_medium';
    src: url('../fonts/Barlow-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'barlow_regular';
    src: url('../fonts/Barlow-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'barlow_semibold';
    src: url('../fonts/Barlow-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}

.barlow_semibold,
.barlow_semibold p,
.barlow_semibold li {
    font-family: 'barlow_semibold' !important;
}

.barlow_medium,
.barlow_medium p,
.barlow_medium li {
    font-family: 'barlow_medium' !important;
}

.barlow_50 {
    font-size: clamp(25px, 3rem, 50px);
    font-family: 'barlow';
    font-family: 'barlow_medium';
}

.barlow_40 {
    font-size: clamp(21px, 2.5rem, 40px);
    font-family: 'barlow';
    font-family: 'barlow_medium';
}

.barlow_30 {
    font-size: clamp(18px, 1.85rem, 30px);
    font-family: 'barlow_regular';
}

.barlow_25 {
    font-size: clamp(17px, 1.5rem, 25px);
    font-family: 'barlow_regular';
}

.barlow_20 {
    font-size: clamp(16px, 1.25rem, 20px);
    font-family: 'barlow_regular';
}

.barlow_18 {
    font-size: clamp(15px, 1.15rem, 18px);
    font-family: 'barlow_regular';
}

.barlow_16 {
    font-size: clamp(15px, 1rem, 16px);
    font-family: 'barlow_regular';
}


html {
    background-color: white;
    scroll-behavior: smooth;
    box-sizing: border-box;
    color: white;
    font-size: 1vw;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

@media screen and (max-width:990px) {
    html,
    body {
        overflow-x: hidden;
    }
}

button {
    all: unset;
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    text-decoration: none;
    line-height: normal;
    cursor: pointer; 
    /* Accessibilità */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}

.skip_to_content {
    position: fixed;
    padding: 15px 30px;
    border-radius: 15px;
    background-color: rgb(255, 247, 204);
    font-size: clamp(19px, 1.2rem, 21px);
    color: black;
    position: fixed;
    z-index: 900000000000000000000;
    top: 0;
    left: 20px;
    opacity: 0;
    transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.skip_to_content:focus {
    top: 20px;
    opacity: 1;
    transform: translateY(0);
}

/* impostazioni standard
@audit settings standard 
 */

* {
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
    color: black;
    font-family: 'barlow_regular';
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    -ms-font-smoothing: antialiased !important;
    text-rendering: optimizelegibility !important;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    background-color: white;
    font-size: clamp(15px, 1rem, 17px);
}


main,
html,
body {
    padding: 0;
    margin: 0;
}

.main_container {
    -webkit-transition: background-color 0.65s ease;
    transition: background-color 0.65s ease;
    /* animation: main_container 1.2s; */
}

body.inverted--green .main_container {
    background-color: var(--verde);
    color: white;
}

body.inverted--blu .main_container {
    background-color: var(--blu);
    color: white;
}

body.inverted--gray .main_container {
    background-color: var(--grigio);
}


@keyframes main_container {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.show--mobile {
    display: none;
}

@media(max-width:600px) {
    .show--desktop {
        display: none;
    }

    .show--mobile {
        display: block;
    }
}

img,
picture {
    display: block;
    margin: 0;
    padding: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: normal;
}

body p bold {
    font-weight: 700;
}

p strong,
li strong,
li b,
p b {
    font-family: 'barlow_semibold';
    font-weight: normal;
}

.mt-nav {
    height: calc(70px + 3vh);
}

p a {
    text-decoration: underline;
}

em {
    font-style: normal;
}

.uppercase {
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 120%;
}


h3 {
    margin-bottom: clamp(15px, 2rem, 40px);
}

h1,
h2 {
    margin-bottom: clamp(25px, 3rem, 50px);
}

h3 {
    margin-bottom: clamp(15px, 2rem, 40px);
}


.uppercase {
    text-transform: uppercase;
}


.no-mb {
    margin-bottom: 0;
}

.no-pb {
    padding-bottom: 0 !important;
}

a {
    text-decoration: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.text-center {
    text-align: center;
}

a:hover {
    text-decoration: inherit;
    color: initial;
}

p {
    margin: 0;
    line-height: 135%;
    font-family: 'barlow_regular';
    margin-bottom: clamp(12px, 1rem, 18px);
}

li {
    list-style: disc;
    line-height: 135%;
    margin-left: 10px;
    margin-bottom: clamp(8px, 1rem, 15px);
}

ul {
    margin-left: 0;
    padding-left: 0;
}

p a {
    text-decoration: underline;
}

/* @audit container */
/* containers */

:root {
    --maxwidth: 1700px;
}

.container-95 {
    width: calc(95% - clamp(30px, 5%, 80px));
    max-width: var(--maxwidth);
    margin: 0 auto;
}

.container-100 {
    width: calc(100% - clamp(30px, 5%, 80px));
    margin: 0 auto;
    max-width: var(--maxwidth);
}

.container-newsletter {
    width: calc(100% - clamp(30px, 5%, 80px));
    margin: 0 auto;
    max-width: 1200px;
}

.container-100.container-100--full {
    width: 100%;
}

.container_fade_x_white_fullwidth {
    position: relative;
}

@media(min-width: 1750px) {
    .container-100.container-100--full.container_fade_x_white_fullwidth:after {
        content: "";
        display: block;
        pointer-events: none;
        width: 50px;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        z-index: 10;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }
}

@media(min-width:990px) {
    .container-100--pl {
        padding-left: clamp(20px, 2.5%, 40px);
    }

    .container-100--pr {
        padding-right: clamp(20px, 2.5%, 40px);
    }
}

.container-article {
    max-width: 1100px;
}

.container-60 {
    width: 60%;
    margin: 0 auto;
    max-width: 1000px;
}

@media(max-width:1250px) {
    .container-60 {
        width: 80%;
    }
}

@media(max-width:768px) {
    .container-60 {
        width: 90%;
    }
}

@media(max-width:600px) {
    .container-60 {
        width: calc(100% - clamp(40px, 5%, 80px));
    }
}

.container-80 {
    width: 80%;
    margin: 0 auto;
    max-width: var(--maxwidth);
}

.container-90 {
    width: 90%;
    margin: 0 auto;
    max-width: var(--maxwidth);
}

.container-news {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.box_sfondo_verde {
    background-color: var(--verde);
    border-radius: var(--radius20);
}

@media(max-width:990px) {
    .container-news {
        width: 90%; 
    }
}

@media(max-width:768px) {
    .container-news {
        width: calc(100% - clamp(30px, 5%, 80px));
    }
}

/* @audit grid */
/* grid - columns */

.grid {
    display: grid;
}

.border {
    border-top: 1px solid var(--grigio);
}

.grid--2 {
    grid-template-columns: 1fr 1fr;
}

.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid--5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid--1-2 {
    grid-template-columns: 1fr 2fr;
}

.grid--1-3 {
    grid-template-columns: 1fr 3fr;
}

.grid--2-1 {
    grid-template-columns: 2fr 1fr;
}

.grid--1-2-1 {
    grid-template-columns: 1fr 2fr 1fr;
}

.grid--2-1-5 {
    grid-template-columns: 2.3fr 0.7fr 5fr;
}

.grid__col {
    position: relative;
}


@media(max-width:600px) {
    .grid {
        display: block;
    }
}

/* @audit padding */

.pt--small {
    padding-top: clamp(20px, 2.5rem, 50px);
}

.pb--small {
    padding-bottom: clamp(20px, 2.5rem, 50px);
}

.pt--medium {
    padding-top: clamp(30px, 5rem, 80px);
}

.pb--medium {
    padding-bottom: clamp(30px, 5rem, 80px);
}

.pt--big {
    padding-top: clamp(50px, 7.5rem, 250px);
}

.pb--big {
    padding-bottom: clamp(50px, 7.5rem, 250px);
}

.pt--super {
    padding-top: clamp(50px, 12rem, 350px);
}

.pb--super {
    padding-bottom: clamp(50px, 12rem, 350px);
}


.grid--gap {
    gap: 10%;
}

.grid--gap--super {
    gap: 15%;
}

.grid__col {
    position: relative;
}

.grid__col p:last-child {
    margin-bottom: 0;
}


/* @audit flex */

.flex_element {
    display: flex;
    gap: 10px;
}

.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_between {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.align_end {
    align-self: baseline;
}

.col_100 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.col_100--between {
    justify-content: space-between;
}

@media(min-width:768px) {

.col_100--y_end {
    justify-content: flex-end;
}

.col_100--y_center {
    justify-content: center;
}

.col_100--x_end {
    align-items: flex-end;
}


    .align_end_desktop {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

.align_start {
    align-items: flex-start;
}

section {
    position: relative;
}

@media(max-width:600px) {

    .grid {
        grid-template-columns: 1fr;
    }

    .mt-nav {
        height: calc(60px + 1vh);
    }

    html,
    body {
        overflow-x: hidden;
    }
}


/* pulsanti  go back */

.go_back {
    display: flex;
    font-size: 15px;
    gap: 6px;
    align-items: center;
}

.go_back img {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    height: 15px;
}

.go_back:hover img {
    transform: translateX(-7px);
}


/* pulsanti btn */

.btn {
    font-family: 'barlow_medium';
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: clamp(10px, 1.5rem, 20px);
    position: relative;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    color: white;
    background-color: var(--verde);
    border-radius: 100px;
    padding: clamp(18px, 1.4rem, 25px) clamp(30px, 2rem, 50px);
    text-align: center;
    font-size: clamp(16px, 1.1rem, 18px);
    white-space: nowrap; 
}

.btn.btn--small {
    padding: clamp(8px, 0.7rem, 12px) clamp(15px, 1.4rem, 28px);
}

.btn.btn--blur {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.blur {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.btn.btn--outline {
    background-color: transparent;
    border: 2px solid var(--verde);
    color: var(--verde);
}

.btn--outline.btn--outline--green2 {
    border-color: var(--verde3);
    color: var(--verde3);
}

.btn.btn--outline .btn_img--light {
    display: none;
}

.latest_news_head  .btn.btn--outline:hover
 {
background-color: var(--verde3) !important; 
color: white !important;
}

.categorie_news  .btn.btn--outline:hover
 {
background-color: var(--blu) !important; 
color: white !important;
}

 @media(min-width:768px) {

    .btn.btn--outline:hover .btn_img--light {
        display: block;
    }
    
    .btn.btn--outline:hover .btn_img--dark {
        display: none;
    }
    
    .btn.btn--outline:hover {
        background-color: var(--verde) !important;
        color: white;
    } 

body.inverted--green .btn.btn--outline:hover {
    background-color: white !important;
    color: var(--verde);
}

body.inverted--green .btn.btn--outline:hover  .btn_img--dark {
   display: block;
}

body.inverted--green .btn.btn--outline:hover  .btn_img--light {
    display: none;
 }

 .btn:hover {
    background-color: #77B644;
    color: white;
}

.btn.btn--outline:hover {
    background-color: transparent;
}

.btn:hover img{
    transform: translateX(20%);
}

.btn.btn--outline:hover img:first-child {
    transform: translateX(20%);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
    } 
    

body.inverted--green .btn.btn--outline,
body.inverted--blu .btn.btn--outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

body.inverted--green .btn.btn--outline .btn_img--dark,
body.inverted--blu .btn.btn--outline .btn_img--dark {
    display: none;
}

body.inverted--green .btn.btn--outline .btn_img--light,
body.inverted--blu .btn.btn--outline .btn_img--light {
    display: block;
}

.btn.btn--outline.btn--outline--blu {
    border: 1px solid var(--blu);
    color: var(--blu);
}

.btn.btn--outline.btn--outline--blu:hover {
    background-color: var(--blu) !important;
    color: white;
} 

.btn img {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    width: clamp(15px, 1rem, 20px);
    width: auto;
}

.btn.btn--blu {
    background-color: var(--blu);
}

.btn.btn--blu2 {
    background-color: var(--blu2);
}

.btn.btn--verde2 {
    background-color: var(--verde2);
}

.btn--mt {
    margin-top: clamp(25px, 2rem, 50px);
}

.mt-auto {
    margin-top: auto;
}

.btn:hover {
    cursor: pointer;
}


.info_btn {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info_btn img {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.info_btn:hover img.info_btn__arrow {
    transform: translateX(7px);
}

.info_btn__sx {
    display: flex;
    gap: 15px;
    align-items: center;
}

.info_btn p {
    margin: 0;
}

@media(max-width:600px) {
    .btn {
        width: 100%;
        justify-content: space-between;
    }
}

/* icone */

img.icona,
.icona img {
    height: 28px;
    width: auto;
}

/* label */

.label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: 100px;
    color: white;
    padding: clamp(8px, 0.7rem, 13px) clamp(13px, 1.2rem, 25px);
}

.label.label--img img {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}