:root {
    --bg: #f7f7f7;
    --surface: #ffffff;
    --surface-2: #e6e9eb;
    --text: #000000cc;
    --heading: #191817;
    --muted: #2b2b2b;
    --primary: #f7972c;
    --primary-2: #f7972c;
    --accent: #f7972c;
    --primary-dark: #e58922;
    --border: #e6e9eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --color-primary: var(--primary);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: "Manrope", Arial, sans-serif;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--heading);
}

h1 { font-size: clamp(40px, 6vw, 70px); line-height: 1.1; font-weight: 700; }
h2 { font-size: clamp(32px, 4.5vw, 50px); line-height: 1.2; font-weight: 700; }
h3 { font-size: clamp(26px, 3.5vw, 44px); line-height: 1.1; font-weight: 700; }
h4 { font-size: clamp(22px, 3vw, 38px); line-height: 1.2; font-weight: 700; }
h5 { font-size: clamp(18px, 2.4vw, 24px); line-height: 1.2; font-weight: 700; }
h6 { font-size: 18px; line-height: 1.2; font-weight: 700; text-transform: uppercase; color: var(--heading); }

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

a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92%); margin: 0 auto; }
.container-full { width: min(1400px, 96%); margin: 0 auto; }

.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.row.g-5 { gap: 24px 0; }

.col-lg-12,
.col-lg-6,
.col-lg-4,
.col-lg-3,
.offset-lg-1 { padding: 0 12px; }

.col-lg-12 { width: 100%; }
.col-lg-6 { width: 50%; }
.col-lg-4 { width: 33.333%; }
.col-lg-3 { width: 25%; }
.offset-lg-1 { margin-left: 8.333%; }

@media (max-width: 992px) {
    .col-lg-6,
    .col-lg-4,
    .col-lg-3,
    .offset-lg-1 { width: 100%; margin-left: 0; }
}

.rts-section-gap { padding: 80px 0; }
.rts-section-gapBottom { padding-bottom: 80px; }
.ptb--100 { padding: 100px 0; }
.ptb--30 { padding: 30px 0; }
.pt--65 { padding-top: 65px; }
.pb--65 { padding-bottom: 65px; }
.mt--10 { margin-top: 10px; }
.mt--40 { margin-top: 40px; }
.mt--60 { margin-top: 60px; }
.mt--120 { margin-top: 120px; }
.ml--20 { margin-left: 20px; }

@media (max-width: 991px) {
    .mt_md--80 { margin-top: 80px; }
}

@media (max-width: 767px) {
    .mt_sm--60 { margin-top: 60px; }
    .mt_sm--50 { margin-top: 50px; }
    .mt_sm--30 { margin-top: 30px; }
}

.d-none { display: none; }
.d-block { display: block; }
.d-xl-block { display: none; }
.d-xl-none { display: block; }

@media (min-width: 1200px) {
    .d-xl-block { display: block; }
    .d-xl-none { display: none; }
}

.bg_image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bg_image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 247, 247, 0.92) 0%, rgba(247, 247, 247, 0.85) 100%);
    z-index: 0;
}

.bg_image::after {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 140%;
    background:
        radial-gradient(circle at 15% 18%, rgba(219, 16, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 12%, rgba(25, 24, 23, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 75%, rgba(219, 16, 0, 0.08) 0%, transparent 45%);
    z-index: 0;
    pointer-events: none;
}

.bg_image > * {
    position: relative;
    z-index: 1;
}

.bg-soft-pattern {
    position: relative;
    overflow: hidden;
}

.bg-soft-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(247, 247, 247, 0.96) 0%, rgba(247, 247, 247, 0.92) 55%, rgba(247, 247, 247, 0.8) 100%),
        repeating-linear-gradient(45deg, rgba(25, 24, 23, 0.03) 0 1px, transparent 1px 10px);
    z-index: 0;
}

.bg-soft-pattern > * {
    position: relative;
    z-index: 1;
}

.bg-cta { background-image: url("../images/banner/21.webp"); }
.bg-catalog { background-image: url("../images/banner/21.webp"); }
.bg-contact { background-image: url("../images/banner/21.webp"); }

.header-one {
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid #e4e7ee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top-area-wrapper {
    background: var(--surface);
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.header-top-one-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 16px;
}

.header-top-one-wrapper .left,
.header-top-one-wrapper .right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-top-one-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px;
    align-items: center;
}

.header-top-one-wrapper a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--heading);
}

.header-top-one-wrapper .mail a,
.header-top-one-wrapper .working-time p {
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    color: var(--text);
}

.header-top-one-wrapper .working-time p {
    margin: 0;
}

.header-main-one-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 28px;
}

.header-main-one-wrapper .thumbnail img {
    height: 80px;
    width: auto;
    display: block;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex: 1;
}

.nav-area {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-area ul {
    list-style: none;
    display: flex;
    gap: clamp(38px, 2.8vw, 58px);
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.main-nav > a {
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    color: #1e2737;
}

.main-nav > a:hover {
    color: #141b2a;
}

.button-area {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: flex-end;
    white-space: nowrap;
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.nav-call-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f2f2f2;
    color: #1f2736;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-call-icon i {
    font-size: 22px;
}

.nav-call-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.05;
}

.nav-call-text .label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.nav-call-text strong {
    color: #1f2736;
    font-size: 21px;
    font-weight: 700;
}

.nav-call-text small {
    color: #808999;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
}

.rts-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rts-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-white {
    background: var(--primary);
    color: #fff;
}

.nav-cta-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 22px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 700;
}

.nav-cta-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

@media (max-width: 992px) {
    .nav-area { display: none; }
    .header-main-one-wrapper {
        padding: 14px 0;
    }
    .header-main-one-wrapper .thumbnail img {
        height: 60px;
    }
    .nav-call {
        display: none;
    }
    .nav-cta-btn {
        font-size: 13px;
        padding: 12px 18px;
        border-radius: 999px;
    }
}

.mc-hero {
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 83.5% 100%, 16.4% 100%, 0% 85%, 0% 0%);
    max-width: 1754px;
    margin: 0 auto;
    min-height: 520px;
    background: var(--bg);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.mc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(247, 247, 247, 0.98) 0%, rgba(247, 247, 247, 0.92) 55%, rgba(247, 247, 247, 0.7) 100%),
        url("../images/banner/21.webp");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.mc-hero::after {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 140%;
    background:
        radial-gradient(circle at 15% 18%, rgba(219, 16, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 12%, rgba(25, 24, 23, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 75%, rgba(219, 16, 0, 0.08) 0%, transparent 45%);
    z-index: 0;
    pointer-events: none;
}

.mc-hero .container {
    position: relative;
    z-index: 1;
}

.mc-hero-title {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 60px);
    text-transform: uppercase;
    line-height: 1.1;
}

.mc-hero-subtitle { color: var(--muted); font-size: 18px; max-width: 560px; }

.mc-hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 18px; }

.mc-link { color: var(--primary); font-weight: 600; }

.mc-micro { margin-top: 10px; color: var(--muted); font-size: 14px; }

.mc-hero-media img { border-radius: 20px; box-shadow: var(--shadow); }

.banner-three-box-clip-area {
    clip-path: polygon(0% 0%, 100% 0%, 100% 85.059%, 83.523% 100%, 16.406% 100%, 0% 84.941%, 0% 0%);
    max-width: 1754px;
    margin: auto;
    height: 850px;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 30px;
}
@media (max-width: 575px) {
    .banner-three-box-clip-area { height: 500px; }
}
.banner-three-box-clip-area svg { height: 500px; }
.banner-three-box-clip-area .right-thumbnail {
    clip-path: polygon(59.225% 100%, 0% 100%, 0% 14.588%, 43.944% 0%, 99.93% 0%, 99.93% 100%, 59.225% 100%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 709px;
    z-index: -1;
}
.banner-three-box-clip-area .right-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(124, 179, 235, 0.25);
    mix-blend-mode: multiply;
    pointer-events: none;
}
.banner-three-box-clip-area .right-thumbnail .mc-hero-swiper {
    width: 100%;
    height: 100%;
}
.banner-three-box-clip-area .right-thumbnail .mc-hero-swiper .swiper-wrapper,
.banner-three-box-clip-area .right-thumbnail .mc-hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}
.banner-three-box-clip-area .right-thumbnail .mc-hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-three-box-clip-area > .mc-hero-swiper-pagination.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal,
.banner-three-box-clip-area > .mc-hero-swiper-pagination {
    position: absolute;
    left: 50% !important;
    right: auto !important;
    bottom: 24px !important;
    top: auto !important;
    width: max-content !important;
    transform: translateX(-50%) !important;
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    pointer-events: auto;
    text-align: center;
}
.mc-hero-swiper-pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}
.mc-hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #f7972c;
}
@media (min-width: 1200px) and (max-width: 1599px) {
    .banner-three-box-clip-area .right-thumbnail { max-width: 550px; height: 100%; }
}
@media (max-width: 1199px) {
    .banner-three-box-clip-area .right-thumbnail { max-width: 550px; height: 100%; }
}
@media (max-width: 991px) {
    .banner-three-box-clip-area .right-thumbnail { max-width: 100%; height: 100%; }
}
@media (min-width: 1200px) and (max-width: 1599px) {
    .banner-three-box-clip-area .right-thumbnail img { max-width: 550px; height: 100%; object-fit: cover; }
}
@media (max-width: 1199px) {
    .banner-three-box-clip-area .right-thumbnail img { max-width: 550px; height: 100%; object-fit: cover; }
}
@media (max-width: 991px) {
    .banner-three-box-clip-area .right-thumbnail img { max-width: 100%; height: 100%; }
}
.banner-three-box-clip-area .banner-inner-conten .pre {
    color: #5D666F;
    font-size: 22px;
    font-weight: 500;
}
.banner-three-box-clip-area .banner-inner-conten .title {
    font-size: 86px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.2;
}
@media (min-width: 1200px) and (max-width: 1599px) {
    .banner-three-box-clip-area .banner-inner-conten .title { font-size: 60px; }
}
@media (max-width: 1199px) {
    .banner-three-box-clip-area .banner-inner-conten .title { font-size: 54px; }
}
@media (max-width: 991px) {
    .banner-three-box-clip-area .banner-inner-conten .title { font-size: 44px; }
}
@media (max-width: 767px) {
    .banner-three-box-clip-area .banner-inner-conten .title { font-size: 34px; }
}
.banner-three-box-clip-area .banner-inner-conten .title span {
    font-style: italic;
    font-weight: 500;
}
@media (max-width: 991px) {
    .banner-three-box-clip-area .banner-inner-conten {
        padding: 50px;
        background: #fff;
        z-index: 10;
        position: relative;
        border-radius: 6px;
    }
}
@media (max-width: 767px) {
    .banner-three-box-clip-area .banner-inner-conten {
        padding: 25px;
        border-radius: 6px;
    }
}
.banner-three-box-clip-area .all-shape img { position: absolute; }
.banner-three-box-clip-area .all-shape img.one {
    left: 0;
    top: 0;
    animation: jump-2 5s linear infinite;
}
.banner-three-box-clip-area .all-shape img.two {
    top: 10%;
    left: 37%;
    animation: rotateIt 10s linear infinite;
}
.banner-three-box-clip-area .all-shape img.three {
    bottom: 0;
    left: 40%;
    animation: jump-2 3s linear infinite;
}

.banner-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
}

.banner-three-box-clip-area .banner-inner-conten .disc {
    color: var(--muted);
    font-size: 18px;
    max-width: 560px;
    margin: 0;
}

.banner-three-box-clip-area .banner-inner-conten .micro {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.mc-section {
    background-color: var(--bg);
    background-image:
        linear-gradient(90deg, rgba(247, 247, 247, 0.96) 0%, rgba(247, 247, 247, 0.9) 55%, rgba(247, 247, 247, 0.7) 100%),
        url("../images/banner/21.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.section-plus-parallax,
.mc-section.products-plus-bg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    --pattern-shift: 0px;
    background: #ffffff !important;
    background-image: none !important;
}

.section-plus-parallax::before,
.mc-section.products-plus-bg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -180px;
    bottom: -180px;
    /* Inline pattern avoids stale browser cache from old SVG assets. */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='88' viewBox='0 0 88 88'%3E%3Cpath d='M44 41v6M41 44h6' stroke='%23b8c0cc' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 88px 88px;
    opacity: 0.78;
    transform: translate3d(0, var(--pattern-shift), 0);
    transition: transform 0.15s linear;
    will-change: transform;
    z-index: 0;
}

.mc-contact-v2.section-plus-parallax::before,
.footer-bg-three.section-plus-parallax::before {
    background-size: 52px 52px;
}

#catalogo.section-plus-parallax::before {
    opacity: 0.72;
}

.section-plus-parallax > .container,
.mc-section.products-plus-bg > .container {
    position: relative;
    z-index: 1;
}

.mc-alt { background: var(--bg); }

.mc-about-image {
    width: 80%;
    max-width: 100%;
    height: auto;
}

.mc-title { font-size: 32px; margin: 0 0 16px; }

.mc-text { color: var(--muted); }

.mc-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.mc-card {
    position: relative;
    z-index: 1;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.mc-card::after {
    position: absolute;
    content: "";
    clip-path: polygon(0.167% 0.175%, 99.833% 0.175%, 99.833% 86.41%, 93.226% 92.322%, 93.225% 92.322%, 84.772% 99.825%, 0.167% 99.825%, 0.167% 0.175%);
    height: 101%;
    width: 101%;
    z-index: -1;
    left: -0.5%;
    top: -0.5%;
    background: #E4E7EE;
}

.mc-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1C2539;
    margin-bottom: 17px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.25;
}

.mc-card p {
    margin: 0 0 20px;
    color: #5D666F;
    font-size: 16px;
    line-height: 1.6;
}

.mc-card .mc-card-inner {
    clip-path: polygon(0.167% 0.175%, 99.833% 0.175%, 99.833% 86.41%, 93.226% 92.322%, 93.225% 92.322%, 84.772% 99.825%, 0.167% 99.825%, 0.167% 0.175%);
    background: #fff;
    padding: 30px;
    text-align: left;
}

.mc-card .mc-card-inner a {
    color: #5D666F;
    font-weight: 700;
}

.mc-card:hover .mc-card-inner a i { font-size: 16px; }

.mc-card .mc-card-inner a i { font-size: 0; transition: 0.3s; }

.title-style-three {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.title-style-three .pre {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 10px;
}

.title-style-three .bg-title {
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    font-size: 90px;
    font-weight: 700;
    color: rgba(25, 24, 23, 0.06);
    z-index: 0;
    pointer-events: none;
}

.working-process-area-three .title-style-three .bg-title::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(246, 246, 246, 1) 0%, rgba(246, 246, 246, 0.73) 35%, rgba(255, 255, 255, 0) 100%);
}

.working-process-area-three .title-style-three {
    z-index: 1;
}

.working-process-area-three .title-style-three .bg-title {
    z-index: -1;
}

.title-style-three .title {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    margin: 0;
}

.working-process-area-three {
    padding: 80px 0;
    background: #ffffff;
}

.working-process-bg {
    background-image: url("../images/wokring-process/bg-01.svg");
    max-width: 1680px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: polygon(6.399% 10.697%, 11.726% 0%, 100% 0%, 100% 50%, 100% 81.841%, 95.268% 90.112%, 89.702% 100%, 0% 100%, 0% 22.948%, 6.399% 10.697%);
}

@media (max-width: 767px) {
    .working-process-bg { clip-path: none; }
    .working-process-area-three .rts_jump_animation-wrapper {
        row-gap: 24px;
    }
    .rts-working-process-1 .inner {
        width: 128px;
        height: 128px;
        margin-bottom: 14px;
    }
    .rts-working-process-1 .inner .icon {
        width: 92px;
        height: 92px;
    }
    .rts-working-process-1 .inner::after {
        width: 30px;
        height: 30px;
        right: 0;
        top: 2px;
        font-size: 12px;
    }
    .rts-working-process-1 .content .title {
        font-size: 16px;
        line-height: 1.3;
    }
    .rts-working-process-1 .content .disc {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 0;
    }
}

.working-process-area-three .title-style-three .bg-title::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(246, 246, 246) 0%, rgba(246, 246, 246, 0.73) 35%, rgba(255, 255, 255, 0) 100%);
}

.working-process-area-three .title-style-three {
    z-index: 1;
}

.working-process-area-three .title-style-three .bg-title {
    z-index: -1;
}

.rts-working-process-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rts-working-process-1 .inner {
    width: 192px;
    height: 192px;
    border: 2px dashed rgba(32, 40, 45, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 33px;
    transition: 0.3s;
    position: relative;
}

.rts-working-process-1 .inner.two::after { content: "02"; }
.rts-working-process-1 .inner.three::after { content: "03"; }
.rts-working-process-1 .inner.four::after { content: "04"; }

.rts-working-process-1 .inner::after {
    position: absolute;
    right: 5px;
    top: 7px;
    content: "01";
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    transform: scale(0);
    transition: 0.3s;
}

.rts-working-process-1 .inner .icon {
    height: 144px;
    width: 144px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rts-working-process-1 .inner .icon i {
    font-size: 56px;
    line-height: 1;
    color: #2f3848;
}

.rts-working-process-1 .inner .icon svg {
    width: 64px;
    height: 64px;
    color: #2f3848;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rts-working-process-1 .content .title {
    margin-bottom: 7px;
}

.rts-working-process-1.process-lg .inner {
    width: 245px;
    height: 245px;
}

.rts-working-process-1.process-lg .inner::after {
    width: 60px;
    height: 60px;
}

.rts-working-process-1.process-lg .inner .icon {
    width: 193px;
    height: 193px;
}

.rts-working-process-1:hover .inner {
    border: 2px dashed var(--color-primary);
}

.rts-working-process-1:hover .inner::after {
    transform: scale(1);
}

.mc-call-strip {
    position: relative;
    background-image:
        linear-gradient(90deg, rgba(28, 37, 57, 0.78) 0%, rgba(28, 37, 57, 0.72) 55%, rgba(28, 37, 57, 0.7) 100%),
        url("../images/banner/cta_background_img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #fff;
}

.mc-call-strip .cta-main-wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.mc-call-strip .title {
    margin: 0;
    max-width: 760px;
    font-size: clamp(20px, 2.1vw, 40px);
    line-height: 1.16;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
    text-transform: none;
}

.mc-call-strip .title-sub {
    display: block;
    margin-top: 10px;
    font-size: clamp(16px, 1.1vw, 22px);
    line-height: 1.34;
    font-weight: 400;
}

.mc-call-strip .call-area {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 300px;
    justify-content: flex-end;
}

.mc-call-strip .call-area .icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #fff;
    color: #1c2539;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mc-call-strip .call-area .icon i {
    font-size: 34px;
}

.mc-call-strip .call-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.mc-call-strip .call-content span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mc-call-strip .call-content a {
    color: #fff;
    font-size: clamp(24px, 2.4vw, 44px);
    line-height: 1;
    font-weight: 500;
}

.mc-call-strip .call-content .legal-note {
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.85);
}

.mc-call-strip .call-content a:hover {
    color: #fff;
    opacity: 0.9;
}

.mc-product-card h4 {
    font-size: 15px;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
    margin: 8px 0;
}

.mc-cta {
    background-color: #191817;
    background-image:
        linear-gradient(90deg, rgba(25, 24, 23, 0.96) 0%, rgba(25, 24, 23, 0.9) 55%, rgba(25, 24, 23, 0.75) 100%),
        url("../images/banner/21.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.mc-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mc-note { color: #cbd5f5; font-size: 14px; margin-top: 8px; }

.mc-section-head { margin-bottom: 16px; }

.mc-catalog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.mc-catalog-categories a {
    border: 1px solid #d8dde6;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    color: #1c2539;
    transition: 0.2s;
}

.mc-catalog-categories a:hover {
    border-color: #c9ced8;
    background: #fff;
}

.mc-catalog-stream + .mc-catalog-stream {
    margin-top: 24px;
}

.mc-catalog-stream {
    position: relative;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #dfe4ed;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(20, 27, 42, 0.04);
}

.mc-cat-row-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.mc-cat-row-head h3 {
    margin: 0;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.05;
    color: #1c2539;
}

.mc-cat-row-head a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5d666f;
}

.mc-cat-row-head a:hover {
    color: var(--color-primary);
}

.mc-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mc-catalog-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    clip-path: none;
    background: #ffffff;
    border: 1px solid #e7ebf1;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.mc-catalog-card:hover {
    transform: translateY(-4px);
    border-color: #d3dae6;
}

.mc-catalog-icon {
    height: 64px;
    width: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f6;
    margin-bottom: 14px;
    clip-path: polygon(0.167% 0.175%, 99.833% 0.175%, 99.833% 86.41%, 93.226% 92.322%, 93.225% 92.322%, 84.772% 99.825%, 0.167% 99.825%, 0.167% 0.175%);
}

.mc-catalog-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.mc-catalog-card h4 {
    margin: 0 0 12px;
    font-size: clamp(18px, 1.1vw, 23px);
    line-height: 1.25;
    color: #1c2539;
    text-transform: none;
    letter-spacing: 0;
}

.mc-catalog-card p {
    margin: 0;
    color: #5d666f;
    font-size: 14px;
    line-height: 1.55;
}

.mc-catalog-meta {
    display: none;
}

.mc-catalog-meta li {
    margin: 0;
    color: #5d666f;
    font-size: 13px;
    line-height: 1.45;
}

.mc-catalog-meta li span {
    display: block;
    margin-bottom: 2px;
    color: #1c2539;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mc-catalog-card .read-more {
    color: #1c2539;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: auto;
}

.mc-catalog-card .read-more i {
    color: var(--color-primary);
    font-size: 14px;
    transition: transform 0.2s;
}

.mc-catalog-card:hover .read-more i {
    transform: translateX(2px);
}

.single-service-style-three {
    position: relative;
    z-index: 1;
}

.single-service-style-three .inner {
    clip-path: polygon(0.167% 0.175%, 99.833% 0.175%, 99.833% 86.41%, 93.226% 92.322%, 93.225% 92.322%, 84.772% 99.825%, 0.167% 99.825%, 0.167% 0.175%);
    background: #fff;
    padding: 30px;
    text-align: center;
}

.single-service-style-three .inner .icon {
    height: 76px;
    width: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
    margin: auto;
    margin-bottom: 25px;
    clip-path: polygon(0.167% 0.175%, 99.833% 0.175%, 99.833% 86.41%, 93.226% 92.322%, 93.225% 92.322%, 84.772% 99.825%, 0.167% 99.825%, 0.167% 0.175%);
}

.single-service-style-three .inner .title {
    font-size: 22px;
    font-weight: 700;
    color: #1C2539;
    margin-bottom: 17px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.25;
}

.single-service-style-three .inner p.disc {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5D666F;
    line-height: 1.6;
}

.single-service-style-three .inner a.read-more {
    color: #5D666F;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    transition: 0.3s;
    text-transform: none;
    letter-spacing: 0;
}

.single-service-style-three .inner a.read-more i {
    color: #5D666F;
}

.single-service-style-three .inner a.read-more i {
    font-size: 0px;
    transition: 0.3s;
}

.single-service-style-three:hover a.read-more i {
    font-size: 16px;
}

.single-service-style-three::after {
    position: absolute;
    content: "";
    clip-path: polygon(0.167% 0.175%, 99.833% 0.175%, 99.833% 86.41%, 93.226% 92.322%, 93.225% 92.322%, 84.772% 99.825%, 0.167% 99.825%, 0.167% 0.175%);
    height: 101%;
    width: 101%;
    z-index: -1;
    left: -0.5%;
    top: -0.5%;
    bottom: 0;
    right: 0;
    background: #E4E7EE;
}

.mc-product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mc-product-card p {
    margin: 0 0 10px;
    color: var(--muted);
}

.mc-product-card ul {
    margin: 10px 0;
    padding-left: 18px;
    color: var(--muted);
}

.mc-product-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.mc-product-hero-media {
    margin: 18px 0;
    max-width: 420px;
}

.mc-product-hero-media img {
    border-radius: 16px;
    box-shadow: var(--shadow);
    width: 100%;
}

.mc-specs {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.tc-contact-style3 {
    padding: 80px 0;
}

.map-side .map-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: none;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
}

.form-group { display: grid; gap: 6px; }

.text-uppercase { text-transform: uppercase; }
.text-danger { color: var(--primary); }
.color-666 { color: var(--muted); }
.lh-6 { line-height: 1.6; }

.fsz-12 { font-size: 12px; }
.fsz-14 { font-size: 14px; }
.fsz-30 { font-size: 30px; }
.fsz-45 { font-size: 45px; }

.mb-1 { margin-bottom: 4px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-90 { margin-bottom: 90px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-100 { margin-top: 100px; }

.form-check { display: flex; align-items: center; gap: 10px; }
.form-check.mt-40 { margin-top: 16px; }

.mc-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.mc-contact-info {
    display: grid;
    gap: 16px;
}

.mc-contact-line h4 {
    font-size: 14px;
    letter-spacing: 0.08em;
    margin: 0 0 6px;
}

.mc-contact-line p {
    margin: 0;
    color: var(--muted);
}

.mc-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.mc-form input,
.mc-form select,
.mc-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
}

.mc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mc-check { display: flex; align-items: center; gap: 8px; font-weight: 600; }

.mc-samples { display: none; gap: 12px; grid-template-columns: 1fr; }

.mc-samples.show { display: grid; }

.mc-contact-v2 {
    background: #ffffff;
    background-image: none;
}

.mc-contact-v2:not(.section-plus-parallax)::before,
.mc-contact-v2:not(.section-plus-parallax)::after {
    display: none;
}

.mc-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.mc-contact-map-title {
    margin: 0 0 28px;
    font-size: clamp(26px, 2.6vw, 40px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #1b1f24;
}

.mc-contact-map-wrap .map-img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.95;
}

.mc-location-top {
    margin-bottom: 30px;
}

.mc-location-card h4 {
    margin: 0 0 10px;
    font-size: clamp(30px, 3vw, 52px);
    line-height: 1;
    text-transform: uppercase;
    color: #111317;
}

.mc-location-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mc-location-card li {
    margin: 0 0 4px;
    font-size: 14px;
    color: #5d666f;
    line-height: 1.5;
}

.mc-location-card a {
    color: #5d666f;
}

.mc-location-card a:hover {
    color: #1c2539;
}

.mc-contact-form {
    margin-top: 8px;
}

.mc-hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.mc-form-head {
    margin-bottom: 18px;
}

.mc-form-head h4 {
    margin: 0;
    font-size: clamp(38px, 3.6vw, 64px);
    line-height: 1;
    text-transform: uppercase;
    color: #111317;
}

.mc-form-head p {
    margin: 8px 0 0;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.mc-contact-form .form-group {
    margin-bottom: 16px;
}

.mc-contact-form .form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1b1f24;
    margin-bottom: 6px;
    font-weight: 700;
}

.mc-contact-form .form-control {
    border: 1px solid #d2d6dc;
    border-radius: 0;
    background: #f7f7f7;
    min-height: 46px;
    font-size: 14px;
    color: #1f2736;
    box-shadow: none;
}

.mc-contact-form textarea.form-control {
    min-height: 170px;
    resize: vertical;
}

.mc-contact-form .form-control:focus {
    border-color: #b6bcc7;
    outline: none;
    box-shadow: none;
}

.mc-terms-check,
.mc-sample-check {
    margin: 0 0 12px;
    align-items: flex-start;
}

.mc-terms-check .form-check-label,
.mc-sample-check .form-check-label {
    font-size: 13px;
    color: #3f4754;
}

.mc-send-btn {
    margin-top: 18px;
    border-radius: 0;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    padding: 12px 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
}

.mc-send-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.mc-send-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.mc-form-status {
    margin: 14px 0 0;
    min-height: 22px;
    font-size: 14px;
    font-weight: 600;
}

.mc-form-status.is-success {
    color: #1d7f4e;
}

.mc-form-status.is-error {
    color: #bd2f2f;
}

@media (max-width: 992px) {
    .mc-hero-actions { flex-direction: column; align-items: flex-start; }
    .mc-hero {
        clip-path: none;
        min-height: auto;
        padding: 70px 0;
    }
    .mc-call-strip .cta-main-wrapper-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .mc-call-strip .call-area {
        justify-content: flex-start;
        min-width: auto;
    }
    .mc-call-strip .call-area .icon {
        width: 72px;
        height: 72px;
    }
    .mc-call-strip .call-area .icon i {
        font-size: 28px;
    }
    .mc-call-strip .call-content a {
        font-size: clamp(22px, 7vw, 34px);
    }
    .banner-actions { flex-direction: column; align-items: flex-start; }
    .mc-cards { grid-template-columns: 1fr; }
    .mc-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mc-cat-row-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .mc-contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .mc-contact-map-col {
        max-width: 560px;
    }
    .mc-contact { grid-template-columns: 1fr; }
    .mc-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .mc-catalog-grid { grid-template-columns: 1fr; }
    .mc-catalog-card { padding: 20px; }
    .mc-catalog-card h4 { font-size: 22px; }
    .mc-catalog-stream {
        padding: 16px;
        border-radius: 10px;
    }
    .mc-form-head h4 {
        font-size: clamp(30px, 12vw, 44px);
    }
}

.ml-footer {
    background: #191817;
    color: #ffffffcc;
    padding: 60px 0 0;
}

.ml-footer h4, .ml-footer h5, .ml-footer a { color: #fff; }

.ml-links { list-style: none; padding: 0; margin: 0; }
.ml-links li { margin-bottom: 6px; }

.ml-social { display: flex; gap: 10px; margin-top: 10px; }

.ml-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    margin-top: 30px;
}

.footer-bg-three {
    background: #f2f2f2;
    max-width: 92%;
    margin: auto;
    border-radius: 0;
    clip-path: polygon(6.399% 19.703%, 11.726% 0.157%, 100% 0.157%, 100% 48.112%, 100% 66.748%, 95.268% 81.862%, 89.702% 99.93%, 0% 99.93%, 0% 42.089%, 6.399% 19.703%);
    position: relative;
    overflow: hidden;
}

.footer-bg-three:not(.section-plus-parallax)::before,
.footer-bg-three:not(.section-plus-parallax)::after {
    content: "";
    position: absolute;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.footer-bg-three:not(.section-plus-parallax)::before {
    left: -40px;
    bottom: -30px;
    width: 280px;
    height: 220px;
}

.footer-bg-three:not(.section-plus-parallax)::after {
    right: -10px;
    top: -20px;
    width: 300px;
    height: 220px;
}

.footer-bg-three > * {
    position: relative;
    z-index: 1;
}

.footer-bg-three.section-plus-parallax {
    --pattern-line-top: 48px;
    background: #ffffff !important;
}

@media (max-width: 1599px) {
    .footer-bg-three { clip-path: none; }
}

.rts-footer-area.footer-three {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mc-footer-row-1 {
    align-items: start;
}

.footer-two-single-wized.left .title {
    font-size: 36px;
    color: #1C2539;
    line-height: 46px;
}

.footer-two-single-wized.left .title span { font-weight: 300; }

.footer-two-single-wized.left p.disc {
    font-size: 16px;
    color: #5D666F;
    line-height: 26px;
    margin-bottom: 25px;
}

.footer-two-single-wized.left .rts-btn {
    margin-top: 16px;
}

.footer-two-single-wized.left .rts-btn + p.disc {
    margin-top: 45px;
    margin-bottom: 10px;
}

.footer-two-single-wized .wized-title-area {
    margin-top: 18px;
}

.footer-two-single-wized.left a.rts-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 2px 20px rgba(24, 16, 16, 0.07);
    color: #fff;
}

.footer-two-single-wized.right { margin-top: 77px; }

@media (max-width: 767px) {
    .footer-two-single-wized.right { margin-top: 0; }
}

.footer-two-single-wized .wized-title-area .wized-title { margin-bottom: 4px; }

.footer-two-single-wized .wized-2-body ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-two-single-wized .wized-2-body ul li a {
    color: #5D666F;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.footer-two-single-wized .wized-2-body ul li a i {
    font-size: 14px;
    margin-right: 10px;
}

.footer-two-single-wized .wized-2-body ul li a:hover {
    color: var(--color-primary);
    margin-left: 10px;
}

.footer-two-single-wized .contact-info-1 {
    display: flex;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 18px;
}

.footer-two-single-wized .contact-info-1 .icon i {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--color-primary);
}

.footer-two-single-wized .contact-info-1 .icon i::after {
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 9px 18px rgba(24, 16, 16, 0.05);
    height: 35px;
    width: 35px;
}

.footer-two-single-wized .contact-info-1 .disc {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

.footer-two-single-wized .contact-info-1 .disc span {
    color: #5D666F;
    font-size: 16px;
    font-weight: 400;
}

.footer-two-single-wized .contact-info-1 .disc a {
    color: #1C2539;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.footer-two-single-wized .contact-info-1 .disc a:hover {
    color: var(--color-primary);
    margin-left: 10px;
}

.footer-two-single-wized .contact-info-1 .disc small {
    display: block;
    margin-top: 2px;
    color: #7f8794;
    font-size: 11px;
    line-height: 1.25;
}

.rts-footer-area.footer-three .social-three-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
    margin-left: 0;
}

.rts-footer-area.footer-three .social-three-wrapper li {
    list-style: none;
    margin: 0;
}

.rts-footer-area.footer-three .social-three-wrapper li:first-child { margin-left: 0; }

.rts-footer-area.footer-three .social-three-wrapper li a {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #E8E8E8;
    transition: 0.3s;
    color: #1C2539;
}

.rts-footer-area.footer-three .social-three-wrapper li a i {
    display: block;
    line-height: 1;
    font-size: 16px;
    margin-right: 0;
}

.rts-footer-area.footer-three .social-three-wrapper li a::after {
    display: none;
}

.rts-footer-area.footer-three .social-three-wrapper li a:hover {
    color: #fff;
    background: var(--color-primary);
}

.rts-copy-right-1 .copyright-h-2-wrapper {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .rts-copy-right-1 .copyright-h-2-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.rts-copy-right-1 .copyright-h-2-wrapper p.disc {
    margin-bottom: 0;
    color: #1C2539;
    font-weight: 500;
}

.mc-product-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.mc-product-modal.show {
    display: block;
}

.mc-product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 23, 32, 0.6);
}

.mc-product-modal-dialog {
    position: relative;
    width: min(760px, calc(100% - 32px));
    margin: 8vh auto;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #d8dde6;
    padding: 24px 24px 22px;
    box-shadow: 0 28px 50px rgba(20, 27, 42, 0.22);
}

.mc-product-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #f1f3f7;
    color: #1c2539;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mc-product-modal h4 {
    margin: 0 34px 14px 0;
    color: #1c2539;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.15;
    text-transform: none;
}

.mc-product-modal-content {
    color: #4f5969;
    font-size: 15px;
    line-height: 1.6;
}

.mc-product-modal-content ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.mc-product-modal-content li {
    margin-bottom: 4px;
}

.mc-product-modal-cta {
    margin-top: 18px;
}

@media (max-width: 575px) {
    .rts-copy-right-1 .copyright-h-2-wrapper p.disc { text-align: center; }
}

.rts-copy-right-1 .copyright-h-2-wrapper .right { margin-left: auto; }

@media (max-width: 767px) {
    .rts-copy-right-1 .copyright-h-2-wrapper .right {
        margin: auto;
        order: -1;
    }
}

.rts-copy-right-1 .copyright-h-2-wrapper .right ul {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.rts-copy-right-1 .copyright-h-2-wrapper .right ul li { margin: 0; padding: 0; }

.rts-copy-right-1 .copyright-h-2-wrapper .right ul li a {
    transition: 0.3s;
    color: #1C2539;
    font-weight: 500;
}

@keyframes jump-2 {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, 30px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes rotateIt {
    to { transform: rotate(-360deg); }
}
