/* =========================================================
   INKUNZI FENCING
   MAIN STYLESHEET
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --navy: #0a1d42;
    --navy-light: #132d5c;

    --gold: #f0bd35;
    --gold-dark: #d8a321;

    --white: #ffffff;
    --off-white: #f5f7fa;

    --text: #24314c;
    --muted: #667085;

    --green: #258a55;

    --line: #d9dee7;

    --shadow:
        0 12px 35px rgba(10, 29, 66, 0.09);
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.container {
    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}

.section {
    padding: 55px 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: #ffffff;

    border-top:
        3px solid var(--navy);

    position: relative;

    z-index: 100;
}

.header-inner {
    min-height: 88px;

    display: flex;

    align-items: center;

    gap: 30px;
}


/* =========================================================
   LOGO / BRAND
   ========================================================= */

.brand {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-right: auto;
}

.brand-mark {
    width: 66px;
    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.brand-mark img {
    max-height: 62px;

    width: auto;

    object-fit: contain;
}

.brand-text strong {
    display: block;

    color: var(--navy);

    font-size: 22px;

    letter-spacing: 0.8px;

    font-weight: 800;
}

.brand-text span {
    display: block;

    color: var(--navy);

    font-size: 9px;

    letter-spacing: 2.2px;

    margin-top: 2px;

    font-weight: 600;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;

    align-items: center;

    gap: 38px;
}

.main-nav a {
    color: var(--navy);

    font-size: 15px;

    font-weight: 500;

    padding:
        33px 0
        12px;

    position: relative;

    white-space: nowrap;

    transition: 0.25s ease;
}

.main-nav a:hover {
    color: var(--gold-dark);
}

.main-nav a.active::after {
    content: "";

    height: 3px;

    width: 38px;

    background: var(--gold);

    position: absolute;

    bottom: 4px;

    left: 50%;

    transform:
        translateX(-50%);
}


/* =========================================================
   GET QUOTE BUTTON
   ========================================================= */

.quote-button {
    background: var(--navy);

    color: #ffffff;

    padding:
        12px 20px;

    border:
        1px solid var(--gold);

    border-radius: 5px;

    font-weight: 700;

    font-size: 13px;

    white-space: nowrap;

    transition: 0.25s ease;
}

.quote-button:hover {
    background: var(--gold);

    color: var(--navy);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-toggle {
    display: none;

    background: transparent;

    border: 0;

    cursor: pointer;

    padding: 5px;
}

.mobile-toggle span {
    display: block;

    width: 28px;

    height: 3px;

    background: var(--navy);

    margin: 5px 0;

    border-radius: 3px;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
    height: 480px;

    position: relative;

    overflow: hidden;

    color: #ffffff;
}

.hero-image {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 58, 0.97) 0%,
            rgba(8, 25, 58, 0.88) 35%,
            rgba(8, 25, 58, 0.35) 62%,
            rgba(8, 25, 58, 0.08) 100%
        ),

        url("images/hero.jpg")
        center / cover
        no-repeat;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 0%,
            transparent 49%,
            rgba(255, 255, 255, 0.06) 49.1%,
            transparent 58%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 58px;
}


/* =========================================================
   HERO TEXT
   ========================================================= */

.eyebrow {
    font-size: 11px;

    letter-spacing: 3px;

    opacity: 0.9;

    margin-bottom: 10px;

    font-weight: 600;
}

.hero h1 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            48px,
            6vw,
            68px
        );

    line-height: 1;

    margin:
        0
        0
        10px;

    font-weight: 700;
}

.hero h2 {
    margin: 0;

    font-size: 21px;

    letter-spacing: 0.3px;

    font-weight: 600;

    max-width: 700px;
}

.hero p {
    width:
        min(
            530px,
            100%
        );

    font-size: 16px;

    margin:
        20px
        0
        27px;

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        14px
        26px;

    font-weight: 700;

    font-size: 14px;

    border-radius: 4px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;

    cursor: pointer;
}

.btn:hover {
    transform:
        translateY(-2px);
}

.btn-gold {
    background: var(--gold);

    color: #151d2f;
}

.btn-gold:hover {
    background: #ffd158;
}

.btn-outline {
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.85
        );

    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;

    color: var(--navy);
}

.btn-dark-outline {
    border:
        1px solid var(--navy);

    color: var(--navy);

    padding:
        12px
        25px;
}

.btn-dark-outline:hover {
    background: var(--navy);

    color: #ffffff;
}

.btn-navy {
    background: var(--navy);

    color: #ffffff;
}

.btn-navy:hover {
    background: var(--navy-light);
}

.small-btn {
    padding:
        11px
        22px;
}

.hero-actions {
    display: flex;

    gap: 14px;

    align-items: center;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7f8fa
        );
}

.section-heading {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 30px;
}

.section-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: 22px;

    letter-spacing: 1.5px;

    text-align: center;

    font-weight: 800;
}

.heading-line {
    height: 1px;

    width: 190px;

    background: #c6ab67;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    margin-bottom: 28px;
}

.service-item {
    text-align: center;

    padding:
        8px
        18px
        15px;

    min-height: 150px;

    border-right:
        1px solid #d7dce5;
}

.service-item:last-child {
    border-right: 0;
}

.service-icon {
    color: var(--navy);

    font-size: 44px;

    line-height: 1;

    height: 52px;
}

.service-item h3 {
    color: var(--navy);

    font-size: 13px;

    margin:
        10px
        0
        4px;

    letter-spacing: 0.5px;

    font-weight: 800;
}

.service-item p {
    margin: 0;

    font-size: 13px;

    color: #555f71;

    line-height: 1.5;
}

.center-button {
    text-align: center;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section {
    display: grid;

    grid-template-columns:
        38%
        62%;

    min-height: 285px;
}

.about-image {
    background:
        url("images/about-fencing.jpg")
        center / cover
        no-repeat;

    min-height: 285px;
}

.about-content {
    background: var(--navy);

    color: #ffffff;

    display: flex;

    align-items: center;
}

.about-inner {
    padding:
        32px
        55px;

    max-width: 850px;
}

.about-inner h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 33px;

    line-height: 1.2;
}

.about-inner h3 {
    margin:
        2px
        0
        0;

    color: var(--gold);

    font-size: 17px;

    font-weight: 600;
}

.gold-rule {
    width: 115px;

    height: 2px;

    background: var(--gold);

    margin:
        11px
        0
        15px;
}

.about-inner p {
    margin:
        0
        0
        10px;

    color:
        rgba(
            255,
            255,
            255,
            0.84
        );

    font-size: 14px;

    max-width: 720px;
}


/* =========================================================
   FEATURES STRIP
   ========================================================= */

.features {
    background: var(--navy);

    color: #ffffff;

    padding:
        20px
        0;
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.feature {
    display: flex;

    align-items: center;

    gap: 16px;

    padding:
        6px
        28px;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );
}

.feature:last-child {
    border-right: 0;
}

.feature-icon {
    color: var(--gold);

    font-size: 38px;

    line-height: 1;
}

.feature h3 {
    font-size: 13px;

    letter-spacing: 0.7px;

    margin:
        0
        0
        4px;

    font-weight: 800;
}

.feature p {
    margin: 0;

    font-size: 12px;

    line-height: 1.45;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );
}


/* =========================================================
   INFORMATION SECTION
   ========================================================= */

.info-section {
    background: #f5f7fa;
}

.info-grid {
    display: grid;

    grid-template-columns:
        1fr
        1.75fr
        1.25fr;

    gap: 16px;

    align-items: stretch;
}

.why-card,
.info-card,
.contact-card {
    background: #ffffff;

    border:
        1px solid #ccd5e1;

    border-radius: 6px;

    box-shadow: var(--shadow);
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-card {
    padding: 24px;
}

.card-icon {
    float: left;

    font-size: 36px;

    color: var(--navy);

    margin-right: 10px;
}

.why-card h2 {
    color: var(--navy);

    font-size: 20px;

    line-height: 1.15;

    margin:
        3px
        0
        22px;

    font-weight: 800;
}

.why-card ul {
    list-style: none;

    padding: 0;

    margin:
        0
        0
        20px;

    clear: both;
}

.why-card li {
    font-size: 13px;

    margin: 9px 0;

    padding-left: 22px;

    position: relative;

    color: #35415a;
}

.why-card li::before {
    content: "✓";

    color: var(--green);

    position: absolute;

    left: 0;

    font-weight: 800;
}

.full-btn {
    width: 100%;

    padding: 12px;
}


/* =========================================================
   VISION / MISSION
   ========================================================= */

.vision-mission {
    display: grid;

    grid-template-rows:
        1fr
        1fr;

    gap: 16px;
}

.info-card {
    padding: 20px;

    display: flex;

    align-items: flex-start;

    gap: 17px;

    background: #edf2f8;
}

.info-card.mission {
    background: #edf5ef;
}

.info-symbol {
    color: var(--navy);

    font-size: 38px;

    line-height: 1;
}

.info-card h2 {
    color: var(--navy);

    font-size: 19px;

    margin:
        0
        0
        6px;

    font-weight: 800;
}

.info-card p {
    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #43516b;
}


/* =========================================================
   CONTACT CARD
   ========================================================= */

.contact-card {
    padding: 24px;
}

.branch {
    display: flex;

    gap: 13px;
}

.pin {
    color: var(--navy);

    font-size: 20px;

    padding-top: 2px;
}

.branch h2 {
    color: var(--navy);

    font-size: 16px;

    margin:
        0
        0
        7px;

    font-weight: 800;
}

.branch p {
    margin: 3px 0;

    font-size: 13px;

    color: #3e4a62;
}

.branch a {
    color: #183e87;

    text-decoration: underline;
}

.branch-divider {
    height: 1px;

    background: #b9c4d5;

    margin:
        20px
        0;
}


/* =========================================================
   PARTNERS
   ========================================================= */

.partners {
    width: 100%;

    background: #f7f8fa;

    padding:
        70px
        0
        75px;

    overflow: hidden;
}

.partners-inner {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: 0 auto;
}


/* =========================================================
   PARTNERS HEADING
   ========================================================= */

.partners-heading {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    margin-bottom: 18px;
}

.partners-heading > div {
    flex: 0 0 auto;

    text-align: center;
}

.partners-heading .heading-line {
    display: block;

    width: 80px;

    height: 2px;

    flex: 0 0 80px;

    background: var(--gold);
}

.partners-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--gold-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

    line-height: 1.3;
}

.partners-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: 32px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   PARTNERS INTRO
   ========================================================= */

.partners-intro {
    max-width: 650px;

    margin:
        0
        auto
        42px;

    color: #687586;

    font-size: 15px;

    line-height: 1.7;

    text-align: center;
}


/* =========================================================
   PARTNER LOGOS
   ========================================================= */

.partner-list {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin: 0;

    padding: 0;

    flex-wrap: nowrap;
}


/* =========================================================
   INDIVIDUAL PARTNER
   ========================================================= */

.partner-logo {
    width: 170px;

    height: 90px;

    flex: 1 1 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        10px
        15px;

    background: transparent;

    border: 0;

    text-decoration: none;

    transition:
        transform 0.3s ease;
}

.partner-logo img {
    display: block;

    width: auto;

    height: auto;

    max-width: 150px;

    max-height: 65px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.65;

    transition:
        filter 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   PARTNER HOVER
   ========================================================= */

.partner-logo:hover {
    transform:
        translateY(-5px);
}

.partner-logo:hover img {
    filter: grayscale(0%);

    opacity: 1;

    transform:
        scale(1.05);
}


/* =========================================================
   PARTNERS TABLET
   ========================================================= */

@media screen and (max-width: 900px) {

    .partners {
        padding:
            60px
            0;
    }

    .partners-inner {
        width:
            calc(100% - 40px);
    }

    .partner-list {
        gap: 15px;
    }

    .partner-logo {
        width: 135px;

        height: 80px;

        padding: 8px;
    }

    .partner-logo img {
        max-width: 125px;

        max-height: 55px;
    }
}


/* =========================================================
   PARTNERS MOBILE
   ========================================================= */

@media screen and (max-width: 700px) {

    .partners {
        padding:
            55px
            0
            60px;
    }

    .partners-inner {
        width:
            calc(100% - 30px);
    }

    .partners-heading {
        gap: 12px;
    }

    .partners-heading .heading-line {
        width: 35px;

        flex: 0 0 35px;
    }

    .partners-eyebrow {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .partners-heading h2 {
        font-size: 25px;
    }

    .partners-intro {
        font-size: 14px;

        margin-bottom: 30px;
    }

    .partner-list {
        display: grid;

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap: 18px;
    }

    .partner-logo {
        width: 100%;

        height: 75px;

        flex: none;

        padding: 8px;
    }

    .partner-logo img {
        max-width: 130px;

        max-height: 55px;
    }
}


/* =========================================================
   PARTNERS SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 480px) {

    .partner-list {
        grid-template-columns:
            1fr
            1fr;

        gap: 12px;
    }

    .partner-logo {
        height: 70px;
    }

    .partner-logo img {
        max-width: 115px;

        max-height: 50px;
    }
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.bottom-cta {
    background:
        linear-gradient(
            90deg,
            rgba(10, 29, 66, 0.98),
            rgba(10, 29, 66, 0.88)
        ),

        url("images/cta-fence.jpg")
        center / cover
        no-repeat;

    color: #ffffff;

    padding:
        38px
        0;

    border-bottom:
        2px solid var(--gold);
}

.cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cta-inner h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;

    margin: 0;

    line-height: 1.2;
}

.cta-inner p {
    margin:
        5px
        0
        0;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 15px;
}

.cta-button {
    min-width: 200px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #071832;

    color: #ffffff;
}

.footer-top {
    min-height: 115px;

    display: flex;

    align-items: center;

    gap: 30px;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-right: 30px;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );
}

.footer-brand img {
    width: 70px;

    max-height: 70px;

    object-fit: contain;
}

.footer-brand strong {
    display: block;

    font-size: 20px;

    letter-spacing: 0.5px;
}

.footer-brand span {
    display: block;

    font-size: 8px;

    letter-spacing: 1.8px;

    margin-top: 4px;

    color:
        rgba(
            255,
            255,
            255,
            0.7
        );
}

.footer-nav {
    display: flex;

    gap: 22px;

    margin-right: auto;
}

.footer-nav a {
    color:
        rgba(
            255,
            255,
            255,
            0.85
        );

    font-size: 13px;

    transition: 0.25s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.socials {
    display: flex;

    gap: 10px;
}

.socials a {
    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: #ffffff;

    color: var(--navy);

    display: grid;

    place-items: center;

    font-weight: 800;

    font-size: 13px;

    transition: 0.25s ease;
}

.socials a:hover {
    background: var(--gold);
}

.footer-bottom {
    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.2
        );

    padding:
        16px
        0;

    text-align: center;

    color:
        rgba(
            255,
            255,
            255,
            0.7
        );

    font-size: 12px;
}


/* =========================================================
   TABLET RESPONSIVE
   ========================================================= */

@media screen and (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .service-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .service-item:nth-child(3) {
        border-right: 0;
    }

    .service-item:nth-child(4),
    .service-item:nth-child(5) {
        margin-top: 20px;
    }

    .info-grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .contact-card {
        grid-column: span 2;
    }

    .feature {
        padding:
            10px
            15px;
    }

    .feature-grid {
        gap: 0;
    }

    .about-section {
        grid-template-columns:
            42%
            58%;
    }
}


/* =========================================================
   MOBILE RESPONSIVE
   ========================================================= */

@media screen and (max-width: 760px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                1180px
            );
    }

    .section {
        padding:
            45px
            0;
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .header-inner {
        min-height: 72px;

        gap: 10px;
    }

    .brand-mark {
        width: 45px;

        height: 50px;
    }

    .brand-mark img {
        max-height: 50px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 7px;

        letter-spacing: 1.5px;
    }

    .mobile-toggle {
        display: block;

        margin-left: auto;
    }

    .quote-button {
        display: none;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: 72px;

        left: 0;

        right: 0;

        background: #ffffff;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        box-shadow:
            0 12px 25px
            rgba(0, 0, 0, 0.15);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding:
            16px
            22px;

        border-bottom:
            1px solid #e5e7eb;

        font-size: 15px;
    }

    .main-nav a.active::after {
        display: none;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {
        height: auto;

        min-height: 540px;
    }

    .hero-content {
        padding-top: 60px;

        padding-bottom: 55px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 18px;

        line-height: 1.4;
    }

    .hero p {
        font-size: 15px;
    }

    .eyebrow {
        font-size: 9px;

        letter-spacing: 1.8px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }


    /* -----------------------------------------------------
       SERVICES
    ----------------------------------------------------- */

    .section-heading {
        gap: 10px;
    }

    .section-heading h2 {
        font-size: 17px;

        letter-spacing: 0.5px;
    }

    .heading-line {
        width: 30px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .service-item {
        border-right: 0;

        border-bottom:
            1px solid #d7dce5;
    }

    .service-item:nth-child(4),
    .service-item:nth-child(5) {
        margin-top: 0;
    }

    .service-item:last-child {
        grid-column: span 2;
    }


    /* -----------------------------------------------------
       ABOUT
    ----------------------------------------------------- */

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 240px;
    }

    .about-inner {
        padding:
            35px
            25px;
    }

    .about-inner h2 {
        font-size: 29px;
    }


    /* -----------------------------------------------------
       FEATURES
    ----------------------------------------------------- */

    .feature-grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .feature {
        border-right: 0;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.18
            );

        padding:
            16px
            10px;
    }

    .feature:nth-last-child(-n+2) {
        border-bottom: 0;
    }


    /* -----------------------------------------------------
       INFORMATION
    ----------------------------------------------------- */

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-column: auto;
    }

    .info-card {
        padding: 18px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-inner h2 {
        font-size: 25px;
    }

    .cta-button {
        width: 100%;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer-top {
        flex-direction: column;

        align-items: flex-start;

        padding:
            30px
            0;

        min-height: auto;
    }

    .footer-brand {
        border-right: 0;

        padding-right: 0;
    }

    .footer-nav {
        flex-wrap: wrap;

        margin-right: 0;

        gap:
            12px
            20px;
    }
}


/* =========================================================
   SMALL MOBILE DEVICES
   ========================================================= */

@media screen and (max-width: 480px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-item:last-child {
        grid-column: auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.18
            );
    }

    .feature:nth-last-child(-n+2) {
        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.18
            );
    }

    .feature:last-child {
        border-bottom: 0;
    }

    .about-inner h2 {
        font-size: 25px;
    }

    .info-card {
        flex-direction: column;
    }

    .partner-list {
        display: grid;

        grid-template-columns:
            1fr
            1fr;

        width: 100%;
    }
}
