/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 17 2026 | 18:34:42 */
/* Riduce altezza header */
header.wp-block-template-part > .wp-block-group {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Riduce spazio tra header e contenuto */
main.wp-block-group {
    margin-top: 10px !important;
}

/* Riduce dimensione logo, se serve */
.wp-block-site-logo img.custom-logo {
    max-height: 60px;
    width: auto;
}
/* hero zoom */
.hero-zoomout img,
.hero-zoomout video {
    transform: scale(1.2);
    animation: heroZoomOut 12s ease-out forwards;
}

@keyframes heroZoomOut {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}
/* tit box vetrine con sfondo giallo */
.titolo-box {
    display: inline-block;
    background: #00a19b;
    padding: 10px 16px;
    color: #FFF !important;
    line-height: 1.1;
    border-radius: 8px;
    font-weight: 600;
	 display: table;          /* trucco per centrare il box */
    margin-left: auto;
    margin-right: auto;
}
/* ridurre padding in p txt */
.eg-tight-text {
    padding: 8px 14px !important;
    margin: 0 !important;
    line-height: 1.45;
}
/* reviews */
/* Reviews section - 2 columns layout */
.reviews-two-cols .glsr-reviews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* Single review card */
.reviews-two-cols .glsr-review {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-sizing: border-box;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

/* Name */
.reviews-two-cols .glsr-review-title h4 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.25;
}

/* Stars */
.reviews-two-cols .glsr-review-rating {
    margin: 0;
}

/* Review text */
.reviews-two-cols .glsr-review-content p {
    margin: 0;
    line-height: 1.6;
}

/* Avatar */
.reviews-two-cols .glsr-review-avatar {
    margin-top: auto;
}

.reviews-two-cols .glsr-review-avatar img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .reviews-two-cols .glsr-reviews {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .reviews-two-cols .glsr-review {
        padding: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .reviews-two-cols .glsr-reviews {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* blocco icone css */

/* hide element only on mobile */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}
/* social icons */
@media (max-width: 767px) {
  .social-row-mobile {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .social-row-mobile > .wp-block-column {
    flex: 1 1 0 !important;
    width: auto !important;
    margin: 0 !important;
    text-align: center;
  }

  .social-row-mobile .wp-block-social-links {
    justify-content: center;
    margin: 0 !important;
  }
}
/* base pill style */
.wp-block-navigation .menu-pill-contact > a,
.wp-block-navigation .menu-pill-phone > a {
    padding: 10px 18px !important;
    border-radius: 40px !important;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .25s ease;
}

/* CONTACT US style */
.wp-block-navigation .menu-pill-contact > a {
    background: #0d3b66;
    color: #fff !important;
}

/* PHONE style */
.wp-block-navigation .menu-pill-phone > a {
    background: #3b6ff5;
    color: #fff !important;
}

/* hover */
.wp-block-navigation .menu-pill-contact > a:hover {
    background: #09263f;
}

.wp-block-navigation .menu-pill-phone > a:hover {
    background: #2c54c5;
}