
/* Common classes */
.d-none {
    display: none;
}

.opacity {
    opacity: 0.4;
    cursor: default;
}

/* Overlay */
.overlay-2 {
    background-color: rgba(0, 0, 0, .7);
    height: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, height 0s ease-out 0.3s;
}

.overlay-2.active {
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    display: block;
}
@media (max-width: 1024px) {
    .overlay-2.active {
        display: none;
    }
}


/* buttons */
.primaryBtn, .secondaryBtn {
    color: #000;
    text-align: center;
    font-family: 'Maison Mono';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    width: fit-content;

}

.primaryBtn {
    margin-top: auto;
    padding: 17px 35px;
    background: #fff;
    border: 1px solid #FFF;
}
.primaryBtn:hover {
    text-decoration: underline;
    background: #ededed;
}
.secondaryBtn {
    margin-top: 20px;
    padding: 15px 25px;
    background: none;
    border: 1px solid;
}

.btn-scroll {
    position: absolute;
    top: calc(50% - 30px);
    right: 40px;
}

.btn-scroll .svg-container,
.btn-scroll-left .svg-container {
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1;
    padding-top: 3px;
    position: relative;
    box-shadow: 1px 2px 12px #0000003d;
}

.btn-scroll .svg-container svg,
.btn-scroll-left .svg-container svg {
    position: absolute;
    top: -6px;
    left: -9px;
}
.btn-scroll-left {
    position: absolute;
    top: calc(50% - 30px);
    left: 10px;
    rotate: 180deg;
}

/* Box / Box Info  */

.box-info {
    display: flex;
    flex-wrap: nowrap;
    /* scroll-behavior: smooth; */
    animation: all ease-in-out 0.5s;
    max-width: 33.33%;
    flex: 1 0 33.33%;
    overflow: hidden;
}

.info {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.info h3 {
    color: #FFF;
    font-family: 'Commuters Sans';
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 43px
}
.info p {
    color: #FFF;
    font-family: 'Maison Neue';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}


/* Segnaposto  */
.segnaposto-iext {
    cursor: pointer;

}

.segnaposto-iext>span {
    width: 90px;
    display: block;
    background: #ffffff66;
    height: 2px;
    border-radius: 5px;
    margin-top: 8px;
    position: relative;
}

.segnaposto-iext>span>span {
    top: 0;
    left: 0;
    height: 2px;
    border-radius: 5px;
    /* margin-top: 8px; */
    position: relative;
    background: #fff;
    width: 0%;
    display: block;

}
.segnaposto {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    gap: 50px;
}

.segnaposto p {
    color: #fff;
    text-align: center;
    font-family: Maison Neue;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 0;
    margin-bottom: 0;
}

.segnaposto p.active {
    color: #fff;
}
@media(min-width:769px){
    .segnaposto-iext>span {
        min-width: 90px;
        width: auto;
    }
    .segnaposto p {
        text-wrap: nowrap;
    }
}
@media(max-width: 768px) {
    .segnaposto {
        display: flex;
        justify-content: space-between;
        width: calc(100% - 32px);
        max-width: 500px;
        margin: 0 18px;
        gap: 10px;
    }

    .segnaposto p {
        font-size: 11px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .segnaposto-iext>span {
        max-width: 115%;
        width: -webkit-fill-available;
    }
}

/* BreadCrumbs  */
.breadbrumbs, .breadcrumbs {
    font-size: 12px !important;
    line-height: normal !important;
}
.breadbrumbs {
    position: absolute;
    top: 30px;
    left: 65px;
    color: rgba(132, 132, 132, 0.60) !important;
}

.breadbrumbs a {
    color: #848484 !important;
}
@media (max-width: 960px) {
    .breadbrumbs {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.breadcrumbs {
    color: rgba(255, 255, 255, 0.60) !important;
    font-family: 'Maison Neue';
}

.breadcrumbs a {
    color: white !important;
}


