@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
    --site-bg: #f5f3ef;
    --surface: #ffffff;
    --surface-soft: #fbf8f6;
    --text-main: #2a2520;
    --text-muted: #5b514a;
    --text-soft: #9d8d85;
    --brand-primary: #8b3a2a;
    --brand-primary-soft: #ead3cd;
    --brand-accent: #399bc6;
    --brand-accent-dark: #236f8f;
    --border-light: #efe7e2;
    --border-line: #e3d6d0;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, .05);
    --shadow-hero: 0 12px 28px rgba(80, 31, 20, .16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --content-width: 980px;
}

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

html {
    scroll-behavior: smooth;
}


body {
    background: var(--site-bg);
    color: var(--text-main);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    padding-bottom: 80px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

/* ── LAYOUT ── */
.page-wrapper,
.site-shell {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
    padding-bottom: 48px;
}

/* ── HEADER ── */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0 14px;
    border-bottom: 1px solid var(--border-line);
    margin-bottom: 22px;
}

.site-brand img {
    width: auto;
    height: 84px;
}

.site-shell .site-brand img {
    height: 110px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav a {
    text-decoration: none;
    color: var(--brand-primary);
    border: 1px solid var(--border-line);
    background: var(--surface);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: .83rem;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

/* ── SECTIONS ── */
.section {
    margin-bottom: 24px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.6rem, 2vw, 2.1rem);
    color: var(--brand-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-line);
}

/* ── CARDS ── */
.card,
.text-block,
.hero,
.footer-contact,
.listing-card,
.commercial-card,
.info-banner {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(180deg, #924130 0%, var(--brand-primary) 100%);
    color: #fffaf7;
    padding: 22px 22px 18px;
    box-shadow: var(--shadow-hero);
    border: none;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.05;
    font-weight: 700;
    margin: 0;
}

.hero-price {
    background: #fff;
    color: var(--brand-accent);
    min-width: 160px;
    text-align: center;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.25;
    border: 1px solid rgba(57, 155, 198, .2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
    flex-shrink: 0;
}

.hero-price small {
    display: block;
    font-size: .76rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 3px;
}

.hero-meta {
    display: block;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #f3ddd7;
    margin-top: 14px;
}

.hero-meta-secondary {
    display: block;
    font-size: .84rem;
    color: #f0ebe7;
    margin-top: 8px;
    letter-spacing: .06em;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
}

/* ── SLIDERS ── */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #f7f3ee;
    box-shadow: var(--shadow-soft);
}

.slider-track {
    display: flex;
    transition: transform .45s ease;
}

.slider-slide {
    width: 100%;
    flex-shrink: 0;
}

.slider-slide img {
    width: 100%;
    height: 430px;
    object-fit: contain;
    object-position: center;
    background: #f7f3ee;
    cursor: zoom-in;
    transition: transform .25s ease;
}

.slider-slide img:hover {
    transform: scale(1.01);
}

.slider-wrapper.plans {
    background: var(--surface);
}

.slider-wrapper.plans .slider-slide img {
    height: 360px;
    object-fit: contain;
    background: var(--surface);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(57, 155, 198, .85);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--brand-accent-dark);
}

.slider-prev {
    left: 14px;
}

.slider-next {
    right: 14px;
}

.slider-counter {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(255, 255, 255, .92);
    color: var(--brand-accent-dark);
    font-size: .76rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 6px 12px;
}

/* ── TABLEAU ── */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

.section > .table-scroll {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    table-layout: fixed;
}

.details-table tr {
    border-bottom: 1px solid var(--border-light);
    transition: background .15s;
}

.details-table tr:hover {
    background: var(--surface-soft);
}

.details-table td {
    padding: 12px 16px;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.details-table td:nth-child(odd) {
    width: 22%;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-soft);
}

.details-table td:nth-child(even) {
    width: 28%;
    color: var(--text-main);
}

.note-charges {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: .82rem;
}

.legend-item {
    display: block;
    margin-top: 6px;
    font-size: .82rem;
    color: var(--text-soft);
}

.details-table.liste-table {
    table-layout: auto;
}

.details-table.liste-table td:nth-child(odd),
.details-table.liste-table td:nth-child(even) {
    width: auto;
    font-size: clamp(0.72rem, 1.1vw, 0.9rem);
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-main);
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: clamp(6px, 1.2vw, 12px) clamp(4px, 1vw, 12px);
}

.details-table.liste-table td {
    vertical-align: middle;
}

.details-table.liste-table td.col-sorted {
    color: var(--brand-accent-dark) !important;
    font-weight: 600 !important;
}

.details-table.liste-table thead th.sort-asc,
.details-table.liste-table thead th.sort-desc {
    color: var(--brand-accent) !important;
    background: var(--brand-accent-dark) !important;
}

.page-wrapper.wide {
    width: min(98%, 1400px);
    margin: 0 auto;
}

.details-table.liste-table thead th {
    background: var(--brand-primary);
    color: #fffaf7;
    padding: 14px 10px;
    text-align: left;
    vertical-align: middle;
    font-size: clamp(0.68rem, 1.1vw, 0.78rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    word-break: normal;
    cursor: pointer;
    user-select: none;
    position: sticky;
    top: 0;
    z-index: 10;
    transition: background 0.15s;
}

.details-table.liste-table thead th:hover {
    background: rgba(255, 255, 255, 0.12);
}

.details-table.liste-table thead th::after {
    content: '⇅';
    display: inline-block;
    margin-left: 6px;
    opacity: 0.45;
    font-size: 0.72rem;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.details-table.liste-table thead th.sort-asc::after {
    content: '↑';
    opacity: 1;
}

.details-table.liste-table thead th.sort-desc::after {
    content: '↓';
    opacity: 1;
}

.details-table.liste-table thead th.col-center,
.details-table.liste-table thead th.icon-trajet,
.details-table.liste-table td.col-center,
.details-table.liste-table td.col-trajet {
    text-align: center;
}

.details-table.liste-table thead th.icon-trajet {
    min-width: 88px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0;
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Inter', sans-serif;
}

.details-table.liste-table thead th.icon-trajet::after {
    margin-left: 5px;
    top: -1px;
}

.details-table.liste-table thead th.icon-trajet img,
.details-table.liste-table thead th.icon-trajet svg {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0;
    vertical-align: middle;
}

.icon-trajet {
    font-size: clamp(1.12rem, 2vw, 1.45rem) !important;
}

td.col-trajet {
    font-size: clamp(0.78rem, 1.2vw, 0.95rem);
    font-weight: 700;
    color: var(--brand-accent-dark);
}

td.col-trajet img {
    width: clamp(20px, 3vw, 30px);
    height: auto;
    margin: 0 auto 2px;
    display: block;
}

.col-loyer {
    font-weight: 700 !important;
    color: var(--brand-accent-dark) !important;
}

/* ── BARRE DE TRAJET ── */
.trajet-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.trajet-bar input {
    flex: 1;
    min-width: 220px;
    border: 1px solid var(--border-line);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.9rem;
    font-family: 'Inter', Arial, sans-serif;
    outline: none;
}

.trajet-bar input:focus {
    border-color: var(--brand-accent);
}

.trajet-info {
    font-size: 0.8rem;
    color: var(--text-soft);
    width: 100%;
}

/* ── BADGES & ELEMENTS UI ── */
.badge-dispo {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #e6f7ef;
    color: #1a7a45;
    white-space: nowrap;
}

.badge-dispo.future {
    background: #fff3e0;
    color: #b85c00;
}

/* ── TEXTE ── */
.text-block {
    padding: 22px;
}

.text-block p {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.text-block p:last-child {
    margin-bottom: 0;
}

.text-block strong {
    color: var(--brand-primary);
}

.text-block a {
    color: var(--brand-accent-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(57, 155, 198, .35);
}

.text-block a:hover {
    color: var(--brand-accent);
}

/* ── LISTES ── */
.acces-list,
.styled-list {
    list-style: none;
    margin-top: 12px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    box-shadow: var(--shadow-soft);
}

.acces-list li,
.styled-list li {
    position: relative;
    padding: 11px 0 11px 22px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}

.acces-list li:last-child,
.styled-list li:last-child {
    border-bottom: none;
}

.acces-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--brand-accent);
    font-weight: 700;
}

.styled-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--brand-accent);
    font-weight: 700;
}

/* ── BOUTONS ── */
.btn,
.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    background: var(--surface);
    color: var(--brand-accent-dark);
    border: 1px solid rgba(57, 155, 198, .28);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: .84rem;
    font-weight: 700;
    transition: .2s ease;
    cursor: pointer;
}

.btn:hover,
.site-button:hover {
    background: var(--brand-accent);
    color: #fff;
    border-color: var(--brand-accent);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

/* ── LISTING GRID ── */
.listing-grid,
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.listing-card,
.commercial-card {
    padding: 18px;
}

.listing-card h3,
.commercial-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.listing-meta {
    color: var(--text-soft);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.listing-price {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #eef8fc;
    color: var(--brand-accent-dark);
    font-weight: 700;
}

/* ── REGROUPEMENT IMMEUBLE ── */
.immeuble-header {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-soft);
}

.immeuble-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    color: var(--brand-primary);
    margin: 0;
}

.immeuble-badge {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-soft);
    background: var(--surface-soft);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: 4px 12px;
    white-space: nowrap;
}

.immeuble-info {
    font-size: .84rem;
    color: var(--text-muted);
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

/* ── ACCUEIL ── */
.info-banner {
    padding: 24px;
}

.info-banner h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--brand-primary);
    line-height: 1.05;
    margin-bottom: 12px;
}

.info-banner p {
    max-width: 60ch;
    color: var(--text-muted);
}

/* ── FOOTER FIXE ── */
.site-footer,
.footer-contact {
    margin-top: 42px;
    background: var(--brand-primary);
    color: #fff8f5;
    border-radius: var(--radius-lg);
    padding: 24px;
}

.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--brand-primary);
    color: #fff8f5;
    z-index: 1000;
    padding: 12px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -3px 16px rgba(80, 31, 20, .22);
}

.footer-fixed .f-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--brand-primary-soft);
    white-space: nowrap;
}

.footer-fixed .f-tel {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.footer-fixed .f-tel:hover {
    color: #f3ddd7;
}

.footer-fixed .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-fixed .footer-links a {
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .79rem;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
    white-space: nowrap;
}

.footer-fixed .footer-links a:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.logo_tel img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    vertical-align: middle;
}

/* ── ZOOM ── */
.zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .93);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

.zoom-overlay img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: var(--radius-sm);
}

.zoom-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
}

/* ── ACCUEIL portails ── */
.index-hero {
    background: linear-gradient(180deg, #924130 0%, var(--brand-primary) 100%);
    color: #fffaf7;
    border-radius: var(--radius-lg);
    padding: 36px 32px 28px;
    box-shadow: var(--shadow-hero);
    margin-bottom: 28px;
    border: none;
}

.index-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 12px;
}

.index-hero p {
    color: #f3ddd7;
    max-width: 58ch;
    font-size: 0.97rem;
}

.index-portails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.portail-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--text-main);
    transition: box-shadow .2s, transform .2s;
}

.portail-card:hover {
    box-shadow: 0 12px 32px rgba(80, 31, 20, .13);
    transform: translateY(-3px);
}

.portail-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.portail-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.portail-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--text-soft);
}

.portail-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    color: var(--brand-primary);
    line-height: 1.05;
    margin: 0;
}

.portail-desc {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.portail-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: .83rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--brand-accent);
    color: var(--brand-accent-dark);
    transition: .2s;
}

.portail-card:hover .portail-cta {
    background: var(--brand-accent);
    color: #fff;
    border-color: var(--brand-accent);
}

/* ── ACCUEIL portails ── */



@media (max-width: 780px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-brand img {
        height: 74px;
    }

    .hero-top {
        grid-template-columns: 1fr;
    }

    .hero-price {
        min-width: 0;
        width: fit-content;
    }

    .listing-grid,
    .commercial-grid {
        grid-template-columns: 1fr;
    }

    .immeuble-header {
        flex-wrap: wrap;
    }

    .immeuble-info {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .page-wrapper,
    .site-shell {
        width: min(100% - 22px, var(--content-width));
    }

    .hero {
        padding: 18px 16px;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .slider-slide img {
        height: 245px;
    }

    .slider-wrapper.plans .slider-slide img {
        height: 220px;
    }

    .text-block {
        padding: 18px 16px;
    }

    .table-scroll {
        border: 1px solid var(--border-light);
        background: var(--surface);
    }

    .details-table:not(.liste-table) tr {
        display: grid;
        grid-template-columns: minmax(96px, 40%) 1fr;
        border-bottom: 1px solid var(--border-light);
    }

    .details-table:not(.liste-table) td {
        display: block;
        width: 100% !important;
        padding: 10px 12px;
    }

    .details-table:not(.liste-table) td:nth-child(odd) {
        background: var(--surface-soft);
    }

    .details-table.liste-table thead th {
        padding: 12px 8px;
        font-size: 0.7rem;
    }

    .details-table.liste-table thead th.icon-trajet {
        min-width: 64px;
        font-size: 1.02rem !important;
    }

    .details-table.liste-table thead th::after {
        margin-left: 4px;
        font-size: 0.66rem;
    }
}

@media (max-width: 640px) {
    .index-portails {
        grid-template-columns: 1fr;
    }

    .portail-card {
        padding: 22px 18px;
    }

    .portail-image {
        height: 140px;
    }

    .site-shell .site-brand img {
        height: 80px;
    }
}

@media (max-width: 520px) {
    body {
        padding-bottom: 130px;
    }

    .footer-fixed {
        gap: 10px;
        padding: 10px 16px;
    }

    .footer-fixed .f-label {
        display: none;
    }

    .footer-fixed .f-tel {
        font-size: 1.2rem;
    }
}


/* Correctif fort cadrage photos fiche */
.slider-wrapper {
    background: #f7f3ee !important;
}

.slider-wrapper .slider-track {
    align-items: center !important;
}

.slider-wrapper .slider-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f7f3ee !important;
}

.slider-wrapper .slider-slide img {
    width: 100% !important;
    height: 430px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #f7f3ee !important;
    transform: none !important;
}

.slider-wrapper .slider-slide img:hover {
    transform: none !important;
}

@media (max-width: 640px) {
    .slider-wrapper .slider-slide img {
        height: 245px !important;
    }
}