* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Raleway',sans-serif;
    background: #fff;
    color: #383838;
    margin: 0 auto;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.boxed {
    max-width: 786px;
    margin: 0 auto;
    width: 100%
}

.schedule-bar {
    height: 100%;
    background: #d8d8d8;
    border-radius: 0 6px 6px 0;
    min-height: 28px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 13px;
    color: #383838;
    line-height: 1.55;
    font-weight: 400;
}

/* ===== HERO PLACEHOLDER ===== */
/* Sostituisce .hero-placeholder esistente */
.hero-placeholder {
    width: 100%;
    height: 300px; /* mantieni le tue altezze gi� definite */
    position: relative;
    overflow: hidden; /* fondamentale: taglia l'iframe che "sborda" */
    background: #d8d8d8;
}

/* Wrapper che scala l'iframe mantenendo il 16:9 */
.hero-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Dimensioni minime per coprire il contenitore in ogni proporzione */
    width: max(100%, calc(100vh * 16 / 9));
    height: max(100%, calc(100vw * 9 / 16));
    pointer-events: none; /* evita interazione accidentale */
}

.hero-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-placeholder-text {
    font-family: 'Raleway',sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* ===== LOGO - overlapping divider and hero ===== */
.logo-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

    .logo-wrapper img {
        width: 90px;
        height: auto;
        display: block;
        filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
    }

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden
}

.hero-photo {
    width: 100%;
    height: 280px;
    background: #b8a490;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-photo-label {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px
}
/* Diagonal stripes - thicker, from corners converging to center */
.stripe-tl {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 50%;
    height: 60px
}

    .stripe-tl .s {
        position: absolute;
        height: 18px;
        right: 0;
        transform-origin: right top
    }

    .stripe-tl .s1 {
        top: 0;
        left: -30px;
        right: 0;
        background: #ff8300;
        transform: skewY(18deg)
    }

    .stripe-tl .s2 {
        top: 0;
        left: -10px;
        right: 20px;
        background: #ff4438;
        transform: skewY(18deg);
        height: 14px;
        margin-top: 20px
    }

    .stripe-tl .s3 {
        top: 0;
        left: 10px;
        right: 40px;
        background: #f8b113;
        transform: skewY(18deg);
        height: 12px;
        margin-top: 36px
    }

.stripe-tr {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 50%;
    height: 60px
}

    .stripe-tr .s {
        position: absolute;
        height: 18px;
        left: 0;
        transform-origin: left top
    }

    .stripe-tr .s1 {
        top: 0;
        right: -30px;
        left: 0;
        background: #ff8300;
        transform: skewY(-18deg)
    }

    .stripe-tr .s2 {
        top: 0;
        right: -10px;
        left: 20px;
        background: #ff4438;
        transform: skewY(-18deg);
        height: 14px;
        margin-top: 20px
    }

    .stripe-tr .s3 {
        top: 0;
        right: 10px;
        left: 40px;
        background: #f8b113;
        transform: skewY(-18deg);
        height: 12px;
        margin-top: 36px
    }
/* Logo centered at top, sitting on top of stripes */
.hero-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-logo-ph {
    width: 52px;
    height: 52px;
    background: #ff4438;
    border-radius: 6px 6px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 6px;
}

    .hero-logo-ph::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 16px;
        background: #ff4438;
        border-radius: 50% 50% 0 0;
    }

    .hero-logo-ph span {
        color: #fff;
        font-size: 7.5px;
        font-weight: 900;
        text-align: center;
        line-height: 1.1;
        letter-spacing: 0.2px
    }

.hero-title-overlay {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2
}

.hero-title-text {
    font-weight: 900;
    font-size: 30px;
    color: #383838;
    text-shadow: 0 0 30px rgba(255,255,255,0.8),0 0 60px rgba(255,255,255,0.5);
}

/* ===== COUNTDOWN ===== */
.countdown-section {
    padding: 22px 20px 14px;
    text-align: center
}

.countdown-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px
}

.cd-box {
    width: 70px;
    height: 54px;
    background: #f2f2f2;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.cd-num {
    font-weight: 800;
    font-size: 23px;
    color: #ff8300;
    line-height: 1
}

.cd-label {
    font-size: 9px;
    font-weight: 600;
    color: #ff8300;
    margin-top: 1px
}

.cd-colon {
    font-weight: 800;
    font-size: 20px;
    color: #ff8300;
    margin-top: 12px
}

/* ===== HERO DESC ===== */
.hero-desc-section {
    padding: 10px 28px 0;
    text-align: center
}

.hero-desc {
    font-size: 14px;
    color: #ff8300;
    line-height: 1.55;
    font-weight: 500
}

/* ===== INFO BAR ===== */
.info-bar {
    background: #ff8300;
    margin-top: 20px;
    padding: 22px 30px 28px;
    text-align: center;
    color: #fff
}

.info-line {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8
}

.cta-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2.5px solid #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 30px;
    margin-top: 14px;
    text-decoration: none;
    cursor: pointer;
}

    .cta-outline-white .arrow {
        font-size: 20px
    }

/* ===== ABOUT ===== */
.about-section {
    padding: 20px 28px 10px;
    text-align: center
}

.about-title {
    font-weight: 900;
    font-size: 24px;
    font-style: italic;
    color: #ff4438;
    margin-bottom: 12px;
    letter-spacing: -0.3px
}

.about-text {
    font-size: 14px;
    color: #383838;
    line-height: 1.65;
    font-weight: 400;
    text-align: left;
    margin-bottom: 12px
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-row {
    display: flex;
    gap: 8px;
    padding: 0 24px;
    margin-bottom: 14px
}

.img-ph {
    flex: 1;
    height: 120px;
    background: #d8d8d8;
    border-radius: 6px;
    overflow: hidden;
    position: relative
}

    .img-ph img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

/* ===== CTA ===== */
.cta-center {
    text-align: center;
    padding: 10px 0 24px
}

.btn-orange-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff8300;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    font-style: italic;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

    .btn-orange-pill .arrow {
        font-size: 20px;
        font-style: normal
    }

/* ===== STATS ===== */
.stats-section {
    padding: 24px 20px;
    text-align: center
}

.stats-heading {
    font-weight: 900;
    font-size: 24px;
    font-style: italic;
    color: #ff4438;
    line-height: 1.3;
    margin-bottom: 22px
}

.stat-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px
}

.stat-card {
    flex: 1;
    border: 2.5px solid #ff4438;
    border-radius: 22px;
    padding: 20px 10px;
    text-align: center
}

    .stat-card.full {
        flex: none;
        width: 100%
    }

.stat-bold {
    font-weight: 800;
    font-size: 15px;
    color: #383838;
    line-height: 1.3
}

    .stat-bold strong {
        display: block;
        font-size: 22px
    }

.stat-light {
    font-size: 13px;
    color: #383838;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 4px
}

/* ===== CHEVRON DIVIDER ===== */
.chevron-divider {
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.chevron-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    width: 100%;
}

.chev {
    width: 32px;
    height: 18px;
    transform: skewX(25deg);
    border-radius: 2px;
    flex-shrink: 0
}

.chev-o {
    background: #ff8300
}

.chev-r {
    background: #ff4438
}

.chev-y {
    background: #f8b113
}

/* ===== HORECA ===== */
.horeca-section {
    padding: 20px 20px 28px;
    text-align: center
}

.horeca-heading {
    font-weight: 900;
    font-size: 24px;
    font-style: italic;
    color: #ff4438;
    line-height: 1.3;
    margin-bottom: 20px
}

.tags-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.tag-pill {
    border: 2.5px solid #ff8300;
    border-radius: 28px;
    padding: 10px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #ff8300
}

/* ===== VANTAGGI ===== */
.vantaggi-section {
    background: #ff8300;
    padding: 32px 24px;
    text-align: center;
    color: #fff
}

.vantaggi-title {
    font-weight: 900;
    font-size: 26px;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 4px
}

.vantaggi-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
    margin-bottom: 22px
}

.vantaggi-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.vantaggi-pill {
    border: 2.5px solid rgba(255,255,255,0.9);
    border-radius: 28px;
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    background: rgba(255,252,252,0.06)
}

/* ===== PERCHE CONVIENE ===== */
.perche-section {
    padding: 36px 0 10px;
    text-align: center;
    overflow: hidden
}

.perche-title {
    font-weight: 900;
    font-size: 26px;
    font-style: italic;
    color: #ff4438;
    margin-bottom: 28px;
    padding: 0 20px
}

/* ===== HORIZONTAL SLIDER (shared) ===== */
.h-slider-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
}

    .h-slider-wrap::-webkit-scrollbar {
        display: none
    }

.h-slider {
    display: inline-flex;
    gap: 16px;
    padding: 0 30px;
}

.h-slider-item {
    flex: 0 0 auto;
}

/* Perche cards in slider */
.perche-slide {
    width: 140px;
    text-align: center
}

.perche-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    display: block;
}

.perche-card-text {
    font-size: 14px;
    color: #383838;
    line-height: 1.5;
    font-weight: 400
}

/* ===== VOGLIO PARTECIPARE CTA ===== */
.cta-partecipare {
    text-align: center;
    padding: 20px 20px 32px
}

/* ===== FOCUS ===== */
.focus-section {
    background: #f2f2f2;
    padding: 28px 24px;
    text-align: center
}

.focus-label {
    font-size: 14px;
    font-weight: 400;
    color: #383838;
    margin-bottom: 2px
}

.focus-title {
    font-weight: 900;
    font-size: 22px;
    color: #383838;
    margin-bottom: 6px
}

.focus-desc {
    font-size: 13px;
    color: #383838;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 22px
}

.focus-date-block {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 14px;
    text-align: left
}

.focus-date-left {
    min-width: 70px;
    background: #fff;
    border-radius: 10px 0 0 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.focus-date-num {
    font-weight: 900;
    font-size: 32px;
    color: #383838;
    line-height: 1
}

.focus-date-month {
    font-size: 12px;
    font-weight: 700;
    color: #383838
}

.focus-schedule-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0
}

.schedule-bar {
    height: 100%;
    background: #d8d8d8;
    border-radius: 0 6px 6px 0;
    min-height: 28px
}

.focus-cta {
    text-align: center;
    margin-top: 20px
}

/* ===== MOBILE/DESKTOP TOGGLE ===== */
.desktop-only {
    display: none
}

.mobile-only {
    display: block
}

/* ===== SETTORI ===== */
.settori-section {
    padding: 32px 0;
    text-align: center
}

.settori-heading {
    font-weight: 900;
    font-size: 18px;
    color: #ff4438;
    letter-spacing: 3px;
    margin-bottom: 16px;
    padding: 0 30px
}

.settori-slide {
    width: 170px;
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
    position: relative;
    flex-shrink: 0
}

.settori-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #d8d8d8;
    object-fit: cover;
    display: block
}

.settori-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center
}

.settori-name {
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4)
}

.settori-name-red {
    font-weight: 800;
    font-size: 20px;
    color: #ff4438
}

.settori-grid {
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
    padding: 0 34px
}

/* ===== FORNITORI ===== */
.fornitori-section {
    padding: 28px 0;
    text-align: center
}

.fornitori-title {
    font-weight: 800;
    font-size: 20px;
    color: #ff4438;
    margin-bottom: 14px;
    padding: 0 34px
}

.fornitori-slide {
    width: 120px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 8px;
    flex-shrink: 0
}

.fornitori-grid, .fornitori-grid-extra {
    grid-template-columns: repeat(7,1fr);
    gap: 10px;
    padding: 0 34px
}

.fornitori-grid-extra {
    margin-top: 10px
}

.fornitori-altri {
    background: #ff8300;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .fornitori-altri:hover {
        opacity: 0.85
    }

/* ===== GALLERY ===== */
.gallery-section {
    padding: 28px 0;
    text-align: center
}

.gallery-title {
    font-weight: 800;
    font-size: 20px;
    color: #ff4438;
    margin-bottom: 14px;
    padding: 0 34px
}

.gallery-slide {
    width: 160px;
    height: 120px;
    background: #d8d8d8;
    border-radius: 4px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative
}

    .gallery-slide img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.gallery-grid {
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    padding: 0 34px
}

/* ===== VIDEO (slider) ===== */
.video-section {
    padding: 24px 0;
    text-align: center
}

.video-title {
    font-weight: 800;
    font-size: 20px;
    color: #ff4438;
    margin-bottom: 14px;
    padding: 0 34px
}

.video-slide {
    width: 160px;
    height: 120px;
    background: #d8d8d8;
    border-radius: 4px;
    flex-shrink: 0
}

.footer-space {
    height: 80px
}

/* ===== LAZY LOADING ===== */
[data-src] {
    opacity: 0.6;
    transition: opacity 0.4s ease
}

    [data-src].lazy-loaded {
        opacity: 1
    }

/* ===== DESKTOP RESPONSIVE ===== */
@media (min-width:768px) {
    .countdown-section,
    .hero-desc-section,
    .info-bar,
    .about-section,
    .img-row,
    .cta-center,
    .stats-section,
    .horeca-section,
    .vantaggi-section,
    .cta-partecipare,
    .focus-section {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .settori-section,
    .fornitori-section,
    .gallery-section {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-placeholder {
        height: 420px
    }

    .hero-placeholder-text {
        font-size: 52px
    }

    .logo-wrapper {
        top: -50px
    }

        .logo-wrapper img {
            width: 120px
        }

    .cd-box {
        width: 90px;
        height: 68px;
        border-radius: 16px
    }

    .cd-num {
        font-size: 30px
    }

    .cd-label {
        font-size: 11px
    }

    .cd-colon {
        font-size: 26px;
        margin-top: 16px
    }

    .countdown-row {
        gap: 10px
    }

    .hero-desc {
        font-size: 16px
    }

    .info-bar {
        border-radius: 16px;
        margin-top: 24px;
        padding: 28px 40px 34px
    }

    .info-line {
        font-size: 16px
    }

    .cta-outline-white {
        font-size: 16px;
        padding: 14px 36px
    }

    .about-section {
        padding: 28px 40px 14px
    }

    .about-title {
        font-size: 30px
    }

    .about-text {
        font-size: 16px
    }

    .img-row {
        padding: 0 40px;
        gap: 12px
    }

    .img-ph {
        height: 160px;
        border-radius: 10px
    }

    .btn-orange-pill {
        font-size: 16px;
        padding: 16px 38px
    }

    .stats-section {
        padding: 32px 30px
    }

    .stats-heading {
        font-size: 30px
    }

    .stat-card {
        padding: 28px 16px;
        border-radius: 26px
    }

    .stat-bold {
        font-size: 17px
    }

        .stat-bold strong {
            font-size: 26px
        }

    .stat-light {
        font-size: 14px
    }

    .stat-row {
        gap: 12px;
        margin-bottom: 12px
    }

    .chev {
        width: 38px;
        height: 20px
    }

    .horeca-section {
        padding: 28px 30px 36px
    }

    .horeca-heading {
        font-size: 30px
    }

    .tags-grid {
        gap: 12px
    }

    .tag-pill {
        font-size: 17px;
        padding: 12px 20px
    }

    .vantaggi-section {
        padding: 40px 40px;
        border-radius: 16px
    }

    .vantaggi-title {
        font-size: 32px
    }

    .vantaggi-desc {
        font-size: 16px
    }

    .vantaggi-pill {
        font-size: 16px;
        padding: 14px 24px
    }

    .vantaggi-bullets {
        gap: 14px
    }

    .perche-title {
        font-size: 32px
    }

    .perche-slide {
        width: 180px
    }

    .perche-icon {
        width: 56px;
        height: 56px
    }

    .perche-card-text {
        font-size: 15px
    }

    .focus-section {
        padding: 36px 40px;
        border-radius: 16px
    }

    .focus-title {
        font-size: 26px
    }

    .focus-desc {
        font-size: 15px
    }

    .focus-date-num {
        font-size: 38px
    }

    .focus-date-month {
        font-size: 14px
    }

    .schedule-bar {
        min-height: 34px
    }

    /* Desktop/mobile toggle */
    .desktop-only {
        display: grid
    }

    .mobile-only {
        display: none
    }

    .settori-heading {
        font-size: 22px
    }

    .settori-slide {
        width: auto;
        height: 160px
    }

    .settori-name {
        font-size: 20px
    }

    .settori-name-red {
        font-size: 22px
    }

    .fornitori-title {
        font-size: 24px
    }

    .fornitori-slide {
        width: auto;
        height: 80px
    }

    .gallery-title {
        font-size: 24px
    }

    .gallery-slide {
        width: auto;
        height: 160px;
        border-radius: 8px
    }

    .video-title {
        font-size: 24px
    }

    .video-slide {
        width: 220px;
        height: 160px;
        border-radius: 8px
    }

    .h-slider-wrap {
        padding-bottom: 20px
    }

    .h-slider {
        padding: 0 40px;
        gap: 20px
    }
}

@media (min-width:1024px) {
    .countdown-section,
    .hero-desc-section,
    .info-bar,
    .about-section,
    .img-row,
    .cta-center,
    .stats-section,
    .horeca-section,
    .vantaggi-section,
    .cta-partecipare,
    .focus-section {
        max-width: 860px;
    }

    .settori-section,
    .fornitori-section,
    .gallery-section {
        max-width: 1100px;
    }

    .hero-placeholder {
        height: 500px
    }

    .hero-placeholder-text {
        font-size: 62px
    }

    .logo-wrapper {
        top: -60px
    }

        .logo-wrapper img {
            width: 140px
        }

    .cd-box {
        width: 100px;
        height: 76px
    }

    .cd-num {
        font-size: 34px
    }

    .cd-label {
        font-size: 12px
    }

    .cd-colon {
        font-size: 30px;
        margin-top: 18px
    }

    .hero-desc {
        font-size: 18px
    }

    .hero-desc-section {
        padding: 14px 40px 0
    }

    .info-bar {
        padding: 32px 50px 38px
    }

    .info-line {
        font-size: 18px
    }

    .about-title {
        font-size: 34px
    }

    .about-text {
        font-size: 17px
    }

    .img-ph {
        height: 200px
    }

    .stats-heading {
        font-size: 34px
    }

    .stat-bold strong {
        font-size: 30px
    }

    .horeca-heading {
        font-size: 34px
    }

    .tags-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 14px
    }

    .tag-pill {
        font-size: 16px
    }

    .vantaggi-title {
        font-size: 36px
    }

    .vantaggi-desc {
        font-size: 17px
    }

    .vantaggi-bullets {
        flex-direction: row;
        gap: 16px
    }

    .vantaggi-pill {
        flex: 1;
        font-size: 15px
    }

    .perche-title {
        font-size: 36px
    }

    .perche-slide {
        width: 200px
    }

    .perche-icon {
        width: 64px;
        height: 64px
    }

    .perche-card-text {
        font-size: 16px
    }

    .focus-title {
        font-size: 30px
    }

    .focus-desc {
        font-size: 16px
    }

    .settori-slide {
        height: 180px
    }

    .settori-grid {
        gap: 14px
    }

    .gallery-slide {
        height: 200px
    }

    .gallery-grid {
        gap: 14px
    }

    .fornitori-slide {
        height: 90px
    }

    .fornitori-grid, .fornitori-grid-extra {
        gap: 14px
    }

    .video-slide {
        width: 260px;
        height: 180px
    }

    .h-slider {
        gap: 24px
    }

    .boxed {
        max-width: 860px
    }
}
