:root {
    --white: #FFFFFF;
    --orange: #F27B1C;
    --brown: #4C4945;
    --grey: #EDE9E6;
}

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

body {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 300;
}

strong {
    font-weight: 600;
}

.logo-home {
    width: 350px;
    transition: all 300ms ease-in-out;
}

.img-animation {
    -webkit-animation: kenburns-bottom 9s ease-out both;
    animation: kenburns-bottom 9s ease-out both;
}

@-webkit-keyframes kenburns-bottom {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 84%;
        /* transform-origin: right bottom; */
        transform-origin: 50% 84%;
    }

    100% {
        -webkit-transform: scale(1.25) translateY(15px);
        transform: scale(1.25) translateY(15px);
        -webkit-transform-origin: bottom;
        /*  transform-origin: left bottom; */
        transform-origin: bottom;
    }
}

/* @keyframes kenburns-bottom {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 84%;
        transform-origin: 50% 84%;
    }

    100% {
        -webkit-transform: scale(1.1) translateY(15px);
        transform: scale(1.1) translateY(15px);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
    }
} */

.headerLight .logo-home {
    width: 200px !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.color-w {
    color: var(--white);
}

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

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

.bg-brown {
    background-color: var(--brown);
}

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

.relative {
    position: relative;
}

.bodoni {
    font-family: 'Bodoni Moda 9pt';
}

.overflowx {
    overflow-x: clip;
}

.riga-orange {
    border-color: var(--orange);
    width: 300%;
    opacity: 1;
}

.navbar {
    /*  max-width: 1400px; */
    margin: 0 auto;
    z-index: 999;
    text-transform: uppercase;
}

.headerLight {
    background-color: var(--white);
    border-bottom: 1px solid rgba(76, 73, 69, 0.1);
    /*  backdrop-filter: blur(10px); */
    /*  background-color: var(--brown); */
}

.slide-top-0 {
    position: relative;
    top: -75.81px;
    margin-bottom: -75.81px;
}

.logo {
    width: 200px;
}

.intro-home {
    top: calc(50% + 75.81px);
    bottom: auto;
    transform: translateY(-50%);
    z-index: 2;
    right: 0;
    left: 0;
}

.anchor {
    display: block;
    height: 150px;
    margin-top: -150px;
    visibility: hidden;
}

.active-menu {
    color: var(--orange) !important;
    font-weight: 600;
    position: relative;
}

.active-menu:before {
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: var(--orange);
    position: absolute;
    bottom: 0;
    left: calc(50% - 2.5px);
}

.foto-round {
    border-bottom-right-radius: 100px;
}

.nav-link {
    position: relative;
    text-align: center;
    transition: all 200ms ease-in-out;
}

.hover-bold-link:before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.nav-link:hover {
    /*   color: var(--white); */
    font-weight: 600;
}

.nav-link-lingua-mobile strong {
    color: var(--orange);
}

.nav-link-lingua-mobile:hover {
    color: var(--brown);
}

.nav-link-lingua-mobile:focus, nav-link-lingua-mobile:hover {
    color: var(--brown);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--white);
}

.nav-link {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.carousel-min-height {
    min-height: 500px;
}

.carousel-min-height .img-carousel {
    min-height: 500px;
}

.carousel-height {
    max-height: 500px;
}

.carousel-height .carousel-inner {
    max-height: 500px;
}

.carousel-height .img-carousel {
    max-height: 500px;
}

.img-carousel {
    object-fit: cover;
}

.lingua-link {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.headerLight .lingua-link {
    border-left: 1px solid rgba(76, 73, 69, 0.5);
    border-right: 1px solid rgba(76, 73, 69, 0.5);
}

.btn-marrone {
    background-color: var(--brown);
    color: var(--white);
    text-decoration: none;
    padding: 10px 32px;
    border-radius: 50px;
    font-weight: 400;
    transition: all 300ms ease-in-out;
    border: 3px solid var(--brown);
}

.btn-marrone:hover {
    border: 3px solid var(--brown);
    /* background-color: rgba(76, 73, 69, 0.3); */
    background-color: rgba(76, 73, 69, 0.7);
}

.btn-orange {
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 10px 32px;
    border-radius: 50px;
    font-weight: 400;
    transition: all 300ms ease-in-out;
    border: 3px solid var(--orange);
}

.btn-orange:hover {
    border: 3px solid var(--orange);
    background-color: rgba(242, 123, 28, 0.7);
}

.btn-bianco {
    background-color: var(--white);
    color: var(--orange);
    text-decoration: none;
    padding: 10px 32px;
    border-radius: 50px;
    font-weight: 400;
    transition: all 300ms ease-in-out;
    border: 3px solid var(--white);
}

.btn-bianco:hover {
    border: 3px solid var(--white);
    background-color: rgba(255, 255, 255, 0);
}

.h3-home {
    font-size: 22px;
    font-weight: 400;
}

.h3-title-recensioni {
    position: relative;
}

.h3-title-recensioni span {
    font-size: 16px;
    color: var(--orange);
    position: relative;
    background-color: var(--white);
    padding-left: 40px;
    padding-right: 40px;
}



.underline-h3 {
    margin-bottom: 50px;
}

.underline-h3 span {
    position: relative;
}

.underline-h3 span:before {
    content: "";
    position: absolute;
    bottom: -30px;
    height: 1px;
    width: 100%;
    background-color: var(--orange);
}

.link-orange {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.h2-title {
    color: var(--brown);
    font-weight: 600;
    font-size: 40px;
    line-height: 43px;

}

.h2-title-gallery {
    font-size: 5rem;
    font-weight: 800;
}

.h3-camere {
    font-size: 20px;
    color: var(--orange);
    font-weight: 300;
}

.h4-title-servizi {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
    color: var(--brown);
}

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

.linea-orizzontale {
    position: relative;
}

.page-title {
    color: var(--brown);
    font-weight: 300;
    font-size: 24px;
}

.linea-orizzontale:before {
    content: "";
    position: absolute;
    width: 100%;
    left: -55%;
    height: 1px;
    background-color: var(--orange);
    top: 50%;
    transform: translate(-50%);
}

.text-hover-image {
    font-size: 5rem;
    font-weight: 800;
    /* position: absolute; */
    top: -60px;
    left: 0;
    right: 0;
    /*    color: var(--orange); */
    /*  mix-blend-mode: multiply */
}

.bg-hover-image {
    background-color: var(--brown);
    top: -60px;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.meeting-p {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-top-right-radius: 300px;
}

.dati-profilo {
    list-style: none;
    margin-bottom: 0;
    padding-left: 20px;
}

.star {
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 6px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    padding: 0;
    margin-right: 10px;
    margin-left: 10px;
}

.recensioni .slick-slider {
    margin: 0 -10px;
}

.recensioni .slick-slide {
    padding: 10px;
    background-color: var(--white);
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.09);
    /*  background-color:red; */
    margin-right: 10px;
    margin-left: 10px;
    height: inherit !important;
}

.position-icon-info {
    position: absolute;
    right: 16px;
    bottom: calc(0% - 25px);
}

.card-info {
    border: 0;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.16);
}

.box-recensione-utente {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.slick-prev:before, .slick-next:before {
    color: var(--brown) !important;
}


.cta-section {
    background-size: cover;
    height: 550px;
    position: relative;
    background-position: center;
}

.cta-section:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 55%;
    right: 0;
    background-color: var(--orange);
    mix-blend-mode: multiply;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 0;
}

.cta-section-left:after {
    content: "";
    left: 0 !important;
    right: 55% !important;
    border-bottom-right-radius: 100px !important;
    border-bottom-left-radius: 0 !important;
}

.text-cta {
    position: relative;
    z-index: 3;
}

.text-cta h3 {
    color: var(--white);
    font-weight: bold;
    font-size: 35px;
}

.text-cta p {
    color: var(--white);
}

.list-logo-footer {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 10px;
    flex-wrap: wrap;
}

.list-page-footer {
    list-style-type: none;
    padding: 0;
}

.icon-trip-email {
    gap: 10px;
    margin-top: 16px;
}

.icon-trip-email a {
    display: flex;
    background-color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease-in-out;
}

.icon-trip-email a:hover {
    opacity: 1;
    background-color: var(--orange);
}


.slick-prev, .slick-next {
    background-color: #EDE9E6 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
}

.slick-prev:hover, .slick-next:hover {
    background-color: #EDE9E6 !important;
}

.slick-prev:before, .slick-next:before {
    content: "" !important;
    background-image: url('../img/arrow-recensioni-active.svg');
    width: 25px;
    height: 25px;
    background-size: contain;
    display: block;
    background-repeat: no-repeat;
    margin: auto;
    opacity: 1;
    transform: translateX(5.5px);
}

.slick-prev:before {
    content: "" !important;
    transform: translateX(-5.5px) rotate(180deg);
}

.slick-prev.slick-disabled, .slick-next.slick-disabled {
    background-color: #F6F3F0 !important;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1 !important;
    background-image: url('../img/arrow-recensioni.svg');
    transform: translateX(-5.5px) rotate(180deg);
}

.slick-prev.slick-disabled:before {
    transform: translateX(5.5px) rotate(0);
}

.slick-prev, .slick-next {
    top: 100% !important;
    margin-top: 70px;
}

.recensioni .slick-prev {
    left: calc(50% - 70px) !important;
}

.recensioni .slick-next {
    right: calc(50% - 70px) !important;
}

.section-recensioni {
    margin-top: 40px;
    margin-bottom: 150px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.animate-scroll {
    animation-name: updown;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes updown {
    0% {
        margin-bottom: 4.0rem;
    }

    50% {
        margin-bottom: 3.5rem;
    }

    100% {
        margin-bottom: 4.0rem;
    }
}

.animate-scroll-page {
    animation-name: updownpage;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes updownpage {
    0% {
        margin-bottom: 3.0rem;
    }

    50% {
        margin-bottom: 2.5rem;
    }

    100% {
        margin-bottom: 3.0rem;
    }
}



#scrollTop {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: var(--orange);
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 8px;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
    transition: all 300ms ease-in-out;
}

#scrollTop:hover {
    background-color: var(--brown);
    /* Add a dark-grey background on hover */
}


.box-orange {
    background-color: var(--orange);
    text-align: center;
    color: var(--white);
    padding: 20px 10px;
    height: 100%;
}

.box-orange img {
    width: 70px;
}

.box-orange p {
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}

.riga-dx-servizi {
    display: inline-block;
}

.riga-sx-servizi:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 300%;
    background-color: var(--orange);
    left: -300%;
    top: 16px;
}

.text-card-block {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.before-bg-dark:before {
    content: "";
    left: 0;
    right: 20px;
    top: 0;
    bottom: 20px;
    border-bottom-right-radius: 70px;
    background-color: rgba(76, 73, 69, 0.75);
    position: absolute;
    mix-blend-mode: multiply
}

.text-card-block h3 {
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
}

.text-card-block hr {
    width: 50%;
    margin: 0 auto;
    color: var(--grey);
    margin-top: 16px;
    margin-bottom: 16px;
}

.link-orange {
    color: var(--orange);
    transition: all 300ms ease-in-out;
}

.link-orange:hover {
    opacity: .5;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--grey);
}

.card-content .text {
    height: 130px;
    position: relative;
    overflow: hidden;
}

.card-content .text:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #FFF, transparent);
}

.card-content .see-more-btn {
    transition: all 300ms ease-in-out;
}

.card-content .see-more-btn:hover {
    color: #F27B1C;
    cursor: pointer;
}

.tel-link {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 0.5px;
    text-decoration-color: #bbbbbb;
}


/* .logo-footer{
    position: relative;
}
.logo-footer:after{
    content: "";
    position: absolute;
    width: calc(100% - 25%);
    height: 1px;
    background-color: var(--orange);

} */


footer {
    color: var(--white);
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: all 300ms ease-in-out;
}

footer a:hover {
    opacity: 0.5;
}

.slider-nav-ceccato .slick-dots, .slider-nav-ceccato .slick-dots {
   bottom: -50px;
}
.slider-nav-ceccato .slick-dots li button:before, .slider-nav-patrizia .slick-dots li button:before{
    font-size: 16px;
}

/* .slider-nav-ceccato .slick-prev, .slider-nav-ceccato .slick-next {
    margin-top: 0;
    z-index: 3;
    top: calc(50% + (3rem - 25px)) !important;
} */

@media screen and (min-width:1200px) {
    .margin-sala-canova {
        margin-top: 30px;
    }
}

@media screen and (min-width:768px) {
    .slider-nav .slick-prev {
        left: calc(0% - 70px) !important;
    }

    .slider-nav .slick-next {
        right: calc(100% - 70px) !important;
    }
}

@media screen and (max-width:767.99px) {
    .carousel-inner {
        height: 500px;
    }

    .cta-section:after {
        left: 0 !important;
        border-radius: 0 !important;
    }

    .cta-section-left:after {
        right: 0 !important;
    }

    .cta-section {
        height: 350px;
    }

    .slider-nav .slick-prev {
        left: calc(50% - 70px) !important;
    }

    .slider-nav .slick-next {
        right: calc(50% - 70px) !important;
    }
}

@media screen and (min-width:1320px) {
    .section-recensioni {
        margin-top: 100px;
    }
}

@media screen and (min-width:992px) {
    .nav-link {
        color: var(--white);
    }

    .margine-meeting {
        margin-top: 30px;
    }

    .margine-meeting-h3 {
        margin-top: 30px;
        margin-bottom: -50px
    }

    .nav-link:focus, .nav-link:hover {
        color: var(--white);
    }

    .headerLight .nav-link {
        color: var(--brown);
    }

    .headerLight .nav-link:focus, .headerLight .nav-link:hover {
        color: var(--brown);
    }

    .margine-meeting {
        margin-top: 100px;
        margin-bottom: 30px;
    }
}

@media screen and (min-width:576px) {
    .h3-title-recensioni:before {
        content: "";
        width: 100%;
        left: 0;
        height: 1px;
        position: absolute;
        top: 50%;
        transform: translateY(calc(-50% + 3.5px));
        background-color: var(--orange);
    }

    .img-servizi-sx {
        position: absolute;
        left: -80px;
        /*  top: -50px; */
    }

    .img-servizi-dx {
        position: absolute;
        right: -104px;
        /*  top: -50px; */
    }

    .top-img-servizi-1 {
        top: -48px;
    }

    .top-img-servizi-2 {
        top: -58px;
    }

    .top-img-servizi-3 {
        top: -58px;
    }

    .top-img-servizi-4 {
        top: -65px;
    }

    .margin-servizi-img-absolute {
        margin-top: 70px;
    }

    .riga-dx-servizi:after {
        content: "";
        position: absolute;
        height: 1px;
        width: 1000%;
        background-color: var(--orange);
        right: calc(-1000% - 24px);
        top: 16px;
    }
}

@media screen and (max-width:575.99px) {
    .rounded-0-mobile {
        border-radius: 0;
    }

    .h2-title {
        font-size: 30px;
    }

    .margin-servizi-img-absolute {
        margin-top: 40px;
    }
}

@media screen and (min-width:1670px) {
    .carousel-inner {
        height: 800px;
    }
}

@media screen and (max-width:991.99px) {
    .section-meeting {
        background-color: var(--brown);
    }

    .cta-section:after {
        left: 30%;
    }

    /* .max-width-img {
        max-width: 700px;
    } */
}

@media screen and (min-width:768px) and (max-width:991.99px) {
    .cta-section-left:after {
        right: 30% !important;
    }
}