/* =========================================
   COMMON INNER PAGE BANNER
========================================= */

.inner-banner {
    position: relative;

    width: 100%;
    min-height: 410px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #07080b;
}


/* =========================================
   BANNER IMAGE
========================================= */

.inner-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 1;
}


.inner-banner-image img {
    display: block;

    width: 100%;
    height: 100%;

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


/* =========================================
   BANNER OVERLAY
========================================= */

.inner-banner-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 5, 8, 0.97) 0%,
            rgba(4, 5, 8, 0.90) 28%,
            rgba(4, 5, 8, 0.62) 55%,
            rgba(4, 5, 8, 0.25) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 5, 8, 0.25) 0%,
            rgba(4, 5, 8, 0.60) 100%
        );

    pointer-events: none;
}


/* =========================================
   BANNER CONTAINER
========================================= */

.inner-banner-container {
    position: relative;

    z-index: 3;

    width: min(1180px, calc(100% - 50px));

    min-height: 410px;

    margin: 0 auto;

    display: flex;

    align-items: center;
}


/* =========================================
   BANNER CONTENT
========================================= */

.inner-banner-content {
    position: relative;

    width: 100%;
    max-width: 720px;

    padding: 70px 0 65px;
}


/* =========================================
   LABEL
========================================= */

.inner-banner-label {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.inner-banner-label::before {
    content: "";

    display: block;

    width: 34px;
    height: 1px;

    background: #d7193f;
}


/* =========================================
   BANNER TITLE
   NOTE:
   This is SPAN, NOT H1
========================================= */

.inner-banner-title {
    display: block;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 45px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;

    color: #ffffff;
}


.inner-banner-title strong {
    display: block;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: inherit;

    font-weight: 700;

    line-height: inherit;

    color: #d7193f;
}


/* =========================================
   DESCRIPTION
========================================= */

.inner-banner-content p {
    max-width: 590px;

    margin: 20px 0 0;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.8;

    color: #b5b8c2;
}


/* =========================================
   ACCENT LINE
========================================= */

.inner-banner-line {
    width: 75px;
    height: 2px;

    margin-top: 27px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


/* =========================================
   SUBTLE BANNER DECORATION
========================================= */

.inner-banner-content::before {
    content: "";

    position: absolute;

    left: -120px;
    top: 50%;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        rgba(215, 25, 63, 0.045);

    filter: blur(55px);

    pointer-events: none;

    transform: translateY(-50%);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .inner-banner {
        min-height: 390px;
    }


    .inner-banner-container {
        width: min(100% - 40px, 760px);

        min-height: 390px;
    }


    .inner-banner-content {
        max-width: 650px;

        padding: 65px 0 60px;
    }


    .inner-banner-title {
        font-size: 48px;
    }


    .inner-banner-content p {
        max-width: 530px;

        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .inner-banner {
        min-height: 350px;
    }


    .inner-banner-container {
        width: calc(100% - 35px);

        min-height: 350px;

        margin: 0 auto;
    }


    /* Mobile image positioning */

    .inner-banner-image img {
        object-position: 68% center;
    }


    /* Mobile overlay */

    .inner-banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 5, 8, 0.96) 0%,
                rgba(4, 5, 8, 0.82) 42%,
                rgba(4, 5, 8, 0.48) 72%,
                rgba(4, 5, 8, 0.28) 100%
            ),
            linear-gradient(
                180deg,
                rgba(4, 5, 8, 0.25) 0%,
                rgba(4, 5, 8, 0.68) 100%
            );
    }


    .inner-banner-content {
        max-width: 100%;

        padding: 55px 0 50px;
    }


    /* Label */

    .inner-banner-label {
        gap: 8px;

        margin-bottom: 13px;

        font-size: 8px;

        letter-spacing: 2.2px;
    }


    .inner-banner-label::before {
        width: 25px;
    }


    /* Title */

    .inner-banner-title {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    .inner-banner-title strong {
        display: inline;

        font-size: inherit;
    }


    /* Description */

    .inner-banner-content p {
        max-width: 330px;

        margin-top: 15px;

        font-size: 11px;

        line-height: 1.75;
    }


    /* Accent */

    .inner-banner-line {
        width: 55px;

        margin-top: 20px;
    }


    .inner-banner-content::before {
        left: -100px;

        width: 180px;
        height: 180px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .inner-banner {
        min-height: 330px;
    }


    .inner-banner-container {
        min-height: 330px;

        width: calc(100% - 30px);
    }


    .inner-banner-content {
        padding: 45px 0;
    }


    .inner-banner-title {
        font-size: 30px;
    }


    .inner-banner-content p {
        max-width: 300px;

        font-size: 10px;

        line-height: 1.7;
    }


    .inner-banner-label {
        font-size: 7px;

        letter-spacing: 2px;
    }

}

/* =========================================
   ABOUT MAIN SECTION
========================================= */

.about-main-section {
    position: relative;

    width: 100%;

    padding: 100px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 35%,
            rgba(215, 25, 63, 0.08),
            transparent 30%
        ),
        #08090d;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.about-main-container {
    position: relative;

    width: min(1180px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 0.82fr;

    gap: 75px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-main-content {
    position: relative;

    z-index: 2;

    max-width: 650px;
}


/* =========================================
   LABEL
========================================= */

.about-main-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.about-main-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background: #d7193f;
}


/* =========================================
   H1
========================================= */

.about-main-content h1 {
    margin: 0 0 22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4.5vw, 54px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.8px;

    color: #ffffff;
}


.about-main-content h1 span {
    color: #d7193f;
}


/* =========================================
   PARAGRAPHS
========================================= */

.about-main-content p {
    margin: 0 0 17px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.9;

    color: #aeb2bd;
}


.about-main-content p strong {
    font-weight: 600;

    color: #e1e2e6;
}


/* =========================================
   BUTTON
========================================= */

.about-main-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-top: 10px;

    padding: 13px 21px;

    border: 1px solid rgba(215, 25, 63, 0.55);

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #d7193f,
            #9e122f
        );

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(215, 25, 63, 0.13);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.about-main-button span {
    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.about-main-button:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #e21c45,
            #b11435
        );

    box-shadow:
        0 14px 32px rgba(215, 25, 63, 0.22);
}


.about-main-button:hover span {
    transform: translateX(4px);
}


/* =========================================
   RIGHT IMAGE
========================================= */

.about-main-image {
    position: relative;

    width: 100%;

    max-width: 440px;

    height: 560px;

    margin-left: auto;

    border-radius: 24px;

    overflow: visible;
}


/* =========================================
   IMAGE FRAME
========================================= */

.about-image-frame {
    position: absolute;

    top: 18px;
    right: -18px;

    width: 100%;
    height: 100%;

    border: 1px solid rgba(215, 25, 63, 0.30);

    border-radius: 24px;

    background:
        rgba(215, 25, 63, 0.035);

    z-index: 1;
}


/* =========================================
   IMAGE
========================================= */

.about-main-image img {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    border-radius: 24px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.48);
}


/* =========================================
   IMAGE GLOW
========================================= */

.about-main-image::before {
    content: "";

    position: absolute;

    left: -50px;
    bottom: 40px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background:
        rgba(215, 25, 63, 0.08);

    filter: blur(55px);

    z-index: 0;

    pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .about-main-section {
        padding: 80px 20px;
    }


    .about-main-container {
        grid-template-columns: 1fr 0.85fr;

        gap: 45px;
    }


    .about-main-content h1 {
        font-size: 40px;
    }


    .about-main-content p {
        font-size: 12px;

        line-height: 1.8;
    }


    .about-main-image {
        height: 500px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .about-main-section {
        padding: 65px 15px;
    }


    .about-main-container {
        display: flex;

        flex-direction: column;

        gap: 38px;

        align-items: stretch;
    }


    /* Content */

    .about-main-content {
        max-width: 100%;
    }


    .about-main-label {
        gap: 8px;

        margin-bottom: 13px;

        font-size: 8px;

        letter-spacing: 2.2px;
    }


    .about-main-label::before {
        width: 25px;
    }


    .about-main-content h1 {
        margin-bottom: 18px;

        font-size: 31px;

        line-height: 1.15;

        letter-spacing: -0.4px;
    }


    .about-main-content p {
        margin-bottom: 14px;

        font-size: 11px;

        line-height: 1.8;
    }


    .about-main-button {
        margin-top: 7px;

        padding: 12px 18px;

        font-size: 10px;
    }


    /* Image */

    .about-main-image {
        width: calc(100% - 15px);

        max-width: 380px;

        height: 440px;

        margin: 0 auto;
    }


    .about-image-frame {
        top: 12px;

        right: -12px;

        border-radius: 19px;
    }


    .about-main-image img {
        border-radius: 19px;
    }


    .about-main-image::before {
        left: -35px;

        bottom: 20px;

        width: 130px;
        height: 130px;

        filter: blur(45px);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .about-main-section {
        padding: 55px 14px;
    }


    .about-main-content h1 {
        font-size: 28px;
    }


    .about-main-content p {
        font-size: 10px;

        line-height: 1.75;
    }


    .about-main-image {
        height: 400px;

        width: calc(100% - 10px);
    }


    .about-image-frame {
        right: -9px;

        top: 9px;
    }

}

/* =========================================
   COMMON CONTENT SECTION
========================================= */

.content-section {
    position: relative;

    width: 100%;

    padding: 90px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(215, 25, 63, 0.07),
            transparent 30%
        ),
        #07080b;
}


/* =========================================
   CONTENT CONTAINER
========================================= */

.content-container {
    position: relative;

    width: min(1000px, 100%);

    margin: 0 auto;

    padding: 55px 60px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.96),
            rgba(10, 11, 15, 0.98)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.38);

    overflow: hidden;
}


/* =========================================
   TOP ACCENT
========================================= */

.content-container::before {
    content: "";

    position: absolute;

    top: 0;
    left: 60px;

    width: 100px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            transparent
        );
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.content-container::after {
    content: "";

    position: absolute;

    right: -100px;
    top: -120px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        rgba(215, 25, 63, 0.055);

    filter: blur(50px);

    pointer-events: none;
}


/* =========================================
   CONTENT LAYER
========================================= */

.content-container > * {
    position: relative;

    z-index: 2;
}


/* =========================================
   SECTION LABEL
========================================= */

.content-label {
    display: inline-block;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


/* =========================================
   H2
========================================= */

.content-container h2 {
    max-width: 760px;

    margin: 0 0 22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.5px;

    color: #ffffff;
}


/* =========================================
   H2 ACCENT
========================================= */

.content-container h2 span {
    color: #d7193f;
}


/* =========================================
   PARAGRAPH
========================================= */

.content-container p {
    margin: 0 0 18px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.9;

    color: #aeb2bd;
}


/* =========================================
   STRONG TEXT
========================================= */

.content-container p strong {
    font-weight: 600;

    color: #e0e1e5;
}


/* =========================================
   H3
========================================= */

.content-container h3 {
    margin: 30px 0 12px;

    padding-left: 17px;

    border-left: 2px solid #d7193f;

    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 600;

    line-height: 1.4;

    color: #ffffff;
}


/* =========================================
   LAST PARAGRAPH
========================================= */

.content-container p:last-child {
    margin-bottom: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .content-section {
        padding: 75px 20px;
    }


    .content-container {
        padding: 45px 45px;
    }


    .content-container::before {
        left: 45px;
    }


    .content-container h2 {
        font-size: 40px;
    }


    .content-container p {
        font-size: 12px;

        line-height: 1.85;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .content-section {
        padding: 60px 15px;
    }


    .content-container {
        width: 100%;

        padding: 34px 23px;

        border-radius: 18px;
    }


    .content-container::before {
        left: 23px;

        width: 70px;
    }


    .content-container::after {
        right: -100px;
        top: -80px;

        width: 220px;
        height: 220px;
    }


    /* Label */

    .content-label {
        margin-bottom: 12px;

        font-size: 8px;

        letter-spacing: 2.2px;
    }


    /* H2 */

    .content-container h2 {
        margin-bottom: 17px;

        font-size: 29px;

        line-height: 1.15;

        letter-spacing: -0.3px;
    }


    .content-container h2 span {
        display: inline;
    }


    /* Paragraph */

    .content-container p {
        margin-bottom: 15px;

        font-size: 11px;

        line-height: 1.8;
    }


    /* H3 */

    .content-container h3 {
        margin: 25px 0 11px;

        padding-left: 12px;

        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .content-section {
        padding: 50px 14px;
    }


    .content-container {
        padding: 30px 19px;

        border-radius: 16px;
    }


    .content-container::before {
        left: 19px;

        width: 60px;
    }


    .content-container h2 {
        font-size: 26px;
    }


    .content-container p {
        font-size: 10px;

        line-height: 1.75;
    }


    .content-container h3 {
        font-size: 13px;
    }

}

/* =========================================
   OUR APPROACH SECTION
========================================= */

.approach-section {
    position: relative;

    width: 100%;

    padding: 95px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(215, 25, 63, 0.07),
            transparent 30%
        ),
        #08090d;
}


/* =========================================
   CONTAINER
========================================= */

.approach-container {
    width: min(1180px, 100%);

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.approach-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.approach-label {
    display: inline-block;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.approach-heading h2 {
    margin: 0 0 17px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 50px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.6px;

    color: #ffffff;
}


.approach-heading h2 span {
    color: #d7193f;
}


.approach-heading p {
    max-width: 680px;

    margin: 0 auto;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.85;

    color: #9fa3ae;
}


/* =========================================
   GRID
========================================= */

.approach-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   CARD
========================================= */

.approach-card {
    position: relative;

    min-height: 285px;

    padding: 27px 27px 30px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 23, 30, 0.96),
            rgba(10, 11, 15, 0.98)
        );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Card glow */

.approach-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -90px;
    right: -70px;

    border-radius: 50%;

    background:
        rgba(215, 25, 63, 0.07);

    filter: blur(35px);

    pointer-events: none;
}


/* Hover */

.approach-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(215, 25, 63, 0.30);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.42),
        0 0 25px rgba(215, 25, 63, 0.06);
}


/* =========================================
   CARD TOP
========================================= */

.approach-card-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;
}


/* =========================================
   NUMBER
========================================= */

.approach-number {
    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #d7193f;
}


/* =========================================
   ICON
========================================= */

.approach-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border-radius: 13px;

    border: 1px solid rgba(215, 25, 63, 0.22);

    background:
        rgba(215, 25, 63, 0.08);

    box-shadow:
        inset 0 0 18px rgba(215, 25, 63, 0.04);
}


.approach-icon i {
    font-size: 16px;

    color: #d7193f;
}


/* =========================================
   CARD CONTENT
========================================= */

.approach-card-content {
    position: relative;

    z-index: 2;
}


.approach-card-content h3 {
    margin: 0 0 11px;

    font-family: Arial, sans-serif;

    font-size: 18px;

    font-weight: 600;

    color: #ffffff;
}


.approach-card-content p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.8;

    color: #9296a2;
}


/* =========================================
   BOTTOM LINE
========================================= */

.approach-card-line {
    position: absolute;

    left: 27px;
    bottom: 0;

    width: 55px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            transparent
        );

    transition:
        width 0.35s ease;
}


.approach-card:hover .approach-card-line {
    width: 100px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .approach-section {
        padding: 80px 20px;
    }


    .approach-grid {
        gap: 15px;
    }


    .approach-card {
        min-height: 280px;

        padding: 24px;
    }


    .approach-card-top {
        margin-bottom: 38px;
    }


    .approach-card-content h3 {
        font-size: 16px;
    }


    .approach-card-content p {
        font-size: 11px;

        line-height: 1.75;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .approach-section {
        padding: 65px 15px;
    }


    .approach-heading {
        margin-bottom: 32px;
    }


    .approach-label {
        margin-bottom: 12px;

        font-size: 8px;

        letter-spacing: 2.2px;
    }


    .approach-heading h2 {
        margin-bottom: 14px;

        font-size: 30px;

        line-height: 1.15;
    }


    .approach-heading h2 span {
        display: inline;
    }


    .approach-heading p {
        font-size: 11px;

        line-height: 1.8;
    }


    .approach-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .approach-card {
        min-height: auto;

        padding: 21px 20px 25px;

        border-radius: 16px;
    }


    .approach-card-top {
        margin-bottom: 25px;
    }


    .approach-number {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .approach-icon {
        width: 40px;
        height: 40px;

        border-radius: 11px;
    }


    .approach-icon i {
        font-size: 14px;
    }


    .approach-card-content h3 {
        margin-bottom: 8px;

        font-size: 14px;
    }


    .approach-card-content p {
        font-size: 10px;

        line-height: 1.75;
    }


    .approach-card-line {
        left: 20px;

        width: 45px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .approach-section {
        padding: 55px 14px;
    }


    .approach-heading h2 {
        font-size: 27px;
    }


    .approach-heading p {
        font-size: 10px;
    }


    .approach-card {
        padding: 19px 17px 23px;
    }


    .approach-card-content h3 {
        font-size: 13px;
    }


    .approach-card-content p {
        font-size: 9px;
    }


    .approach-icon {
        width: 37px;
        height: 37px;
    }


    .approach-icon i {
        font-size: 13px;
    }

}

/* =========================================
   MODEL PROFILES SECTION
========================================= */

.model-profiles-section {
    width: 100%;

    padding: 90px 20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(215, 25, 63, 0.07),
            transparent 32%
        ),
        #07080b;
}


/* =========================================
   CONTAINER
========================================= */

.model-profiles-container {
    width: min(1180px, 100%);

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.model-profiles-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}


.model-profiles-label {
    display: inline-block;

    margin-bottom: 14px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.model-profiles-heading h2 {
    margin: 0 0 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.12;

    color: #ffffff;
}


.model-profiles-heading h2 span {
    color: #d7193f;
}


.model-profiles-heading p {
    max-width: 600px;

    margin: 0 auto;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: #969aa6;
}


/* =========================================
   GRID
========================================= */

.model-profiles-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.model-profile-card {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #15161c,
            #0b0c10
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.32);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.model-profile-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(215, 25, 63, 0.30);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.45);
}


/* =========================================
   IMAGE
========================================= */

.model-profile-image {
    position: relative;

    width: 100%;

    height: 365px;

    overflow: hidden;

    background: #101116;
}


.model-profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


.model-profile-card:hover
.model-profile-image img {
    transform: scale(1.04);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.model-profile-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(4, 5, 8, 0.75) 100%
        );

    pointer-events: none;
}


/* =========================================
   CATEGORY
========================================= */

.model-profile-category {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 2;

    padding: 6px 9px;

    border: 1px solid rgba(215, 25, 63, 0.35);

    border-radius: 4px;

    background:
        rgba(7, 8, 11, 0.78);

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #ffffff;

    backdrop-filter: blur(8px);
}


/* =========================================
   CARD CONTENT
========================================= */

.model-profile-content {
    position: relative;

    padding: 18px 18px 20px;
}


.model-profile-content h3 {
    margin: 0 0 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    font-weight: 700;

    color: #ffffff;
}


.model-profile-location {
    display: block;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    color: #858995;
}


/* =========================================
   PROFILE LINK
========================================= */

.model-profile-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    color: #d7193f;

    text-decoration: none;
}


.model-profile-link span {
    font-size: 14px;

    transition:
        transform 0.3s ease;
}


.model-profile-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   MORE BUTTON
========================================= */

.model-profiles-more {
    display: flex;

    justify-content: center;

    margin-top: 38px;
}


.model-profiles-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 22px;

    border: 1px solid rgba(215, 25, 63, 0.40);

    border-radius: 6px;

    background:
        rgba(215, 25, 63, 0.06);

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    color: #ffffff;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.model-profiles-button span {
    font-size: 15px;

    color: #d7193f;
}


.model-profiles-button:hover {
    transform: translateY(-3px);

    background:
        rgba(215, 25, 63, 0.13);

    border-color:
        rgba(215, 25, 63, 0.65);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .model-profiles-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 16px;
    }


    .model-profile-image {
        height: 390px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .model-profiles-section {
        padding: 65px 15px;
    }


    .model-profiles-heading {
        margin-bottom: 30px;
    }


    .model-profiles-label {
        font-size: 8px;

        letter-spacing: 2.2px;
    }


    .model-profiles-heading h2 {
        font-size: 30px;
    }


    .model-profiles-heading p {
        font-size: 11px;

        line-height: 1.75;
    }


    .model-profiles-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .model-profile-card {
        border-radius: 14px;
    }


    .model-profile-image {
        height: 260px;
    }


    .model-profile-category {
        top: 9px;
        left: 9px;

        padding: 5px 7px;

        font-size: 7px;
    }


    .model-profile-content {
        padding: 13px 12px 15px;
    }


    .model-profile-content h3 {
        font-size: 15px;
    }


    .model-profile-location {
        margin-bottom: 11px;

        font-size: 8px;
    }


    .model-profile-link {
        font-size: 8px;
    }


    .model-profile-link span {
        font-size: 12px;
    }


    .model-profiles-more {
        margin-top: 28px;
    }


    .model-profiles-button {
        padding: 11px 17px;

        font-size: 9px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .model-profiles-section {
        padding: 55px 14px;
    }


    .model-profiles-heading h2 {
        font-size: 27px;
    }


    .model-profiles-heading p {
        font-size: 10px;
    }


    .model-profiles-grid {
        gap: 10px;
    }


    .model-profile-image {
        height: 230px;
    }


    .model-profile-content {
        padding: 11px 10px 13px;
    }


    .model-profile-content h3 {
        font-size: 13px;
    }


    .model-profile-location {
        font-size: 7px;
    }


    .model-profile-link {
        font-size: 7px;
    }

}

/* ================================
   VALUES SECTION
================================ */

.values-section {
    position: relative;
    width: 100%;
    padding: 100px 20px 90px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 18% 25%,
            rgba(215, 25, 63, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 82% 75%,
            rgba(215, 25, 63, 0.06),
            transparent 30%
        ),
        #07080b;
}


/* subtle background glow */

.values-section::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -180px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(215, 25, 63, 0.045);
    filter: blur(80px);
    pointer-events: none;
}

.values-section::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: 10%;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(215, 25, 63, 0.035);
    filter: blur(80px);
    pointer-events: none;
}


.values-container {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.values-heading {
    max-width: 780px;
    margin-bottom: 65px;
}

.values-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #d7193f;
}

.values-label::before {
    content: "";
    width: 34px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #d7193f,
        rgba(215, 25, 63, 0)
    );
}


.values-heading h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;

    color: #ffffff;
}

.values-heading h2 span {
    color: #d7193f;
}


.values-heading p {
    max-width: 650px;
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.85;

    color: #9da1ad;
}


/* ================================
   GRID
================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}


/* ================================
   ITEM
================================ */

.values-item {
    display: grid;
    grid-template-columns: 110px 1fr;

    min-height: 245px;

    padding: 40px 38px;

    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.72),
            rgba(9, 10, 14, 0.58)
        );

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.values-item:hover {
    background:
        linear-gradient(
            145deg,
            rgba(28, 20, 26, 0.88),
            rgba(10, 11, 15, 0.72)
        );
}


/* ================================
   NUMBER
================================ */

.values-number {
    align-self: start;

    font-family: Arial, sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: -3px;

    background: linear-gradient(
        135deg,
        #d7193f,
        #7f1029
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================================
   CONTENT
================================ */

.values-content {
    min-width: 0;
}


.values-title {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}


.values-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    flex-shrink: 0;

    border: 1px solid rgba(215, 25, 63, 0.30);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(215, 25, 63, 0.13),
            rgba(215, 25, 63, 0.035)
        );

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(215, 25, 63, 0.05);
}


.values-icon i {
    font-size: 17px;
    color: #d7193f;
}


.values-title h3 {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;

    color: #ffffff;
}


.values-content p {
    max-width: 480px;

    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.85;

    color: #9da1ad;
}


/* ================================
   SMALL LINE
================================ */

.values-line {
    width: 40px;
    height: 2px;

    margin-top: 24px;

    background: linear-gradient(
        90deg,
        #d7193f,
        rgba(215, 25, 63, 0)
    );
}


/* ================================
   BOTTOM CTA
================================ */

.values-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    margin-top: 65px;
    padding: 30px 35px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.90),
            rgba(10, 11, 15, 0.96)
        );

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.32);
}


.values-bottom-text span {
    display: block;

    margin-bottom: 7px;

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;

    color: #d7193f;
}


.values-bottom-text p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.6;

    color: #9da1ad;
}


.values-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    flex-shrink: 0;

    min-width: 165px;
    height: 48px;
    padding: 0 22px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #d7193f,
            #8f1230
        );

    border: 1px solid rgba(215, 25, 63, 0.45);

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(215, 25, 63, 0.16);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.values-button span {
    font-size: 17px;
    line-height: 1;
}

.values-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(215, 25, 63, 0.24);
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .values-section {
        padding: 80px 20px;
    }

    .values-heading {
        margin-bottom: 50px;
    }

    .values-item {
        grid-template-columns: 80px 1fr;
        padding: 32px 25px;
    }

    .values-number {
        font-size: 44px;
    }

    .values-title h3 {
        font-size: 15px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .values-section {
        padding: 70px 15px;
    }

    .values-heading {
        margin-bottom: 40px;
    }

    .values-label {
        font-size: 8px;
        letter-spacing: 2.2px;
        gap: 8px;
    }

    .values-label::before {
        width: 25px;
    }

    .values-heading h2 {
        font-size: 34px;
        line-height: 1.12;
    }

    .values-heading p {
        font-size: 11px;
        line-height: 1.75;
    }


    .values-grid {
        grid-template-columns: 1fr;
    }


    .values-item {
        grid-template-columns: 65px 1fr;

        min-height: auto;

        padding: 28px 20px;
    }


    .values-number {
        font-size: 38px;
        letter-spacing: -2px;
    }


    .values-title {
        gap: 12px;
        margin-bottom: 15px;
    }


    .values-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .values-icon i {
        font-size: 15px;
    }


    .values-title h3 {
        font-size: 14px;
    }


    .values-content p {
        font-size: 11px;
        line-height: 1.8;
    }


    .values-line {
        margin-top: 20px;
        width: 35px;
    }


    .values-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;

        margin-top: 45px;
        padding: 25px 22px;
    }


    .values-bottom-text p {
        font-size: 11px;
    }


    .values-button {
        width: 100%;
        height: 46px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .values-section {
        padding: 60px 12px;
    }

    .values-heading h2 {
        font-size: 30px;
    }

    .values-item {
        grid-template-columns: 55px 1fr;
        padding: 25px 16px;
    }

    .values-number {
        font-size: 34px;
    }

    .values-title h3 {
        font-size: 13px;
    }

    .values-content p {
        font-size: 10px;
    }

}

/* ================================
   FOCUS SECTION
================================ */

.focus-section {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(215, 25, 63, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(215, 25, 63, 0.04),
            transparent 28%
        ),
        #07080b;
}


/* ================================
   BACKGROUND GLOW
================================ */

.focus-section::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -180px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.045);

    filter: blur(80px);

    pointer-events: none;
}

.focus-section::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: 5%;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.035);

    filter: blur(80px);

    pointer-events: none;
}


/* ================================
   CONTAINER
================================ */

.focus-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


/* ================================
   CONTENT
================================ */

.focus-content {
    max-width: 520px;
}


/* LABEL */

.focus-label {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}

.focus-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #d7193f,
        rgba(215, 25, 63, 0)
    );
}


/* HEADING */

.focus-content h2 {
    margin: 0 0 24px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4.5vw, 55px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1px;

    color: #ffffff;
}

.focus-content h2 span {
    color: #d7193f;
}


/* PARAGRAPH */

.focus-content p {
    margin: 0 0 17px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.9;

    color: #9da1ad;
}


/* ================================
   BUTTON
================================ */

.focus-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-top: 18px;

    min-width: 175px;
    height: 48px;

    padding: 0 22px;

    border: 1px solid rgba(215, 25, 63, 0.40);

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #d7193f,
            #85112c
        );

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(215, 25, 63, 0.14);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.focus-button span {
    font-size: 17px;
    line-height: 1;
}

.focus-button:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #e21b46,
            #941432
        );

    box-shadow:
        0 16px 35px rgba(215, 25, 63, 0.23);
}


/* ================================
   LOCATION GRID
================================ */

.focus-locations {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


/* ================================
   LOCATION CARD
================================ */

.location-card {
    position: relative;

    min-height: 105px;

    padding: 20px;

    display: grid;

    grid-template-columns:
        38px
        38px
        1fr
        20px;

    align-items: center;

    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.90),
            rgba(9, 10, 14, 0.90)
        );

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.22);

    overflow: hidden;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* LEFT ACCENT */

.location-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background:
        linear-gradient(
            180deg,
            #d7193f,
            #7d1028
        );

    transition: height 0.3s ease;
}


/* HOVER */

.location-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(215, 25, 63, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(27, 19, 25, 0.94),
            rgba(10, 11, 15, 0.96)
        );

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.32),
        0 0 25px rgba(215, 25, 63, 0.04);
}

.location-card:hover::before {
    height: 100%;
}


/* NUMBER */

.location-number {
    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #555965;
}


/* ICON */

.location-card i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background:
        rgba(215, 25, 63, 0.08);

    border:
        1px solid rgba(215, 25, 63, 0.18);

    font-size: 13px;

    color: #d7193f;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.location-card:hover i {
    background:
        rgba(215, 25, 63, 0.14);

    border-color:
        rgba(215, 25, 63, 0.30);

    transform: scale(1.04);
}


/* NAME */

.location-card > span:nth-of-type(2) {
    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;

    color: #ffffff;

    white-space: nowrap;
}


/* ARROW */

.location-card b {
    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 400;

    color: #666a76;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.location-card:hover b {
    color: #d7193f;

    transform: translateX(3px);
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .focus-section {
        padding: 80px 20px;
    }

    .focus-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .focus-content {
        max-width: 700px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .focus-section {
        padding: 70px 15px;
    }


    .focus-container {
        gap: 40px;
    }


    /* LABEL */

    .focus-label {
        font-size: 8px;

        letter-spacing: 2.2px;

        gap: 8px;
    }

    .focus-label::before {
        width: 25px;
    }


    /* HEADING */

    .focus-content h2 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    /* TEXT */

    .focus-content p {
        font-size: 11px;

        line-height: 1.8;
    }


    /* BUTTON */

    .focus-button {
        width: 100%;

        height: 46px;

        margin-top: 15px;
    }


    /* GRID */

    .focus-locations {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }


    /* CARD */

    .location-card {
        min-height: 100px;

        padding: 15px;

        grid-template-columns:
            28px
            32px
            1fr;

        gap: 7px;
    }


    /* NUMBER */

    .location-number {
        font-size: 8px;
    }


    /* ICON */

    .location-card i {
        width: 30px;
        height: 30px;

        font-size: 11px;
    }


    /* NAME */

    .location-card > span:nth-of-type(2) {
        font-size: 11px;
    }


    /* ARROW */

    .location-card b {
        display: none;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .focus-section {
        padding: 60px 12px;
    }


    .focus-content h2 {
        font-size: 30px;
    }


    .focus-locations {
        gap: 8px;
    }


    .location-card {
        min-height: 90px;

        padding: 12px;
    }


    .location-card i {
        width: 28px;
        height: 28px;

        font-size: 10px;
    }


    .location-card > span:nth-of-type(2) {
        font-size: 10px;
    }

}