/* =========================================================
   MOORE GLOBAL 2025 — HEADER + FOOTER
   Structure : Desktop styles → Media Queries
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

/* =========================================================
   VARIABLES
========================================================= */

:root {
    --moore-dark: #02212e;
    --moore-blue: #004c6c;
    --moore-cyan: #00aeef;
    --moore-purple: #5c0696;
    --moore-white: #ffffff;
    --header-height: 76px;
    --text-color: #02212E;
}

/* =========================================================
   BASE
========================================================= */

html,
body {
    font-family: "Montserrat", sans-serif !important;
}

body {
    padding-top: 112px !important;
    /* 36px topbar + 76px header */
}

p,
.body {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0 0 1.5em;
    line-height: 1.5;
}

/* =========================================================
   TYPOGRAPHY — Headings
========================================================= */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.25;
    margin: 0 0 1rem;
    text-wrap: balance;
    font-weight: 500;
    color: var(--text-color);
}

/* H1 — Desktop: 56/56, letter-spacing 5%, uppercase */
h1,
.h1 {
    font-size: 56px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* H2 — Desktop: 48/48, letter-spacing 5%, uppercase */
h2,
.h2 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* H3 — Desktop: 40/40, letter-spacing 5%, uppercase */
h3,
.h3 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* H4 — Desktop: 32/32, letter-spacing 5%, uppercase */
h4,
.h4 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* H5 — Desktop: 48/56, sentence case */
h5,
.h5 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: normal;
}

/* H6 — Desktop: 40/48 */
h6,
.h6 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    letter-spacing: normal;
}

/* H7 — Desktop: 32/40 */
.h7 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    letter-spacing: normal;
    color: var(--text-color);
}

/* H8 — Desktop: 24/32 */
.h8 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: normal;
    color: var(--text-color);
}

/* =========================================================
   UTILITIES
========================================================= */

.rts-section-gap {
    padding: 64px 0;
}

.rts-btn.btn-primary-moore {
    background: var(--moore-purple);
    color: #fff;
    border: 2px solid var(--moore-purple);
    font-size: 18px;
    font-weight: 400;
    border-radius: 0px;
    padding: 16px 24px;
}

.rts-btn.btn-primary-moore:hover {
    background-color: #7E0FC8;
    border: 3px solid #7E0FC8;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0px;
    padding: 16px 24px;
}

/* =========================================================
   TOPBAR
========================================================= */

.header-topbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.header-topbar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-topbar-inner a {
    color: var(--moore-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.header-topbar-inner a:hover,
.header-topbar-inner a.topbar-lang-active {
    color: var(--moore-dark);
}

.header-topbar-inner span {
    color: var(--moore-dark);
    font-size: 13px;
}

/* =========================================================
   MAIN HEADER
========================================================= */

.main-header,
.main-header * {
    font-family: "Montserrat", sans-serif;
}

.main-header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}

.main-header.scrolled .header-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {
    max-width: 100%;
    margin: 0px auto 0;
    height: 76px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =========================================================
   HEADER LEFT
========================================================= */

.header-left {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}

/* =========================================================
   BURGER / MENU TOGGLE
========================================================= */

.menu-toggle {
    width: 76px;
    min-width: 76px;
    border: none;
    border-right: 1px solid #ececec;
    background: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #111;
    display: block;
}

/* =========================================================
   LOGO
========================================================= */

.logo {
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    text-decoration: none;
}

.logo img {
    height: 34px;
    width: auto;
    display: block;
}

/* =========================================================
   MAIN NAV
========================================================= */

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-right: 15px;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    text-decoration: none;
    color: #02212e;
    font-size: 18px;
    font-weight: 400;
    font-family: "Montserrat";
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.nav-link:hover {
    color: var(--moore-dark);
}

.nav-link--active {
    font-weight: 600;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 4px;
    background: var(--moore-cyan);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav-link:hover::after,
.nav-link--active::after {
    opacity: 1;
}

.nav-chevron {
    font-size: 10px;
    margin-left: 6px;
}

/* =========================================================
   DROPDOWN
========================================================= */

.nav-dropdown {
    position: absolute;
    top: 76px;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-top: 4px solid var(--moore-cyan);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s;
    z-index: 999;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
}

.nav-dropdown a:hover {
    background: #f8f8f8;
    color: var(--moore-cyan);
}

/* =========================================================
   HEADER RIGHT
========================================================= */

.header-right {
    display: flex;
    flex-shrink: 0;
}

/* =========================================================
   CTA BUTTON
========================================================= */

.contact-btn {
    width: 180px;
    height: 75px;
    background: var(--moore-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s;
}

.contact-btn:hover {
    background: #470574;
    color: #fff;
}

/* =========================================================
   SEARCH BUTTON
========================================================= */

.search-btn {
    width: 76px;
    height: 75px;
    border: none;
    background: var(--moore-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    stroke: #fff;
}

/* =========================================================
   SEARCH BAR
========================================================= */

.search-bar {
    position: fixed;
    left: 0;
    right: 0;
    top: 116px;
    height: 0;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #ececec;
    transition: 0.3s;
    z-index: 9998;
}

.search-bar.active {
    height: 80px;
}

.search-bar-inner {
    max-width: 1440px;
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
}

.search-close {
    border: none;
    background: none;
    cursor: pointer;
}

/* =========================================================
   OVERLAY — Structure générale
========================================================= */

.moore-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(94.2deg, #02212e 15.84%, #004c6c 83.52%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.moore-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   OVERLAY — Header
========================================================= */

.overlay-header-container {
    max-width: 100%;
    margin: 0;
    height: 76px;
    display: flex;
    align-items: stretch;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    flex-shrink: 0;
}

.overlay-close-toggle {
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff;
}

.overlay-close-toggle span {
    background: #fff;
}

.overlay-header-container .logo {
    padding: 0 40px;
}

/* =========================================================
   OVERLAY — Nav (header bar)
========================================================= */

.overlay-nav .nav-link {
    color: rgba(255, 255, 255, 1);
}

.overlay-nav .nav-link:hover {
    color: #fff;
}

.overlay-nav .nav-link--active,
.overlay-nav .nav-link.active {
    color: #fff;
    font-weight: 600;
}

.overlay-nav .nav-link::after {
    background: var(--moore-cyan);
}

.overlay-contact-btn {
    background: var(--moore-purple) !important;
}

.overlay-contact-btn:hover {
    background: transparent;
}

/* =========================================================
   OVERLAY — Body
========================================================= */

.moore-overlay-body {
    height: calc(100vh - 166px);
    display: grid;
    grid-template-columns: 420px 1fr;
}

/* =========================================================
   OVERLAY — Left column (main nav)
========================================================= */

.overlay-main-nav {
    position: relative;
    padding: 65px 0 55px 80px;
}

.overlay-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.overlay-main-nav li {
    margin-bottom: 22px;
}

.overlay-main-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.25s;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 35px;
}

.overlay-main-link:hover {
    color: #fff;
}

.overlay-main-link.active {
    color: #fff;
}

.overlay-main-link.active::before {
    content: "•";
    color: #c5e538;
    font-size: 42px;
    margin-right: 15px;
}

/* =========================================================
   OVERLAY — Right column (sub nav)
========================================================= */

.overlay-sub-nav {
    padding: 65px 70px;
    overflow-y: auto;
}

.overlay-panel {
    display: none;
}

.overlay-panel.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 60px;
}

.overlay-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.overlay-panel li {
    margin-bottom: 16px;
}

.overlay-panel a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.95;
    transition: 0.2s;
}

.overlay-panel a:hover {
    color: #00aeef;
}

.overlay-empty {
    display: flex;
    align-items: flex-start;
}

.overlay-empty a {
    color: transparent;
    text-decoration: none;
    font-size: 42px;
    font-weight: 600;
}

/* =========================================================
   OVERLAY — Footer
========================================================= */

.moore-overlay-footer {
    height: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    padding: 0 55px;
}

.overlay-lang {
    display: flex;
    align-items: center;
    gap: 14px;
}

.overlay-lang a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.overlay-lang span {
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   BANNER / HERO
========================================================= */

.hero-moore::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 33, 46, .80) 0%,
            rgba(2, 33, 46, .55) 40%,
            rgba(2, 33, 46, .20) 100%);
}

.hero-moore .container {
    position: relative;
    z-index: 2;
}

.banner-style-one .banner-one-inner {
    width: 98%;
    margin-left: auto;
    padding: 160px 450px 190px 0;
    position: relative;
    display: block;
    margin-top: 43px;
}

.banner-style-one .banner-one-inner .title {
    font-weight: 600;
    margin-bottom: 23px;
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    color: #ffffff;
    line-height: 1.3;
}

.banner-style-one .banner-one-inner p.disc.banner-para {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.banner-style-one .banner-one-inner .pre-title span {
    color: #ffffff;
    font-weight: 400;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.left-thumbnail-about-area-two {
    display: flex;
    justify-content: center;
    margin: auto;
    position: relative;
}

.title-style-two .title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.35;
}

.about-inner-content-two .about-between-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 0px;
}

.about-inner-content-two .about-between-wrapper p.disc {
    max-width: fit-content;
    font-size: 16px;
}

.about-btn-area {
    margin-top: 45px;
}

h2.title.rts-text-anime-style-1 {
    font-size: 46px;
    font-weight: 500;
    color: #02212E;
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.moore-services-section {
    background: #fff;
    overflow: hidden;
}

.services-top {
    margin-bottom: 60px;
    padding-left: 220px;
}

.services-label {
    color: #00AEEF;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.services-wrapper {
    display: flex;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.services-vertical {
    width: 80px;
    min-width: 80px;
    border-right: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.services-vertical span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
    letter-spacing: 2px;
    color: #222;
    margin-top: 35px;
}

.services-slider-container {
    width: calc(100% - 80px);
}

.mooreServicesSlider {
    overflow: hidden;
}

.service-card {
    display: block;
    text-decoration: none;
    height: calc(100% - 60px);
    padding: 1.875rem 24px;
    min-height: 470px;
    border-right: 1px solid #e5e5e5;
    background: #fff;
    transition: .3s;
}

.service-card:hover {
    background: #ace6ff40;
}

.service-icon {
    height: 180px;
    margin-bottom: 72px;
}

.service-icon img {
    width: 100px;
    height: auto;
}

.service-card h3 {
    font-size: 28px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 35px;
    font-weight: 400;
}

.services-footer-nav {
    height: 70px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.services-pagination {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.services-pagination .line {
    width: 40px;
    height: 1px;
    background: #000;
    margin: 0 15px;
}

.services-arrows {
    display: flex;
    margin-left: auto;
}

.services-arrows button {
    width: 45px;
    height: 45px;
    border: none;
    background: #f3f3f3;
    color: #02212E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    border-left: 1px solid #e5e5e5;
}

.services-arrows button i {
    font-size: 18px;
    transition: all .3s ease;
}

.services-arrows button:hover {
    background: #00AEEF;
    color: #fff;
}

.services-arrows button:active {
    transform: scale(.97);
}

.services-arrows button:focus {
    outline: none;
    box-shadow: none;
}

/* =========================================================
   COUNTERS
========================================================= */

.counter-main-wrapper-area-start-6 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid transparent;
}

.single-counter-area-main {
    text-align: center;
    padding: 90px 55px 73px 55px;
    border-right: 1px solid #e5e5e5;
}

.single-counter-area-main:last-child {
    border-right: none;
}

.counter-main-wrapper-area-start-6 .single-counter-area-main .title {
    line-height: 60px;
    font-weight: 600;
    text-align: center;
    font-size: 45px;
    margin-bottom: 3px;
    color: #000000;
}

.counter-main-wrapper-area-start-6 .single-counter-area-main span.bottom {
    font-weight: 400;
    font-size: 20px;
    text-transform: unset;
    color: #000000;
}

.single-counter-area-main .bottom {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 60px;
    line-height: 1.4;
    text-align: center;
}

/* =========================================================
   FOOTER
========================================================= */

.moore-footer {
    position: relative;
}

/* CTA Bar */

.footer-cta {
    clip-path: polygon(0 20px, 100% 0%, 100% 100%, 0 100%);
    padding-top: 30px;
    background: linear-gradient(109.01deg, #552E91 40.11%, #2CAAE1 102.55%);
    height: 130px;
}

.footer-cta-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 25px;
}

.footer-cta-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 23px;
    text-decoration: none;
    transition: .25s;
    white-space: nowrap;
    display: inline-block;
}

.footer-cta-btn--purple {
    background: var(--moore-purple);
    color: #fff;
    border: 2px solid var(--moore-purple);
    font-size: 18px;
    font-weight: 400;
}

.footer-cta-btn--purple:hover {
    background-color: #7E0FC8;
    border: 3px solid #7E0FC8;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.footer-cta-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 18px;
    font-weight: 400;
}

.footer-cta-btn--outline:hover {
    background: #fff;
    color: #5C0696;
    font-size: 18px;
    font-weight: 400;
}

/* Main Footer */

.footer-main {
    background: #02212E;
    padding: 15px;
    height: 275px;
}

a.footer-logo.d-inline-block {
    margin-top: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-nav-list {
    columns: 2;
    column-gap: 40px;
}

.footer-nav-list li {
    margin-bottom: 16px;
    break-inside: avoid;
}

.footer-nav-list a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: color .2s;
}

.footer-nav-list a:hover {
    color: #fff;
}

.footer-social.d-flex.gap-3 {
    margin-top: 20px;
}

.footer-social-link {
    color: rgba(255, 255, 255, 1);
    transition: color .2s;
    display: flex;
    align-items: center;
}

.footer-social-link:hover {
    color: var(--moore-cyan);
}

/* Bottom Bar */

.footer-bottom {
    background: #02212E;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
}

hr:not([size]) {
    height: 1px;
    margin: 0px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: color .2s;
    font-weight: 400;
}

.footer-bottom-link:hover {
    color: #fff;
}

.footer-bottom-credit {
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.footer-bottom-credit a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-credit a:hover {
    color: #fff;
}


/* =========================================================
   NEWS SECTION
========================================================= */

.moore-news-section {
    padding: 0px 0;
    background: #ffffff;
}

.moore-news-section .services-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.moore-view-all {
    color: var(--moore-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moore-view-all:hover {
    color: var(--moore-cyan);
}

/* =========================================================
   SWIPER
========================================================= */

.mooreNewsSlider {
    overflow: visible;
}

.mooreNewsSlider {
    padding-left: 68px;
    padding-right: 60px;
}

.mooreNewsSlider .swiper-slide {
    height: auto;
}

/* =========================================================
   CARD
========================================================= */

.moore-news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    transition: all .3s ease;
    border: 9px solid #9aa6ab;
    background: #fff;
}

.moore-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* =========================================================
   IMAGE
========================================================= */

.moore-news-card__image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.moore-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.moore-news-card:hover .moore-news-card__image img {
    transform: scale(1.05);
}

/* =========================================================
   CATEGORY
========================================================= */
.moore-news-card__category {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.moore-news-card__category::before {
    content: '•';
    color: #b9ff2f;
    margin-right: 8px;
}


/* =========================================================
   CONTENT
========================================================= */
.moore-news-card__body {
    flex:1;
    display:flex;
    flex-direction:column;
    padding:35px;
    background:linear-gradient(
        90deg,
        #6529aa 0%,
        #3f9ae1 100%
    );
}

.moore-news-card__title {
    color:#fff;
    font-size:27px;
    line-height:1.2;
    font-weight:300;
    margin:0;
    flex:1;
}


.moore-news-card__meta {
    margin-top:40px;
    display:flex;
    gap:25px;
    align-items:center;
    color:#fff;
    font-size:14px;
}

.moore-news-card__meta strong{
    font-weight:700;
}

/* =========================================================
   FOOTER NAV
========================================================= */

.moore-news-section .services-footer-nav {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.moore-news-section .services-pagination {
    display: flex;
    align-items: center;
    gap: 15px;
}

.moore-news-section .services-pagination .line {
    width: 60px;
    height: 1px;
    background: #999;
}

.moore-news-section .services-arrows {
    display: flex;
    gap: 0;
}

.moore-news-section .services-arrows button {
    width: 48px;
    height: 48px;
    border: none;
    background: #f0f0f0;
    transition: .2s;
}

.moore-news-section .services-arrows button:hover {
    background: #e5e5e5;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .moore-news-card__image {
        height: 220px;
    }

    .moore-news-card__title {
        font-size: 22px;
    }

}

@media (max-width: 767px) {

    .moore-news-section .services-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 46px;
    }

    .moore-news-card__image {
        height: 200px;
    }

    .moore-news-card__title {
        font-size: 20px;
    }
    .counter-main-wrapper-area-start-6 .single-counter-area-main {
        padding: 20px 0px 0px 20px !important;
        border-right: 1px solid rgb(32 40 45 / 0%);
    }
    .mooreNewsSlider {
        padding-left: 0px;
        padding-right: 0px;
    }
    .moore-network-content {
        padding: 15px !important;
    }

}


/* =========================================================
   MOORE GLOBAL BANNER
========================================================= */
.moore-network-section {
    padding: 0;
    border-top: 1px solid #e5e5e5;
}

.moore-network-wrapper {
    display: flex;
    min-height: 420px;
}

.moore-network-vertical {
    width: 48px;
    border-right: 1px solid #e5e5e5;
    position: relative;
}

.moore-network-vertical span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
}

.moore-network-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px;
}

.moore-network-logo {
    width: 220px;
    flex-shrink: 0;
}

.moore-network-logo img {
    width: 100%;
    display: block;
}

.moore-network-text {
    max-width: 700px;
}

.moore-network-text {
    max-width: 600px;
    text-transform: capitalize;
    line-height: 1.25;
    font-family: 'Montserrat';
    padding-bottom: 20px;
}

.moore-network-paragraphe {
    font-size: 18px;
    line-height: 1.5;
    color: #02212e;
    margin-bottom: 30px;
}



.moore-content-global {
    display: flex;
    justify-content: space-around;
}

.counter-main-wrapper-area-start-6 .single-counter-area-main {
    padding: 90px 55px 73px 55px;
    border-right: 1px solid rgb(32 40 45 / 0%);
}

/* =========================================================
   MEDIA QUERIES
========================================================= */

/* ── ≤ 1200px ─────────────────────────────────────────── */
@media (max-width: 1200px) {
    .main-nav {
        display: none;
    }

    .logo {
        flex: 1;
    }
}

/* ── ≤ 991px ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .services-vertical {
        display: none;
    }

    .services-slider-container {
        width: 100%;
    }

    .services-top {
        padding-left: 0;
    }

    .service-card {
        min-height: auto;
    }
}

/* ── ≤ 768px ──────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Base */
    body {
        padding-top: 76px !important;
    }

    /* Topbar */
    .header-topbar {
        display: none;
    }

    /* Header */
    .main-header {
        top: 0 !important;
    }

    .header-container {
        margin: 0;
        border: none;
        max-width: none;
        width: 100%;
    }

    .contact-btn {
        display: none;
    }

    .logo {
        padding: 0 20px;
    }

    .logo img {
        height: 28px;
    }

    .search-btn,
    .menu-toggle {
        width: 70px;
    }

    /* Typography */
    h1,
    .h1 {
        font-size: 40px;
        line-height: 40px;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 32px;
    }

    h3,
    .h3 {
        font-size: 24px;
        line-height: 24px;
    }

    h4,
    .h4 {
        font-size: 20px;
        line-height: 20px;
    }

    h5,
    .h5 {
        font-size: 32px;
        line-height: 40px;
    }

    h6,
    .h6 {
        font-size: 24px;
        line-height: 32px;
    }

    .h7 {
        font-size: 20px;
        line-height: 28px;
    }

    /* Banner */
    .banner-style-one .banner-one-inner {
        padding: 10px 0px 60px 0;
        margin-top: 43px;
    }

    .banner-style-one .banner-one-inner .title {
        font-size: 36px;
    }

    /* Overlay header */
    .overlay-header-container {
        max-width: 100%;
        margin: 0;
        height: 76px;
        display: flex;
        align-items: stretch;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
        flex-shrink: 0;
        justify-content: space-between;
    }

    .moore-overlay-content {
        padding: 40px;
    }

    .moore-overlay-content a {
        font-size: 34px;
    }

    /* Footer CTA */
    .footer-cta {
        padding-top: 45px;
        padding-bottom: 45px;
        height: 180px;
    }

    .footer-cta-text {
        font-size: 18px;
        margin-bottom: 25px !important;
    }

    .footer-cta .col-auto {
        width: 100%;
    }

    .footer-cta .d-flex {
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    /* Footer main */
    .footer-main {
        padding: 15px;
        height: 100%;
    }

    .footer-nav-list {
        columns: 2 !important;
        column-gap: 20px;
    }

    .footer-social {
        flex-direction: row !important;
        flex-wrap: nowrap;
    }

    /* Footer bottom */
    .footer-bottom {
        padding-bottom: 15px;
    }

    .footer-bottom .d-flex {
        flex-wrap: nowrap;
        gap: 16px !important;
        justify-content: center;
    }

    .footer-bottom-link {
        font-size: 16px;
    }

    .footer-bottom .text-lg-end {
        text-align: center !important;
        display: none;
    }

    hr:not([size]) {
        display: none;
    }

    .counter-main-wrapper-area-start-6 {
        display: flex;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        border: 1px solid transparent;
        align-content: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Nth-child fix */
    body>footer>div.footer-main>div>div>div.col-lg-6.mb-4.mb-lg-0>ul>li:nth-child(4) {
        margin-top: 10px !important;
    }
}