/*  VinViaggiando CSS3 Ver. 1.0.0
    Copyright 1999 - 2024 JAM Studio
    Visit Us (https://www.jamstudio.it/)    */

/*  =====================================================
    =   Font utilizzati                                 =
    =   font-family: "Playfair Display", system-ui;     =
    =   font-family: "Red Hat Display", system-ui;      =
    =====================================================   */

/*  =====================================================
    =   PALETTE E TYPOGRAPHY                            =
    =====================================================   */
:root {
    /*      --> Fonts sito                                      */
    --italic-font: "Playfair Display", system-ui;
    --main-font: "Red Hat Display", system-ui;
    /*      --> Main Colors                                     */
    --main: #5A970C;
    --main-rgb: 90, 151, 12;
    --main-d: #4F8608;
    --black: #1F1F1F;
    --black-l: #343434;
    --grey-d: #9B9B9B;
    --grey: #8C8C8C;
    --grey-l: #DED7CB;
    --white-m: #F2ECE1;
    --white: #FFFFFF;
    --yellow: #FFD759;
    --red: #EE001A;
}

/*  =====================================================
    =   SCROLL BAR                                      =
    =====================================================   */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--white);
    box-shadow: none;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: var(--grey);
    border: 0 solid transparent;
    border-radius: 0;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main);
    border: 0 solid transparent;
    background-clip: content-box;
}

/*  =====================================================
    =   SETTING BASE PAGINA                             =
    =====================================================   */
html,
body {
    height: 100vh;
    margin: 0;
    font-family: var(--main-font);
    color: var(--black);
    background-color: var(--white);
}

img {
    max-width: 100%;
    /* max-height: 100%; */
    width: auto;
    height: auto;
}

/*      --> Typography                                      */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-optical-sizing: auto;
    font-style: normal;
}

p,
li,
a,
th,
td {
    text-decoration: none;
    font-optical-sizing: auto;
    font-style: normal;
}

b,
strong {
    font-weight: 700 !important;
}

a {
    color: var(--main);
    text-decoration: none;
}

a:hover {
    color: var(--main);
    text-decoration: underline;
}

a:focus {
    outline: none;
    box-shadow: none;
}

/*  =====================================================
    =   ICONS                                           =
    =====================================================   */
.icon {
    min-width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
}

.icon.white {
    background-color: var(--white);
}

.icon.darkest {
    background-color: var(--black-l);
}

.icon.dark {
    background-color: var(--grey-d);
}

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

.icon.main {
    background-color: var(--main);
}

.icon-xs {
    min-width: .75rem !important;
    height: .75rem !important;
}

.icon-sm {
    min-width: 1rem !important;
    height: 1rem !important;
}

.icon-md {
    min-width: 1.5rem !important;
    height: 1.5rem !important;
}

.icon-lg {
    min-width: 2rem !important;
    height: 2rem !important;
}

.icon-xl {
    min-width: 2.5rem !important;
    height: 2.5rem !important;
}

.icon-xxl {
    min-width: 3rem !important;
    height: 3rem !important;
}

.icon-big {
    min-width: 5rem !important;
    height: 5rem !important;
}

/*      --> Icone Navigazione                               */
.ico-menu {
    -webkit-mask: url("../icons/nav-menu.svg") no-repeat center;
    mask: url("../icons/nav-menu.svg") no-repeat center;
}

.ico-close {
    -webkit-mask: url("../icons/nav-close.svg") no-repeat center;
    mask: url("../icons/nav-close.svg") no-repeat center;
}

.ico-arrow {
    -webkit-mask: url("../icons/nav-arrow.svg") no-repeat center;
    mask: url("../icons/nav-arrow.svg") no-repeat center;
}

.ico-chevron-y {
    -webkit-mask: url("../icons/nav-chevron-y.svg") no-repeat center;
    mask: url("../icons/nav-chevron-y.svg") no-repeat center;
}

.ico-chevron-x,
.ico-chevron-x.left {
    -webkit-mask: url("../icons/nav-chevron-x.svg") no-repeat center;
    mask: url("../icons/nav-chevron-x.svg") no-repeat center;
}

.ico-chevron-x.left {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ico-clock {
    -webkit-mask: url("../icons/sys-clock.svg") no-repeat center;
    mask: url("../icons/sys-clock.svg") no-repeat center;
}

.ico-xxl-help {
    -webkit-mask: url("../icons/big/big-help.svg") no-repeat center;
    mask: url("../icons/big/big-help.svg") no-repeat center;
}

.ico-xxl-activity {
    -webkit-mask: url("../icons/big/big-tour-activity.svg") no-repeat center;
    mask: url("../icons/big/big-tour-activity.svg") no-repeat center;
}

/* What’s included in this tour? */

.ico-xxl-guide {
    -webkit-mask: url("../icons/big/big-tour-guide.svg") no-repeat center;
    mask: url("../icons/big/big-tour-guide.svg") no-repeat center;
}

.ico-xxl-entrance {
    -webkit-mask: url("../icons/big/big-entrance.svg") no-repeat center;
    mask: url("../icons/big/big-entrance.svg") no-repeat center;
}

.ico-xxl-tour {
    -webkit-mask: url("../icons/big/big-guided-tour.svg") no-repeat center;
    mask: url("../icons/big/big-guided-tour.svg") no-repeat center;
}

.ico-xxl-lunch {
    -webkit-mask: url("../icons/big/big-tour-lunch.svg") no-repeat center;
    mask: url("../icons/big/big-tour-lunch.svg") no-repeat center;
}

.ico-xxl-fooddemo {
    -webkit-mask: url("../icons/big/big-tour-cooking.svg") no-repeat center;
    mask: url("../icons/big/big-tour-cooking.svg") no-repeat center;
}

.ico-xxl-transfer {
    -webkit-mask: url("../icons/big/big-tour-transfer.svg") no-repeat center;
    mask: url("../icons/big/big-tour-transfer.svg") no-repeat center;
}

.ico-xxl-wine {
    -webkit-mask: url("../icons/big/big-wine.svg") no-repeat center;
    mask: url("../icons/big/big-wine.svg") no-repeat center;
}

.ico-xxl-tasting {
    -webkit-mask: url("../icons/big/big-foodtasting.svg") no-repeat center;
    mask: url("../icons/big/big-foodtasting.svg") no-repeat center;
}

.ico-xxl-cooking {
    -webkit-mask: url("../icons/big/big-tour-cooking.svg") no-repeat center;
    mask: url("../icons/big/big-tour-cooking.svg") no-repeat center;
}

.ico-xxl-accomodation {
    -webkit-mask: url("../icons/big/big-accommodation.svg") no-repeat center;
    mask: url("../icons/big/big-accommodation.svg") no-repeat center;
}

/* Social */

.ico-facebook {
    -webkit-mask: url("../icons/social-facebook.svg") no-repeat center;
    mask: url("../icons/social-facebook.svg") no-repeat center;
}

.ico-instagram {
    -webkit-mask: url("../icons/social-instagram.svg") no-repeat center;
    mask: url("../icons/social-instagram.svg") no-repeat center;
}

/*  =====================================================
    =   BUTTONS                                         =
    =====================================================   */
.btn {
    --bs-btn-font-family: var(--main-font);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-shadow: none;
    --bs-btn-border-radius: .5rem;
}

.btn-icon {
    min-width: 3rem;
    min-height: 3rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-border-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-sm {
    min-width: 2rem;
    min-height: 2rem;
    --bs-btn-padding-x: 0.25rem;
    --bs-btn-padding-y: 0.25rem;
}

.btn-icon.menu,
.btn-icon.back {
    --bs-btn-bg: var(--white);
    --bs-btn-hover-bg: var(--main);
    --bs-btn-active-bg: var(--main);
    --bs-btn-focus-bg: var(--main);
    --bs-btn-disabled-bg: var(--white);
}

.btn-icon.menu {
    padding: .8rem 1rem;
}

.btn-icon.menu .icon {
    transform: scale(1.3);
}

.btn-icon.menu .icon,
.btn-icon.back .icon {
    background-color: var(--main);
}

.btn-icon:hover.menu .icon,
.btn-icon:hover.back .icon,
.btn-icon:focus.back .icon {
    background-color: var(--white);
}

.btn-icon:focus.menu .icon {
    background-color: var(--main);
}

.btn-social {
    height: 1.5rem;
    --bs-btn-border-width: 0;
    --bs-btn-border-radius: 0;
    --bs-btn-padding-x: 0;
    --bs-btn-padding-y: 0;
}

.btn-social .icon {
    background-color: var(--white);
}

.btn-social:hover .icon,
.btn-social:active .icon,
.btn-social.active .icon {
    background-color: var(--main);
}

.btn-submit {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--main);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--main-d);
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--main-d);
    --bs-btn-disabled-color: var(--white);
    --bs-btn-disabled-bg: var(--main);
    --bs-btn-padding-x: 1.4rem;
    --bs-btn-padding-y: .875rem;
    --bs-btn-font-size: 1.1rem;
    --bs-btn-font-weight: 500;
    --bs-btn-line-height: 1;
    --bs-btn-border-radius: 50rem;
    text-decoration: none !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.btn-submit-lg {
    --bs-btn-padding-x: 1.75rem;
    --bs-btn-padding-y: 1.625rem;
}

.btn-submit-sm {
    --bs-btn-padding-x: 1.125rem;
    --bs-btn-padding-y: .75rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 500;
}

.btn-submit .icon-submit {
    background-color: var(--white);
}

.btn-submit:hover .icon-submit {
    background-color: var(--yellow);
}

.btn-submit .btn-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--yellow);
    line-height: 1;
}

.btn-submit.header-help {
    --bs-btn-padding-x: 1.25rem;
    position: absolute;
    right: 3rem;
    bottom: -2.125rem;
}

.btn-white {
    --bs-btn-color: var(--main-d);
    --bs-btn-bg: var(--white);
    --bs-btn-hover-color: var(--main);
    --bs-btn-hover-bg: var(--white);
    --bs-btn-active-color: var(--main);
    --bs-btn-active-bg: var(--white);
    --bs-btn-disabled-color: var(--main-d);
    --bs-btn-disabled-bg: var(--white);
    --bs-btn-padding-x: 1.125rem;
    --bs-btn-padding-y: .75rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 700;
    --bs-btn-line-height: 1;
    --bs-btn-border-radius: 50rem;
    text-decoration: none !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.btn-white .icon-button {
    background-color: var(--main-d);
}

.btn-white:hover .icon-button {
    background-color: var(--main);
}

.btn-text {
    --bs-btn-color: var(--black-l);
    --bs-btn-bg: transparent;
    --bs-btn-hover-color: var(--black);
    --bs-btn-hover-bg: var(--grey-l);
    --bs-btn-active-color: var(--black);
    --bs-btn-active-bg: var(--grey-l);
    --bs-btn-disabled-color: var(--black-l);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-padding-x: .75rem;
    --bs-btn-padding-y: .625rem;
    --bs-btn-font-size: 1.125rem;
    --bs-btn-font-weight: 500;
    --bs-btn-line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.btn-text .icon {
    background-color: var(--black-l);
}

.btn-text:hover .icon {
    background-color: var(--black);
}

/*      --> Bottoni Carousel Escursioni                     */
.btn-carousel {
    width: 4rem;
    height: 4rem;
    background-color: var(--main);
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.btn-carousel .icon {
    min-width: 4rem !important;
    height: 4rem !important;
}

.btn-carousel:hover {
    background-color: var(--main-d);
    opacity: 1;
}

.btn-carousel.prev {
    left: -.5rem;
    top: 160px;
}

.btn-carousel.next {
    right: -.5rem;
    top: 160px;
}

@media (max-width: 991.98px) {
    .btn-carousel.prev {
        /* left: 2rem; */
    }

    .btn-carousel.next {
        /* right: 2rem; */
    }
}

@media (max-width: 575.98px) {
    .btn-submit.header-help {
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        z-index: 2;
    }
}

/*  =====================================================
    =   NAVBAR                                          =
    =====================================================   */
.navbar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
}

.navbar-logo {
    width: 29rem;
}

/*      --> Menu                                            */
.menu-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: .25rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    -webkit-transition: 400ms ease;
    -moz-transition: 400ms ease;
    -o-transition: 400ms ease;
    -ms-transition: 400ms ease;
    transition: 400ms ease;
    transition-property: all;
}

.menu-link:hover,
.menu-link.active {
    color: var(--white);
    background-color: var(--main);
    text-decoration: none;
    -webkit-transition: 400ms ease;
    -moz-transition: 400ms ease;
    -o-transition: 400ms ease;
    -ms-transition: 400ms ease;
    transition: 400ms ease;
    transition-property: all;
}

.menu-logo {
    width: 15rem;
}

@media (max-width: 1599.98px) {
    .navbar-logo {
        width: 23rem;
    }
}

@media (max-width: 1399.98px) {
    .menu-link {
        color: var(--main);
    }
}

@media (max-width: 575.98px) {
    .navbar-logo {
        width: 16rem;
    }
}

/*  =====================================================
    =   HEADERS                                         =
    =====================================================   */
.header-container,
.header-results-container {
    height: 100%;
    max-height: 1040px;
    color: var(--white);
    background-color: var(--main);
    display: flex;
    flex-direction: column;
    position: relative;
}

.header-frame {
    height: 100%;
    background: rgb(95, 95, 95);
    background: -moz-radial-gradient(circle, rgba(95, 95, 95, 1) 0%, rgba(31, 31, 31, 1) 100%);
    background: -webkit-radial-gradient(circle, rgba(95, 95, 95, 1) 0%, rgba(31, 31, 31, 1) 100%);
    background: radial-gradient(circle, rgba(95, 95, 95, 1) 0%, rgba(31, 31, 31, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5f5f5f", endColorstr="#1f1f1f", GradientType=1);
    display: flex;
    flex-direction: column;
}

.header-results-container {
    max-height: 480px;
}

.header-img-frame {
    width: 100%;
    /* background-image: url('../headers/header-homepage-img.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat; */
    position: relative;
    background-position: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-slide .splide__track {
    height: 100%;
}

.hero-slide .splide__slide {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-slide-1 {
    background-image: url('../headers/header-homepage-img.webp');
}

.hero-slide-2 {
    background-image: url('../headers/header-homepage-img2.webp');
}

.hero-slide-3 {
    background-image: url('../headers/header-homepage-img3.webp');
}

.header-img-frame.results {
    background-image: url('../headers/header-results-img.webp');
}

.header-img-frame.customize-tours {
    background-image: url('../headers/header-customize.webp');
}

.header-img-frame.about-us {
    background-image: url('../headers/header-aboutus-img.webp');
}

.header-img-frame.contacts {
    background-image: url('../headers/header-contacts-img.webp');
}

.header-gradient {
    width: 100%;
    height: 50%;
    background: rgb(52, 52, 52);
    background: -moz-linear-gradient(0deg, rgba(52, 52, 52, 0) 0%, rgba(52, 52, 52, 0.6) 100%);
    background: -webkit-linear-gradient(0deg, rgba(52, 52, 52, 0) 0%, rgba(52, 52, 52, 0.6) 100%);
    background: linear-gradient(0deg, rgba(52, 52, 52, 0) 0%, rgba(52, 52, 52, 0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#343434", endColorstr="#343434", GradientType=1);
}

.header-title {
    font-family: var(--italic-font);
    font-style: italic;
    font-weight: 400 !important;
}

.header-text {
    font-weight: 300;
}

/*  =====================================================
    =   FOOTER                                          =
    =====================================================   */
.footer-container {
    min-height: 20rem;
    color: var(--white);
    font-weight: 500;
    background-color: var(--black-l);
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 100%;
    max-width: 15rem;
    margin-left: .5rem;
}

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

/*  =====================================================
    =   ELEMENTI COMUNI                                 =
    =====================================================   */
.mw-1920 {
    max-width: 1920px;
}

.mw-1600 {
    max-width: 1600px;
}

.mw-1400 {
    max-width: 1400px;
}

.mw-1200 {
    max-width: 1200px;
}

.mw-600 {
    max-width: 600px;
}

.mw-480 {
    max-width: 480px;
}

.page-title {
    color: var(--black-l);
    font-weight: 500;
}

.page-title.italic {
    font-family: var(--italic-font);
    font-style: italic;
    font-weight: 400 !important;
}

.section-label {
    color: var(--main);
    font-weight: 600;
    /* text-transform: uppercase; */
}

/*  =====================================================
    =   HOMEPAGE                                        =
    =====================================================   */
.aboutus-bg {
    max-width: 140%;
    height: auto;
    position: absolute;
}

.aboutus-bg.leftside {
    right: -1.5rem;
}

.aboutus-bg.rightside {
    left: 29rem;
}

.section-label.aboutus-label {
    margin-bottom: -1.5rem;
}

@media (max-width: 1199.98px) {
    .section-label.aboutus-label {
        margin-bottom: -.5rem;
    }

    .aboutus-container {
        overflow: hidden;
    }

    .aboutus-bg.leftside {
        right: 0;
    }
}

@media (max-width: 991.98px) {
    .aboutus-info {
        min-height: 27rem;
    }
}

@media (max-width: 576.98px) {
    .aboutus-info {
        min-height: inherit;
    }
}

/*  =====================================================
    =   FORMS                                           =
    =====================================================   */
.form-card {
    background-color: var(--white-m);
    border-radius: 2rem;
}

.left-form {
    border-right: 1px solid var(--grey-l);
}

.right-form {
    border-left: 1px solid var(--grey-l);
}

.contacts-form-label {
    padding-left: .5rem;
    font-family: var(--text-font);
    font-size: .9rem;
    color: var(--black)
}

.contacts-form-label.checkbox {
    font-size: 1rem;
}

.contacts-form-label.checkbox a {
    font-weight: 400;
    color: var(--main);
}

.contacts-form-label.checkbox a:hover {
    color: var(--main-d);
}

.contacts-form-control {
    font-size: .875rem;
    border-color: var(--grey-l);
    border-radius: .5rem;
}

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

.contacts-form-control.note-spedizione {
    height: 8rem;
}

.contacts-form-check {
    border-color: var(--grey-l);
}

.contacts-form-check:focus {
    border-color: var(--main-d);
    box-shadow: none;
}

.contacts-form-check:checked {
    background-color: var(--main);
    border-color: var(--main-d);
}

@media (max-width: 1199.98px) {
    .left-form {
        border-right: 0;
    }

    .right-form {
        border-left: 0;
    }
}

@media (max-width: 991.98px) {
    .form-card {
        border-radius: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .form-card {
        border-radius: 1rem;
    }

    .contacts-form-label.checkbox {
        font-size: .75rem;
    }
}

/*  =====================================================
    =   TOURS                                           =
    =====================================================   */
.custom-tag {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: .05em;
    color: var(--white);
    background-color: var(--red);
    border-radius: .5rem;
    display: inline-block;
    vertical-align: middle;
}

/*      --> Card Tour                                       */
.card-tour {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-tour-img-frame {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.card-tour-img-frame .custom-tag {
    position: absolute;
    left: .5rem;
    top: .5rem;
}

.card-tour-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.card-title {
    color: var(--black-l);
}

.card-description {
    color: var(--grey);
    line-height: 1.25;
    font-size: 1.1rem;
    line-height: 140%;
}

.card-description p {
    margin-bottom: 0;
}

.card-tour-carousel {
    width: 10rem;
    height: 100%;
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
    border-radius: 0;
    display: block;
    position: absolute;
    z-index: +1;
}

.card-tour-carousel.leftside {
    left: 0rem;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.card-tour-carousel.rightside {
    right: 0rem;
}

/*      --> Interests Tour                                  */
.interest-bar {
    color: var(--grey);
    background-color: var(--grey-l);
    border-radius: 50rem;
}

.interest-bar h2 {
    font-size: 1.5rem;
}

.interest-container {
    background-image: url('../deco/bg_track.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--main);
    border-radius: 50rem;
}

.interest-underline {
    color: var(--red);
    border-bottom: 4px dotted var(--red);
    display: inline;
}

/*      --> Dettaglio Tour                                  */
.side-info {
    width: 420px;
    display: flex;
}

.info-text {
    max-width: 12.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
}

.tour-recap {
    font-size: 1rem;
    background-image: url('../deco/bg_roots.svg');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    background-color: var(--white-m);
}

.tour-recap .display-6 {
    font-size: 2rem;
}

.time-card {
    width: 10rem;
    color: var(--black-l);
    background-color: var(--white);
    border-radius: 3rem;
    position: relative;
}

.time-card-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--white);
    border-radius: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -.625rem;
    left: 50%;
    margin-left: -1rem;
}

.time-card-icon .icon {
    min-width: 1.875rem;
    height: 1.75rem;
    background-color: var(--main);
}

.time-card-body {
    border: solid .25rem var(--main);
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-label {
    color: var(--grey);
    font-weight: 600;
}

.time-unit {
    color: var(--main);
    font-weight: 700;
}

.tour-info {
    font-size: 1.125rem;
    font-weight: 500;
}

.tour-info-tag {
    margin-right: -.5rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--red);
    line-height: 1;
    white-space: nowrap;
    display: block;
}

.tour-description {
    font-size: 1.125rem;
    display: flex;
    flex-direction: column;
}

.tour-description p:last-child {
    margin-bottom: 0;
}

.tour-description-footer {
    background-color: var(--white-m);
    display: flex;
}

.tour-links {
    font-size: 1.125rem;
}

.tour-links a::after {
    content: ", ";
}

.tour-links a:last-of-type::after {
    content: "";
}

.faq-container {
    background-color: var(--white-m);
}

.faq-title {
    font-family: var(--italic-font);
    font-style: italic;
    font-weight: 400 !important;
    color: var(--black-l);
}

.faq-card {
    background-color: var(--white);
    border-radius: 2rem;
    overflow: hidden;
}

.faq-link {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black-l);
    line-height: 1;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background-color: transparent;
}

.faq-link .icon {
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
}

.faq-link:not(.collapsed) .icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
}

@media (max-width: 1199.98px) {
    .side-info {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .interest-bar {
        border-radius: 2rem;
    }

    .interest-container {
        background-image: url('../deco/bg_track.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: var(--main);
        border-radius: 0 0 2rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .custom-tag {
        font-size: .875rem !important;
    }

    .tour-info,
    .tour-description,
    .tour-links {
        font-size: .875rem;
    }
}

.intro p {
    text-align: center;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.where-we-are-in-italy {
    /* background-image: url(../deco/bg_roots.svg); */
    /* background-size: cover; */
    /* background-position: right top; */
    /* background-repeat: no-repeat; */
    background-color: var(--white-m);
}

.where-we-are-in-italy div {
    display: flex;
    padding: 2rem 0 0;
    align-items: flex-start;
}

@media (max-width: 767.98px) {
    .where-we-are-in-italy div {
        flex-wrap: wrap;
        padding-bottom: 3rem;
    }
}

.where-we-are-in-italy img {
    width: 380px;
    max-width: 100%;
    height: auto;
    margin-right: 1rem;
}

.where-we-are-in-italy strong.campania {
    font-size: 1.8rem;
    font-weight: 600 !important;
}

.where-we-are-in-italy p {
    margin: 0 0 1rem;
    display: block;
}

.where-we-are-in-italy strong.get-in-touch {
    color: var(--main);
    font-size: 1.2rem;
}

.custom-highlights img {
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .2);
}

.whatsapp {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    display: block;
    width: 67px;
    height: 67px;
    border-radius: 40px;
    background: #25D366;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s;
}

.whatsapp:hover {
    transform: scale(1.2);
}

.col-contacts a {
    color: #FFF;
}

.col-contacts svg {
    width: 24px;
    height: auto;
    margin-right: 5px;
}

.col-contacts svg * {
    fill: #FFF;
}

.hometagstitle {
    display: flex;
    align-items: center;
}

.jamstudio {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

#jamstudio {
    width: auto;
    height: 1.625rem;
}

#jamstudio * {
    fill: #FFF;
}

.tours-carousel {
    overflow: hidden;
}

.esito {
    color: #FFF;
    padding: 1rem 1rem 1.4rem;
    text-align: center;
}

.esito strong {
    display: block;
    font-size: 1.4rem;
}

.esito-ok {
    background: var(--main);
}

.esito-ko {
    background: var(--red);
}

.grecaptcha-badge {
    display: none !important;
}

#acconsento-click .acconsento-lock {
    left: auto !important;
    right: 1rem;
}

@media (max-width: 575.98px) {
    #acconsento-click .acconsento-lock {
        left: auto !important;
        right: 1rem;
        bottom: 5rem !important;
    }
}