@font-face {
    font-family: "FreightBig Pro Light";
    font-style: normal;
    font-weight: 300;
    src: url("/fonts/FreightBigProLight-Regular.woff") format("woff"),
        url("/fonts/FreightBigProLight-Regular.woff2") format("woff2")
}

@font-face {
    font-family: "Executive";
    font-weight: 400;
    src: url("/fonts/Executive-Regular.woff") format("woff"),
        url("/fonts/Executive-Regular.woff2") format("woff2")
}

@font-face {
    font-family: "Executive";
    font-weight: 500;
    src: url("/fonts/Executive-Medium.woff") format("woff"),
        url("/fonts/Executive-Medium.woff2") format("woff2")
}

@font-face {
    font-family: "Executive";
    font-weight: 700;
    src: url("/fonts/Executive-Bold.woff") format("woff"),
        url("/fonts/Executive-Bold.woff2") format("woff2")
}

:root {
    --font-heading: "FreightBig Pro Light", serif;
    --font-primary: "Executive", sans-serif;

    --color-primary: #FC4C02
}

a:focus {
    outline: none !important;
}

.warp .header {
   display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-primary);
    padding: 5px 25px 5px 40px;
}

.warp .header .logo {
    float: none;
    width: 116px;
    padding: 0;
}

.warp .header .logo img,
.menu_modal_header a img {
    width: 150px;
    height: auto;
    margin-left: 100px;

}

.warp .header nav {
    margin-top: 0;
    float: none;
    border: none;
    width: auto;
}

.header nav ul li a {
    text-decoration: none;
    padding: 0px;
    font-size: 15px;
    font-weight: 400;
    transition: color .3s ease;
    text-transform: capitalize;
    color: #65656C;
}

.header nav ul li a:hover {
    color: var(--color-primary);
}

.header nav ul li {
    padding: 0px 15px;
}

.header nav ul li.language select.ComboLingua {
    height: auto;
    margin: 0;
    height: auto;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #656C6C;
    outline: none;
}

.header nav ul.sub-menu {
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 250px;
    padding: 10px 0px;
    box-shadow: 0 1px 15px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .1);
}

.hamburger_menu {
    border: 1px solid #000;
    padding: 10px;
    cursor: pointer;
}


/* ===================
 OPEN MENU MODAL
=================== */

.menu-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.4s ease,
        visibility 0s linear 0.7s;
    border-radius: 0px;
    z-index: 9999;
}

.menu-modal.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.4s ease;
}

.menu_modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
}


.menu_modal_header button.close-menu {
    border: 1px solid #fff;
    padding: 10px;
    cursor: pointer;
    background: transparent;
}

.menu_modal_header .menu_modal_links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu_modal_header .menu_modal_links a {
    color: #65656C;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
}


.menu_modal_header .menu_modal_links a.btn_links {
    color: #fff;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: color 0.45s ease;
    padding: 10px;
}

.menu_modal_header .menu_modal_links a.btn_links::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s ease;
    z-index: -1;
    background: #65656C;
}

.menu_modal_header .menu_modal_links a.btn_links:hover::before {
    transform: scaleY(1);
}

.mega-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 150px;
}

.mega-menu-inner {
    width: 100%;
    max-width: 1200px;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-bottom: 12px;
}

.main-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 70px;
    line-height: 1.05;
    font-weight: 600;
    transition: opacity .3s ease;
    font-family: var(--font-heading);
}


.menu-list-links {
    list-style: none;
    margin: 30px 0 70px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.menu-list-links a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    transition: opacity .3s ease;
    font-family: var(--font-heading);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform .3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ===================
 END OPEN MENU MODAL
=================== */

/* =================================
  BANNER STYLE
================================= */
.hero-banner1,
.hero-banner2,
.hero-banner3,
.hero-banner4 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 750px;
    border-bottom: 2px solid var(--color-primary);
}

.hero-banner1 {
    background-image: url('https://www.poltronafrau.com/content/dam/ld/poltronafrau/website/homepage/hero-homepage/prive-residences-london-v1.jpg/jcr:content/renditions/cq5dam.thumbnail.2200.2200.jpg');
}

.hero-banner2 {
    background-image: url('https://www.poltronafrau.com/content/dam/ld/poltronafrau/products/m/c/-/mc-72-collection/01_hero/mc-72-collection_v1.jpg/jcr:content/renditions/cq5dam.thumbnail.2200.2200.jpg');
}

.hero-banner3 {
    background-image: url('https://www.poltronafrau.com/content/dam/ld/poltronafrau/website/homepage/hero-homepage/fondation-cartier-v1.jpg/jcr:content/renditions/cq5dam.thumbnail.2200.2200.jpg');
}

.hero-banner4 {
    background-image: url('https://www.poltronafrau.com/content/dam/ld/poltronafrau/website/homepage/hero-homepage/2026-tot-collection-v1.jpg/jcr:content/renditions/cq5dam.thumbnail.2200.2200.jpg');
}

.banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.banner .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.banner .hero-content h2 {
    margin: 0;
    text-decoration: none;
    color: #fff;
    font-size: 100px;
    line-height: 1.05;
    font-weight: 600;
    transition: opacity .3s ease;
    font-family: var(--font-heading);
}

.carousel.slide ol.carousel-indicators {
    bottom: -70px;
}

.carousel.slide ol.carousel-indicators li {
    width: 60px;
    background-color: #e8e6e0;
}

.carousel.slide ol.carousel-indicators li.active {
    background-color: var(--color-primary);

}

/* =================================
  END BANNER STYLE
================================= */

/* =================================
  HOME PAGE TABLE AND SEARCH STYLE
================================= */
.warp .ad .search {
    background: #e8e6e0;
    margin-top: 100px;
}

.warp .ad .box2 .button {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-family: var(--font-primary);
}

.warp .ad .boxsmall a {
    filter: brightness(0);
}


.warp .ad h1.home-title {
    color: #000;
    font-size: 20px;
    font-family: var(--font-heading);
    line-height: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}

.warp .ad .GRID_HDR_CEL a:link,
.warp .ad .GRID_HDR_CEL a:visited {
    font-family: var(--font-primary);
    color: #000;
}

.warp .ad td.GRID_DAT_CEL.titleCell a,
.warp .ad td.GRID_DAT_CEL.autoWidth {
    font-family: var(--font-primary);
    color: #65656C;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    transition: color .3s ease;

}

.warp .ad td.GRID_DAT_CEL.titleCell a:hover {
    color: var(--color-primary);
}

.warp .ad .home-cv-button a {
    display: inline-block;
    color: #fff;
    border: var(--color-primary) solid 1px;
    padding: 10px 25px;
    position: relative;
    top: -45px;
    font-size: 16px;
    background: var(--color-primary);
    text-transform: uppercase;
    font-family: var(--font-primary);
    letter-spacing: 1px;

}

.warp .ad .home-cv-button a:hover,
.warp .ad .box2 .button:hover {
    background: transparent;
    color: #FC4C02;
    text-decoration: none;
}

.homeshare .rssbutton {
    background: url(/images/rss-icon-1.png) top no-repeat;
}

/* =================================
  END HOME PAGE TABLE STYLE
================================= */






footer.footer {
    padding: 72px 200px 60px;
    height: auto;
    background: transparent;
    font-family: var(--font-primary);
    border-top: 1px solid #000;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.footer-column {
    padding-left: 40px;
    border-left: 1px solid #d8d8d8;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #65656C;
    margin: 0px 0px 20px;
}

.footer-column.QA-section h4 {
    margin: 0px 0px 5px;
}

.footer-column .spaced {
    margin-top: 25px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column a {
    text-decoration: none;
    color: #65656C;
    font-size: 15px;
    transition: color .3s ease;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    margin-bottom: 35px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .footer {
        padding: 50px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        padding-left: 20px;
    }

    .footer-links {
        gap: 15px;
    }
}