/* MAIN MENU */
.nav-menu {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
     border-right: 1px solid rgba(255, 255, 255, 0.5);
}

/* EVERY BOX - EQUAL SIZE */
.nav-menu > li {
    flex: 1 1 0;
    width: 12.5%;
    height: 120px;
    margin: 0;
    padding: 0;
    display: flex;
}

/* MENU LINK */
.nav-menu > li > a {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    text-decoration: none;

    /* WHITE FONT */
    color: #ffffff !important;
    font-family: "Poppins", "Arial", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;

    padding: 10px;
    box-sizing: border-box;

    background: #1764c5;

    transition: all 0.3s ease;
}

/* HOVER */
.nav-menu > li > a:hover {
    background: #2876d8;
    color: #ffffff !important;
}

/* ACTIVE BOX */
.nav-menu > li.active > a,
.nav-menu > li > a.active {
    background: #ffffff;
    color: #1764c5 !important;
}




.nav-menu > li {
    flex: 1 1 0;
    width: 12.5%;
    height: 120px;
    display: flex;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    box-sizing: border-box;
}

.nav-menu > li:last-child {
    border-right: none;
}



/* Premium Description Text */
.Headings {
    color: #ffffff !important;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.2px;
    text-align: center;
    opacity: 0.95;
    margin-bottom: 0;
}



/* =========================================================
   MPS PREMIUM PRODUCT HERO
   Madras Print System
========================================================= */

.mps-product-hero {
    position: relative;
    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;

    background: #07111f;
}


/* ---------------------------------------------------------
   BACKGROUND
--------------------------------------------------------- */

.mps-product-hero__background {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.04);
}


/* ---------------------------------------------------------
   DARK OVERLAY
--------------------------------------------------------- */

.mps-product-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(3, 9, 18, 0.96) 0%,
            rgba(5, 14, 27, 0.88) 42%,
            rgba(5, 12, 23, 0.78) 100%
        );
}


/* ---------------------------------------------------------
   LIGHT GLOW
--------------------------------------------------------- */

.mps-product-hero::after {
    content: "";

    position: absolute;
    width: 450px;
    height: 450px;

    right: -160px;
    top: -160px;

    border-radius: 50%;

    background: rgba(255, 193, 7, 0.08);

    filter: blur(80px);

    z-index: -1;
}


/* ---------------------------------------------------------
   DECORATIVE SHAPE
--------------------------------------------------------- */

.mps-product-hero__shape {
    position: absolute;

    right: 4%;
    top: 12%;

    width: 260px;

    opacity: 0.08;

    pointer-events: none;

    animation: mpsHeroFloat 6s ease-in-out infinite;
}

.mps-product-hero__shape img {
    width: 100%;
    height: auto;
    display: block;
}


@keyframes mpsHeroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.mps-product-hero__content {
    position: relative;
    z-index: 5;

    max-width: 900px;

    margin: 0 auto;

    padding: 90px 20px 70px;

    text-align: center;
}


/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.mps-product-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 18px;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #ffc107;
}

.mps-product-hero__eyebrow span {
    display: block;

    width: 28px;
    height: 1px;

    background: #ffc107;
}


/* ---------------------------------------------------------
   MAIN TITLE
--------------------------------------------------------- */

.mps-product-hero__title {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: clamp(2.4rem, 5vw, 4.2rem);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1.5px;

    color: #ffffff;

    text-shadow:
        0 4px 25px rgba(0, 0, 0, 0.45);
}


/* Highlight word */

.mps-product-hero__title strong {
    display: inline-block;

    font-weight: 800;

    color: #ffc107;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.mps-product-hero__description {
    max-width: 700px;

    margin: 22px auto 0;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.86);

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.5);
}


/* ---------------------------------------------------------
   BREADCRUMB
--------------------------------------------------------- */

.mps-product-hero__breadcrumb {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    margin: 28px 0 0;
    padding: 0;

    list-style: none;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.8);
}


.mps-product-hero__breadcrumb li {
    margin: 0;
    padding: 0;
}


.mps-product-hero__breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
}


.mps-product-hero__breadcrumb a:hover {
    color: #ffc107;
}


.mps-product-hero__arrow {
    display: flex;
    align-items: center;

    color: #ffc107;

    font-size: 11px;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    .mps-product-hero {
        min-height: 370px;
    }

    .mps-product-hero__content {
        padding: 70px 18px 55px;
    }

    .mps-product-hero__eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
        gap: 8px;
    }

    .mps-product-hero__eyebrow span {
        width: 18px;
    }

    .mps-product-hero__title {
        font-size: 2.15rem;
        line-height: 1.15;
        letter-spacing: -0.7px;
    }

    .mps-product-hero__description {
        margin-top: 18px;

        font-size: 14px;
        line-height: 1.65;
    }

    .mps-product-hero__breadcrumb {
        margin-top: 22px;
        font-size: 13px;
    }

    .mps-product-hero__shape {
        width: 180px;
        right: -40px;
        top: 8%;
    }
}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 480px) {

    .mps-product-hero {
        min-height: 350px;
    }

    .mps-product-hero__content {
        padding: 60px 15px 45px;
    }

    .mps-product-hero__title {
        font-size: 1.9rem;
    }

    .mps-product-hero__description {
        font-size: 13.5px;
    }
}











/* Main row */
.team-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

/* Each column */
.team-card-col {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

/* Profile card */
.team-profile-card {
    display: flex;
    align-items: center;
    gap: 20px;

    width: 100%;
    min-height: 150px;
    padding: 20px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;

    box-sizing: border-box;
    overflow: hidden;
}

/* Profile image */
.team-profile-image {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;

    border-radius: 50%;
    overflow: hidden;

    position: relative;
}

/* Image */
.team-profile-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
}

/* Text area */
.team-profile-info {
    flex: 1;
    min-width: 0;
}

/* Name */
.team-profile-name {
    margin: 0 0 6px 0;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;

    color: #0b5fc6;
}

/* Role */
.team-profile-role {
    margin: 0;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;

    color: #555555;
}

/* Mobile */
@media (max-width: 767px) {

    .team-card-row {
        gap: 20px;
    }

    .team-card-col {
        flex: 0 0 100%;
    }

    .team-profile-card {
        padding: 18px;
    }

    .team-profile-image {
        flex: 0 0 75px;
        width: 75px;
        height: 75px;
    }

    .team-profile-name {
        font-size: 17px;
    }

    .team-profile-role {
        font-size: 14px;
    }
}









/* =========================================================
   MPS PRODUCT RANGE
   Unique class names - will not conflict with old theme
========================================================= */

.mps-products {
    position: relative;
    width: 100%;
    padding: 83px 0 0px;

    background: #ffffff;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.mps-products__header {
    margin-bottom: 65px;
}

.mps-products__heading {
    max-width: 1000px;
    margin: 0 auto;

    text-align: center;
}


/* Eyebrow */

.mps-products__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: #e0a800;
}


.mps-products__eyebrow-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff8df;

    color: #e0a800;

    font-size: 17px;
}


/* Main title */

.mps-products__title {
    margin: 0 0 20px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(2.2rem, 4vw, 3.4rem);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1px;

    color: #101828;
}


/* Intro */

.mps-products__intro {
    max-width: 900px;

    margin: 0 auto;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.8;

    color: #667085;
}


/* =========================================================
   PRODUCT ROW
========================================================= */

.mps-product-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    margin-bottom: 100px;
}


/* Reverse row */

.mps-product-row--reverse {
    grid-template-columns: 1fr 1fr;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.mps-product-row__image {
    width: 100%;
}


.mps-product-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 24px;

    background: #f4f6f8;

    box-shadow:
        0 20px 55px rgba(16, 24, 40, 0.12);
}


/* Image */

.mps-product-image img {
    display: block;

    width: 100%;
    height: 420px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


/* Hover */

.mps-product-image:hover img {
    transform: scale(1.05);
}


/* Image shine */

.mps-product-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 40%,
            rgba(255,255,255,0.15) 50%,
            transparent 60%
        );

    transform: translateX(-100%);

    transition: transform 0.8s ease;

    pointer-events: none;
}


.mps-product-image:hover::after {
    transform: translateX(100%);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.mps-product-row__content {
    width: 100%;
}


.mps-product-content {
    max-width: 560px;

    padding: 20px 10px;
}


/* Number */

.mps-product-content__number {
    display: block;

    margin-bottom: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #e0a800;
}


/* Product title */

.mps-product-content__title {
    position: relative;

    margin: 0 0 20px;

    padding-bottom: 18px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(2rem, 3vw, 2.7rem);

    font-weight: 700;

    line-height: 1.2;

    color: #101828;
}


/* Title underline */

.mps-product-content__title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 55px;
    height: 3px;

    border-radius: 10px;

    background: #e0a800;
}


/* Description */

.mps-product-content__text {
    margin: 0 0 30px;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.8;

    color: #667085;
}


/* =========================================================
   BUTTON
========================================================= */

.mps-product-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 14px 22px;

    border-radius: 6px;

    background: #101828;

    color: #ffffff !important;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.mps-product-button:hover {
    background: #e0a800;

    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(224, 168, 0, 0.25);
}


/* Button icon */

.mps-product-button__icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .mps-products {
        padding: 70px 0 80px;
    }

    .mps-products__header {
        margin-bottom: 50px;
    }

    .mps-product-row {
        gap: 40px;
        margin-bottom: 75px;
    }

    .mps-product-image img {
        height: 340px;
    }

    .mps-product-content__title {
        font-size: 2rem;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mps-products {
        padding: 55px 0 65px;
    }


    .mps-products__header {
        margin-bottom: 45px;
    }


    .mps-products__heading {
        padding: 0 15px;
    }


    .mps-products__eyebrow {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .mps-products__eyebrow-icon {
        width: 32px;
        height: 32px;

        font-size: 14px;
    }


    .mps-products__title {
        font-size: 2rem;

        letter-spacing: -0.5px;
    }


    .mps-products__intro {
        font-size: 14px;

        line-height: 1.7;
    }


    /* One column */

    .mps-product-row,
    .mps-product-row--reverse {

        display: flex;

        flex-direction: column;

        gap: 30px;

        margin-bottom: 65px;
    }


    /* Image always first */

    .mps-product-row__image {
        order: 1;
    }


    .mps-product-row__content {
        order: 2;
    }


    .mps-product-image {
        border-radius: 18px;
    }


    .mps-product-image img {
        height: 280px;
    }


    .mps-product-content {
        padding: 0 5px;
    }


    .mps-product-content__title {
        font-size: 1.8rem;

        margin-bottom: 17px;
    }


    .mps-product-content__text {
        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 25px;
    }


    .mps-product-button {
        padding: 12px 18px;

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mps-product-image img {
        height: 240px;
    }

    .mps-product-content__title {
        font-size: 1.65rem;
    }

    .mps-products__title {
        font-size: 1.8rem;
    }

}




/* =========================================================
   MADRAS PRINT SYSTEM
   PREMIUM ABOUT SECTION
========================================================= */

.mps-premium-about {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    background: #f6f8fb;
    isolation: isolate;
}

.mps-premium-about-bg {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -250px;
    top: -250px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(38, 113, 181, 0.08),
        rgba(255, 255, 255, 0)
    );
    z-index: -1;
}

.mps-premium-about-bg::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(38, 113, 181, 0.05);
}


/* =========================================================
   MAIN GRID
========================================================= */

.mps-premium-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 90px;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.mps-premium-about-media {
    position: relative;
    min-height: 570px;
}

.mps-premium-image-frame {
    position: relative;
    width: 100%;
    height: 530px;
}


/* Main Image */

.mps-premium-image-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 82%;
    height: 455px;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    padding: 8px;
    box-shadow:
        0 25px 70px rgba(20, 35, 55, 0.16),
        0 8px 20px rgba(20, 35, 55, 0.08);
    z-index: 2;
}

.mps-premium-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.7s ease;
}

.mps-premium-image-main:hover img {
    transform: scale(1.06);
}


/* Accent Border */

.mps-premium-image-accent {
    position: absolute;
    top: 28px;
    right: 4%;
    width: 72%;
    height: 455px;
    border: 2px solid rgba(38, 113, 181, 0.18);
    border-radius: 24px;
    z-index: 1;
}


/* Small Image */

.mps-premium-image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 190px;
    padding: 7px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(20, 35, 55, 0.18);
    z-index: 4;
}

.mps-premium-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.mps-premium-experience {
    position: absolute;
    left: -25px;
    bottom: 42px;
    min-width: 205px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(20, 35, 55, 0.15);
    backdrop-filter: blur(12px);
    z-index: 6;
}

.mps-premium-experience-number {
    font-size: 43px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    color: #1d5f9f;
}

.mps-premium-experience-number span {
    font-size: 23px;
    vertical-align: top;
}

.mps-premium-experience-line {
    width: 1px;
    height: 43px;
    background: #d8dee7;
}

.mps-premium-experience-text {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    color: #566170;
}


/* Decorative Dots */

.mps-premium-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2671b5;
}

.mps-premium-dot-1 {
    top: 8px;
    right: 5%;
}

.mps-premium-dot-2 {
    right: 12%;
    top: 38px;
    opacity: 0.4;
}


/* =========================================================
   CONTENT
========================================================= */

.mps-premium-about-content {
    max-width: 680px;
}

.mps-premium-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2671b5;
}

.mps-premium-eyebrow span {
    display: block;
    width: 38px;
    height: 2px;
    background: #2671b5;
    border-radius: 20px;
}


/* Heading */

.mps-premium-about-title {
    margin: 0 0 25px;
    max-width: 680px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;
    color: #17212d;
}

.mps-premium-about-title strong {
    display: block;
    font-weight: 800;
    color: #2671b5;
}


/* Paragraph */

.mps-premium-about-intro {
    margin: 0 0 14px;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
    color: #303b49;
}

.mps-premium-about-text {
    margin: 0 0 32px;
    max-width: 650px;
    font-size: 15px;
    line-height: 1.8;
    color: #687381;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.mps-premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 34px;
}

.mps-premium-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px;
    border: 1px solid #e4e9ef;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.mps-premium-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(38, 113, 181, 0.25);
    box-shadow: 0 15px 35px rgba(25, 45, 70, 0.09);
}


/* Feature Icon */

.mps-premium-feature-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eaf3fb;
    color: #2671b5;
    font-size: 15px;
}

.mps-premium-feature-info h4 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 750;
    color: #1c2733;
}

.mps-premium-feature-info p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #77818e;
}


/* =========================================================
   ACTION AREA
========================================================= */

.mps-premium-about-action {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* Button */

.mps-premium-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 17px 15px 23px;
    color: #fff;
    background: #1c2733;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 12px 25px rgba(28, 39, 51, 0.16);
}

.mps-premium-about-btn span {
    white-space: nowrap;
}

.mps-premium-about-btn i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #2671b5;
    transition: transform 0.3s ease;
}

.mps-premium-about-btn:hover {
    color: #fff;
    background: #2671b5;
    transform: translateY(-2px);
}

.mps-premium-about-btn:hover i {
    transform: translateX(3px);
    background: #fff;
    color: #2671b5;
}


/* Trust */

.mps-premium-trust {
    display: flex;
    align-items: center;
    gap: 11px;
}

.mps-premium-trust-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3fb;
    color: #2671b5;
    font-size: 13px;
}

.mps-premium-trust strong,
.mps-premium-trust small {
    display: block;
}

.mps-premium-trust strong {
    font-size: 13px;
    color: #26323e;
}

.mps-premium-trust small {
    margin-top: 3px;
    font-size: 11px;
    color: #89919c;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .mps-premium-about {
        padding: 85px 0;
    }

    .mps-premium-about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .mps-premium-about-media {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .mps-premium-about-content {
        max-width: 750px;
        margin: 0 auto;
    }

    .mps-premium-about-title {
        font-size: 46px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .mps-premium-about {
        padding: 65px 0;
    }

    .mps-premium-about-grid {
        gap: 55px;
    }

    .mps-premium-about-media {
        min-height: 420px;
    }

    .mps-premium-image-frame {
        height: 390px;
    }

    .mps-premium-image-main {
        width: 86%;
        height: 315px;
        border-radius: 17px;
    }

    .mps-premium-image-main img {
        border-radius: 12px;
    }

    .mps-premium-image-accent {
        width: 75%;
        height: 315px;
        top: 18px;
        right: 0;
        border-radius: 18px;
    }

    .mps-premium-image-small {
        width: 47%;
        height: 130px;
        right: 0;
        bottom: 10px;
    }

    .mps-premium-experience {
        left: -5px;
        bottom: 32px;
        min-width: 170px;
        padding: 15px;
        gap: 10px;
    }

    .mps-premium-experience-number {
        font-size: 34px;
    }

    .mps-premium-experience-line {
        height: 34px;
    }

    .mps-premium-experience-text {
        font-size: 11px;
    }

    .mps-premium-about-title {
        font-size: 36px;
        line-height: 1.12;
        letter-spacing: -1.2px;
    }

    .mps-premium-about-intro {
        font-size: 16px;
        line-height: 1.65;
    }

    .mps-premium-about-text {
        font-size: 14px;
    }

    .mps-premium-feature-grid {
        grid-template-columns: 1fr;
    }

    .mps-premium-about-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .mps-premium-about-btn {
        width: 100%;
        justify-content: space-between;
    }

}