@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* Set Desktop Spacing */

@media screen and (min-width: 1440px) and (-webkit-max-device-pixel-ratio: 1),
       screen and (min-width: 1440px) and (max-resolution: 1dppx){
    /* Typography, Laptop is setted on kadence control, here the desktop */

    /* body.kadence-enhancement h1{
        font-size: 8rem;
    } */

    /* body.kadence-enhancement h2{
        font-size: 4.5rem;
    }

    body.kadence-enhancement h3{
        font-size: 4rem;
    }

    body.kadence-enhancement h4{
        font-size: 3rem;
    }

    body.kadence-enhancement h5, body.kadence-enhancement h6{
        font-size: 2rem;
    } */

    /* Section for Desktop to use on row layout */
    body.kadence-enhancement .Section__ClmGap>.kt-row-column-wrap{
        column-gap: 11rem;
    }
}


/* Use body.kadence-enhancement on each rules for avoid conflicts */
body.kadence-enhancement .kb-row-layout-wrap.RowOverflow--Visible {
    overflow: visible;
}

/* Checkbox and Radio Color */
body.kadence-enhancement .woocommerce input[type="checkbox"],
body.kadence-enhancement .woocommerce input[type="radio"] {
    accent-color: var(--global-palette1);
}

/* Buttons */
body.kadence-enhancement .Button--ForceAlignLeft .kt-btn-inner-text{
    text-align: left;
}

/* Breadcrumbs */
body.kadence-enhancement .kadence-breadcrumb-container {
    font-size: 14px;
    color: var(--global-palette7);
}

body.kadence-enhancement .kadence-breadcrumbs{
    margin: 0;
    position: absolute;
    top: 11rem;

    @media (max-width: 768px) {
        //top: 8rem;
        left: 2rem;
    }
}

body.kadence-enhancement .kadence-breadcrumb-container a:hover{
    color: var(--global-palette1);
}

body.kadence-enhancement .kadence-breadcrumb-container a {
    text-decoration: none;
}

body.kadence-enhancement .kadence-breadcrumb-container .kadence-bread-current {
    font-weight: 700;
}

body.kadence-enhancement .kadence-breadcrumb-container .bc-delimiter {
    visibility: hidden;
}

body.kadence-enhancement .HeroSection--PositionUnset .kt-inside-inner-col {
    position: unset;
}

body.kadence-enhancement .kadence-breadcrumb-container .bc-delimiter:after {
    content: " ";
    width: .5rem;
    height: .5rem;
    border-top: 2px solid var(--global-palette7);
    border-right: 2px solid var(--global-palette7);
    transform: translate(0, -50%) rotate(45deg);
    visibility: visible;
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
}

/* Mobile Breadcrumbs */
@media (max-width: 768px) {

    body.kadence-enhancement .kadence-breadcrumb-container .kadence-bread-current,
    body.kadence-enhancement .kadence-breadcrumb-container span {
        color: transparent;
        font-size: 0px;
    }

    body.kadence-enhancement .kadence-breadcrumb-container span:nth-last-of-type(3)>a[itemprop="url"]>span {
        color: var(--global-palette7);
        font-size: 14px;
    }

    body.kadence-enhancement .kadence-breadcrumb-container .bc-delimiter:after {
        background-image: none;
        width: 0px;
        height: 0px;
        visibility: hidden;
    }

    body.kadence-enhancement .kadence-breadcrumb-container span:nth-last-of-type(3)>a[itemprop="url"]>span:before {
        content: " ";
        position: absolute;
        width: .5rem;
        height: .5rem;
        border-top: 2px solid var(--global-palette7);
        border-right: 2px solid var(--global-palette7);
        transform: translate(0, -50%) rotate(-135deg);
        top: 8px;
        left: -4px;
        right: 0.5rem;
        transform-origin: right;
        margin-left: -12px;
    }
}

/* Image */

body.kadence-enhancement .ImageBackground--Absolute{
    position: absolute;
    bottom: -10rem;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

body.kadence-enhancement .ImageBackground{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

body.kadence-enhancement .ImageBackground--Lighter{
    filter: brightness(0.7);
}

body.kadence-enhancement .ImageBackground--Lightest{
    filter: unset;
}


body.kadence-enhancement .ImageBackground img{
    height: 100%;
    object-fit: cover;
}

body.kadence-enhancement .ImageBackground--Full img,
body.kadence-enhancement .ImageBackground--Full{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.kadence-enhancement .HeroSlider .kb-advanced-slide-inner{
    position: unset;
}

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

    body.kadence-enhancement .Section__Image100 .kt-inner-column-height-full:not(.kt-row-layout-row)>.wp-block-kadence-column {
        align-self: end;
    }

    .ImageBackground--MobileBlock,
    .ImageBackground--MobileBlock img {
        position: unset!important;
        height: auto!important;
        filter: unset!important;
        max-height: 400px;
    }
}

/* ImageHeight--100 Class for Column with Inner Image 100% */
body.kadence-enhancement .ImageHeight--100.wp-block-kadence-column,
.ImageHeight--100 .kt-inside-inner-col,
.ImageHeight--100 .wp-block-image,
.ImageHeight--100 .wp-block-image img,
.ImageHeight--100 .kb-image-has-overlay,
body.kadence-enhancement .ImageHeight--100,
body.kadence-enhancement .ImageHeight--100 img,
body.kadence-enhancement .ImageHeight--100 figure {
    height: 100%;
    width: 100%;
}

body.kadence-enhancement .ImageHeight--100 .wp-block-image img,
body.kadence-enhancement .ImageHeight--100 img{
    object-fit: cover;
}

body.kadence-enhancement .Image--BorderRadius img {
    border-radius: 12px;
}

/* Animation */

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

    100% {
        transform: translateY(-50vh)
    }
}

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

    65%{
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes rotating{
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Disable animation for accessibility */
@media (prefers-reduced-motion: reduce) {
    .Animation--Floating, .Animation--Rotating, .Animation--ScrollMouse, .FullCardAnimation--Zoom {
        animation: none!important;
    }

    .Animation--Floating, .Animation--Rotating, .Animation--ScrollMouse, .FullCardAnimation--Zoom {
        transform: initial!important;
    }
}

body.kadence-enhancement .Animation--Floating{
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

body.kadence-enhancement .Animation--Rotating {
    animation-name: rotating;
    animation-duration: 26s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

body.kadence-enhancement .Animation--ScrollMouse {
    animation: scrollImage 1s linear;
    animation-timeline: scroll(root);
}

body.kadence-enhancement .FullCardAnimation--Zoom .kt-inside-inner-col:hover {
    transition: transform .5s;
    transform: scale(1.05);
}

/* Image */

/* ImageHeight--100 Class for Column with Inner Image 100% */
body.kadence-enhancement .ImageHeight--100.wp-block-kadence-column,
.ImageHeight--100 .kt-inside-inner-col,
.ImageHeight--100 .wp-block-image,
.ImageHeight--100 .wp-block-image img {
    height: 100%;
}

body.kadence-enhancement .ImageHeight--100 .wp-block-image img {
    object-fit: cover;
}

body.kadence-enhancement .Image--BorderRadius img {
    border-radius: 12px;
}

/* Notice Woocommerce Style */
body.kadence-enhancement .woocommerce .woocommerce-error {
    background-color: #fdd5d3;
    border-left: 0;
    color: #d92b0d;
    margin-bottom: 48px;
    font-size: 14px;
    border-radius: 3px;
}

body.kadence-enhancement .woocommerce .woocommerce-error .button {
    background-color: #d92b0d;
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    border: 2px solid #d92b0d;
    text-align: center;
    margin-left: 24px;
    order: 2;
}
body.kadence-enhancement .PageAssociati .woocommerce-error li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

body.kadence-enhancement .woocommerce .woocommerce-error a {
    color: #d92b0d;
}

body.kadence-enhancement .woocommerce .woocommerce-error .button:hover {
    background-color: transparent;
    color: #d92b0d;
}

body.kadence-enhancement .woocommerce .woocommerce-message {
    background-color: #daf7db;
    border-left: 0;
    color: #1D7F60;
    margin-bottom: 48px;
    font-size: 14px;
    border-radius: 3px;
}

body.kadence-enhancement .woocommerce .woocommerce-message a {
    color: #1D7F60;
}

body.kadence-enhancement .woocommerce .woocommerce-info {
    background-color: #d3f0fd;
    border-left: 0;
    color: #0d5bd9;
    margin-bottom: 48px;
    font-size: 14px;
    border-radius: 3px;
}

body.kadence-enhancement .woocommerce .woocommerce-info a {
    color: #0d5bd9;
}

/* Required Color */
body.kadence-enhancement label span.required,
body.kadence-enhancement label abbr.required {
    color: var(--global-palette1) !important;
}

body.kadence-enhancement .Column--BorderTop {
    border-top: 3px solid var(--global-palette4);
    padding-top: 24px;
}

@media screen and (min-width: 1141px) {
    body.kadence-enhancement .Image--Center.wp-block-image {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 1140px) and (min-width: 768px) {
    body.kadence-enhancement .ColumnsLaptop--Wrap.wp-block-columns {
        flex-direction: column;
    }

    body.kadence-enhancement .RowLaptop--50 .kt-row-column-wrap {
        grid-template-columns: 50% 50%;
    }
}

/* Arrow Carousel */

body.kadence-enhancement .Carousel--Arrow .splide__arrows.splide__arrows--ltr {
    position: absolute;
    bottom: -3em;
    z-index: 999;
    right: 1em;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 8px;
}

body.kadence-enhancement .Carousel--Arrow .splide__arrows.splide__arrows--ltr button {
    position: relative;
    left: 0px;
    bottom: -24px;
    background: transparent;
}

body.kadence-enhancement .Carousel--Arrow .splide__arrows.splide__arrows--ltr button:hover {
    background: transparent;
}

body.kadence-enhancement .Carousel--Arrow .kb-splide .splide__arrow svg {
    height: 0.75em;
    width: 0.75em;
}

body.kadence-enhancement .Item--Grow {
    flex: 1 0 0;
    -webkit-flex: 1 0 0;
}

body.kadence-enhancement .wp-block-kadence-advancedgallery .kt-blocks-carousel.kt-carousel-container-dotstyle-none {
    padding-bottom: 64px;
}

body.kadence-enhancement .CardMetaInfo--First .kt-blocks-post-grid-item-inner header {
    display: flex;
    flex-direction: column-reverse;
}

body.kadence-enhancement .CardMetaInfo--First .kt-blocks-post-grid-item-inner header .entry-title {
    padding-top: 0px;
}

body.kadence-enhancement .Map--FullHeight.kb-google-maps-container {
    height: 100%;
}


body.kadence-enhancement input[type="search"]:focus,
body.kadence-enhancement .FormInput input:focus,
body.kadence-enhancement button:focus,
body.kadence-enhancement button:hover {
    box-shadow: none;
}

body.kadence-enhancement input:focus{
    color: var(--global-palette4);
}

body.kadence-enhancement .wp-block-search__label {
    color: #1d1d1d;
}

/* Inner Background Row Layout */
.InnerBackground--Soft>.kt-row-column-wrap{
    background-color: #EBE6E0;
    border-radius: 12px;
}

/* Menu Language WPML */
body.kadence-enhancement .wpml-ls-legacy-dropdown {
    max-width: fit-content;
    width: fit-content;
}

body.kadence-enhancement .wpml-ls-legacy-dropdown a, 
body.kadence-enhancement .wpml-ls-legacy-dropdown a:hover, 
body.kadence-enhancement .wpml-ls-legacy-dropdown a:focus, 
body.kadence-enhancement .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a {
    background-color: transparent !important;
    border: none !important;
    color: inherit !important;
    padding: 0 !important;
    font-size: inherit;
}

body.kadence-enhancement .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    border: none !important;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(30px);
    background: rgba(255, 253, 250, .85);
    opacity: 0;
    min-width: 100px;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

body.kadence-enhancement .wpml-ls-legacy-dropdown:hover .wpml-ls-sub-menu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(1.5rem);
}

body.kadence-enhancement .wpml-ls-legacy-dropdown .wpml-ls-sub-menu a {
    color: inherit !important;
    background-color: transparent !important;
}

.wpml-ls-legacy-dropdown .wpml-ls-item-toggle::after {
    display: none !important;
}

.wpml-ls-legacy-dropdown .wpml-ls-item-toggle::before {
    content: "\f078"; 
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
    float: right;
    color: inherit;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    font-size: inherit;
    gap: 5px;
}

@media screen and (max-width: 1140px) {
    body.kadence-enhancement .wpml-ls-legacy-dropdown .wpml-ls-sub-menu{
        color: #1d1d1d;
    }
}

/* Menu Language Translatepress */
body.kadence-enhancement .trp-language-switcher {
    width: 76px;
    height: 32px;
}

body.kadence-enhancement .trp-language-switcher .trp-ls-shortcode-current-language,
.trp-language-switcher:hover .trp-ls-shortcode-language {
    border: 0px;
    padding: 0px;
    background-image: none;
    background-color: transparent;
    width: 60px !important;
}

body.kadence-enhancement .trp-language-switcher:hover .trp-ls-shortcode-disabled-language::after {
    content: "\f0d8";
}

body.kadence-enhancement .trp-ls-shortcode-language {
    padding: 0px !important;
    width: 60px !important;
}

body.kadence-enhancement .trp-language-switcher .trp-ls-shortcode-disabled-language {
    padding-right: 0px;
}

body.kadence-enhancement .trp-language-switcher .trp-ls-shortcode-language:last-child a {
    padding-top: 0px !important;
}

body.kadence-enhancement .trp-language-switcher .trp-ls-shortcode-disabled-language::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: #fff;
}

body.kadence-enhancement .trp-language-switcher>div>a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

body.kadence-enhancement .trp-language-switcher .trp-ls-shortcode-language a:nth-child(2){
    padding: 0px 12px;
}

body.kadence-enhancement .trp-language-switcher>div>a:last-child:hover {
    background-color: transparent;
}

body.kadence-enhancement .Input--Hidden.wp-block-kadence-column{
    display: none;
}

body.kadence-enhancement .HideOnDesktop{
    display: none;
}

/* Mobile */
@media screen and (max-width: 767px) {
    
    body.kadence-enhancement .HideOnMobile {
        display: none;
    }

    body.kadence-enhancement .HideOnDesktop{
        display: block;
    }
}

body.kadence-enhancement .Form--HideLabel .kb-adv-form-label,
body.kadence-enhancement .Form--HideLabel legend {
    display: none;
}

body.kadence-enhancement a,
h1:not(.kt-accordion-header-wrap),
h2:not(.kt-accordion-header-wrap),
h3:not(.kt-accordion-header-wrap),
h4:not(.kt-accordion-header-wrap),
h5:not(.kt-accordion-header-wrap),
h6:not(.kt-accordion-header-wrap) {
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
    display: inline-block;
    max-width: 100%;
}

body.kadence-enhancement .FormInput--NoBorder input[type=file] {
    border: none;
}

body.kadence-enhancement .SectionWideWidth--AlignLeft .kt-row-column-wrap {
    margin: 0px;
}

body.kadence-enhancement .wp-block-kadence-advancedheading mark.kt-highlight{
    color: var(--global-palette1);
}

/* import font awesome */

@import url('https://use.fontawesome.com/releases/v5.15.3/css/all.css');

/* Careers */

body.kadence-enhancement .FormInput input#field1114863efb-ce {
    border: none;
    padding: 0;
    padding-top: 12px;
    padding-bottom: 8px;
    color: #1d1d1d;
}

body.kadence-enhancement .FormInput input[type=file]::file-selector-button {
    background: transparent;
    color: var(--global-palette4);
    font-weight: 700;
    font-size: 12px !important;
}

body.kadence-enhancement .FormInput input[type=file]::before {
    /* Add icon atachment with font awesome */
    content: "\f0c6";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--global-palette4);
}

body.kadence-enhancement .FormInput input[type=file]::file-selector-button:hover,
body.kadence-enhancement .FormInput input[type=file]::before:hover {
    color: var(--global-palette5);
}

body.kadence-enhancement .FormInput a {
    color: #009FE3;
    font-weight: 700;
}

body.kadence-enhancement .FormInput a:hover {
    color: #007EB4;
}

body.kadence-enhancement .wp-block-kadence-advanced-form .kb-adv-form-required {
    color: var(--global-palette1) !important;
}

body.kadence-enhancement .AccordionFullBG .kt-accordion-header-wrap {
    display: block;
}