@charset "UTF-8";



/* Nascondi la barra di scorrimento in Chrome, Safari e Opera */
body::-webkit-scrollbar {
    display: none;
}



@font-face {
    font-family: 'Neue medium';
    src: url(../font/NeueHaasDisplay-Mediu.ttf);
}

@font-face {
    font-family: 'Neue roman';
    src: url(../font/NeueHaasDisplay-Roman.ttf);
}

.bg-grey {
    background-color: #EFF4F5 !important;
}

.neue-roman {
    font-family: 'Neue roman';
}

.neue-mid {
    font-family: 'Neue medium';
}

.futura {
    font-family: 'Futura';
}

.futura-medium {
    font-family: 'Futura medium';
}


li {
    color: #145C9C;
}

a {
    text-decoration: none !important;
}

.font-blu-color {
    color: #145C9C;
}

/* NAVBAR */

.navbar-blur {
    backdrop-filter: blur(6px);
    /* Applicazione del filtro blur */
    -webkit-backdrop-filter: blur(6px);
    /* Supporto per Safari */
    transition: all 0.5s ease;
    /* Transizione fluida per gli effetti */
}



.navbar-gsap {
    border-color: #145C9C;
    border: 2px;

}


nav {
    transition: all 1s ease-in-out;
}

.menu-open .menu {
    height: 100vh;
    background-color: #fff;
}

body.menu-open {
    overflow: hidden;
}

.menu-open .menuvoci {
    display: block !important;
}



.navbar-expanded .navbar-gsap {
    height: 100%;
    background-color: white;
    transition: all 1s ease-in-out;
}

.navbar-expanded .menuvoci {
    display: block !important;
    transition: all 1s ease-in-out;
}

.nav__gsap {
    display: none;
}

label.hamburger {
    display: block;
    background: #fff;
    width: 45px;
    height: 45px;
    position: relative;
    cursor: pointer;
}

input#hamburger {
    display: none;
}

.p-voci-menu {
    color: #145C9C;
    font-size: 52px;
}

.line {
    position: absolute;
    height: 2px;
    width: 49px;
    background: #145C9C;
    transition: 0.5s;
    margin-bottom: 10px;
}

/* steps of 12 are optional, could also be 10, 13 etc */
.line:nth-child(1) {
    top: 12px;
}

.line:nth-child(2) {
    top: 24px;
}

.line:nth-child(3) {
    top: 36px;
}

/* translateY must be same as */
#hamburger:checked+.hamburger .line:nth-child(1) {
    transform: translateY(12px) rotate(-45deg);
}

#hamburger:checked+.hamburger .line:nth-child(2) {
    opacity: 0;
}

#hamburger:checked+.hamburger .line:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}


.arrow-right-icon {
    width: 20px;
}

.btn {
    color: #145C9C;
    border-color: #145C9C;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #fff !important;
    color: #145C9C;
}




.arrow-menu {
    width: 25px;
    transform: rotate(-45deg);
    margin-bottom: -12px;
}

.line_menu {
    background-color: #145C9C;
    height: 2px;
    width: 100%;
    color: #145C9C;
    margin-top: -15px;
}




.logo-img {
    width: 50px;

}

/* HOMEPAGE */

.hero-section {
    /* padding-top: 130px; */
}

.h1-home {
    font-size: 140px;
    line-height: 120px;
    color: #145C9C;
    margin-bottom: -80px;
    /* z-index: 3; */
    position: relative;
}

.hero-ul {
    line-height: 35px;
}

.arrow-down-hero {
    width: 20px;
    margin-top: 10px;
}

.text-reveal {
    transform: translateY(0px);
    opacity: 0;
}

.arrow-home-reveal {
    transform: translateY(0px);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    opacity: 1;
}


.h2-home-reveal {
    transform: translateY(-30px);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    opacity: 1;
}




.div-titolo-serenamente {
    margin-top: 200px;
}



h2,
h3 {
    color: #145C9C;
}

.h2-servizi {
    font-size: 80px;
    line-height: 70px;
}

.border-blu-color {
    border-color: #145C9C !important;
}

.section-servizi {
    margin-top: 0px;
}


/* CARDS SERVIZI */

.letter-space-p-servizi {
    letter-spacing: 0.8px;
    line-height: 23px;
}

.h3-cards {
    color: #145C9C;
    font-size: 40px;
}

.card-border {
    border-top-right-radius: 15px !important;
}

.icon-servizi-card {
    width: 50px;
}

.arrow-cards {
    width: 25px;
    transform: rotate(-45deg);
}

.card-number-small {
    font-size: 17px;
    color: #145C9C
}

.card-servizi-gsap {
    min-height: 530px;
}


/* HOVER ANIMATION CARD UNDERLINE */

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 10px;
    bottom: 0;
    left: 0;
    background-color: #145C9C;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}



@media only screen and (max-width: 830px) {

    .h2-servizi {
        font-size: 50px;
        line-height: 53px;
    }
}





/* MEDIA QUERY HOMEPAGE */

@media only screen and (max-width: 821px) {
    .h1-home {
        font-size: 52px;
    }





    .icon-big-servizi {
        max-width: 150px;
    }

    .p-voci-menu {
        font-size: 30px !important;
        margin-bottom: 8px !important;
    }

    .arrow-menu {
        margin-bottom: 5px;
    }

    .margin-top-why {
        padding-top: 60px !important;
    }



}


/* chi siamo section */

.bg-blue {
    background-color: #145C9C;
}

.trigger-why {
    padding-top: 100px;
}

.section-why {
    margin-top: 50px;
}

.margin-top-why {
    padding-top: 400px;
}

/* FORM SECTION */


.wpcf7-form label {
    display: block;
    font-weight: bold;
    font-family: 'Neue roman';
    letter-spacing: 1px;

}



.wpcf7-form input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    /* margin-bottom: 10px */
}

.wpcf7-form .wpcf7-submit {
    max-width: 23% !important;
    padding: 6px 5px 6px 5px;
}

.wpcf7-list-item input {
    width: auto;
}


.form-light .wpcf7-list-item span {
    color: #21252A;
}


.p-space-normale {
    letter-spacing: 0.9px;
    font-size: 18px;
    line-height: 25px;

}

.font-cit {
    letter-spacing: 1px;
    line-height: 30px;
    font-style: italic;
    font-size: 22px;
}






/* Footer */

.bg-grigietto {
    background-color: #EFF3F5;
}

/* CREDITS */

.p_credits {
    font-size: 13px;
}

.a_credits {
    color: #145C9C;
}

.shadow-credits-bottom {
    box-shadow: inset 0px -15px 27px -5px rgba(21, 92, 156, 0.61);
}

/* PAGINE VARIE */


.label-white-font label {
    color: #21252A;
}



.container-reveal {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
}

.container-reveal span {
    position: absolute;
    font-size: 100px;
    line-height: 80px;
    z-index: 9999;
}

.line-reveal {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
}


@media only screen and (max-width: 768px) {
    .icon-big-servizi {
        width: 60px;
    }

    .h1-home {
        line-height: 50px !important;
    }

    .container-reveal {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: left;
        padding-bottom: 40px;
    }

    .container-reveal span {
        position: absolute;
        font-size: 50px;
        line-height: 50px;
    }

    .line-reveal {
        width: 100%;
        height: 80px;
        position: relative;
        overflow: hidden;
    }



}

/* .hero-big-text {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -3px;
    margin-top: 150px;

} */


/* MAPPE HOVER */

.container_foto_hover {
    position: relative !important;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.image {
    opacity: 1 !important;
    transition: .5s ease !important;
    backface-visibility: hidden !important;
    cursor: pointer;
}

.middle {
    transition: .3s ease;
    opacity: 0;
    position: absolute;
    top: 91%;
    right: -180px;
    transform: translate(-50%, -50%);
    /* -ms-transform: translate(-50%, -50%); */
    text-align: center;
}

.container_foto_hover:hover .image {
    filter: blur(4px);
    filter: blur(2px) brightness(1.07) !important;
    /* -webkit-filter: blur(3px); */
    /* opacity: 10 !important; */
}

.container_foto_hover:hover .middle {
    opacity: 1;
}


.border-custom {
    border-left: 2.5px !important;

}