body.owcontact-page {
    --owct-blue: #0c53a5;
    --owct-accent: #20a9e0;
    --owct-navy: #022041;
    --owct-deep: #011426;
    --owct-white: #ffffff;
    --owct-line: rgba(255,255,255,.18);

    margin: 0;
    background: #ffffff;
}

body.owcontact-page *,
body.owcontact-page *::before,
body.owcontact-page *::after {
    box-sizing: border-box;
}

/* CONTACT HERO ACG V1 START */

body.owcontact-page .owct1-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(680px, 78vh, 840px);
    display: flex;
    align-items: center;
    overflow: hidden;
    direction: rtl;
    color: var(--owct-white);
    background: var(--owct-deep);
}

body.owcontact-page .owct1-hero__media {
    position: absolute;
    z-index: -4;
    inset: 0;
    margin: 0;
    overflow: hidden;
}

body.owcontact-page .owct1-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transform: scale(1.015);
}

body.owcontact-page .owct1-hero__overlay {
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(1,20,38,.34) 0%,
            rgba(2,32,65,.66) 42%,
            rgba(1,20,38,.96) 100%
        ),
        linear-gradient(
            180deg,
            rgba(1,20,38,.14) 0%,
            rgba(1,20,38,.25) 55%,
            rgba(1,20,38,.72) 100%
        );
}

body.owcontact-page .owct1-hero__pattern {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: .65;
    background:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );
    background-size: 68px 68px;
    pointer-events: none;
}

body.owcontact-page .owct1-hero__shell {
    position: relative;
    z-index: 2;
    width: min(1500px, calc(100% - 56px));
    margin-inline: auto;
    padding:
        clamp(92px, 9vw, 138px)
        0;
}

body.owcontact-page .owct1-hero__content {
    max-width: 790px;
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}

body.owcontact-page .owct1-hero__breadcrumb {
    margin-bottom: 31px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 700;
}

body.owcontact-page
.owct1-hero__breadcrumb a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
}

body.owcontact-page
.owct1-hero__breadcrumb a:hover {
    color: #71d8fb;
}

body.owcontact-page
.owct1-hero__breadcrumb i {
    color: #20a9e0;
    font-size: 8px;
}

body.owcontact-page .owct1-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #71d8fb;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 1.8px;
}

body.owcontact-page .owct1-eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--owct-accent);
}

body.owcontact-page .owct1-hero h1 {
    max-width: 790px;
    margin: 20px 0 0;
    color: #ffffff;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.42;
    letter-spacing: -1.8px;
    text-wrap: balance;
}

body.owcontact-page .owct1-hero h1 strong {
    display: block;
    color: #71d8fb;
    font-weight: 900;
}

body.owcontact-page .owct1-hero__lead {
    max-width: 710px;
    margin: 26px 0 0;
    padding-right: 21px;
    border-right: 3px solid var(--owct-accent);
    color: rgba(255,255,255,.76);
    font-size: 16px;
    font-weight: 600;
    line-height: 2.15;
}

body.owcontact-page .owct1-hero__actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.owcontact-page .owct1-button {
    min-height: 58px;
    padding:
        0
        25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition:
        transform .2s ease,
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

body.owcontact-page .owct1-button:hover {
    transform: translateY(-3px);
}

body.owcontact-page
.owct1-button--primary {
    color: var(--owct-navy);
    background: #ffffff;
    border-color: #ffffff;
}

body.owcontact-page
.owct1-button--primary:hover {
    color: #ffffff;
    background: var(--owct-blue);
    border-color: var(--owct-blue);
}

body.owcontact-page
.owct1-button--outline {
    color: #ffffff;
    background: rgba(255,255,255,.035);
    border-color: rgba(255,255,255,.35);
}

body.owcontact-page
.owct1-button--outline:hover {
    color: #71d8fb;
    border-color: #71d8fb;
}

body.owcontact-page .owct1-hero__meta {
    max-width: 760px;
    margin-top: 32px;
    padding-top: 21px;
    display: flex;
    flex-wrap: wrap;
    gap:
        13px
        27px;
    border-top: 1px solid var(--owct-line);
}

body.owcontact-page .owct1-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.60);
    font-size: 12px;
    font-weight: 700;
}

body.owcontact-page .owct1-hero__meta i {
    color: #71d8fb;
    font-size: 12px;
}

body.owcontact-page .owct1-hero__label {
    position: absolute;
    z-index: 3;
    left: clamp(20px, 4vw, 65px);
    bottom: 34px;
    display: grid;
    justify-items: end;
    gap: 3px;
    direction: ltr;
    font-family: Arial, sans-serif;
    pointer-events: none;
}

body.owcontact-page
.owct1-hero__label span {
    color: rgba(255,255,255,.80);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
}

body.owcontact-page
.owct1-hero__label strong {
    color: rgba(255,255,255,.38);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Tablet */

@media (max-width: 980px) {
    body.owcontact-page .owct1-hero {
        min-height: 720px;
    }

    body.owcontact-page
    .owct1-hero__content {
        max-width: 720px;
    }

    body.owcontact-page
    .owct1-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(1,20,38,.50) 0%,
                rgba(2,32,65,.78) 48%,
                rgba(1,20,38,.96) 100%
            );
    }
}

/* Mobile */

@media (max-width: 680px) {
    body.owcontact-page .owct1-hero {
        min-height: 690px;
        align-items: flex-start;
    }

    body.owcontact-page
    .owct1-hero__media img {
        object-position: center center;
    }

    body.owcontact-page
    .owct1-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(1,20,38,.72) 0%,
                rgba(1,20,38,.91) 55%,
                rgba(1,20,38,.98) 100%
            );
    }

    body.owcontact-page
    .owct1-hero__shell {
        width: calc(100% - 28px);
        padding:
            72px
            0
            95px;
    }

    body.owcontact-page
    .owct1-hero__breadcrumb {
        margin-bottom: 24px;
    }

    body.owcontact-page
    .owct1-hero h1 {
        font-size: 37px;
        line-height: 1.5;
        letter-spacing: -1px;
    }

    body.owcontact-page
    .owct1-hero__lead {
        padding-right: 15px;
        font-size: 14px;
        line-height: 2.1;
    }

    body.owcontact-page
    .owct1-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    body.owcontact-page
    .owct1-button {
        width: 100%;
    }

    body.owcontact-page
    .owct1-hero__meta {
        display: grid;
        gap: 11px;
    }

    body.owcontact-page
    .owct1-hero__label {
        left: 14px;
        bottom: 18px;
    }
}

/* CONTACT HERO ACG V1 END */

/* OPENWINCH CONTACT CARDS V3 START */

body.owcontact-page .contact-info {
    position: relative;
    isolation: isolate;
    padding:
        clamp(90px, 8vw, 128px)
        0;
    overflow: hidden;
    color: #022041;
    background:
        linear-gradient(
            90deg,
            rgba(12,83,165,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(12,83,165,.045) 1px,
            transparent 1px
        ),
        #eef3f7;
    background-size:
        76px 76px,
        76px 76px,
        auto;
    border-bottom: 1px solid #ccd9e2;
}

body.owcontact-page .contact-info::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    width: clamp(8px, 1vw, 15px);
    height: 100%;
    background:
        linear-gradient(
            180deg,
            #20a9e0,
            #0c53a5 45%,
            #022041
        );
}

body.owcontact-page .contact-info::after {
    content: "OPEN WINCH";
    position: absolute;
    z-index: -1;
    left: 2.5%;
    bottom: 10px;
    color: rgba(2,32,65,.035);
    font-family:
        Arial,
        sans-serif;
    font-size: clamp(78px, 11vw, 170px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    direction: ltr;
    pointer-events: none;
}

body.owcontact-page
.contact-info .contact-wrap {
    position: relative;
    z-index: 2;
    width: min(1460px, calc(100% - 56px));
    margin-inline: auto;
}

/* Header */

body.owcontact-page
.contact-info .contact-section-head {
    position: relative;
    max-width: none;
    margin:
        0
        0
        48px;
    padding:
        0
        0
        31px;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 390px);
    gap: 60px;
    align-items: end;
    border-bottom: 1px solid #c9d7e0;
}

body.owcontact-page
.contact-info .contact-section-head::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 124px;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            #20a9e0,
            #0c53a5
        );
}

body.owcontact-page
.contact-info .contact-section-head::after {
    content: "OPENWINCH CONTACT UNIT";
    align-self: end;
    justify-self: end;
    padding:
        16px
        19px;
    color: #ffffff;
    background: #022041;
    border-right: 4px solid #20a9e0;
    font-family:
        Arial,
        sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.15px;
    direction: ltr;
}

body.owcontact-page
.contact-info .contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0c53a5;
    font-family:
        Arial,
        sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    direction: ltr;
}

body.owcontact-page
.contact-info .contact-kicker::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #20a9e0;
}

body.owcontact-page
.contact-info .contact-section-head h2 {
    max-width: 850px;
    margin:
        16px
        0
        0;
    color: #022041;
    font-size: clamp(34px, 4vw, 51px);
    font-weight: 950;
    line-height: 1.5;
    letter-spacing: -1.2px;
}

body.owcontact-page
.contact-info .contact-section-head p {
    grid-column: 1;
    max-width: 790px;
    margin:
        17px
        0
        0;
    color: #536875;
    font-size: 14px;
    font-weight: 650;
    line-height: 2.1;
}

/* Grid */

body.owcontact-page .contact-info__grid {
    counter-reset: openwinch-contact;
    display: grid;
    grid-template-columns:
        repeat(12, minmax(0, 1fr));
    gap: 15px;
}

body.owcontact-page
.contact-info-card,
body.owcontact-page
.contact-info-card--wide {
    counter-increment: openwinch-contact;
    position: relative;
    grid-column: span 4 !important;
    min-width: 0;
    min-height: 245px;
    padding:
        29px
        25px
        25px;
    display: grid;
    grid-template-columns:
        56px
        minmax(0, 1fr);
    gap: 19px;
    align-items: start;
    overflow: hidden;
    border: 1px solid #cbd9e2;
    border-radius: 0 !important;
    background: #ffffff;
    box-shadow:
        0 12px 28px
        rgba(2,32,65,.055);
    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        transform .22s ease;
}

body.owcontact-page
.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            #20a9e0 0%,
            #0c53a5 55%,
            #022041 100%
        );
}

body.owcontact-page
.contact-info-card::after {
    content:
        counter(
            openwinch-contact,
            decimal-leading-zero
        );
    position: absolute;
    left: 17px;
    bottom: 10px;
    color: rgba(12,83,165,.075);
    font-family:
        Arial,
        sans-serif;
    font-size: 49px;
    font-weight: 900;
    line-height: 1;
    direction: ltr;
    pointer-events: none;
}

body.owcontact-page
.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(12,83,165,.48);
    box-shadow:
        0 23px 48px
        rgba(2,32,65,.105);
}

/* First-row quick contacts */

body.owcontact-page
.contact-info-card:nth-child(-n+3) {
    min-height: 225px;
}

body.owcontact-page
.contact-info-card:nth-child(-n+3)
.contact-info-card__body {
    padding-top: 3px;
}

/* Location cards */

body.owcontact-page
.contact-info-card:nth-child(n+4) {
    min-height: 315px;
    border-right: 5px solid #022041;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 70%,
            #f1f6f9 100%
        );
}

body.owcontact-page
.contact-info-card:nth-child(n+4)::before {
    right: 5px;
    width: calc(100% - 5px);
    background:
        linear-gradient(
            90deg,
            #20a9e0,
            #0c53a5
        );
}

body.owcontact-page
.contact-info-card:nth-child(4) {
    border-right-color: #20a9e0;
}

body.owcontact-page
.contact-info-card:nth-child(5) {
    border-right-color: #0c53a5;
}

body.owcontact-page
.contact-info-card:nth-child(6) {
    border-right-color: #022041;
}

/* Icon */

body.owcontact-page
.contact-info-card__icon {
    position: relative;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #0c53a5;
    background: #edf4f8;
    border: 1px solid #cbd9e2;
    font-size: 19px;
}

body.owcontact-page
.contact-info-card__icon::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 15px;
    height: 15px;
    border-right: 3px solid #20a9e0;
    border-bottom: 3px solid #20a9e0;
}

body.owcontact-page
.contact-info-card:nth-child(n+4)
.contact-info-card__icon {
    color: #ffffff;
    background: #022041;
    border-color: #022041;
}

/* Card typography */

body.owcontact-page
.contact-info-card__body {
    min-width: 0;
    position: relative;
    z-index: 2;
}

body.owcontact-page
.contact-info-card__body h3 {
    margin: 0;
    color: #022041;
    font-size: 17px;
    font-weight: 950;
    line-height: 1.8;
}

body.owcontact-page
.contact-info-card__body p {
    margin:
        11px
        0
        0;
    color: #526775;
    font-size: 13px;
    font-weight: 650;
    line-height: 2.05;
}

body.owcontact-page
.contact-info-card__body > span {
    display: block;
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid #dce6ec;
    color: #70828d;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.9;
}

/* Numbers and email */

body.owcontact-page
.contact-info-card__line {
    min-width: 0;
    margin-top: 10px !important;
}

body.owcontact-page
.contact-info-card__value {
    max-width: 100%;
    color: #0c53a5;
    font-weight: 950;
    text-decoration: none;
    transition: color .2s ease;
}

body.owcontact-page
.contact-info-card__value:hover {
    color: #022041;
}

body.owcontact-page
.contact-info-card__value--number {
    display: block;
    width: max-content;
    max-width: 100%;
    direction: ltr;
    unicode-bidi: isolate;
    text-align: left;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    font-family:
        Arial,
        Shabnam,
        sans-serif;
    font-size: clamp(16px, 1.35vw, 20px);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: .15px;
    line-height: 1.5;
}

body.owcontact-page
.contact-info-card__value--secondary {
    color: #536875;
    font-size: clamp(14px, 1.05vw, 17px);
}

body.owcontact-page
.contact-info-card__value--email {
    display: block;
    width: max-content;
    max-width: 100%;
    direction: ltr;
    unicode-bidi: isolate;
    text-align: left;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    font-family:
        Arial,
        sans-serif;
    font-size: clamp(15px, 1.2vw, 19px);
    font-weight: 900;
    line-height: 1.5;
}

/* Address text */

body.owcontact-page
.contact-info-card:nth-child(n+4)
.contact-info-card__body p {
    margin-top: 13px;
    color: #415866;
    font-size: 13px;
    line-height: 2.15;
}

/* Tablet */

@media (max-width: 1100px) {
    body.owcontact-page
    .contact-info .contact-section-head {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    body.owcontact-page
    .contact-info .contact-section-head::after {
        justify-self: start;
    }

    body.owcontact-page
    .contact-info-card,
    body.owcontact-page
    .contact-info-card--wide {
        grid-column: span 6 !important;
    }

    body.owcontact-page
    .contact-info-card__value--number {
        font-size: 18px;
    }
}

/* Mobile */

@media (max-width: 680px) {
    body.owcontact-page .contact-info {
        padding:
            72px
            0;
    }

    body.owcontact-page
    .contact-info .contact-wrap {
        width: calc(100% - 28px);
    }

    body.owcontact-page
    .contact-info .contact-section-head {
        margin-bottom: 34px;
        padding-bottom: 24px;
    }

    body.owcontact-page
    .contact-info .contact-section-head h2 {
        font-size: 32px;
    }

    body.owcontact-page
    .contact-info .contact-section-head p {
        font-size: 13px;
    }

    body.owcontact-page
    .contact-info .contact-section-head::after {
        padding:
            13px
            15px;
        font-size: 9px;
    }

    body.owcontact-page
    .contact-info-card,
    body.owcontact-page
    .contact-info-card--wide {
        grid-column: 1 / -1 !important;
        min-height: 225px;
        padding:
            24px
            20px;
        grid-template-columns:
            50px
            minmax(0, 1fr);
        gap: 15px;
    }

    body.owcontact-page
    .contact-info-card:nth-child(n+4) {
        min-height: 270px;
    }

    body.owcontact-page
    .contact-info-card__icon {
        width: 50px;
        height: 50px;
        font-size: 17px;
    }

    body.owcontact-page
    .contact-info-card__body h3 {
        font-size: 16px;
    }

    body.owcontact-page
    .contact-info-card__value--number {
        font-size: 18px;
    }

    body.owcontact-page
    .contact-info-card__value--email {
        font-size: 16px;
    }
}

/* Narrow phones */

@media (max-width: 380px) {
    body.owcontact-page
    .contact-info-card,
    body.owcontact-page
    .contact-info-card--wide {
        padding:
            21px
            16px;
        grid-template-columns:
            44px
            minmax(0, 1fr);
        gap: 12px;
    }

    body.owcontact-page
    .contact-info-card__icon {
        width: 44px;
        height: 44px;
    }

    body.owcontact-page
    .contact-info-card__value--number {
        font-size: 15.5px;
        letter-spacing: 0;
    }

    body.owcontact-page
    .contact-info-card__value--email {
        font-size: 14px;
    }
}

/* OPENWINCH CONTACT CARDS V3 END */

/* OPENWINCH ENGINEERING CONTACT V4 START */

body.owcontact-page .owct3-engineering {
    position: relative;
    isolation: isolate;
    padding:
        clamp(94px, 8vw, 132px)
        0;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            135deg,
            #011426 0%,
            #022041 62%,
            #073f70 150%
        );
    background-size:
        78px 78px,
        78px 78px,
        auto;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

body.owcontact-page
.owct3-engineering::before {
    content: "ENGINEERING";
    position: absolute;
    z-index: -1;
    left: 2%;
    bottom: 18px;
    color: rgba(255,255,255,.035);
    font-family:
        Arial,
        sans-serif;
    font-size: clamp(72px, 10vw, 150px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    direction: ltr;
    pointer-events: none;
}

body.owcontact-page
.owct3-engineering::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            #20a9e0,
            #0c53a5,
            #022041
        );
}

body.owcontact-page
.owct3-engineering__shell {
    position: relative;
    z-index: 2;
    width: min(1460px, calc(100% - 56px));
    margin-inline: auto;
    display: grid;
    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(420px, .96fr);
    gap: clamp(46px, 6vw, 90px);
    align-items: center;
    direction: ltr;
}

/* Factory image */

body.owcontact-page
.owct3-engineering__media {
    position: relative;
    min-width: 0;
    direction: rtl;
}

body.owcontact-page
.owct3-engineering__media figure {
    position: relative;
    min-height: 630px;
    margin: 0;
    overflow: hidden;
    border:
        1px solid
        rgba(255,255,255,.22);
    background: #011426;
    box-shadow:
        0 30px 75px
        rgba(0,0,0,.28);
}

body.owcontact-page
.owct3-engineering__media figure::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(1,20,38,.06) 35%,
            rgba(1,20,38,.88) 100%
        );
    pointer-events: none;
}

body.owcontact-page
.owct3-engineering__media figure::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    width: 145px;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            #20a9e0,
            #0c53a5
        );
}

body.owcontact-page
.owct3-engineering__media img {
    display: block;
    width: 100%;
    height: 630px;
    object-fit: cover;
    object-position: center;
    filter:
        contrast(1.04)
        saturate(.94);
    transition: transform .55s ease;
}

body.owcontact-page
.owct3-engineering__media:hover img {
    transform: scale(1.025);
}

body.owcontact-page
.owct3-engineering__media figcaption {
    position: absolute;
    z-index: 4;
    right: 28px;
    bottom: 27px;
    left: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.24);
}

body.owcontact-page
.owct3-engineering__media figcaption span {
    display: block;
    color: #71d8fb;
    font-family:
        Arial,
        sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    direction: ltr;
    text-align: right;
}

body.owcontact-page
.owct3-engineering__media figcaption strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.8;
}

body.owcontact-page
.owct3-engineering__index {
    position: absolute;
    z-index: 5;
    top: -28px;
    left: -25px;
    color: rgba(255,255,255,.11);
    font-family:
        Arial,
        sans-serif;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    direction: ltr;
    pointer-events: none;
}

body.owcontact-page
.owct3-engineering__stamp {
    position: absolute;
    z-index: 6;
    top: 30px;
    right: -27px;
    width: 220px;
    min-height: 75px;
    padding:
        14px
        17px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #022041;
    background: #ffffff;
    border-right: 5px solid #20a9e0;
    box-shadow:
        0 18px 38px
        rgba(0,0,0,.20);
}

body.owcontact-page
.owct3-engineering__stamp i {
    color: #0c53a5;
    font-size: 21px;
}

body.owcontact-page
.owct3-engineering__stamp span {
    color: #022041;
    font-family:
        Arial,
        sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
    direction: ltr;
}

body.owcontact-page
.owct3-engineering__stamp small {
    display: block;
    margin-top: 4px;
    color: #71838e;
    font-size: 8px;
    letter-spacing: .7px;
}

/* Content */

body.owcontact-page
.owct3-engineering__content {
    min-width: 0;
    direction: rtl;
    text-align: right;
}

body.owcontact-page
.owct3-engineering__tag {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #71d8fb;
    font-family:
        Arial,
        sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.55px;
    direction: ltr;
}

body.owcontact-page
.owct3-engineering__tag::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #20a9e0;
}

body.owcontact-page
.owct3-engineering__content h2 {
    max-width: 720px;
    margin:
        19px
        0
        0;
    color: #ffffff;
    font-size: clamp(35px, 4vw, 52px);
    font-weight: 950;
    line-height: 1.55;
    letter-spacing: -1.25px;
}

body.owcontact-page
.owct3-engineering__content h2 strong {
    display: block;
    color: #71d8fb;
    font-weight: 950;
}

body.owcontact-page
.owct3-engineering__lead {
    max-width: 690px;
    margin:
        23px
        0
        0;
    padding-right: 19px;
    border-right: 3px solid #20a9e0;
    color: rgba(255,255,255,.70);
    font-size: 14px;
    font-weight: 650;
    line-height: 2.2;
}

/* Technical requirements */

body.owcontact-page
.owct3-engineering__requirements {
    margin-top: 34px;
    border-top: 1px solid rgba(255,255,255,.17);
}

body.owcontact-page
.owct3-engineering__requirements article {
    min-height: 106px;
    padding:
        20px
        0;
    display: grid;
    grid-template-columns:
        48px
        minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

body.owcontact-page
.owct3-engineering__requirements article > span {
    color: #20a9e0;
    font-family:
        Arial,
        sans-serif;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.4;
    direction: ltr;
}

body.owcontact-page
.owct3-engineering__requirements h3 {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.8;
}

body.owcontact-page
.owct3-engineering__requirements p {
    margin:
        5px
        0
        0;
    color: rgba(255,255,255,.57);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.95;
}

/* Buttons */

body.owcontact-page
.owct3-engineering__actions {
    margin-top: 31px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

body.owcontact-page
.owct3-engineering__button {
    min-height: 56px;
    padding:
        0
        23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

body.owcontact-page
.owct3-engineering__button--primary {
    color: #022041;
    background: #ffffff;
    border-color: #ffffff;
}

body.owcontact-page
.owct3-engineering__button--primary span {
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
    font-family:
        Arial,
        Shabnam,
        sans-serif;
    font-variant-numeric: tabular-nums;
}

body.owcontact-page
.owct3-engineering__button--primary:hover {
    color: #ffffff;
    background: #0c53a5;
    border-color: #0c53a5;
}

body.owcontact-page
.owct3-engineering__button--outline {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255,255,255,.31);
}

body.owcontact-page
.owct3-engineering__button--outline:hover {
    color: #71d8fb;
    border-color: #71d8fb;
}

/* Tablet */

@media (max-width: 1050px) {
    body.owcontact-page
    .owct3-engineering__shell {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    body.owcontact-page
    .owct3-engineering__content {
        order: 1;
    }

    body.owcontact-page
    .owct3-engineering__media {
        order: 2;
    }

    body.owcontact-page
    .owct3-engineering__media figure,
    body.owcontact-page
    .owct3-engineering__media img {
        height: 560px;
        min-height: 560px;
    }
}

/* Mobile */

@media (max-width: 680px) {
    body.owcontact-page
    .owct3-engineering {
        padding:
            74px
            0;
    }

    body.owcontact-page
    .owct3-engineering__shell {
        width: calc(100% - 28px);
        gap: 46px;
    }

    body.owcontact-page
    .owct3-engineering__content h2 {
        font-size: 33px;
    }

    body.owcontact-page
    .owct3-engineering__lead {
        font-size: 13px;
    }

    body.owcontact-page
    .owct3-engineering__requirements article {
        grid-template-columns:
            39px
            minmax(0, 1fr);
    }

    body.owcontact-page
    .owct3-engineering__actions {
        flex-direction: column;
    }

    body.owcontact-page
    .owct3-engineering__button {
        width: 100%;
    }

    body.owcontact-page
    .owct3-engineering__media figure,
    body.owcontact-page
    .owct3-engineering__media img {
        height: 450px;
        min-height: 450px;
    }

    body.owcontact-page
    .owct3-engineering__stamp {
        top: 19px;
        right: -8px;
        width: 198px;
    }

    body.owcontact-page
    .owct3-engineering__index {
        top: -21px;
        left: -4px;
        font-size: 74px;
    }
}

/* OPENWINCH ENGINEERING CONTACT V4 END */

/* OPENWINCH PROJECT RFQ V5 START */

body.owcontact-page .owct4-rfq {
    position: relative;
    isolation: isolate;
    padding:
        clamp(92px, 8vw, 132px)
        0;
    overflow: hidden;
    color: #022041;
    background:
        radial-gradient(
            circle at 14% 20%,
            rgba(32,169,224,.08),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            rgba(12,83,165,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(12,83,165,.04) 1px,
            transparent 1px
        ),
        #f4f7fa;
    background-size:
        auto,
        78px 78px,
        78px 78px,
        auto;
    border-bottom: 1px solid #ccd9e2;
}

body.owcontact-page .owct4-rfq::before {
    content: "PROJECT REQUEST";
    position: absolute;
    z-index: -1;
    left: 2%;
    top: 36px;
    color: rgba(2,32,65,.035);
    font-family: Arial, sans-serif;
    font-size: clamp(72px, 9vw, 145px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    direction: ltr;
    pointer-events: none;
}

body.owcontact-page .owct4-rfq::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            #022041,
            #0c53a5,
            #20a9e0
        );
}

body.owcontact-page .owct4-rfq__shell {
    position: relative;
    z-index: 2;
    width: min(1460px, calc(100% - 56px));
    margin-inline: auto;
    display: grid;
    grid-template-columns:
        minmax(390px, .86fr)
        minmax(0, 1.14fr);
    align-items: stretch;
    border: 1px solid #cbd8e1;
    background: #ffffff;
    box-shadow:
        0 30px 75px
        rgba(2,32,65,.105);
    direction: ltr;
}

/* Factory visual */

body.owcontact-page .owct4-rfq__visual {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    color: #ffffff;
    background: #011426;
    direction: rtl;
}

body.owcontact-page .owct4-rfq__visual > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 790px;
    object-fit: cover;
    object-position: center;
    filter:
        contrast(1.05)
        saturate(.88)
        brightness(.76);
    transition: transform .55s ease;
}

body.owcontact-page .owct4-rfq__visual:hover > img {
    transform: scale(1.025);
}

body.owcontact-page .owct4-rfq__visual-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(1,20,38,.13) 20%,
            rgba(1,20,38,.91) 100%
        ),
        linear-gradient(
            90deg,
            rgba(12,83,165,.17),
            transparent 55%
        );
}

body.owcontact-page .owct4-rfq__number {
    position: absolute;
    z-index: 3;
    top: 25px;
    right: 26px;
    color: rgba(255,255,255,.20);
    font-family: Arial, sans-serif;
    font-size: 76px;
    font-weight: 900;
    line-height: 1;
    direction: ltr;
}

body.owcontact-page .owct4-rfq__vertical {
    position: absolute;
    z-index: 3;
    top: 26px;
    left: 22px;
    color: rgba(255,255,255,.63);
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.7px;
    writing-mode: vertical-rl;
    direction: ltr;
}

body.owcontact-page .owct4-rfq__visual-copy {
    position: absolute;
    z-index: 4;
    right: 30px;
    bottom: 31px;
    left: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.25);
}

body.owcontact-page .owct4-rfq__visual-copy > span {
    color: #71d8fb;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    direction: ltr;
}

body.owcontact-page .owct4-rfq__visual-copy h3 {
    max-width: 430px;
    margin:
        12px
        0
        0;
    color: #ffffff;
    font-size: clamp(25px, 2.4vw, 35px);
    font-weight: 950;
    line-height: 1.6;
}

body.owcontact-page .owct4-rfq__visual-copy p {
    max-width: 440px;
    margin:
        15px
        0
        0;
    color: rgba(255,255,255,.69);
    font-size: 13px;
    font-weight: 650;
    line-height: 2.05;
}

body.owcontact-page .owct4-rfq__visual-meta {
    margin-top: 23px;
    display: grid;
    gap: 9px;
}

body.owcontact-page .owct4-rfq__visual-meta span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.77);
    font-size: 11px;
    font-weight: 750;
}

body.owcontact-page .owct4-rfq__visual-meta i {
    width: 27px;
    color: #71d8fb;
    text-align: center;
}

/* Form content */

body.owcontact-page .owct4-rfq__content {
    min-width: 0;
    padding:
        clamp(38px, 4.2vw, 62px);
    direction: rtl;
    text-align: right;
    background: #ffffff;
}

body.owcontact-page .owct4-rfq__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0c53a5;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    direction: ltr;
}

body.owcontact-page .owct4-rfq__tag::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #20a9e0;
}

body.owcontact-page .owct4-rfq__content h2 {
    max-width: 760px;
    margin:
        17px
        0
        0;
    color: #022041;
    font-size: clamp(34px, 3.7vw, 49px);
    font-weight: 950;
    line-height: 1.55;
    letter-spacing: -1.15px;
}

body.owcontact-page .owct4-rfq__content h2 strong {
    display: block;
    color: #0c53a5;
    font-weight: 950;
}

body.owcontact-page .owct4-rfq__lead {
    max-width: 710px;
    margin:
        18px
        0
        0;
    padding-right: 18px;
    border-right: 3px solid #20a9e0;
    color: #526875;
    font-size: 13px;
    font-weight: 650;
    line-height: 2.1;
}

/* Fields */

body.owcontact-page .owct4-rfq__form {
    margin-top: 31px;
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 15px;
}

body.owcontact-page .owct4-field {
    min-width: 0;
    display: block;
}

body.owcontact-page .owct4-field > span {
    display: block;
    margin-bottom: 8px;
    color: #284555;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.8;
}

body.owcontact-page .owct4-field > span b {
    color: #0c53a5;
    font-size: 12px;
}

body.owcontact-page .owct4-field input,
body.owcontact-page .owct4-field select,
body.owcontact-page .owct4-field textarea {
    width: 100%;
    min-height: 54px;
    padding:
        0
        15px;
    border: 1px solid #cdd9e1;
    border-radius: 0;
    outline: 0;
    color: #022041;
    background: #ffffff;
    font-family:
        Shabnam,
        Tahoma,
        sans-serif;
    font-size: 12px;
    font-weight: 700;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

body.owcontact-page .owct4-field input[dir="ltr"] {
    text-align: left;
    font-family:
        Arial,
        Shabnam,
        sans-serif;
}

body.owcontact-page .owct4-field textarea {
    min-height: 148px;
    padding-top: 14px;
    resize: vertical;
    line-height: 2;
}

body.owcontact-page .owct4-field input::placeholder,
body.owcontact-page .owct4-field textarea::placeholder {
    color: #8a9ba5;
    font-weight: 600;
}

body.owcontact-page .owct4-field input:focus,
body.owcontact-page .owct4-field select:focus,
body.owcontact-page .owct4-field textarea:focus {
    border-color: #0c53a5;
    background: #fafdff;
    box-shadow:
        0 0 0 3px
        rgba(12,83,165,.075);
}

body.owcontact-page .owct4-field--full {
    grid-column: 1 / -1;
}

/* Actions */

body.owcontact-page .owct4-rfq__footer {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 21px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid #dce5eb;
}

body.owcontact-page .owct4-rfq__submit,
body.owcontact-page .owct4-rfq__whatsapp {
    min-height: 56px;
    padding:
        0
        23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 0;
    font-family:
        Shabnam,
        Tahoma,
        sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

body.owcontact-page .owct4-rfq__submit {
    border: 1px solid #0c53a5;
    color: #ffffff;
    background: #0c53a5;
}

body.owcontact-page .owct4-rfq__submit:hover {
    border-color: #022041;
    background: #022041;
}

body.owcontact-page .owct4-rfq__whatsapp {
    border: 1px solid #cbd9e2;
    color: #022041;
    background: #ffffff;
}

body.owcontact-page .owct4-rfq__whatsapp:hover {
    border-color: #0c53a5;
    color: #0c53a5;
    background: #f4f8fb;
}

/* Tablet */

@media (max-width: 1050px) {
    body.owcontact-page .owct4-rfq__shell {
        grid-template-columns: 1fr;
    }

    body.owcontact-page .owct4-rfq__visual,
    body.owcontact-page .owct4-rfq__visual > img {
        min-height: 540px;
        height: 540px;
    }
}

/* Mobile */

@media (max-width: 680px) {
    body.owcontact-page .owct4-rfq {
        padding:
            72px
            0;
    }

    body.owcontact-page .owct4-rfq__shell {
        width: calc(100% - 28px);
    }

    body.owcontact-page .owct4-rfq__visual,
    body.owcontact-page .owct4-rfq__visual > img {
        min-height: 460px;
        height: 460px;
    }

    body.owcontact-page .owct4-rfq__visual-copy {
        right: 20px;
        bottom: 21px;
        left: 20px;
    }

    body.owcontact-page .owct4-rfq__content {
        padding:
            32px
            21px;
    }

    body.owcontact-page .owct4-rfq__content h2 {
        font-size: 32px;
    }

    body.owcontact-page .owct4-rfq__form {
        grid-template-columns: 1fr;
    }

    body.owcontact-page .owct4-field--full,
    body.owcontact-page .owct4-rfq__footer {
        grid-column: auto;
    }

    body.owcontact-page .owct4-rfq__footer {
        align-items: stretch;
        flex-direction: column;
    }

    body.owcontact-page .owct4-rfq__submit,
    body.owcontact-page .owct4-rfq__whatsapp {
        width: 100%;
    }
}

/* OPENWINCH PROJECT RFQ V5 END */




/* CONTACT HERO BUTTONS V5 START */

/* چیدمان دکمه‌ها */

body.owcontact-page
.owct1-hero__actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 11px !important;
    direction: rtl !important;
}

/* ساختار مشترک دکمه تماس و واتساپ */

body.owcontact-page
.owct1-hero a[href^="tel:"],
body.owcontact-page
.owct1-hero a[href*="wa.me/"] {
    position: relative !important;
    min-width: 218px !important;
    min-height: 57px !important;
    padding:
        0
        21px !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    direction: rtl !important;
    unicode-bidi: isolate !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1.4 !important;
    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease !important;
}

/* دکمه تلفن */

body.owcontact-page
.owct1-hero a[href^="tel:"] {
    color: #022041 !important;
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
}

/* دکمه واتساپ */

body.owcontact-page
.owct1-hero a[href*="wa.me/"] {
    color: #ffffff !important;
    background: #0c53a5 !important;
    border: 1px solid #0c53a5 !important;
}

/* آیکون‌ها */

body.owcontact-page
.owct1-hero a[href^="tel:"] i,
body.owcontact-page
.owct1-hero a[href*="wa.me/"] i {
    flex: 0 0 auto !important;
    display: inline-grid !important;
    place-items: center !important;
    width: 22px !important;
    color: inherit !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

/* شماره‌ها */

body.owcontact-page
.owct1-hero .owct1-hero__number {
    display: inline-block !important;
    width: max-content !important;
    max-width: 100% !important;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    text-align: left !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    color: inherit !important;
    font-family:
        Arial,
        Shabnam,
        sans-serif !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    font-variant-numeric: tabular-nums !important;
    letter-spacing: .1px !important;
    line-height: 1 !important;
}

/* Hover تلفن */

body.owcontact-page
.owct1-hero a[href^="tel:"]:hover,
body.owcontact-page
.owct1-hero a[href^="tel:"]:focus-visible {
    color: #ffffff !important;
    background: #0c53a5 !important;
    border-color: #0c53a5 !important;
    transform: none !important;
}

/* Hover واتساپ */

body.owcontact-page
.owct1-hero a[href*="wa.me/"]:hover,
body.owcontact-page
.owct1-hero a[href*="wa.me/"]:focus-visible {
    color: #022041 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    transform: none !important;
}

/* حذف هر Effect قدیمی */

body.owcontact-page
.owct1-hero a[href^="tel:"]::before,
body.owcontact-page
.owct1-hero a[href^="tel:"]::after,
body.owcontact-page
.owct1-hero a[href*="wa.me/"]::before,
body.owcontact-page
.owct1-hero a[href*="wa.me/"]::after {
    display: none !important;
    content: none !important;
}

/* موبایل */

@media (max-width: 700px) {
    body.owcontact-page
    .owct1-hero__actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    body.owcontact-page
    .owct1-hero a[href^="tel:"],
    body.owcontact-page
    .owct1-hero a[href*="wa.me/"] {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 56px !important;
        padding:
            0
            17px !important;
    }

    body.owcontact-page
    .owct1-hero .owct1-hero__number {
        font-size: 15.5px !important;
    }
}

/* CONTACT HERO BUTTONS V5 END */

/* OPENWINCH CONTACT HERO IMAGE V10 START */

.owct1-hero {
    position: relative !important;
    isolation: isolate !important;

    width: 100% !important;
    max-width: none !important;
    min-height: 620px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
    background: #022041 !important;
}

/* خاموش‌کردن تمام Backgroundهای قدیمی */

.owct1-hero::before {
    content: none !important;
    display: none !important;
    background: none !important;
}

.owct1-hero::after {
    content: "" !important;

    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;

    background:
        linear-gradient(
            90deg,
            rgba(2,32,65,.08) 0%,
            rgba(2,32,65,.18) 34%,
            rgba(2,32,65,.48) 68%,
            rgba(1,20,38,.80) 100%
        ) !important;

    pointer-events: none !important;
}

/* لایه تصویر کل بنر */

.owct1-hero__media {
    position: absolute !important;
    z-index: 0 !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;

    height: 100% !important;
    min-height: 100% !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
    background: none !important;
    transform: none !important;
}

/* تصویر مستقیم و بدون Picture */

.owct1-hero__image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;

    height: 100% !important;
    min-height: 100% !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;

    transform: none !important;
    filter: none !important;
}

/* اگر سرویس بهینه‌ساز Picture ایجاد کرد */

.owct1-hero__media > picture {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.owct1-hero__media > picture > img {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center center !important;
}

/* Overlay قدیمی */

.owct1-hero__overlay {
    display: none !important;
}

/* محتوای Hero */

.owct1-hero__shell,
.owct1-hero__inner {
    position: relative !important;
    z-index: 2 !important;
}

.owct1-hero__pattern {
    z-index: 2 !important;
    pointer-events: none !important;
}

.owct1-hero__label {
    z-index: 3 !important;
}

/* عنوان اطلاعات ارتباطی ACG */

.acg-contact-info__head {
    direction: rtl !important;
    text-align: right !important;
}

.acg-contact-info__head > div:first-child {
    width: 100% !important;
    justify-self: stretch !important;
    text-align: right !important;
}

.acg-contact-info__head h2,
#contactInfoTitle,
.owct-contact-title-nowrap {
    width: 100% !important;
    max-width: none !important;

    display: block !important;

    margin-inline: 0 !important;

    direction: rtl !important;
    text-align: right !important;

    white-space: nowrap !important;
    text-wrap: nowrap !important;
    word-break: keep-all !important;
}

/* موبایل */

@media (max-width: 700px) {

    .owct1-hero {
        min-height: 720px !important;
    }

    .owct1-hero__image,
    .owct1-hero__media > picture > img {
        object-position: center center !important;
    }

    .owct1-hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(1,20,38,.15) 0%,
                rgba(1,20,38,.52) 48%,
                rgba(1,20,38,.86) 100%
            ) !important;
    }

}

/* OPENWINCH CONTACT HERO IMAGE V10 END */
