/* =========================================================
   GRUMÈL — HOMEPAGE
   ========================================================= */

#sp-main-body {
  padding:  0;
}




:root {
    --gr-black: #1d1d1b;
    --gr-white: #ffffff;
    --gr-offwhite: #f5f3ee;
    --gr-grey: #77736c;

    --gr-space-xs: 16px;
    --gr-space-sm: 32px;
    --gr-space-md: 64px;
    --gr-space-lg: 96px;
    --gr-space-xl: 140px;
}


/* ---------------------------------------------------------
   BASE
   --------------------------------------------------------- */

.gr-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.gr-container--narrow {
    max-width: 760px;
}

.gr-eyebrow {
    margin-bottom: 18px;

    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gr-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--gr-black);
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.gr-link span {
    transition: transform .25s ease;
}

.gr-link:hover span {
    transform: translateX(5px);
}

.gr-link--secondary {
    margin-left: 24px;
    color: var(--gr-grey);
}

.gr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 28px;

    border: 1px solid transparent;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.gr-btn--light {
    color: var(--gr-black);
    background: var(--gr-white);
}

.gr-btn--light:hover {
    color: var(--gr-white);
    background: transparent;
    border-color: var(--gr-white);
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.gr-home-hero {
    position: relative;

    min-height: min(780px, 90vh);

    display: flex;
    align-items: flex-end;

    background-image: url('https://www.studiowebgarda.it/grumel26/images/Grumel_Camping_5017-small.jpg');
    background-position: center;
    background-size: cover;
}

.gr-home-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 30%,
            rgba(0,0,0,.48) 100%
        );
}

.gr-home-hero__content {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
    padding: 80px 0;
    
    color: var(--gr-white);
}

.gr-home-hero h1 {
    max-width: 780px;

    margin: 0 0 30px;

    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -.035em;
}

.gr-home-hero .gr-eyebrow {
    margin-bottom: 22px;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.gr-home-intro {
    padding: var(--gr-space-xl) 20px;
    text-align: center;
}

.gr-home-intro h2 {
    margin: 0 auto 28px;

    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.035em;
}

.gr-home-intro__text {
    max-width: 620px;
    margin: 0 auto;
}

.gr-home-intro p {
    margin: 0;

    color: var(--gr-grey);

    font-size: 18px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   CAMPING + OLIO
   --------------------------------------------------------- */

.gr-home-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.gr-home-duo__item {
    padding-bottom: 70px;
}

.gr-home-duo__image {
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
}

.gr-home-duo__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;
}

.gr-home-duo__item:hover img {
    transform: scale(1.03);
}

.gr-home-duo__content {
    padding: 38px 40px 0;
}

.gr-home-duo h2 {
    margin: 0 0 16px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.03em;
}

.gr-home-duo p {
    max-width: 440px;

    margin: 0 0 26px;

    color: var(--gr-grey);

    font-size: 16px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   TERRITORIO
   --------------------------------------------------------- */

.gr-home-territory {
    display: grid;
    grid-template-columns: 1.5fr 1fr;

    margin-top: var(--gr-space-xl);
}

.gr-home-territory__image {
    max-height: 650px;
}

.gr-home-territory__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.gr-home-territory__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px;
    background: var(--gr-offwhite);
}

.gr-home-territory h2 {
    margin: 0 0 28px;

    font-size: clamp(42px, 5vw, 66px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -.04em;
}

.gr-home-territory p {
    max-width: 420px;

    margin: 0 0 35px;

    color: var(--gr-grey);

    font-size: 17px;
    line-height: 1.65;
}

.gr-experiences {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;

    margin-bottom: 40px;
}

.gr-experiences span {
    font-size: 13px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   AZIENDA
   --------------------------------------------------------- */

.gr-home-company {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    max-width: 1180px;
    margin: var(--gr-space-xl) auto;
}

.gr-home-company__content {
    padding: 60px 80px 60px 20px;
}

.gr-home-company h2 {
    margin: 0 0 28px;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.04em;
}

.gr-home-company p {
    max-width: 480px;

    margin: 0 0 32px;

    color: var(--gr-grey);

    font-size: 17px;
    line-height: 1.65;
}

.gr-home-company__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.gr-home-company__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ---------------------------------------------------------
   BOOKING
   --------------------------------------------------------- */

.gr-home-booking {
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--gr-white);

    background:
        linear-gradient(
            rgba(0,0,0,.28),
            rgba(0,0,0,.42)
        ),
        url('https://www.studiowebgarda.it/grumel26/images/Grumel_Camping_5001-small.jpg')
        center / cover no-repeat;
}

.gr-home-booking__content {
    padding: 60px 20px;
}

.gr-home-booking h2 {
    margin: 0 0 18px;

    font-size: clamp(46px, 6vw, 76px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.04em;
}

.gr-home-booking p {
    margin: 0 0 32px;

    font-size: 18px;
}


/* ---------------------------------------------------------
   MAPPA
   --------------------------------------------------------- */

.gr-home-location {
    padding: 90px 20px;

    text-align: center;
}

.gr-home-location h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 5vw, 52px);
    line-height: 1;
    font-weight: 500;
}

.gr-home-location p {
    margin-bottom: 25px;

    color: var(--gr-grey);

    line-height: 1.7;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    :root {
        --gr-space-xl: 90px;
        --gr-space-lg: 70px;
    }

    .gr-container {
        width: calc(100% - 36px);
    }

    .gr-home-hero {
        min-height: 76vh;
    }

    .gr-home-hero__content {
        width: calc(100% - 36px);
        padding: 55px 0;
    }

    .gr-home-hero h1 {
        font-size: 43px;
        line-height: .98;
    }

    .gr-home-intro {
        padding: 85px 18px;
    }

    .gr-home-intro h2 {
        font-size: 40px;
    }

    .gr-home-intro p {
        font-size: 16px;
    }

    .gr-home-duo {
        display: block;
    }

    .gr-home-duo__item {
        padding-bottom: 65px;
    }

    .gr-home-duo__image {
        aspect-ratio: 1 / 1.05;
    }

    .gr-home-duo__content {
        padding: 30px 18px 0;
    }

    .gr-home-duo h2 {
        font-size: 38px;
    }

    .gr-home-duo p {
        font-size: 16px;
    }

    .gr-link--secondary {
        margin-left: 15px;
    }

    .gr-home-territory {
        display: block;

        margin-top: 30px;
    }

    .gr-home-territory__image {
        min-height: 430px;
    }

    .gr-home-territory__content {
        padding: 65px 22px;
    }

    .gr-home-territory h2 {
        font-size: 46px;
    }

    .gr-home-company {
        display: flex;
        flex-direction: column-reverse;

        margin: 90px 0 0;
    }

    .gr-home-company__content {
        padding: 60px 22px;
    }

    .gr-home-company__image {
        width: 100%;
        aspect-ratio: 1 / 1.15;
    }

    .gr-home-company h2 {
        font-size: 44px;
    }

    .gr-home-booking {
        min-height: 500px;
    }

    .gr-home-booking h2 {
        font-size: 48px;
    }

    .gr-home-location {
        padding: 70px 20px;
    }
}
.gr-home-location {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 500px;
}

.gr-home-location__map {
    min-height: 500px;
}

.gr-home-location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}

.gr-home-location__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    background: var(--gr-offwhite);
}

.gr-home-location__content h2 {
    margin: 0 0 20px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1;
    font-weight: 500;
}

.gr-home-location__content p {
    margin: 0 0 30px;
    color: var(--gr-grey);
    line-height: 1.7;
}

@media (max-width: 767px) {

    .gr-home-location {
        display: flex;
        flex-direction: column;
    }

    .gr-home-location__map {
        order: 1;
        min-height: 380px;
    }

    .gr-home-location__map iframe {
        min-height: 380px;
    }

    .gr-home-location__content {
        order: 2;
        padding: 60px 22px;
    }
}

.itemid-101 #sp-main-body {
  padding: 0;
}


.gr-header-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    width: 100%;
}

.gr-header-shop {
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: opacity .2s ease;
}

.gr-header-shop:hover {
    opacity: .6;
}

.gr-header-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*min-height: 42px;*/
    padding: 0 20px;

    color: #fff;
    background: #222;
    text-decoration: none;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .10em;
    text-transform: uppercase;

    transition: background .2s ease, transform .2s ease;
}

.gr-header-book:hover {
    color: #fff;
    background: #000;
}


/* =========================================================
   GRUMÈL — HERO SLIDESHOW
   ========================================================= */

#gr-hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}


/* Slides */

#gr-hero-carousel .carousel-inner,
#gr-hero-carousel .carousel-item {
    width: 100%;
    height: 100%;
}

#gr-hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Leggero overlay per rendere leggibile il testo */

/*#gr-hero-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.22) 0%,
        rgba(0,0,0,.04) 45%,
        rgba(0,0,0,.28) 100%
    );
}*/
/* Versione 2 
#gr-hero-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.38) 0%,
        rgba(0,0,0,.28) 45%,
        rgba(0,0,0,.45) 100%
    );
}
*/
#gr-hero-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.38) 0%,
            rgba(0,0,0,0) 28%,
            rgba(0,0,0,.12) 55%,
            rgba(0,0,0,.42) 100%
        ),
        radial-gradient(
            ellipse at center,
            rgba(0,0,0,.30) 0%,
            rgba(0,0,0,.08) 60%,
            rgba(0,0,0,.20) 100%
        );
}

/* Testo */

.gr-hero-content {
    position: absolute;
    z-index: 2;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: min(900px, calc(100% - 40px));

    text-align: center;
    color: #fff;
}


.gr-hero-eyebrow {
    margin: 0 0 18px;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    opacity: .9;
}


.gr-hero-content h1 {
    margin: 0;

    font-size: clamp(58px, 9vw, 120px);
    line-height: .9;
    font-weight: 500;
    letter-spacing: -.04em;
}


.gr-hero-subtitle {
    margin: 24px 0 0;

    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.3;
    font-weight: 400;
}


/* Indicatori */

#gr-hero-carousel .carousel-indicators {
    z-index: 3;
    margin-bottom: 30px;
}

#gr-hero-carousel .carousel-indicators button {
    width: 28px;
    height: 2px;

    margin: 0 5px;

    border: 0;
    border-radius: 0;

    opacity: .45;
}

#gr-hero-carousel .carousel-indicators button.active {
    opacity: 1;
}


/* Mobile */

@media (max-width: 767px) {

    #gr-hero-carousel {
        height: 85vh;
        min-height: 580px;
    }

    .gr-hero-content {
        width: calc(100% - 36px);
    }

    .gr-hero-eyebrow {
        font-size: 10px;
        letter-spacing: .15em;
    }

    .gr-hero-content h1 {
        font-size: 64px;
    }

    .gr-hero-subtitle {
        margin-top: 18px;
        font-size: 19px;
    }

    #gr-hero-carousel .carousel-indicators {
        margin-bottom: 22px;
    }

}
#sp-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    box-shadow: none;
}

#sp-header .container {
    max-width: 100%;
}

#sp-header .row {
    align-items: center;
}




#gr-hero-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .42) 0%,
        rgba(0, 0, 0, .22) 18%,
        rgba(0, 0, 0, 0) 38%
    );
}

#sp-header {
    color: #fff;
}

#sp-header a {
    color: #fff;
}

#sp-header .gr-header-shop,
#sp-header .gr-header-book {
    text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

#sp-header .burger-icon span {
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,.25);
}





.gr-header-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}

.gr-header-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: #fff;
    color: #222 !important;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    /*line-height: 1;*/
}

.gr-header-shop:hover {
    background: #f2f2f2;
    color: #222 !important;
}

.gr-header-book {
    color: #fff !important;
    text-decoration: none;
    font-size: 10px;
    padding: 10px 18px;
    font-weight: 500;
    letter-spacing: .1em;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0,0,0,.35);
}



#sp-header .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#sp-header .logo {
    margin: 0 auto;
}


/*** MENU FULL ***/






/* Stato base dell'offcanvas: visibile ma trasparente per gestire l'animazione */
.offcanvas-menu {
    width: 100vw !important;
    height: 100vh !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 99999 !important;
    opacity: 0;
    visibility: hidden;
    transform: none !important; /* Disabilita lo scorrimento laterale predefinito */
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

/* Stato attivo quando viene aperto il menu */
body.offcanvas-active .offcanvas-menu {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Centratura dei contenuti */
.offcanvas-menu .offcanvas-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.offcanvas-menu .offcanvas-inner .sp-module {
    text-align: center;
    width: 100%;
}

.offcanvas-menu ul.menu {
    display: inline-block;
    padding: 0;
}

.offcanvas-menu ul.menu > li > a {
    font-size: 24px;
    padding: 15px 0;
    display: block;
    text-align: center;
}

/* Pulsante di chiusura */
.offcanvas-menu .offcanvas-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
}

/*** END MENU ***/

.offcanvas-menu .mod-menu > li > a {
    font-size: clamp(42px, 4.5vw, 64px) !important;
    line-height: 1 !important;
    letter-spacing: -0.02em;
}

.offcanvas-menu .mod-menu > li {
    margin-bottom: 12px;
}





/** cta menu **//*
.gr-offcanvas-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 60px;
}

.gr-offcanvas-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    transition: all 0.25s ease;
}


.gr-offcanvas-cta-shop {
    border: 1px solid currentColor;
}


.gr-offcanvas-cta-book {
    background: #000;
    color: #fff !important;
    border: 1px solid #000;
}


.gr-offcanvas-cta-shop:hover {
    background: #000;
    color: #fff !important;
}

.gr-offcanvas-cta-book:hover {
    opacity: 0.7;
}
.gr-offcanvas-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px;
    width: 100%;
    margin-top: 55px;
    text-align: center !important;
}

.gr-offcanvas-cta a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

*/

/** end cta menu **/


/*** cta 2.0  ***//*
.gr-offcanvas-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 22px;
    width: 100%;
    margin-top: 65px;
    text-align: center !important;
}

.gr-offcanvas-cta a {
    position: relative;
    display: inline-block !important;
    padding: 6px 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: inherit !important;
    
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em;
    line-height: 1.2 !important;
    text-decoration: none !important;
    
    transition: opacity 0.3s ease;
}


.gr-offcanvas-cta a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.gr-offcanvas-cta a:hover {
    opacity: 0.65;
}

.gr-offcanvas-cta a:hover::after {
    width: 100%;
}
.gr-cta-separator {
    font-size: 16px;
    opacity: 0.45;
    margin: 0 2px;
}*/

/*** cta 2.0 end ***/
.gr-offcanvas-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    width: 100% !important;
    margin-top: 55px !important;

    gap: 18px;

    text-align: center !important;
}

.gr-offcanvas-cta a {
    position: relative;

    display: inline-block !important;

    padding: 5px 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: inherit !important;

    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;

    letter-spacing: 0.16em;

    text-decoration: none !important;

    transition: opacity 0.3s ease;
}

.gr-offcanvas-cta a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: currentColor;

    transition: width 0.3s ease;
}

.gr-offcanvas-cta a:hover {
    opacity: 0.6;
}

.gr-offcanvas-cta a:hover::after {
    width: 100%;
}

.gr-cta-separator {
    font-size: 14px;
    opacity: 0.35;
}
/*** cta 3.0 ***/




.offcanvas-menu .mod-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.offcanvas-menu .mod-menu > li {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.offcanvas-menu .mod-menu > li > a {
    display: block !important;

    padding: 0 !important;
    margin: 0 !important;

    font-size: clamp(42px, 4.5vw, 64px) !important;
    line-height: 0.98 !important;

    font-weight: 400 !important;
    letter-spacing: -0.025em;

    text-align: center !important;
    text-decoration: none !important;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

/*.offcanvas-menu .mod-menu > li > a:hover {
    opacity: 0.45;
    transform: translateX(6px);
}*/
.offcanvas-menu .mod-menu > li > a {
    position: relative;
    display: inline-block !important;
    padding: 4px 0 !important;
    text-decoration: none !important;
}

.offcanvas-menu .mod-menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: width 0.3s ease;
}

.offcanvas-menu .mod-menu > li > a:hover {
    opacity: 1 !important;
    transform: none !important;
}

.offcanvas-menu .mod-menu > li > a:hover::after {
    width: 100%;
}
.offcanvas-menu .offcanvas-inner {
    overflow: visible !important;
}

.offcanvas-menu .mod-menu {
    overflow: visible !important;
}

.offcanvas-menu .mod-menu > li {
    overflow: visible !important;
}

.offcanvas-menu .mod-menu > li > a {
    overflow: visible !important;
    line-height: 1.08 !important;
    padding: 4px 0 !important;
}





/** lingua **/
.offcanvas-menu .mod-languages {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;

    margin-top: 28px !important;
}

.offcanvas-menu .mod-languages__list {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    gap: 14px;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.offcanvas-menu .mod-languages__list li {
    margin: 0 !important;
    padding: 0 !important;
}

.offcanvas-menu .mod-languages__list a {
    display: block !important;

    padding: 3px 0 !important;

    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em;

    text-decoration: none !important;

    opacity: 0.6;

    transition: opacity 0.25s ease;
}

.offcanvas-menu .mod-languages__list .lang-active a {
    opacity: 1;
}

.offcanvas-menu .mod-languages__list a:hover {
    opacity: 1;
}

/** end lingua **/

.offcanvas-menu .offcanvas-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.offcanvas-menu .offcanvas-inner > .sp-module {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}


.offcanvas-menu {
    background: #E4E8DF!important;/*#F4F1E8 */
    color: #26382D !important;
}

.offcanvas-menu a {
    color: #26382D !important;
}

/* MENU PRINCIPALE */
.offcanvas-menu .mod-menu > li > a {
    color: #26382D !important;
}

.offcanvas-menu .mod-menu > li > a:hover {
    color: #596B5A !important;
}

/* CTA */
.gr-offcanvas-cta a {
    color: #26382D !important;
}

.gr-offcanvas-cta a:hover {
    color: #596B5A !important;
}

/* SEPARATORE CTA */
.gr-cta-separator {
    color: #87927F !important;
}

/* LINGUE */
.offcanvas-menu .mod-languages__list a {
    color: #26382D !important; /*#87927F*/
}

.offcanvas-menu .mod-languages__list .lang-active a {
    color: #000 !important; /*#26382D */
}
div.mod-languages ul li.lang-active{
  background:none!important;
}
#sp-header.header-sticky{
  background:#fff !important;
  box-shadow: 0 0 4px 0 rgba(0,0,0,.1);
}




 /* =========================================================
    PAGINA CAMPING GRUMÈL
    ========================================================= */

.gr-camping-page {
    --gr-green: #26382D;
    --gr-green-light: #596B5A;
    --gr-cream: #F4F1E8;
    --gr-line: rgba(38, 56, 45, 0.18);

    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 120px;

    color: var(--gr-green);
}


/* =========================================================
   GENERALE
   ========================================================= */

.gr-camping-page img {
    display: block;
    width: 100%;
    height: auto;
}

.gr-camping-page h1,
.gr-camping-page h2,
.gr-camping-page h3,
.gr-camping-page p {
    margin-top: 0;
}

.gr-camping-page p {
    line-height: 1.7;
}

.gr-eyebrow {
    display: block;

    margin-bottom: 15px;

    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity: 0.55;
}


/* =========================================================
   HERO
   ========================================================= */

/*.gr-camping-hero {
    position: relative;

    width: 100%;
    height: min(78vh, 800px);

    margin-bottom: 120px;

    overflow: hidden;
}

.gr-camping-hero img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gr-camping-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(20, 30, 24, 0.55),
        rgba(20, 30, 24, 0.05) 60%
    );
}

.gr-camping-hero-content {
    position: absolute;

    z-index: 2;

    left: 7%;
    bottom: 8%;

    color: #fff;
}

.gr-camping-hero-content .gr-eyebrow {
    opacity: 0.8;
}

.gr-camping-hero h1 {
    margin: 0;

    font-size: clamp(58px, 9vw, 125px);
    line-height: 0.9;

    font-weight: 400;
    letter-spacing: -0.045em;
}*/


/* =========================================================
   INTRO
   ========================================================= */

.gr-camping-intro {
    display: grid;

    grid-template-columns: 0.7fr 1.5fr;
    gap: 80px;

    max-width: 1100px;

    margin: 120px auto 130px;
}

.gr-intro-text {
    max-width: 780px;
}

.gr-intro-text p {
    margin-bottom: 25px;

    font-size: 18px;
}

.gr-intro-text .gr-lead {
    margin-bottom: 40px;

    font-size: 25px;
    line-height: 1.5;
}

.gr-intro-label {
    padding-top: 10px;
}


/* =========================================================
   FOTO PANORAMICA
   ========================================================= */

.gr-camping-image-wide {
    margin-bottom: 140px;
}

.gr-camping-image-wide img {
    width: 100%;
    max-height: 720px;

    object-fit: cover;
}


/* =========================================================
   FEATURE / APERTI TUTTO L'ANNO
   ========================================================= */

.gr-feature-section {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;

    gap: 100px;

    max-width: 1200px;

    margin: 0 auto 150px;
}

.gr-feature-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gr-feature-content {
    max-width: 450px;
}

.gr-feature-content h2 {
    margin-bottom: 30px;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.92;

    font-weight: 400;
    letter-spacing: -0.04em;
}

.gr-feature-content p {
    max-width: 390px;

    font-size: 17px;
}


/* =========================================================
   OUTDOOR
   ========================================================= */

.gr-outdoor-section {
    margin-bottom: 150px;
}

.gr-outdoor-heading {
    max-width: 1200px;
    margin: 0 auto 55px;
}

.gr-outdoor-heading h2 {
    margin: 0;

    font-size: clamp(46px, 6vw, 78px);
    line-height: 0.95;

    font-weight: 400;
    letter-spacing: -0.04em;
}

.gr-outdoor-grid {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 18px;
}

.gr-outdoor-grid figure {
    margin: 0;
}

.gr-outdoor-grid img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.gr-outdoor-grid figcaption {
    padding-top: 14px;

    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    opacity: 0.6;
}


/* =========================================================
   LISTINO
   ========================================================= */

.gr-camping-prices {
    max-width: 1200px;

    margin: 0 auto 150px;
}

.gr-section-heading {
    margin-bottom: 50px;
}

.gr-section-heading h2 {
    margin-bottom: 12px;

    font-size: clamp(45px, 6vw, 75px);
    line-height: 0.95;

    font-weight: 400;
    letter-spacing: -0.04em;
}

.gr-section-heading p {
    margin: 0;

    font-size: 15px;
    opacity: 0.6;
}

.gr-price-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.gr-price-table {
    width: 100%;

    border-collapse: collapse;
    border-spacing: 0;
}

.gr-price-table th,
.gr-price-table td {
    padding: 22px 20px;

    border-bottom: 1px solid var(--gr-line);

    text-align: center;
    vertical-align: middle;
}

.gr-price-table thead th {
    padding-top: 0;
    padding-bottom: 25px;

    border-bottom: 2px solid var(--gr-green);
}

.gr-price-table thead th:first-child {
    width: 30%;
}

.gr-price-table tbody th {
    text-align: left;

    font-weight: 500;
}

.gr-price-table tbody th span {
    font-weight: 400;
    opacity: 0.55;
}

.gr-price-table td {
    font-size: 17px;
}

.gr-season-title {
    display: block;

    margin-bottom: 10px;

    font-size: 15px;
    font-weight: 500;
}

.gr-season-dates {
 display: block;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.8;
}

.gr-price-footnote {
    max-width: 850px;

    margin-top: 22px;

    font-size: 13px;
    line-height: 1.6;

    opacity: 0.6;
}


/* =========================================================
   SERVIZI
   ========================================================= */

.gr-services-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;

    max-width: 1200px;

    margin: 0 auto 150px;
}

.gr-services-image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.gr-services-content {
    max-width: 500px;
}

.gr-services-content h2 {
    margin-bottom: 30px;

    font-size: clamp(48px, 6vw, 75px);
    line-height: 0.92;

    font-weight: 400;
    letter-spacing: -0.04em;
}

.gr-services-content p {
    font-size: 16px;
}

.gr-services-content h3 {
    margin-bottom: 15px;

    font-size: 20px;
    font-weight: 500;
}

.gr-service-divider {
    width: 50px;
    height: 1px;

    margin: 40px 0;

    background: var(--gr-green);
    opacity: 0.35;
}


/* =========================================================
   CHECK-IN
   ========================================================= */

.gr-checkin-section {
    max-width: 1200px;

    margin: 0 auto 150px;

    padding-top: 70px;

    border-top: 1px solid var(--gr-line);
}

.gr-checkin-heading {
    margin-bottom: 65px;
}

.gr-checkin-heading h2 {
    margin: 0;

    font-size: clamp(48px, 6vw, 75px);
    line-height: 0.92;

    font-weight: 400;
    letter-spacing: -0.04em;
}

.gr-checkin-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    margin-bottom: 60px;
}

.gr-checkin-item {
    padding-top: 25px;

    border-top: 2px solid var(--gr-green);
}

.gr-checkin-label {
    display: block;

    margin-bottom: 15px;

    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    opacity: 0.55;
}

.gr-checkin-item h3 {
    margin-bottom: 15px;

    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.gr-checkin-item p {
    margin: 0;

    font-size: 18px;
}

.gr-checkin-info {
    max-width: 800px;
}

.gr-checkin-info p {
    font-size: 15px;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gr-camping-gallery {
    margin-bottom: 150px;
}

.gr-gallery-heading {
    max-width: 1200px;

    margin: 0 auto 55px;
}

.gr-gallery-heading h2 {
    margin: 0;

    font-size: clamp(45px, 6vw, 75px);
    line-height: 0.95;

    font-weight: 400;
    letter-spacing: -0.04em;
}

.gr-gallery-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 18px;

    align-items: stretch;
}

.gr-gallery-grid figure {
    margin: 0;
}

.gr-gallery-grid img {
    width: 100%;
    height: 100%;

    min-height: 420px;

    object-fit: cover;
}


/* =========================================================
   CTA FINALE
   ========================================================= */

.gr-camping-cta {
    display: flex;

    flex-direction: column;
    align-items: center;

    justify-content: center;

    min-height: 500px;

    padding: 80px 30px;

    margin-bottom: 0;

    background: var(--gr-green);

    color: var(--gr-cream);

    text-align: center;
}

.gr-camping-cta .gr-eyebrow {
    opacity: 0.6;
}

.gr-camping-cta h2 {
    margin-bottom: 45px;

    font-size: clamp(55px, 8vw, 105px);
    line-height: 0.9;

    font-weight: 400;
    letter-spacing: -0.045em;
}

.gr-camping-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    border: 1px solid rgba(244, 241, 232, 0.55);

    color: var(--gr-cream) !important;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.16em;

    text-decoration: none !important;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.gr-camping-button:hover {
    background: var(--gr-cream);

    color: var(--gr-green) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .gr-camping-page {
        padding: 0 18px 70px;
    }


    /* HERO */

    .gr-camping-hero {
        height: 70vh;

        margin-left: -18px;
        margin-right: -18px;

        width: calc(100% + 36px);

        margin-bottom: 75px;
    }

    .gr-camping-hero-content {
        left: 7%;
        bottom: 7%;
    }

    .gr-camping-hero h1 {
        font-size: 58px;
    }


    /* INTRO */

    .gr-camping-intro {
        display: block;

        margin-bottom: 80px;
    }

    .gr-intro-label {
        margin-bottom: 35px;
    }

    .gr-intro-text .gr-lead {
        font-size: 20px;
    }

    .gr-intro-text p {
        font-size: 16px;
    }


    /* IMMAGINI */

    .gr-camping-image-wide {
        margin-bottom: 80px;
    }


    /* FEATURE */

    .gr-feature-section {
        display: flex;

        flex-direction: column;

        gap: 40px;

        margin-bottom: 90px;
    }

    .gr-feature-content {
        max-width: none;
    }


    /* OUTDOOR */

    .gr-outdoor-section {
        margin-bottom: 90px;
    }

    .gr-outdoor-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .gr-outdoor-grid img {
        aspect-ratio: 4 / 3;
    }


    /* PREZZI */

    .gr-camping-prices {
        margin-bottom: 90px;
    }

    .gr-price-table {
        min-width: 650px;
    }


    /* SERVIZI */

    .gr-services-section {
        display: flex;

        flex-direction: column;

        gap: 45px;

        margin-bottom: 90px;
    }

    .gr-services-content {
        max-width: none;
    }


    /* CHECK-IN */

    .gr-checkin-section {
        margin-bottom: 90px;

        padding-top: 45px;
    }

    .gr-checkin-grid {
        grid-template-columns: 1fr;

        gap: 40px;

        margin-bottom: 45px;
    }


    /* GALLERY */

    .gr-camping-gallery {
        margin-bottom: 90px;
    }

    .gr-gallery-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .gr-gallery-grid img {
        min-height: 350px;
    }


    /* CTA */

    .gr-camping-cta {
        min-height: 400px;

        margin-left: -18px;
        margin-right: -18px;

        padding: 70px 20px;
    }

}

 /* =========================================================
    END PAGINA CAMPING GRUMÈL
    ========================================================= */


.sp-page-title {
    position: relative;
   /* min-height: 620px;*/
  height: min(78vh, 800px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.sp-page-title::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 30, 24, 0.55),
        rgba(20, 30, 24, 0.05) 60%
    );
    z-index: 1;
}

.sp-page-title .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.sp-page-title .sp-page-title-heading {
    position: relative;
}

.sp-page-title .sp-page-title-heading::before {
    content: "Nago · Lago di Garda";
    display: block;
    margin-bottom: 18px;

    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: none;

    color: #F4F1E8;
}

.sp-page-title h1 {
    margin: 0 !important;
    font-size: clamp(58px, 8vw, 115px) !important;
    line-height: 0.9 !important;
    font-weight: 400 !important;
    letter-spacing: -0.045em !important;
    color: #F4F1E8 !important;
}
.sp-page-title {
  background: none;
  }






.gr-camping-cta {
    /*margin-top: 120px;*/
    padding: 110px 30px;
    background: #26382D;
    color: #F4F1E8;
    text-align: center;
}

.gr-camping-cta-eyebrow {
    display: block;
    margin-bottom: 22px;

    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.18em;

    opacity: 0.65;
}

.gr-camping-cta h2 {
    margin: 0 0 25px !important;

    font-size: clamp(46px, 6vw, 82px) !important;
    line-height: 0.95 !important;
    font-weight: 400 !important;
    letter-spacing: -0.04em !important;

    color: #F4F1E8 !important;
}

.gr-camping-cta p {
    max-width: 520px;
    margin: 0 auto 40px;

    font-size: 17px;
    line-height: 1.6;

    color: #F4F1E8;
    opacity: 0.75;
}

.gr-camping-cta-actions {
    display: flex;
    justify-content: center;
}

.gr-camping-cta-button {
    position: relative;
    display: inline-block;

    padding: 10px 0;

    color: #F4F1E8 !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;

    text-decoration: none !important;
}

.gr-camping-cta-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;

    width: 100%;
    height: 1px;

    background: currentColor;

    transition: width 0.3s ease;
}

.gr-camping-cta-button:hover {
    opacity: 0.65;
}




/* =========================================
   PAGINA AZIENDA
   ========================================= */


/* -----------------------------------------------------
   BASE
   ----------------------------------------------------- */

.gr-azienda-page {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #26382D;
}

.gr-azienda-page *,
.gr-azienda-page *::before,
.gr-azienda-page *::after {
    box-sizing: border-box;
}

.gr-azienda-page h2 {
    margin: 0;
    padding: 0;
    color: #26382D !important;
    font-weight: 400 !important;
    letter-spacing: -0.045em !important;
}

.gr-azienda-page p {
    color: #26382D;
}


/* -----------------------------------------------------
   EYEBROW
   ----------------------------------------------------- */

.gr-eyebrow {
    display: block;
    margin-bottom: 24px;

    color: #596B5A;

    font-size: 12px;
    line-height: 1;
    font-weight: 500;

    letter-spacing: 0.17em;
    text-transform: uppercase;
}


/* -----------------------------------------------------
   INTRO
   ----------------------------------------------------- */

.gr-azienda-intro {
    padding: 110px 0 120px;
}

.gr-azienda-intro h2 {
    max-width: 900px;

    font-size: clamp(52px, 7vw, 92px) !important;
    line-height: 0.94 !important;
}

.gr-azienda-intro-text {
    max-width: 650px;
    margin: 55px 0 0 auto;
}

.gr-azienda-intro-text p {
    margin: 0 0 22px;

    font-size: 18px;
    line-height: 1.7;
}


/* -----------------------------------------------------
   IMAGE + TEXT SECTIONS
   ----------------------------------------------------- */

.gr-azienda-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);

    gap: clamp(50px, 7vw, 110px);

    align-items: center;

    padding: 100px 0;
}

.gr-azienda-section-reverse {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.gr-azienda-image {
    width: 100%;
    overflow: hidden;
}

.gr-azienda-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}

.gr-azienda-content {
    max-width: 560px;
}

.gr-azienda-content h2 {
    margin-bottom: 38px;

    font-size: clamp(46px, 5vw, 70px) !important;
    line-height: 0.96 !important;
}

.gr-azienda-content p {
    margin: 0 0 22px;

    font-size: 17px;
    line-height: 1.7;
}

.gr-azienda-content strong {
    font-weight: 500;
}


/* -----------------------------------------------------
   TERRITORIO
   ----------------------------------------------------- */

.gr-azienda-territorio {
    padding: 130px 0 120px;
}

.gr-azienda-territorio h2 {
    max-width: 850px;

    font-size: clamp(52px, 6vw, 82px) !important;
    line-height: 0.95 !important;
}

.gr-azienda-territorio-text {
    max-width: 650px;
    margin: 55px 0 0 auto;
}

.gr-azienda-territorio-text p {
    margin: 0 0 22px;

    font-size: 17px;
    line-height: 1.7;
}


/* -----------------------------------------------------
   WIDE IMAGE
   ----------------------------------------------------- */

.gr-azienda-wide-image {
    width: 100%;
    margin: 30px 0 100px;

    overflow: hidden;
}

.gr-azienda-wide-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* -----------------------------------------------------
   PHILOSOPHY
   ----------------------------------------------------- */

.gr-azienda-philosophy {
    margin: 40px 0 100px;

    padding: 100px clamp(35px, 6vw, 90px);

    background: #26382D;
}

.gr-azienda-philosophy-inner {
    max-width: 820px;
}

.gr-azienda-philosophy .gr-eyebrow {
    color: #A9B3A7;
}

.gr-azienda-philosophy h2 {
    margin-bottom: 45px;

    color: #F4F1E8 !important;

    font-size: clamp(50px, 6vw, 82px) !important;
    line-height: 0.94 !important;
}

.gr-azienda-philosophy p {
    max-width: 700px;

    margin: 0 0 22px;

    color: #F4F1E8;

    font-size: 17px;
    line-height: 1.7;

    opacity: 0.78;
}


/* -----------------------------------------------------
   CAMPING
   ----------------------------------------------------- */

.gr-azienda-camping {
    padding-top: 90px;
    padding-bottom: 110px;
}

.gr-azienda-link {
    position: relative;

    display: inline-block;

    margin-top: 18px;
    padding: 8px 0;

    color: #26382D !important;

    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;

    letter-spacing: 0.16em;

    text-decoration: none !important;
}

.gr-azienda-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 3px;

    width: 100%;
    height: 1px;

    background: currentColor;

    transition: width 0.3s ease;
}

.gr-azienda-link:hover {
    opacity: 0.55;
}


/* -----------------------------------------------------
   MORE
   ----------------------------------------------------- */

.gr-azienda-more {
    padding: 120px 0 100px;
}

.gr-azienda-more h2 {
    max-width: 850px;

    font-size: clamp(52px, 6vw, 82px) !important;
    line-height: 0.95 !important;
}

.gr-azienda-more-text {
    max-width: 650px;
    margin: 55px 0 0 auto;
}

.gr-azienda-more-text p {
    margin: 0 0 22px;

    font-size: 17px;
    line-height: 1.7;
}
.gr-azienda-more-section {
    padding-top: 70px;
    padding-bottom: 120px;
}


/* -----------------------------------------------------
   TABLET
   ----------------------------------------------------- */

@media (max-width: 991px) {

    .gr-azienda-intro {
        padding: 80px 0 90px;
    }

    .gr-azienda-intro-text,
    .gr-azienda-territorio-text,
    .gr-azienda-more-text {
        margin-left: 0;
        margin-right: 0;
    }

    .gr-azienda-section,
    .gr-azienda-section-reverse {
        grid-template-columns: 1fr;
        gap: 55px;

        padding: 80px 0;
    }

    .gr-azienda-section-reverse .gr-azienda-image {
        order: -1;
    }

    .gr-azienda-content {
        max-width: 700px;
    }

    .gr-azienda-philosophy {
        margin-top: 20px;
        margin-bottom: 80px;
        padding: 80px 40px;
    }

    .gr-azienda-wide-image {
        margin-top: 20px;
        margin-bottom: 80px;
    }

}


/* -----------------------------------------------------
   MOBILE
   ----------------------------------------------------- */

@media (max-width: 575px) {

    .gr-azienda-intro {
        padding: 65px 0 70px;
    }

    .gr-azienda-section {
        padding: 65px 0;
        gap: 40px;
    }

    .gr-azienda-intro h2,
    .gr-azienda-content h2,
    .gr-azienda-territorio h2,
    .gr-azienda-philosophy h2,
    .gr-azienda-more h2 {
        font-size: 43px !important;
        line-height: 0.96 !important;
    }

    .gr-azienda-intro-text,
    .gr-azienda-territorio-text,
    .gr-azienda-more-text {
        margin-top: 40px;
    }

    .gr-azienda-intro-text p,
    .gr-azienda-content p,
    .gr-azienda-territorio-text p,
    .gr-azienda-philosophy p,
    .gr-azienda-more-text p {
        font-size: 16px;
        line-height: 1.65;
    }

    .gr-azienda-philosophy {
        margin: 20px 0 65px;
        padding: 65px 25px;
    }

    .gr-azienda-wide-image {
        margin: 10px 0 65px;
    }

}

/* =========================================
   END PAGINA AZIENDA
   ========================================= */







.gr-olio-page {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #26382D;
}

.gr-olio-page *,
.gr-olio-page *::before,
.gr-olio-page *::after {
    box-sizing: border-box;
}

.gr-olio-page h2,
.gr-olio-page h3 {
    margin: 0;
    padding: 0;
    color: #26382D !important;
    font-weight: 400 !important;
    letter-spacing: -0.045em !important;
}

.gr-olio-page p {
    color: #26382D;
}

.gr-olio-page .gr-eyebrow {
    display: block;
    margin-bottom: 24px;
    color: #596B5A;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


/* INTRO */

.gr-olio-intro {
    padding: 110px 0 120px;
}

.gr-olio-intro h2 {
    max-width: 900px;
    font-size: clamp(52px, 7vw, 92px) !important;
    line-height: 0.94 !important;
}

.gr-olio-intro-text {
    max-width: 650px;
    margin: 55px 0 0 auto;
}

.gr-olio-intro-text p {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.7;
}


/* CARATTERISTICHE */

.gr-olio-caratteristiche {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0 120px;
    /*border-top: 1px solid rgba(38, 56, 45, 0.15);*/
}

.gr-olio-feature {
    padding-top: 25px;
}

.gr-olio-feature-number {
    display: block;
    margin-bottom: 55px;
    color: #87927F;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.12em;
}

.gr-olio-feature {
    padding-top: 25px;
    border-top: 1px solid rgba(38, 56, 45, 0.18);
}

.gr-olio-feature .gr-eyebrow {
    margin-bottom: 12px;
}

.gr-olio-feature h3 {
    margin-bottom: 18px;
    font-size: 34px !important;
    line-height: 1 !important;
}

.gr-olio-feature p {
    max-width: 240px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.gr-olio-feature .gr-eyebrow {
    margin-bottom: 10px;
}

.gr-olio-feature h3 {
    margin-bottom: 18px;
    font-size: 34px !important;
    line-height: 1 !important;
}

.gr-olio-feature p {
    max-width: 240px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}


/* IMMAGINE OLIO */

.gr-olio-product-image {
    width: 100%;
    margin: 20px 0 120px;
    overflow: hidden;
}

.gr-olio-product-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* SEZIONI TESTO */

.gr-olio-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(60px, 10vw, 150px);
    align-items: start;
    padding: 110px 0;
}

.gr-olio-section-reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.gr-olio-content h2 {
    font-size: clamp(50px, 6vw, 82px) !important;
    line-height: 0.95 !important;
}

.gr-olio-text {
    max-width: 650px;
}

.gr-olio-text p {
    margin: 0 0 25px;
    font-size: 17px;
    line-height: 1.75;
}


/* OLIO E ALIMENTAZIONE */

.gr-olio-filosofia {
    margin: 40px 0 100px;
    padding: 110px clamp(35px, 6vw, 90px);
    background: #26382D;
}

.gr-olio-filosofia-inner {
    max-width: 900px;
}

.gr-olio-filosofia .gr-eyebrow {
    color: #A9B3A7;
}

.gr-olio-filosofia h2 {
    margin-bottom: 55px;
    color: #F4F1E8 !important;
    font-size: clamp(50px, 6vw, 82px) !important;
    line-height: 0.94 !important;
}

.gr-olio-filosofia-text {
    max-width: 720px;
}

.gr-olio-filosofia-text p {
    margin: 0 0 23px;
    color: #F4F1E8;
    font-size: 17px;
    line-height: 1.75;
    opacity: 0.78;
}


/* CARATTERISTICHE / BENEFICI */

.gr-olio-benefici {
    padding: 120px 0;
}

.gr-olio-benefici > h2 {
    max-width: 850px;
    font-size: clamp(52px, 6vw, 82px) !important;
    line-height: 0.95 !important;
}

.gr-olio-benefici-list {
    max-width: 800px;
    margin: 65px 0 0 auto;
}

.gr-olio-beneficio {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid rgba(38, 56, 45, 0.18);
}

.gr-olio-beneficio span {
    color: #87927F;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.gr-olio-beneficio p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
}


/* PRODUTTORE LOCALE */

.gr-olio-locale {
    padding: 120px 0 130px;
}

.gr-olio-locale-inner {
    max-width: 1000px;
}

.gr-olio-locale h2 {
    max-width: 850px;
    font-size: clamp(52px, 6vw, 82px) !important;
    line-height: 0.95 !important;
}

.gr-olio-locale-text {
    max-width: 650px;
    margin: 60px 0 0 auto;
}

.gr-olio-locale-text p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.75;
}
/* IMMAGINI EDITORIALI */

.gr-olio-wide-image {
    width: 100%;
    margin: 30px 0 110px;
    overflow: hidden;
}

.gr-olio-wide-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gr-olio-wide-image-small {
    margin-top: 40px;
    margin-bottom: 100px;
}


/* TABLET */

@media (max-width: 991px) {

    .gr-olio-intro {
        padding: 80px 0 90px;
    }

    .gr-olio-intro-text {
        margin-left: 0;
        margin-right: 0;
    }

    .gr-olio-caratteristiche {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .gr-olio-section,
    .gr-olio-section-reverse {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 80px 0;
    }

    .gr-olio-text {
        max-width: 700px;
    }

    .gr-olio-filosofia {
        margin-bottom: 80px;
        padding: 80px 40px;
    }

    .gr-olio-benefici,
    .gr-olio-locale {
        padding: 90px 0;
    }

    .gr-olio-benefici-list,
    .gr-olio-locale-text {
        margin-left: 0;
        margin-right: 0;
    }
}


/* MOBILE */

@media (max-width: 575px) {

    .gr-olio-intro {
        padding: 65px 0 70px;
    }

    .gr-olio-intro h2,
    .gr-olio-content h2,
    .gr-olio-filosofia h2,
    .gr-olio-benefici > h2,
    .gr-olio-locale h2 {
        font-size: 43px !important;
        line-height: 0.96 !important;
    }

    .gr-olio-intro-text {
        margin-top: 40px;
    }

    .gr-olio-intro-text p,
    .gr-olio-text p,
    .gr-olio-filosofia-text p,
    .gr-olio-locale-text p,
    .gr-olio-beneficio p {
        font-size: 16px;
        line-height: 1.65;
    }

    .gr-olio-caratteristiche {
        grid-template-columns: 1fr 1fr;
        gap: 45px 20px;
        padding-bottom: 80px;
    }

    .gr-olio-feature h3 {
        font-size: 28px !important;
    }

    .gr-olio-feature p {
        font-size: 14px;
    }

    .gr-olio-product-image {
        margin-bottom: 70px;
    }

    .gr-olio-section {
        padding: 65px 0;
    }

    .gr-olio-filosofia {
        margin: 20px 0 65px;
        padding: 65px 25px;
    }

    .gr-olio-benefici,
    .gr-olio-locale {
        padding: 70px 0;
    }

    .gr-olio-benefici-list {
        margin-top: 45px;
    }

    .gr-olio-beneficio {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }


    .gr-olio-wide-image {
        margin: 10px 0 65px;
    }

    .gr-olio-wide-image-small {
        margin-top: 10px;
        margin-bottom: 65px;
    }


}


.gr-olio-shop-cta {
    margin-top: 120px;
    padding: 110px 30px;
    background: #26382D;
    color: #F4F1E8;
    text-align: center;
}

.gr-olio-shop-cta-eyebrow {
    display: block;
    margin-bottom: 22px;
    color: #A9B3A7;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.18em;
}

.gr-olio-shop-cta h2 {
    margin: 0 0 25px !important;
    color: #F4F1E8 !important;
    font-size: clamp(46px, 6vw, 82px) !important;
    line-height: 0.95 !important;
    font-weight: 400 !important;
    letter-spacing: -0.04em !important;
}

.gr-olio-shop-cta p {
    max-width: 520px;
    margin: 0 auto 40px;
    color: #F4F1E8;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.75;
}

.gr-olio-shop-cta-actions {
    display: flex;
    justify-content: center;
}

.gr-olio-shop-cta-button {
    position: relative;
    display: inline-block;
    padding: 10px 0;
    color: #F4F1E8 !important;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-decoration: none !important;
}

.gr-olio-shop-cta-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.gr-olio-shop-cta-button:hover {
    opacity: 0.65;
}

/* ========================================
   CONTATTI
======================================== */

.gr-contatti-page {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #26382D;
}

.gr-contatti-page *,
.gr-contatti-page *::before,
.gr-contatti-page *::after {
    box-sizing: border-box;
}


/* ========================================
   TYPOGRAPHY
======================================== */

.gr-contatti-page h2 {
    margin: 0;
    padding: 0;
    color: #26382D !important;
    font-weight: 400 !important;
    letter-spacing: -0.045em !important;
}

.gr-contatti-page p {
    color: #26382D;
}

.gr-contatti-page .gr-eyebrow {
    display: block;
    margin-bottom: 24px;
    color: #596B5A;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


/* ========================================
   INTRO
======================================== */

.gr-contatti-intro {
    padding: 110px 0 125px;
}

.gr-contatti-intro h2 {
    max-width: 900px;
    font-size: clamp(56px, 7vw, 94px) !important;
    line-height: 0.92 !important;
}

.gr-contatti-intro-text {
    max-width: 570px;
    margin: 55px 0 0 auto;
}

.gr-contatti-intro-text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
}


/* ========================================
   FORM SECTION
======================================== */

.gr-contatti-form-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(60px, 9vw, 140px);
    padding: 100px 0 120px;
    /*border-top: 1px solid rgba(38, 56, 45, 0.15);*/
}

.gr-contatti-form-heading {
    max-width: 520px;
}

.gr-contatti-form-heading h2 {
    font-size: clamp(48px, 5vw, 70px) !important;
    line-height: 0.95 !important;
}

.gr-contatti-form {
    max-width: 700px;
}


/* ========================================
   PLACEHOLDER FORM
======================================== */

.gr-form-placeholder {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-top: 1px solid rgba(38, 56, 45, 0.18);
    border-bottom: 1px solid rgba(38, 56, 45, 0.18);

    color: #87927F;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
}


/* ========================================
   INFO
======================================== */

.gr-contatti-info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
 padding: 0 0 50px; /* padding: 0 0 120px;*/
}

.gr-contatti-info-item {
    padding: 25px 0;
    border-top: 1px solid rgba(38, 56, 45, 0.18);
}

.gr-contatti-info-item .gr-eyebrow {
    margin-bottom: 18px;
}

.gr-contatti-info-item a {
    color: #26382D !important;
    font-size: 17px;
    line-height: 1.5;
    text-decoration: none !important;
}

.gr-contatti-info-item a:hover {
    opacity: 0.55;
}

.gr-contatti-info-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
}


/* ========================================
   COME ARRIVARE
======================================== */

.gr-contatti-arrivare {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 7vw, 110px);

    align-items: center;

    padding: 110px 0 120px;
    border-top: 1px solid rgba(38, 56, 45, 0.15);
}

.gr-contatti-arrivare-text {
    max-width: 550px;
}

.gr-contatti-arrivare-text h2 {
    font-size: clamp(52px, 6vw, 82px) !important;
    line-height: 0.94 !important;
}

.gr-contatti-arrivare-text > p {
    max-width: 470px;
    margin: 50px 0 20px;
    font-size: 17px;
    line-height: 1.7;
}

.gr-contatti-arrivare-text .gr-contatti-indirizzo {
    margin-top: 0;
    margin-bottom: 35px;
}


/* IMAGE */

.gr-contatti-arrivare-image {
    width: 100%;
    overflow: hidden;
}

.gr-contatti-arrivare-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* LINK */

.gr-contatti-link {
    position: relative;
    display: inline-block;

    padding: 8px 0;

    color: #26382D !important;

    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.16em;

    text-decoration: none !important;
}

.gr-contatti-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 3px;

    width: 100%;
    height: 1px;

    background: currentColor;

    transition: opacity 0.3s ease;
}

.gr-contatti-link:hover {
    opacity: 0.55;
}


/* ========================================
   CHIUSURA
======================================== */

.gr-contatti-close {
    margin-top: 20px;
    padding: 105px 30px;

    background: #26382D;

    text-align: center;
}

.gr-contatti-close .gr-eyebrow {
    color: #A9B3A7;
}

.gr-contatti-close h2 {
    color: #F4F1E8 !important;

    font-size: clamp(52px, 7vw, 94px) !important;
    line-height: 0.94 !important;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .gr-contatti-intro {
        padding: 80px 0 90px;
    }

    .gr-contatti-intro-text {
        margin-left: 0;
        margin-right: 0;
    }

    .gr-contatti-form-section {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 80px 0 90px;
    }

    .gr-contatti-form-heading,
    .gr-contatti-form {
        max-width: 700px;
    }

    .gr-contatti-info-section {
        grid-template-columns: 1fr 1fr;
        gap: 0 30px;
        padding-bottom: 90px;
    }

    .gr-contatti-info-item:last-child {
        grid-column: 1 / -1;
    }

    .gr-contatti-arrivare {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 90px 0;
    }

    .gr-contatti-arrivare-text {
        max-width: 700px;
    }

    .gr-contatti-arrivare-image {
        max-width: 800px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 575px) {

    .gr-contatti-intro {
        padding: 65px 0 70px;
    }

    .gr-contatti-intro h2,
    .gr-contatti-form-heading h2,
    .gr-contatti-arrivare-text h2,
    .gr-contatti-close h2 {
        font-size: 43px !important;
        line-height: 0.96 !important;
    }

    .gr-contatti-intro-text {
        margin-top: 40px;
    }

    .gr-contatti-intro-text p,
    .gr-contatti-arrivare-text > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .gr-contatti-form-section {
        padding: 65px 0 70px;
        gap: 45px;
    }

    .gr-form-placeholder {
        min-height: 350px;
    }

    .gr-contatti-info-section {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 70px;
    }

    .gr-contatti-info-item:last-child {
        grid-column: auto;
    }

    .gr-contatti-arrivare {
        padding: 70px 0;
        gap: 40px;
    }

    .gr-contatti-arrivare-text > p {
        margin-top: 40px;
    }

    .gr-contatti-close {
        margin-top: 10px;
        padding: 70px 25px;
    }

}
#sp-header.header-sticky .burger-icon span {
  background-color: #000;

}
.gr-guest-card {
    /*margin: 120px 0;*/
  margin-bottom:100px;
    padding: 90px clamp(30px, 7vw, 100px);
    background: #E4E8DF;
    color: #26382D;
}

.gr-guest-card-content {
    max-width: 850px;
}

.gr-guest-card-eyebrow {
    display: block;
    margin-bottom: 24px;
    color: #596B5A;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.18em;
}

.gr-guest-card h2 {
    margin: 0 0 35px !important;
    color: #26382D !important;
    font-size: clamp(52px, 6vw, 82px) !important;
    line-height: 0.94 !important;
    font-weight: 400 !important;
    letter-spacing: -0.045em !important;
}

.gr-guest-card p {
    max-width: 600px;
    margin: 0 0 38px;
    color: #26382D;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.75;
}

.gr-guest-card-button {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    color: #26382D !important;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-decoration: none !important;
}

.gr-guest-card-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: opacity 0.3s ease;
}

.gr-guest-card-button:hover {
    opacity: 0.55;
}


/* MOBILE */

@media (max-width: 575px) {

    .gr-guest-card {
        margin: 65px 0;
        padding: 65px 25px;
    }

    .gr-guest-card h2 {
        font-size: 43px !important;
        line-height: 0.96 !important;
    }

    .gr-guest-card p {
        font-size: 16px;
        line-height: 1.65;
    }

}


@media (max-width: 767px) {
#sp-header .logo {
  margin: 0 ;
}
  }

/*

@media (max-width: 767px) {

    .gr-home-territory {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        background: #E4E8DF !important;
    }

    .gr-home-territory-image {
        position: relative !important;
        width: 100% !important;
        height: 62vw !important;
        min-height: 300px !important;
        max-height: 430px !important;
        overflow: hidden !important;
    }

    .gr-home-territory-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .gr-home-territory-content {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        max-width: none !important;
        padding: 55px 25px 65px !important;
        background: #E4E8DF !important;
        color: #26382D !important;
    }

    .gr-home-territory-content .gr-eyebrow {
        color: #596B5A !important;
    }

    .gr-home-territory-content h2 {
        color: #26382D !important;
        margin-bottom: 28px !important;
    }

    .gr-home-territory-content p {
        color: #26382D !important;
        opacity: 0.78 !important;
    }
}*/


.gr-footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
}



.gr-footer-bottom__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    color: #87927F;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.gr-footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.gr-footer-bottom__links a {
    color: #87927F !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.gr-footer-bottom__links a:hover {
    color: #26382D !important;
}


@media (max-width: 767px) {


    .gr-footer-bottom__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .gr-footer-bottom__links {
        gap: 18px;
        flex-wrap: wrap;
    }

}
@media (max-width: 575px) {
  #sp-header {
    height: 60px;
  }
}

.prenota #sp-main-body .container {
  max-width: 100%;
  width: 100%;
}

.header-sticky .gr-header-shop {
  background: #E4E8DF;
}
.gr-home-psr {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 50px;
    margin: 80px 0;
    padding: 45px 0;
    background: #fff;
    color: #26382D;
    border-top: 1px solid rgba(38, 56, 45, 0.12);
    border-bottom: 1px solid rgba(38, 56, 45, 0.12);
}

.gr-home-psr-content {
    max-width: 520px;
}

.gr-home-psr .gr-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #596B5A;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.16em;
}

.gr-home-psr h2 {
    margin: 0 0 18px !important;
    color: #26382D !important;
    font-size: clamp(30px, 3vw, 42px) !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    letter-spacing: -0.035em !important;
}

.gr-home-psr p {
    max-width: 440px;
    margin: 0 0 22px;
    color: #26382D;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
}

.gr-home-psr-link {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    color: #26382D !important;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-decoration: none !important;
}

.gr-home-psr-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: opacity 0.3s ease;
}

.gr-home-psr-link:hover {
    color: #596B5A !important;
}


/* LOGHI */

.gr-home-psr-logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gr-home-psr-logos img {
    display: block;
    width: 100%;
    /*max-width: 330px;*/
    height: auto;
}


/* TABLET */

@media (max-width: 991px) {

    .gr-home-psr {
        grid-template-columns: 1fr 0.6fr;
        gap: 35px;
        margin: 65px 0;
        padding: 35px 0;
    }

    .gr-home-psr-logos img {
        max-width: 280px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .gr-home-psr {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        margin: 55px 0;
        padding: 35px 0;
    }

    .gr-home-psr h2 {
        font-size: 30px !important;
    }

    .gr-home-psr p {
        font-size: 14px;
    }

    .gr-home-psr-logos {
        width: 100%;
        justify-content: flex-start;
    }

    .gr-home-psr-logos img {
        max-width: 280px;
    }

}
.cc-message-text {
  font-weight: 400;
  line-height: 20px;
}
.cc-header {
  font-size: 16px;
}
.cc-revoke, .cc-window{
font-family:inherit;
}