/*  Pompei Local Guide CSS3 Ver. 1.0.0
    Copyright 1999 - 2022 JAM Studio
    Visit Us (https://www.jamstudio.it/)    */

/*  =====================================================
    =   Font utilizzati                                 =
    =   font-family: 'Murecho', sans-serif;          =
    =====================================================   */
    @import url('https://fonts.googleapis.com/css2?family=Murecho:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*  =================================
    =      PALETTE E TYPOGRAPHY     =
    =================================   */
:root {
    --green-d: #50A422;
    --green: #76BD22;
    --green-c: #94D600;
    --red-d: #591F00;
    --red: #F20D3F;
    --white-m: #F3F3F3;
    --white: #FFF;
    --black: #010101;
    --black-m: #343a40;
    --black-c:#4D4D4D;
    --black-l:#666;
    --grey-d: #808080;
    --grey-m: #A6A6A6;
    --grey: #BFBFBF;
    --grey-c: #D9D9D9;
    --grey-l: #E5E5E5;
    --default-font: 'Murecho', sans-serif;
}
/*  =================================
    =          SCROLL BAR           =
    =================================   */
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 0;
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background: var(--grey-c);
  border: 2px solid transparent;
  border-radius: 0;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green);
  border: 2px solid transparent;
  background-clip: content-box;
}
/*  =================================
    =      SETTING BASE PAGINE      =
    =================================   */
html, body { height: 100vh; margin: 0; background-color: var(--white); }
/*          --> Typography                      */
h1, h2, h3, h4, h5, h6 { font-family: var(--default-font); }
p, li, a, th, td { font-family: var(--default-font); }
b, strong { font-weight: 500; }
/*          --> Buttons Base Settings           */
.btn-base {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 2px solid transparent;
    padding: .25rem .25rem;
    border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-base.disabled {
    pointer-events: none;
    opacity: .7;
}
.btn-base.active {
    z-index: 3;
    pointer-events: none;
    background-color: var(--grey-m);
}
.btn-base-lg, .btn-base-md {
    padding: 0 0 0 2rem;
    height: 5.875rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    line-height: 1.2;
    border-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}
.btn-base-lg:hover, .btn-base-md:hover {
    color: var(--black-l);
    background-color: var(--white);
    border-color: var(--white);
}
.btn-base-md {
    padding-left: 1.375rem;
    height: 4.5rem;
}

.btn-base-icon {
    width: 3rem;
    height: 100%;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-base-icon svg {
    width: auto;
    height: 2.375rem;
    fill: var(--white);
}
.btn-base-lg:hover .btn-base-icon svg, .btn-base-md:hover .btn-base-icon svg {
    fill: var(--black-l);
}
.btn-base-sm {
    min-height: 3rem;
    padding: .625rem 1.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-m);
    text-align: left;
    line-height: 1;
    border-color: var(--black-m);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.btn-base-sm:hover {
    color: var(--white);
    background-color: var(--black-m);
    border-color: var(--black-m);
}
.btn-base-sm svg {
    margin-left: .5rem;
    width: auto;
    height: 1rem;
    fill: var(--black-m);
}
.btn-base-sm:hover svg {
    fill: var(--white);
}
.btn-white {
    color: var(--white);
    border-color: var(--white);
}
.btn-white:hover {
    color: var(--black-m);
    background-color: var(--white);
    border-color: var(--white);
}
.btn-icon, .btn-icon-grey {
    width: 3rem;
    height: 3rem;
    padding: .375rem;
    background-color: var(--white);
    display: inline-block;
}
.btn-icon:hover, .btn-icon-grey:hover {
    background-color: var(--green);
}
.btn-icon-grey {
    background-color: var(--grey-m);
}
.btn-icon-grey:hover {
    background-color: var(--grey-d);
}

@media (max-width: 1399.98px) {
}
@media (max-width: 1199.98px) {
}
@media (max-width: 991.98px) {
}
@media (max-width: 767.98px) {
}
@media (max-width: 575.98px) {
    .btn-base-lg, .btn-base-md {
        height: 3.25rem;
    }
}
/*  =================================
    =        CUSTOM BUTTONS         =
    =================================   */
.btn-menu, .btn-menu:hover {
    width: 3rem;
    height: 3rem;
    padding: .375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-menu span {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    -webkit-transition: height 200ms linear;
    -moz-transition: height 200ms linear;
    -o-transition: height 200ms linear;
    transition: height 200ms linear;
}
.btn-lang, .btn-lang:hover {
    min-width: 3rem;
    height: 3rem;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 300;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-lang-flag {
    width: auto;
    height: .875rem;
}
.btn-lang-icon {
    width: .875rem;
    height: .875rem;
    background-color: var(--white);
    -webkit-mask: url("../images/icons/chevron-y.svg") no-repeat center;
    mask: url("../images/icons/chevron-y.svg") no-repeat center;
    display: inline-block;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
}
.btn-lang.show .btn-lang-icon {
    background-color: var(--white);
}
.btn-lang:not(.show) .btn-lang-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.lang-dropdown-menu {
    margin-top: 0!important;
    padding: .75rem 0;
    width: 100%;
    min-width: 3rem;
    background-color: var(--white-m);
    border: 0;
    border-radius: .25rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.lang-dropdown-item {
    padding: .25rem;
    font-weight: 300;
    color: var(--black-c);
    text-align: center;
    display: flex;
    align-items: center;
}
.lang-dropdown-flag {
    margin-left: .25rem;
    width: auto;
    height: 1rem;
}
.lang-dropdown-item:hover {
    color: var(--black-m);
    background-color: rgba(0,0,0,.1);
}
.lang-dropdown-item.active, .lang-dropdown-item:active {
    color: var(--green-d);
    text-decoration: none;
    background-color: var(--green-c);
}
.btn-tripadvisor, .btn-tripadvisor:hover {
    padding: .5rem 1.5rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    background-color: var(--green-trip);
    border-radius: 50rem;
}
.btn-tripadvisor .trip-icon {
    width: auto;
    height: 1.625rem
}
.btn-tripadvisor .trip-lettering {
    width: auto;
    height: 1.5rem
}
.btn-tour-card, .btn-tour-card:hover {
    color: var(--white);
    background-color: transparent;
    border-color: transparent;
}
.btn-tour-card svg, .btn-tour-card:hover svg {
    fill: var(--white);
}
.btn-info {
    color: var(--white);
    background-color: var(--green);
    border-color: var(--green);
}
.btn-info:hover {
   color: var(--white);
   background-color: var(--green-d);
   border-color: var(--green-d);
}
.btn-submit {
    color: var(--green-d);
    background-color: transparent;
    border-color: var(--green-d);
}
.btn-submit:hover {
   color: var(--white);
   background-color: var(--green-d);
   border-color: var(--green-d);
}
.btn-title {
    margin-right: -3.063rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: +1;
}
.btn-social {
    width: 2rem;
    height: 2rem;
    background-color: var(--green-c);
}
.btn-social:hover {
    background-color: var(--white);
}
@media (max-width: 1399.98px) {
}
@media (max-width: 1199.98px) {
}
@media (max-width: 991.98px) {
}
@media (max-width: 767.98px) {
}
@media (max-width: 575.98px) {
    .btn-title {
        margin-right: 0;
        position: unset;
        right: auto;
        top: auto;
        transform: none;
    }
}
/*  =================================
    =             ICONS             =
    =================================   */
.ico-menu {
    -webkit-mask: url("../images/icons/ico-menu.svg") no-repeat center;
    mask: url("../images/icons/ico-menu.svg") no-repeat center;
}
.ico-close {
    -webkit-mask: url("../images/icons/ico-close.svg") no-repeat center;
    mask: url("../images/icons/ico-close.svg") no-repeat center;
}
.ico-plus-01 {
    -webkit-mask: url("../images/icons/ico-plus-01.svg") no-repeat center;
    mask: url("../images/icons/ico-plus-01.svg") no-repeat center;
}
.ico-plus-02 {
    -webkit-mask: url("../images/icons/ico-plus-02.svg") no-repeat center;
    mask: url("../images/icons/ico-plus-02.svg") no-repeat center;
}
.ico-plus-03 {
    -webkit-mask: url("../images/icons/ico-plus-03.svg") no-repeat center;
    mask: url("../images/icons/ico-plus-03.svg") no-repeat center;
}
.ico-plus-04 {
    -webkit-mask: url("../images/icons/ico-plus-04.svg") no-repeat center;
    mask: url("../images/icons/ico-plus-04.svg") no-repeat center;
}
.ico-plus-05 {
    -webkit-mask: url("../images/icons/ico-plus-05.svg") no-repeat center;
    mask: url("../images/icons/ico-plus-05.svg") no-repeat center;
}
.ico-plus-06 {
    -webkit-mask: url("../images/icons/ico-plus-06.svg") no-repeat center;
    mask: url("../images/icons/ico-plus-06.svg") no-repeat center;
}
.ico-phone {
    -webkit-mask: url("../images/icons/ico-contatti-phone.svg") no-repeat center;
    mask: url("../images/icons/ico-contatti-phone.svg") no-repeat center;
}
.ico-email {
    -webkit-mask: url("../images/icons/ico-contatti-mail.svg") no-repeat center;
    mask: url("../images/icons/ico-contatti-mail.svg") no-repeat center;
}
.ico-whatsapp {
    -webkit-mask: url("../images/icons/ico-social-whatsapp.svg") no-repeat center;
    mask: url("../images/icons/ico-social-whatsapp.svg") no-repeat center;
}
.ico-facebook {
    -webkit-mask: url("../images/icons/ico-social-facebook.svg") no-repeat center;
    mask: url("../images/icons/ico-social-facebook.svg") no-repeat center;
}
.ico-instagram {
    -webkit-mask: url("../images/icons/ico-social-instagram.svg") no-repeat center;
    mask: url("../images/icons/ico-social-instagram.svg") no-repeat center;
}

/*  =================================
    =        ELEMENTI COMUNI        =
    =================================   */
.mw-1920 { max-width: 1920px; }
.mw-1600 { max-width: 1600px; }
.mw-1200 { max-width: 1200px; }
.mw-960  { max-width: 960px;  }
.mw-768  { max-width: 768px;  }
.mw-480  { max-width: 480px;  }
/*          --> Navbar                          */
.navbar-logo, .navbar-logo:hover {
    color: var(--withe);
    text-decoration: none;
}
.navbar-logo svg, .home-logo svg, .navbar-logo img {
    width: auto;
    height: 4rem;
    -webkit-transition: height 200ms linear;
    -moz-transition: height 200ms linear;
    -o-transition: height 200ms linear;
    transition: height 200ms linear;
}
.navbar-logo .logo-color, .navbar-logo .logo-black {
    fill: var(--white);
}
.claim {
    font-family: var(--default-headers-font);
    color: var(--withe);
    font-size: 1rem;
    line-height: 1.333em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}
.home-logo {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: +1;
}
.quick-links {
    display: flex;
    align-items: center;
}
#animatebar {
    color: var(--white);
    width: 100%;
    height: 8rem;
    padding: 1rem 0;
    -webkit-transition: 300ms linear;
    transition: 300ms linear;
    transition-property: background, height;
}
#animatebar.scrolled, #staticbar {
    height: 6rem;
    padding: .5rem 0;
    background-color: var(--white) !important;
    -webkit-transition: 300ms linear;
    transition: 300ms linear;
    transition-property: background, height;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
#animatebar.scrolled .btn-menu span, #staticbar .btn-menu span {
    background-color: var(--black-l);
    -webkit-transition: fill 350ms linear;
 	-moz-transition: fill 350ms linear;
 	-o-transition: fill 350ms linear;
 	transition: fill 350ms linear;
}
#animatebar.scrolled .navbar-logo svg, #staticbar .navbar-logo svg, #staticbar .navbar-logo img, .menu-logo svg {
    height: 4rem;
}
#animatebar.scrolled .navbar-logo .logo-color, #staticbar  .navbar-logo .logo-color, .menu-logo .logo-color {
    fill: var(--green);
}
#animatebar.scrolled .navbar-logo .logo-black, #staticbar .navbar-logo .logo-black, .menu-logo .logo-black {
    fill: var(--black);
}
#animatebar.scrolled .claim, #staticbar .claim, .menu-logo .claim {
    font-size: 0.625rem;
    color: var(--black);
}
#animatebar.scrolled .claim span, .menu-logo .claim span {
    color: var(--green);
}
#animatebar.scrolled .quick-links, #staticbar .quick-links {
    min-width: 3rem;
}
#animatebar.scrolled .btn-lang, #staticbar .btn-lang {
    color: var(--black-l);
}
#animatebar.scrolled .btn-lang-icon, #staticbar .btn-lang-icon {
    background-color: var(--black-l);
}
#animatebar.scrolled .btn-icon, #staticbar .btn-icon {
    background-color: var(--black-l);
}
#animatebar.scrolled .btn-icon:hover, #staticbar .btn-icon:hover {
    background-color: var(--orange);
}
#animatebar.scrolled .menu-link, #staticbar .menu-link, #MobileMenu .menu-link {
    padding: .5rem .5rem .25rem;
    font-size: .875rem;
    color: var(--grey-d);
}
#animatebar.scrolled .menu-link:hover, #staticbar .menu-link:hover, #MobileMenu .menu-link:hover {
    color: var(--black-l);
}

/*          --> Mobile Menu                       */
#MobileMenu {
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
}
#MobileMenu .menu-link {
    font-size: 1.25rem;
}
.menu-logo, .menu-logo:hover {
    text-decoration: none;
}
.menu-logo img {
    height: 2rem;
}
/*          --> Menu Elements                      */
.menu-category {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--grey-d);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
.category-icon {
    width: .875rem;
    height: .875rem;
    background-color: var(--black-l);
    -webkit-mask: url("../images/icons/icon-dropdown.svg") no-repeat center;
    mask: url("../images/icons/icon-dropdown.svg") no-repeat center;
    display: inline-block;
    -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
}
.menu-category:not(.collapsed) .category-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.menu-category:hover {
    color: var(--black-l);
    text-decoration: none;
}
.menu-link, #staticbar .menu-link {
    padding: .5rem .5rem .25rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey-d);
    text-decoration: none;
    white-space: nowrap;
}
.menu-link span {
    border-bottom: .125rem solid transparent;
    -webkit-transition: border-bottom-color 500ms ease;
    -moz-transition: border-bottom-color 500ms ease;
    -o-transition: border-bottom-color 500ms ease;
    -ms-transition: border-bottom-color 500ms ease;
    transition: border-bottom-color 500ms ease;
}
.menu-link:hover {
    color: var(--white);
    text-decoration: none;
}
.menu-link:hover span {
    border-bottom-color: var(--green);
}

/*          --> Contenuti Base                  */
.page-header {
    margin-top: 6rem;
}
.page-header-container, .form-container {
    min-height: 27rem;
    color: var(--green);
    background-color: var(--withe-m);
    display: flex;
    justify-content: flex-end;
}
.page-header-title {
    font-weight: 700;
}
.page-header-subtitle, .page-header-third {
    font-family: var(--default-text-font);
    font-size: 1rem;
}
.page-header-subtitle {
    font-weight: 600;
}
.page-header-third {
    font-style: italic;
    line-height: 1.4;
    font-weight: 400;
}
.page-header-img, .scheda-header-img {
    background-color: var(--green);
    display: flex;
}
.page-header-img span, .scheda-header-img span {
    padding-bottom: 56.25%!important;
    width: 100%;
    height: 100%;
}
.page-header-img span>img, .scheda-header-img span>img {
    right: 0;
    bottom: 0;
}
.page-text {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--black-m);
}
.page-text h3 {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--grey-d);
    font-weight: 700;
}
.page-text ul {
    margin-bottom: 0;
}
.page-text li {
    margin-bottom: .5rem;
}
.page-text li::marker {
    color: var(--grey)
}
.page-text a {
    color: var(--green);
    text-decoration: none;
}
.page-text a:hover {
    color: var(--green);
    text-decoration: underline;
}
.no-header {
    height: 6rem;
}
.header-container {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.header-title-box {
    padding-top: 10rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.header-subtitle {
    width: 100%;
    height: auto;
    min-height: 15rem;
    background-color: var(--white-m);
}
.title-box {
    color: var(--white);
    background-color: rgba(40,136,10,0.72);
}
.title-box-subtitle {
    font-weight: 300;
}
.title-box-main {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.page-breadcrumb-box {
    min-height: 3rem;
    display: flex;
    align-items: center;
}
.page-breadcrumb-box .breadcrumb-item, .page-breadcrumb-box .breadcrumb-item::before {
    font-weight: 400;
    color: var(--white);
}
.breadcrumb-link {
    color: var(--white);
    text-decoration: none;
}
.breadcrumb-link:hover {
    color: var(--white);
    opacity: .9;
    text-decoration: none;
}
.page-breadcrumb-box .breadcrumb-item.active {
    opacity: .7;
}
.info-page {
    background-color: var(--white);
}
.info-box {
    margin-top: -6rem;
    background-color: var(--white);
}
.info-side-img {
    width: 100%;
    height:100%;
    background-image: url("../images/bg/gears-table.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.paginazione a {
    margin-left: .125rem;
    margin-right: .125rem;
}
.section-title, .section-title-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1.2;
}
.section-title-big {
    margin-bottom: .5rem;
    color: var(--grey-d);
    font-weight: 700;
}
.section-title-deco {
    max-width: 20rem;
}
.section-title .small, small {
    font-size: .75em;
}
.section-subtitle {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--black-l);
}
.section-text, .section-list {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black-m)
}
.section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-list {
    padding: .5rem 1rem;
    list-style: none;
}
.section-list li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
}
.section-list p {
    max-width: 480px;
    margin-bottom: 0;
    padding-left: 1rem;
    line-height: 1.1;
}
.list-ico {
    width: 3rem;
    height: 3rem;
    background-color: var(--green-c);
    flex: 0 0 auto;
    display: block;
}
.section-separator {
    width: 100%;
    background-color: var(--green-d);
}
.container-info {
    background-color: var(--white-m);
}
/*          --> Pagine Risultati Ricerca        */
.container-scheda {
    height: 100%;
    display: block;
    text-decoration: none;
    background-color: var(--white);
}
.scheda-header {
    color: var(--white);
    background-image: url("../images/bgs/donkey.svg");
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: 70% 85%;
    background-color: var(--green);
    position: relative;
}
.scheda-title {
    padding-right: 5.5rem;
    font-size: 1.25rem;
}
.scheda-title small {
    opacity: .5;
}
.scheda-img {
    /* padding-bottom: 100%!important;
    position: relative;
    overflow: hidden; */
    height: 100%;
    padding-top: 65%!important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
}
.scheda-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    display: block;
    font-family: "blur-up: always", "object-fit: cover";
    object-fit: cover;
}
.dati-scheda {
    padding: .5rem 0;
    display: flex;
    justify-content:flex-start;
    border-bottom: 1px solid var(--grey-c);
}
.dati-scheda p {
    font-size: .75rem;
}
.dati-ico {
    width: 1rem;
    height: 1rem;
    background-color: var(--green);
}
.dati-label {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--black-m)
}
.dati-value {
    margin-bottom: 0;
    color: var(--black-l)
}
/*          --> Footer                          */
.footer-container {
    color: var(--white);
    background-color: var(--green-d);
}
.footer-logo {
    width: auto;
    height: 3rem;
}
.footer-info {
    font-size: .875rem;
}
.footer-link {
    color: var(--white);
    text-decoration: none;
}
.footer-link:hover {
    color: var(--green-c);
    text-decoration: underline;
}
.footer-img {
    width: auto;
    height: auto;
}
.footer-social {
    min-width: 10rem;
}
.footer-bottom {
    font-size: .875rem;
    color: var(--white);
}
.footer-bottom-link {
    color: var(--white);
    text-decoration: none;
    border-left: 1px solid var(--white);
}
.footer-bottom-link:first-child {
    border: none;
}
.footer-bottom-link:hover {
    color: var(--green-d);
    text-decoration: underline;
}
/*  ---> Firma     */
#jamstudio {
    width: auto;
    height: 1.875rem;
}
.logo-signature {
    fill: var(--green-c);
}
/*          --> Contatti                        */
.contatti-header-container {
    min-height: 20rem;
    color: var(--white);
    background-image: url("../images/headers/contatti.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--green);
    display: flex;
    justify-content: center;
}
.contatti-title-box {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.contatti-title-box h1 {
    text-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.contatti-icon-box {
    width: 5.625rem;
    height: 5.625rem;
    background-color: var(--green);
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contatti-icon-box img {
    width: auto;
    height: 2rem;
}
.contatti-title {
    font-family: var(--default-headers-font);
    font-size: .75rem;
    text-transform: uppercase;
}
.contatti-link {
    color: var(--green);
    text-decoration: none;
}
.contatti-link:hover {
    color: var(--green);
    text-decoration: underline;
}
.form-img  {
    padding-top: 50%;
    background-image: url("../images/photos/page-contatti.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: var(--green);
}
.form-container {
    min-height: auto;
    align-items: center;
    justify-content: center;
}
.form-subtitle {
    font-size: .75rem;
    color: var(--white);
    text-transform: uppercase;
    opacity: .8;
}
.form-contatti label {
    color: var(--green-d);
}
.form-contatti-label {
    padding-left: .5rem;
    font-size: .875rem;
    font-family: var(--default-text-font);
    font-weight: 300;
    color: var(--green-d)
}
.form-contatti-label a {
    color: var(--green);
    text-decoration: none;
}
.form-contatti-label a:hover {
    color: var(--green-d);
    text-decoration: underline;
}
.form-contatti-control {
    font-size: 1rem;
    color: var(--grey-d);
    background-color: transparent;
    border: 1px solid var(--green);
    border-radius: 0;
}
.form-contatti-control:focus {
    color: var(--black-l);
    background-color: transparent;
    border-color: var(--green-d);
    box-shadow: none;
}
.form-contatti-check {
    border-color: var(--green-d);
    border-radius: 0;
}
.form-contatti-check:focus {
    border-color: var(--green-d);
    box-shadow: none;
}
.form-contatti-check:checked {
    background-color: var(--green-c);
    border-color: var(--green-d);
}
@media (max-width: 1399.98px) {
    .menu-link, #animatebar.scrolled .menu-link, #staticbar .menu-link, #MobileMenu .menu-link {
        padding: .5rem .25rem .25rem;
    }
}
@media (max-width: 1199.98px) {
    #staticbar .navbar-logo img {
        height: 3rem;
    }
    .claim {
        font-size: .75rem;
    }
    #staticbar .menu-link {
        font-size: .875rem;
    }
    .section-title-big {
        font-size: calc(1.25rem + 1.25vw);
    }
    .modello-prodotto {
        font-size: calc(1.5rem + .9vw);
    }
    .collezione-prodotto {
        font-size: calc(.5rem + .6vw);
    }
    .marchio-prodotto {
        font-size: calc(.625rem + .6vw);
    }
    /* .contacts-info {
        font-size: calc(.75rem + .3vw);
    } */
}
@media (max-width: 991.98px) {
    .page-header-container, .form-container {
        min-height: 16rem;
    }
    .page-header-img span {
        max-width: 768px;
    }
    .section-subtitle {
        font-size: calc(.75rem + 1.125vw)!important;
    }
    .page-text {
        font-size: 1rem;
    }
    .form-img  {
        padding-top: 100%;
    }
}
@media (max-width: 767.98px) {
    #animatebar {
        height: 6rem;
    }
    #animatebar.scrolled, #staticbar {
        height: auto;
    }
    .navbar-logo svg, #animatebar.scrolled .navbar-logo svg, #staticbar .navbar-logo svg, #staticbar .navbar-logo img {
        height: 2rem;
    }
    .claim, #animatebar.scrolled .claim {
        font-size: .563rem;
    }
    .btn-menu, .btn-menu:hover {
        padding: .5rem;
    }
    .quick-links {
        min-width: 3rem;
    }
    .page-header {
        margin-top: 4.75rem;
    }
    .no-header {
        height: 1rem;
    }
    .page-breadcrumb-box .breadcrumb-item, .page-breadcrumb-box .breadcrumb-item::before {
        font-size: calc(.5rem + 1vw)!important;
    }
    .title-box-main {
        font-size: calc(1.325rem + .9vw);
    }
    .section-title {
        font-size: calc(1.625rem + 1vw)!important;
    }
    .section-text {
        font-size: .875rem;
    }
    .footer-bottom-link {
        border-left: 0;
    }
}
@media (max-width: 575.98px) {
    .scheda-title {
        padding-right: 0;
    }
    .scheda-img {
        padding-top: 90%!important;
    }
    .page-breadcrumb-box .breadcrumb-item {
        padding-left: 0.25rem;
    }
    .page-breadcrumb-box .breadcrumb-item::before {
        padding-right: 0.25rem;
    }
    .page-text {
        font-size: .875rem;
    }
    .link-text p, .link-text:hover p {
        font-size: 1rem;
    }
    .footer-bottom p {
        border-left: 0;
    }
    .footer-img {
        width: 8rem;
    }
}
@media (min-width: 1400px) {
}
/*  =================================
    =           HOMEPAGE            =
    =================================   */
.homepage-fullheight-header, .page-fullheight-header {
    height: 100%;
    background-color: var(--white-m);
}
/*          --> Box carousel                    */
.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.carousel-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.9) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.9) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.carousel-contents {
    width: 100%;
    max-width: 60rem;
    color: var(--white);
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.testo-a-destra{
    margin-left: auto;
    background: -moz-linear-gradient(270deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(270deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}
.carousel-contents-img {
    width: 100%;
    height: auto;
    max-width: 574px;
    -webkit-filter: drop-shadow( 0 .5rem 1rem rgba(0,0,0,.9));
    filter: drop-shadow( 0 .5rem 1rem rgba(0,0,0,.9));
}
.carousel-title, .carousel-subtitle, .carousel-text {
    text-shadow: 0 .25rem 1rem rgba(0,0,0,.9);
}
.carousel-title {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 600;
}
.carousel-subtitle {
    font-size: 2rem;
    font-weight: 200;
}
.carousel-text {
    font-size: 1rem;
    font-weight: 300;
}
.badge-box {
    width: 100%;
    max-width: 40rem;
    padding-left: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
}
/*          --> Box Tours                     */
.tour-card, .tour-card:hover {
    color: var(--black-l);
    text-decoration: none;
}
.tour-card-header {
    position: relative;
}
.tour-card-title {
    margin-bottom: .5rem;
    color: var(--green-d);
    font-weight: 700;
    line-height: 1.2;
}
.tour-card-text p {
    font-size: .875rem;
    margin-bottom: 0;
}
.tour-card-footer {
    min-height: 3rem;
    position: relative;
    background-color: var(--green-c);
    border-bottom-left-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px);
}
.tour-card-badge {
    max-width: 10rem;
    position: absolute;
    right: -1.5rem;
    bottom: -1.875rem;
}
/*          --> Testimonials                    */
.testimonials, .testimonials:hover {
    color: var(--black-m);
    text-decoration: none;
    border: 0;
    border-radius: 0;
}
.testimonials-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    color: var(--grey-m);
    border-bottom: 1px solid rgba(0,0,0,.125);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonials-voto {
    width: 100%;
    max-width: 47.525%;
    height: 100%;
    padding-top: 8.93%;
    background-color: var(--green-trip);
    -webkit-mask: url("../images/misc/tripadvisor-value.svg") no-repeat center;
    mask: url("../images/icons/misc/tripadvisor-value.svg") no-repeat center;
}
.testimonials-title {
    margin-bottom: .75rem;
    color: var(--green-trip);
    font-weight: 700;
}
.testimonials-text p {
    font-size: .875rem;
    margin-bottom: .5rem;
}
.testimonials-signature {
    margin-bottom: 0;
    font-size: .875rem;
    color: var(--grey-m);
}
.testimonials-signature::before {
    content: "\2014\00A0";
}
.testimonials-footer {
    min-height: 3rem;
    position: relative;
}
.testimonials-img {
    width: 100%;
}
.btn-testimonials {
    color: var(--black-m);
    background-color: var(--white);
    border-color: var(--white);
    position: absolute;
    top:0;
    right:1rem;
}
.btn-testimonials:hover {
    color: var(--black-m);
    background-color: var(--grey-l);
    border-color: var(--white);
}
.btn-testimonials svg {
    fill: var(--black-m);
}
.btn-testimonials:hover svg {
    fill: var(--black-m);
}
.green-card {
    background-color: var(--green-trip);
}
.green-card.testimonials, .green-card .testimonials-header, .green-card .testimonials-title, .green-card .testimonials-signature {
    color: var(--white);
}
.green-card .testimonials-voto {
    background-color: var(--white);
}
.green-card .testimonials-signature {
    opacity: .5;
}
.green-card .btn-testimonials {
    color: var(--white);
    background-color: var(--green-trip);
    border-color: var(--green-trip);
}
.green-card .btn-testimonials:hover {
    color: var(--white);
    background-color: var(--green-trip);
    border-color: var(--green-trip);
}
.green-card .btn-testimonials svg {
    fill: var(--white);
}
.green-card .btn-testimonials:hover svg {
    fill: var(--white);
}
/*          --> Blog                            */
.blog-card, .blog-card:hover {
    color: var(--black-m);
    text-decoration: none;
    border: 0;
    border-radius: 0;
}
.blog-card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    color: var(--grey-m);
    border-bottom: 1px solid rgba(0,0,0,.125);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.blog-card-title {
    margin-bottom:0;
    color: var(--green-trip);
    font-weight: 700;
}
.blog-card-text p {
    font-size: .875rem;
    margin-bottom: .5rem;
}
.blog-card-signature {
    margin-bottom: 0;
    font-size: .875rem;
    color: var(--grey-m);
}
.blog-card-signature::before {
    content: "\2014\00A0";
}
.blog-card-footer {
    min-height: 3rem;
    position: relative;
}
.blog-card-img {
    width: 100%;
}
.btn-blog-card {
    color: var(--black-m);
    background-color: var(--white);
    border-color: var(--white);
    position: absolute;
    top:0;
    right:1rem;
}
.btn-blog-card:hover {
    color: var(--black-m);
    background-color: var(--grey-l);
    border-color: var(--white);
}
.btn-blog-card svg {
    fill: var(--black-m);
}
.btn-blog-card:hover svg {
    fill: var(--black-m);
}

@media (max-width: 1399.98px) {
}
@media (max-width: 1199.98px) {
}
@media (max-width: 991.98px) {
    .homepage-fullheight-header {
        height: 60%;
    }
}
@media (max-width: 767.98px) {
    .carousel-title {
        font-size: calc(1.5rem + 1.5vw)!important;
    }
    .carousel-subtitle {
        font-size: calc(1.25rem + .6vw)!important;
    }
    .carousel-text {
        font-size: .875rem;
        line-height:
    }
}
@media (max-width: 575.98px) {
    .homepage-fullheight-header {
        height: 55%;
    }
}
/*  =================================
    =         SCHEDA TOURS          =
    =================================   */
.page-title-container {
    width: 100%;
    min-height: 8rem;
    position: absolute;
    bottom: 0;
}
.page-title-box {
    width: 100%;
    background-color: var(--white);
    border-radius: .25rem .25rem 0 0;
}
.page-container {
    background-color: var(--white);
    border-radius: 0 0 .25rem .25rem;
}
.tour-title {
    padding-right: 15rem;
}
.tour-page-badge {
    max-width: 20rem;
    max-height: none;
    position: absolute;
    top: -10rem;
    right: -2rem;
}
@media (max-width: 1399.98px) {
}
@media (max-width: 1199.98px) {
}
@media (max-width: 991.98px) {
    .tour-title {
        padding-top: 2.25rem;
        padding-right:0;
    }
    .tour-page-badge {
        max-width: 15rem;
        top: -7rem;
        right: -1rem;
    }
}
@media (max-width: 767.98px) {
}
@media (max-width: 575.98px) {
}
/*  =================================
    =           CONTATTI            =
    =================================   */
.page-contatti-header{
    min-height: 6rem;
}
/*  =================================
    =           ESITi           =
    =================================   */
#EsitoOK .modal-header {
    background-color: var(--green-c);
    color: var(--white);
}
#EsitoOK .modal-title, #EsitoKO .modal-title {
    font-family: var(--default-headers-font);
}
#EsitoOK .modal-title img, #EsitoKO .modal-title img {
    width: auto;
    height: 1.5rem;
}
#EsitoOK .modal-body h5, #EsitoKO .modal-body p {
    font-family: var(--default-text-font);
    letter-spacing: -.04em;
}
#EsitoOK .modal-body h5, #EsitoKO .modal-body h5  {
    font-size: 1.5rem;
    font-weight: 500;
}
#EsitoOK .modal-body h5  {
    color: var(--green-c);
}
#EsitoKO .modal-header {
    background-color: var(--red);
    color: var(--white);
}
#EsitoKO .modal-body h5  {
    color: var(--red);
}
#EsitoOK .modal-body p, #EsitoKO .modal-body p {
    font-size: 1rem;
    color: var(--black-m);
}
#EsitoOK .modal-footer p, #EsitoKO .modal-footer p, #EsitoOK .modal-footer a, #EsitoKO .modal-footer a {
    font-size: .875rem;
    color: var(--black-l);
    text-decoration: none;
}
#EsitoOK .modal-footer a:hover, #EsitoKO .modal-footer a:hover {
    color: var(--black-l);
    text-decoration: underline;
}
#EsitoOK .modal-footer span, #EsitoKO .modal-footer span {
    width: 1rem;
    height: 1rem;
    background-color: var(--black-l);
    display:block;
}
