/* MOVERS Home — layout fixes */

.page-home .site-main {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.home-hero,
.home-updates,
.home-about,
.home-chartering,
.home-operation {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    clear: both;
    isolation: isolate;
}

.page-home .footer-figma {
    position: relative;
    z-index: 2;
    clear: both;
}

/* MOVERS Home — Figma pixel-perfect (1420px artboard) */

/* Exact design tokens at 1420px viewport */
@media (min-width: 1420px) {
    .home-hero__description {
        font-size: 18px;
        max-width: 520px;
    }

    .home-updates__title {
        font-size: 2.5rem;
    }

    .home-stat-card__value {
        flex-basis: 7.25rem;
        width: 7.25rem;
        font-size: 5.5rem;
    }

    .home-stat-card__value--wide {
        font-size: 4.5rem;
    }

    .home-stat-card__label-lead {
        font-size: 1.625rem;
    }

    .home-stat-card__label-tail {
        font-size: 1rem;
    }

    .home-about__title {
        font-size: 3rem;
    }

    .home-about__text {
        font-size: 1.125rem;
    }

    .home-chartering__title {
        font-size: 2.25rem;
    }

    .home-chartering__text {
        font-size: 1rem;
    }

    .home-operation__highlight-value {
        font-size: 3.25rem;
    }

    .home-operation__highlights {
        padding: 0 0.75rem;
    }

    .home-operation__title {
        font-size: 2.35rem;
    }

    .home-operation__text {
        font-size: 1rem;
    }
}

/* Header — referans: logo solda, menü hemen sağında (sağa yapışık değil) */
.page-home .site-header--over-hero:not(.site-header--stuck) {
    background: transparent;
}

.page-home .site-header--over-hero.site-header--stuck {
    background: rgba(0, 0, 0, 0.82) !important;
}

.page-home .navbar-movers,
.page-home .site-header--over-hero .navbar-movers {
    background: transparent !important;
}

.page-home .navbar-movers--home {
    padding: clamp(1.15rem, 2.2vw, 1.85rem) 0;
}

@media (min-width: 992px) {
    .navbar-movers--home > .container-xl.navbar-movers__home-inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start !important;
        padding-left: clamp(1rem, 3.5vw, 3rem);
        padding-right: clamp(1rem, 3.5vw, 3rem);
    }

    .navbar-movers__home-inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start !important;
        padding-left: clamp(1rem, 3.5vw, 3rem);
        padding-right: clamp(1rem, 3.5vw, 3rem);
    }

    .navbar-movers--home .navbar-brand {
        flex: 0 0 auto;
        margin-right: 0;
    }

    .navbar-movers--home .navbar-brand .movers-logo__img {
        height: clamp(42px, 3.8vw, 56px);
        width: auto;
        max-width: clamp(160px, 16vw, 230px);
    }

    .navbar-movers--home .navbar-collapse,
    .navbar-movers__collapse-home {
        display: flex !important;
        flex: 0 0 auto;
        flex-grow: 0 !important;
        width: auto !important;
        justify-content: flex-start;
        margin-left: clamp(1.75rem, 4vw, 3.25rem);
    }

    .navbar-movers__nav-home {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: auto;
        gap: clamp(0.1rem, 0.45vw, 0.3rem);
    }

    .page-home .navbar-movers--home .nav-link {
        font-size: clamp(0.72rem, 0.85vw, 0.8125rem);
        letter-spacing: 0.08em;
        padding: 0.4rem clamp(0.45rem, 0.7vw, 0.7rem) !important;
        white-space: nowrap;
    }
}

@media (min-width: 1200px) {
    .navbar-movers--home .navbar-brand .movers-logo__img {
        height: clamp(48px, 3.5vw, 58px);
        max-width: clamp(190px, 15vw, 250px);
    }

    .navbar-movers--home .navbar-collapse,
    .navbar-movers__collapse-home {
        margin-left: clamp(2rem, 4.5vw, 3.5rem);
    }
}

@media (min-width: 1420px) {
    .navbar-movers--home .navbar-brand .movers-logo__img {
        height: 56px;
        max-width: 240px;
    }

    .navbar-movers--home .navbar-collapse,
    .navbar-movers__collapse-home {
        margin-left: 3rem;
    }

    .page-home .navbar-movers--home .nav-link {
        font-size: 0.8125rem;
        padding: 0.45rem 0.7rem !important;
    }
}

@media (max-width: 991.98px) {
    .page-home .site-header--over-hero:not(.site-header--stuck) {
        background: transparent;
    }

    .navbar-movers__home-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-home .navbar-movers .navbar-collapse {
        background: rgba(0, 0, 0, 0.85);
    }

    .page-home .navbar-movers__mobile-bar .movers-logo__img {
        height: clamp(40px, 11vw, 48px);
        max-width: min(220px, 62vw);
    }
}

/* Hero slider */
.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    color: var(--movers-white);
    background-color: #0a2540;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0a2540;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.home-hero__slide.is-active {
    opacity: 1;
}

.home-hero__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 15, 30, 0.55) 0%,
        rgba(0, 30, 60, 0.25) 50%,
        rgba(0, 40, 80, 0.2) 100%
    );
}

.home-hero__content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    min-height: 100dvh;
    display: block;
    padding-top: clamp(5.5rem, 8vw, 7.5rem);
    padding-bottom: 4.5rem;
    pointer-events: none;
}

.home-hero__content .row {
    min-height: calc(100vh - 10rem);
    min-height: calc(100dvh - 10rem);
    align-items: center;
}

.home-hero__content .col-lg-7,
.home-hero__content .home-hero__text-block,
.home-hero__content .home-hero__nav,
.home-hero__content button {
    pointer-events: auto;
}

.home-hero__text-block {
    text-align: left;
}

.hero-text-item {
    display: none;
}

.hero-text-item.is-active {
    display: block;
}

.home-hero .hero-copy {
    max-width: 100%;
}

.home-hero .hero-subtitle {
    margin-bottom: 1.25rem;
}

.home-hero__description {
    font-family: var(--font-poppins, 'Poppins', sans-serif);
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.65;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem;
}

.home-hero__nav {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 5;
}

.home-hero__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    padding: 0;
    font-size: 1.25rem;
}

.home-hero__arrow:hover,
.home-hero__arrow:focus-visible {
    background: #ffffff;
    color: #1a2b48;
    border-color: #ffffff;
    outline: none;
}

.home-hero__arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.home-hero__dots {
    display: none;
}

.home-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    cursor: pointer;
}

.home-hero__dot.is-active {
    background: var(--movers-teal);
    transform: scale(1.15);
}

/* Updates on Movers */
.home-updates {
    background: #f4f7f6;
    padding: 4.5rem 0 4rem;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
}

.home-updates__title {
    font-family: var(--font-poppins, 'Poppins', sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--movers-navy);
    text-align: center;
    margin: 0 0 2.5rem;
}

.home-updates__viewport {
    overflow: hidden;
    margin: 0 auto;
    max-width: 1140px;
}

.home-updates__track {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-update-card {
    flex: 0 0 calc((100% - 3.5rem) / 3);
    min-width: 0;
    background: var(--movers-white);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 31, 63, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

a.home-update-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.home-update-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 31, 63, 0.12);
}

.home-update-card__img-wrap {
    padding: 1rem 1rem 0;
}

.home-update-card__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    background: #e8ecef;
}

.home-update-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c8d0;
    font-size: 2.5rem;
}

.home-update-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-update-card__title {
    font-family: var(--font-poppins, 'Poppins', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--movers-navy);
    margin: 0 0 1rem;
    flex-grow: 1;
}

.home-update-card__more {
    align-self: flex-end;
    font-family: var(--font-poppins, 'Poppins', sans-serif);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--movers-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.home-update-card__more:hover {
    color: var(--movers-navy);
}

.home-updates__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.home-updates__arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #d8dde3;
    color: var(--movers-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.35rem;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}

.home-updates__arrow:hover:not(:disabled) {
    background: #c0c8d0;
    transform: scale(1.05);
}

.home-updates__arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 991.98px) {
    .home-update-card {
        flex: 0 0 calc((100% - 1.75rem) / 2);
    }
}

@media (max-width: 575.98px) {
    .home-update-card {
        flex: 0 0 100%;
    }

    .home-updates__viewport {
        max-width: 340px;
    }
}

/* ─── About Movers — referans tasarım ─── */
.home-about {
    --about-font-display: 'Montserrat', 'Poppins', sans-serif;
    --about-font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
    position: relative;
    background-color: #021428;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.home-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 992px) {
    .home-about__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        gap: 1.25rem;
    }

    .home-about__stats {
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 1.125rem;
        min-height: 100%;
    }

    .home-stat-card {
        min-height: 0;
        height: 100%;
    }
}

.home-about__grid--solo {
    grid-template-columns: 1fr;
}

/* Sol kolon — 3 kart alt alta, borderlar ayrı */
.home-about__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125rem;
    min-width: 0;
}

.home-about__main {
    display: flex;
    min-width: 0;
    min-height: 0;
}

@media (min-width: 992px) {
    .home-about__main {
        min-height: 100%;
    }
}

.home-stat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
    padding: clamp(1.15rem, 1.8vw, 1.4rem) clamp(1.25rem, 2vw, 1.65rem);
    min-height: 108px;
    flex-shrink: 0;
}

.home-about-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
/*    border-radius: 24px;
*/    border: none;
    background: transparent;
    box-shadow: none;
}

.home-about__panel.home-about-card {
/*    border-radius: clamp(32px, 4vw, 48px);
*/}

.home-about__card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.home-about-card > *:not(.home-about__card-bg) {
    position: relative;
    z-index: 1;
}

/* Stat kart — sabit genişlikte dolu rakam + hizalı metin */
.home-stat-card__value {
    flex: 0 0 clamp(5.5rem, 9vw, 7.25rem);
    width: clamp(5.5rem, 9vw, 7.25rem);
    align-self: center;
    font-family: var(--about-font-display);
    font-size: clamp(3.5rem, 5.5vw, 5.5rem);
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.home-stat-card__value--wide {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    letter-spacing: -0.055em;
}

.home-stat-card__label {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    font-family: var(--about-font-display);
    letter-spacing: -0.02em;
}

.home-stat-card__label-lead {
    display: block;
    font-size: clamp(1.375rem, 1.75vw, 1.625rem);
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin: 0;
}

.home-stat-card__label-tail {
    display: block;
    font-size: clamp(0.875rem, 1.05vw, 1rem);
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin: 0.2rem 0 0;
}

/* Sağ — About Movers panel (tam yükseklik) */
.home-about__panel {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: clamp(2rem, 3vw, 2.5rem) clamp(1.75rem, 2.5vw, 2.25rem);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.home-about__title {
    font-family: var(--about-font-display);
    font-size: clamp(2.25rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1.35rem;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.home-about__text {
    font-family: var(--about-font-body);
    font-size: clamp(0.9375rem, 1.05vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #ffffff;
    flex: 1 1 auto;
}

.home-about__text p {
    margin: 0 0 0.7rem;
}

.home-about__text p:last-child {
    margin-bottom: 0;
}

.home-about__cta {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 1.25rem;
}

.home-about__btn.btn-movers {
    font-family: var(--about-font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff !important;
    background: linear-gradient(180deg, #00c8f0 0%, #00a5d4 100%) !important;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 18px rgba(0, 168, 212, 0.45);
}

.home-about__btn.btn-movers:hover {
    color: #ffffff !important;
    background: linear-gradient(180deg, #00d4fa 0%, #00b0e0 100%) !important;
    transform: translateY(-1px);
}

/* Chartering — açık gri bg, sol metin sağa hizalı, sağ dikey foto + gölge */
.home-chartering {
    background: #f4f7f6;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.home-chartering__grid {
    --bs-gutter-x: 2rem;
}

.home-chartering__content {
    min-width: 0;
}

@media (min-width: 992px) {
    .home-chartering__content {
        padding-right: clamp(0.5rem, 2vw, 1.5rem);
    }
}

.home-chartering__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .home-chartering__media {
        justify-content: flex-end;
    }
}

.home-chartering__title {
    font-family: 'Poppins', var(--font-poppins, sans-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #000000;
    text-align: left;
    margin: 0 0 1.25rem;
}

@media (min-width: 992px) {
    .home-chartering__title {
        text-align: right;
    }
}

/* Figma: Poppins Regular 16px, line-height 145%, letter-spacing -1% */
.home-chartering__text {
    font-family: 'Poppins', var(--font-poppins, sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: #000000;
    text-align: left;
}

@media (min-width: 992px) {
    .home-chartering__text {
        text-align: right;
    }
}

.home-chartering__text p {
    margin: 0 0 1rem;
}

.home-chartering__text p:last-child {
    margin-bottom: 0;
}

.home-chartering__figure {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 22rem;
}

.home-chartering__image-wrap {
    overflow: hidden;
    border-radius: 3rem;
    line-height: 0;
}

.home-chartering__figure::before {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    top: 10%;
    bottom: -8%;
    border-radius: 3rem;
    background: rgba(0, 31, 63, 0.14);
    filter: blur(28px);
    z-index: 0;
    pointer-events: none;
}

.home-chartering__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 462;
    border: none;
    outline: none;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
    transform: scale(1.03);
    transform-origin: center center;
}

@media (max-width: 991.98px) {
    .home-about__stats {
        grid-template-rows: none;
    }

    .home-about__panel {
        min-height: auto;
        height: auto;
    }
}

/* Yalnızca dar mobilde üst üste */
@media (max-width: 767.98px) {
    .home-stat-card {
        min-height: 100px;
    }

    .home-chartering__figure {
        max-width: 18rem;
    }

    .home-chartering__image-wrap {
        border-radius: 2.25rem;
    }

    .home-chartering__figure::before {
        border-radius: 2.25rem;
    }
}

/* Operation — referans: radial mavi bg, sol gear, sağ kart, ayırıcı çizgi yok */
.home-operation {
    position: relative;
    background-color: #021428;
    background-image:
        radial-gradient(ellipse 70% 85% at 28% 52%, rgba(12, 72, 168, 0.42) 0%, transparent 62%),
        radial-gradient(ellipse 90% 100% at 72% 48%, rgba(4, 28, 72, 0.35) 0%, transparent 58%),
        linear-gradient(152deg, rgba(2, 24, 58, 0.55) 0%, rgba(6, 58, 138, 0.48) 52%, rgba(3, 32, 78, 0.62) 100%),
        url('/images/operation-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: clamp(3.75rem, 7vw, 5.75rem) 0;
    overflow: hidden;
}

.home-operation__grid {
    --bs-gutter-x: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.home-operation__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.home-operation__visual-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
}

.home-operation__highlights {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 clamp(0.15rem, 1.5vw, 0.75rem);
    margin-bottom: clamp(0.15rem, 0.8vw, 0.35rem);
}

.home-operation__highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.home-operation__highlight--days {
    margin-left: clamp(0.25rem, 2vw, 1rem);
}

.home-operation__highlight--availability {
    margin-right: clamp(0.25rem, 2vw, 1rem);
}

.home-operation__gear-wrap {
    position: relative;
    width: 100%;
    max-width: 23rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-operation__highlight-value {
    font-family: var(--about-font-display);
    font-size: clamp(2.5rem, 4.2vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.home-operation__highlight-label {
    font-family: var(--about-font-display);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-top: 0.12rem;
}

.home-operation__main {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .home-operation__visual {
        padding-bottom: 0.5rem;
    }

    .home-operation__main {
        display: block;
    }
}

.home-operation__glow {
    position: absolute;
    width: 120%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.home-operation__gear {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 24rem;
    height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.38));
}

.home-operation-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: clamp(2rem, 3.2vw, 2.75rem) clamp(1.75rem, 2.8vw, 2.5rem);
    display: flex;
    flex-direction: column;
}

.home-operation-card > *:not(.home-about__card-bg) {
    position: relative;
    z-index: 1;
}

.home-operation__title {
    font-family: var(--about-font-display);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.home-operation__text {
    font-family: var(--about-font-body);
    font-size: clamp(0.9375rem, 1.05vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.home-operation__text p {
    margin: 0 0 1rem;
}

.home-operation__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .home-hero__content {
        padding-top: 7rem;
    }
}
