/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    height: 28px;

    background: #19233f;

    color: #b8c4d7;

    font-size: 15px;
}

.top-bar-inner {

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 25px;
}

.top-address {

    display: flex;

    align-items: center;

    gap: 6px;
}

.top-address i {

    color: #ff3d1f;

    font-size: 11px;
}

.top-right {

    display: flex;

    align-items: center;

    gap: 22px;
}

.top-right span {

    display: flex;

    align-items: center;

    gap: 6px;
}

.top-right i {

    font-size: 11px;
}

.top-right .bi-envelope-fill {

    color: #aab8cb;
}

.top-right .bi-telephone-fill {

    color: #ff3d1f;
}


/* =====================================================
   HEADER
===================================================== */

.main-header {

    background: #ffffff;

    height: 66px;

    border-bottom: 1px solid #d5d9df;
}

.main-navbar {

    height: 66px;

    padding: 0 !important;
}


/* LOGO */

.site-logo {

    width: 280px;

    height: auto;

    display: block;

}


/* MENU */

.main-navbar .navbar-nav {

    gap: 1px;
}

.main-navbar .nav-link {

    color: #18213a !important;

    font-size: 16px;

    font-weight: 600;

    padding: 9px 9px !important;

    white-space: nowrap;
}

.main-navbar .nav-link:hover {

    color: #1764a8 !important;
}


/* ACTIVE */

.main-navbar .nav-link.active {

    color: #18213a !important;
}


/* DOWNLOAD ARROW */

.main-navbar .dropdown-toggle::after {

    margin-left: 4px;

    vertical-align: 2px;

    border-top-width: 4px;
}


/* DROPDOWN */

.main-navbar .dropdown-menu {

    border: 0;

    border-radius: 4px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    padding: 7px 0;

    margin-top: 7px;
}

.main-navbar .dropdown-item {

    font-size: 12px;

    padding: 8px 18px;
}

.main-navbar .dropdown-item:hover {

    background: #f1f6fb;

    color: #1764a8;
}


/* CONTACT */

.contact-menu {

    margin-left: 7px;
}

.contact-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 35px;

    padding: 0 17px;

    background: #2367aa;

    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;
}

.contact-button:hover {

    background: #18558f;

    color: #ffffff;
}


/* =====================================================
   HERO BANNER
===================================================== */

.hero-section {

    position: relative;

    min-height: 445px;

    display: flex;

    align-items: center;

    background-image: url("../images/hero-bg.webp");

    background-size: cover;

    background-position: center;

    overflow: hidden;
}


/* DARK OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(18, 47, 80, 0.92) 0%,
            rgba(24, 55, 88, 0.84) 48%,
            rgba(24, 55, 88, 0.68) 100%);

    z-index: 1;
}


/* CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

    width: 610px;

    max-width: 100%;

    padding-top: 48px;

    padding-bottom: 45px;
}


/* =====================================================
   BADGE
===================================================== */

.hero-tag {
    display: inline-block;

    padding: 4px 12px;

    background: #08afe5;

    color: #08253b;

    border-radius: 20px;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 700;

    letter-spacing: 0.8px;

    white-space: nowrap;
}

/* =====================================================
   MAIN HEADING
===================================================== */

.hero-content h1 {

    margin: 15px 0 0 0;

    padding: 0;

    color: #ffffff;

    font-size: 36px;

    line-height: 1.18;

    font-weight: 800;

    letter-spacing: -0.4px;

    text-shadow: none;
}


/* BLUE TEXT */

.hero-content h1 span {
    color: #08afe5;
    font-weight: 800;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-content p {

    width: 590px;

    max-width: 100%;

    margin: 12px 0 0 0;

    padding: 0;

    color: #d8e6f5;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 500;
}


/* =====================================================
   BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;
}


/* EXPLORE */

.explore-btn {

    height: 42px;

    padding: 0 26px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #08afe5;

    color: #06243a;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;
}

.explore-btn:hover {

    background: #00a4d8;

    color: #06243a;
}


/* QUOTE */

.quote-btn {

    height: 42px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 2px solid rgba(255,255,255,.48);

    background: transparent;

    color: #ffffff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;
}

.quote-btn:hover {

    background: #ffffff;

    color: #17233f;
}


/* =====================================================
   STATS
===================================================== */

.hero-stats {

    display: flex;

    align-items: flex-start;

    gap: 42px;

    margin-top: 31px;
}


.hero-stat {

    display: flex;

    flex-direction: column;
}


.hero-stat strong {

    color: #08afe5;

    font-size: 25px;

    line-height: 1;

    font-weight: 800;

    white-space: nowrap;
}


.hero-stat span {

    margin-top: 7px;

    color: #c1d2e5;

    font-size: 11px;

    line-height: 1.3;

    white-space: nowrap;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hero-section {

        min-height: 470px;

        background-position: center;
    }

    .hero-content {

        width: 100%;

        padding: 55px 20px 45px;
    }

    .hero-content h1 {

        font-size: 34px;
    }

    .hero-content p {

        width: 600px;

        font-size: 13px;
    }

    .hero-stats {

        gap: 30px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .hero-section {

        min-height: auto;

        background-position: center;
    }

    .hero-content {

        padding: 45px 15px;
    }

    .hero-tag {

        font-size: 9px;

        letter-spacing: .45px;

        padding: 4px 10px;
    }

    .hero-content h1 {

        margin-top: 14px;

        font-size: 28px;

        line-height: 1.2;
    }

    .hero-content p {

        width: 100%;

        margin-top: 14px;

        font-size: 12px;

        line-height: 1.7;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 20px;
    }

    .hero-stats {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 22px 25px;

        margin-top: 28px;
    }

    .hero-stat strong {

        font-size: 23px;
    }

    .hero-stat span {

        font-size: 10px;

        white-space: normal;
    }
}

/* =====================================================
   FEATURE STRIP
===================================================== */

.feature-strip {

    background: #19233f;

    min-height: 110px;

    padding: 12px 0;
}

.feature-wrapper {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    column-gap: 25px;

    row-gap: 13px;

    align-items: center;
}

.feature-item {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}

.feature-icon {

    flex: 0 0 auto;

    width: 28px;

    font-size: 23px;

    text-align: center;
}

.feature-item h6 {

    margin: 0;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.25;

    font-weight: 800;

    white-space: nowrap;
}

.feature-item p {

    margin: 3px 0 0;

    color: #c9d8e8;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 500;

    white-space: nowrap;
}


/* SIXTH ITEM */

.feature-last {

    grid-column: 3;

    justify-self: center;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

    .site-logo {

        width: 220px;
    }

    .main-navbar .nav-link {

        padding-left: 6px !important;

        padding-right: 6px !important;

        font-size: 11px;
    }

    .feature-wrapper {

        column-gap: 15px;
    }

}


/* =====================================================
   MOBILE NAVBAR
===================================================== */

@media (max-width: 991.98px) {

    .top-bar {

        height: auto;

        min-height: 28px;
    }

    .top-bar-inner {

        min-height: 28px;

        justify-content: center;
    }

    .top-address {

        display: none;
    }

    .top-right {

        gap: 18px;

        font-size: 10px;
    }


    .main-header {

        height: auto;

        min-height: 66px;
    }

    .main-navbar {

        height: auto;

        min-height: 66px;

        padding: 10px 0 !important;
    }


    .site-logo {

        width: 220px;
    }


    /* MOBILE TOGGLE */

    .navbar-toggler {

        border: 0 !important;

        padding: 5px;

        box-shadow: none !important;
    }

    .navbar-toggler-icon {

        width: 25px;

        height: 25px;
    }


    /* MOBILE MENU */

    .main-navbar .navbar-collapse {

        margin-top: 10px;

        border-top: 1px solid #eeeeee;

        padding-top: 8px;
    }

    .main-navbar .navbar-nav {

        align-items: flex-start !important;

        gap: 0;
    }

    .main-navbar .nav-link {

        width: 100%;

        padding: 10px 4px !important;

        font-size: 13px;
    }

    .contact-menu {

        margin-left: 0;

        margin-top: 8px;

        margin-bottom: 5px;
    }


    /* HERO */

    .hero-section {

        min-height: auto;
    }

    .hero-content {

        width: 100%;

        padding: 55px 15px;
    }


    .hero-content h1 {

        font-size: 31px;
    }


    .hero-content p {

        font-size: 13px;
    }


    .hero-stats {

        gap: 25px;

        flex-wrap: wrap;
    }


    /* FEATURES */

    .feature-strip {

        padding: 18px 0;
    }

    .feature-wrapper {

        grid-template-columns: repeat(2, 1fr);

        row-gap: 18px;
    }

    .feature-last {

        grid-column: auto;

        justify-self: start;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .top-right {

        width: 100%;

        justify-content: center;

        gap: 12px;

        font-size: 9px;
    }


    .site-logo {

        width: 195px;
    }


    .hero-content {

        padding: 45px 15px;
    }


    .hero-tag {

        font-size: 9px;

        letter-spacing: .4px;
    }


    .hero-content h1 {

        font-size: 27px;

        line-height: 1.2;
    }


    .hero-content p {

        font-size: 12px;

        line-height: 1.7;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }


    .hero-stats {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


    .hero-stat strong {

        font-size: 22px;
    }


    .hero-stat span {

        font-size: 10px;
    }


    .feature-wrapper {

        grid-template-columns: 1fr;
    }

    .feature-last {

        grid-column: auto;
    }

}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {

    background: #f5f8fc;

    padding: 68px 0 70px;
}


/* =====================================================
   ABOUT ROW
===================================================== */

.about-row {

    --bs-gutter-x: 35px;
}


/* =====================================================
   IMAGE
===================================================== */

.about-image-wrap {

    position: relative;

    width: 100%;

    height: 280px;

    border-radius: 13px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(24, 55, 88, .10);
}


.about-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


/* =====================================================
   EXPERIENCE BOX
===================================================== */

.about-experience {

    position: absolute;

    left: 20px;

    bottom: 20px;

    width: 151px;

    height: 83px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-left: 23px;

    background: #19233f;

    border-left: 4px solid #08afe5;

    border-radius: 10px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .18);
}


.about-experience strong {

    color: #08afe5;

    font-size: 25px;

    line-height: 1;

    font-weight: 800;
}


.about-experience span {

    margin-top: 6px;

    color: #ffffff;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 500;
}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {

    padding-left: 0;

}


/* =====================================================
   LABEL
===================================================== */

.about-label {

    color: #08afe5;

    font-size: 12px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 9px;
}


/* =====================================================
   HEADING
===================================================== */

.about-content h2 {

    max-width: 620px;

    margin: 0;

    color: #19233f;

    font-size: 27px;

    line-height: 1.18;

    font-weight: 800;

    letter-spacing: -.35px;
}


/* =====================================================
   BLUE LINE
===================================================== */

.about-line {

    width: 45px;

    height: 3px;

    margin-top: 9px;

    margin-bottom: 15px;

    background: #08afe5;

    border-radius: 3px;
}


/* =====================================================
   PARAGRAPHS
===================================================== */

.about-content p {

    max-width: 610px;

    margin: 0 0 11px;

    color: #60728a;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   FEATURE GRID
===================================================== */

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-top: 12px;
}


/* =====================================================
   FEATURE CARD
===================================================== */

.about-feature-card {

    min-height: 71px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 15px;

    background: #ffffff;

    border: 1px solid #d8e0ea;

    border-radius: 8px;

    transition: .3s ease;
}


.about-feature-card:hover {

    border-color: #08afe5;

    transform: translateY(-2px);

    box-shadow:
        0 6px 18px rgba(24, 55, 88, .08);
}


/* =====================================================
   FEATURE ICON
===================================================== */

.about-feature-icon {

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #08afe5;

    border-radius: 8px;

    font-size: 18px;

    line-height: 1;
}


/* =====================================================
   FEATURE TEXT
===================================================== */

.about-feature-text {

    min-width: 0;
}


.about-feature-text h6 {

    margin: 0;

    color: #19233f;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 800;

    white-space: nowrap;
}


.about-feature-text span {

    display: block;

    margin-top: 3px;

    color: #6c7d92;

    font-size: 10px;

    line-height: 1.35;

    font-weight: 400;

    white-space: nowrap;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .about-section {

        padding: 55px 0;
    }


    .about-image-wrap {

        height: 330px;

        margin-bottom: 35px;
    }


    .about-content h2 {

        font-size: 28px;
    }


    .about-content p {

        max-width: 100%;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .about-section {

        padding: 45px 0;
    }


    .about-row {

        --bs-gutter-x: 0;
    }


    .about-image-wrap {

        height: 245px;

        margin-bottom: 30px;

        border-radius: 10px;
    }


    .about-experience {

        left: 15px;

        bottom: 15px;

        width: 140px;

        height: 76px;

        padding-left: 18px;
    }


    .about-experience strong {

        font-size: 23px;
    }


    .about-experience span {

        font-size: 10px;
    }


    .about-label {

        font-size: 11px;

        letter-spacing: 1.8px;
    }


    .about-content h2 {

        font-size: 24px;

        line-height: 1.25;
    }


    .about-content p {

        font-size: 12px;

        line-height: 1.7;
    }


    .about-features {

        grid-template-columns: 1fr;

        gap: 9px;
    }


    .about-feature-card {

        min-height: 68px;
    }


    .about-feature-text h6 {

        font-size: 11px;
    }


    .about-feature-text span {

        font-size: 9px;

        white-space: normal;
    }

}

/* =====================================================
   PRODUCT RANGE
===================================================== */

.product-range-section {

    background: #ffffff;

    padding: 62px 0 65px;
}


/* =====================================================
   HEADER
===================================================== */

.product-range-header {

    max-width: 900px;

    margin-bottom: 23px;
}


.product-range-label {

    color: #08afe5;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1;

    margin-bottom: 9px;
}


.product-range-header h2 {
    font-size: 29px;
    font-weight: 800;
    line-height: 1.25;
    color: #19233f;
}


.product-range-line {

    width: 44px;

    height: 3px;

    background: #08afe5;

    border-radius: 5px;

    margin-top: 9px;

    margin-bottom: 17px;
}


.product-range-header p {
    font-size: 14px;
    line-height: 1.75;
    color: #52677f;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d9e1eb;

    border-radius: 10px;

    box-shadow:
        0 7px 22px rgba(25, 35, 63, .07);

    transition: .3s ease;
}


.product-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(25, 35, 63, .11);
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image {

    width: 100%;

    height: 195px;

    overflow: hidden;

    margin: 0;

    padding: 0;
}


.product-image img {

    width: 100%;

    height: 210px;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: .4s ease;
}


.product-card:hover .product-image img {

    transform: scale(1.03);
}


/* =====================================================
   CARD BODY
===================================================== */

.product-card-body {

    padding: 13px 16px 14px;
}


/* =====================================================
   SMALL LABEL
===================================================== */

.product-small-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}


/* =====================================================
   PRODUCT CODE
===================================================== */

.product-code {

    height: 26px;

    display: flex;

    align-items: center;

    padding: 0 9px;

    margin-bottom: 7px;

    background: #19233f;

    color: #08afe5;

    border-radius: 5px;

    font-size: 15px;

    font-weight: 800;

    line-height: 1;
}


/* =====================================================
   PRODUCT TITLE
===================================================== */

.product-card h3 {

    margin: 0 0 7px;

    color: #19233f;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 800;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.product-description {

    min-height: 145px;

    margin: 0;

    color: #60728a;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* =====================================================
   DETAILS
===================================================== */

.product-details {

    margin-top: 8px;

    padding-top: 9px;

    border-top: 1px solid #dce3ec;
}


.product-details > div {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    min-height: 24px;

    border-bottom: 1px solid #edf1f5;
}


.product-details span {

    color: #6b7c91;

    font-size: 13px;

    font-weight: 400;
}


.product-details strong {

    color: #19233f;

    font-size: 12px;

    font-weight: 600;

    text-align: right;
}


/* =====================================================
   TAGS
===================================================== */

.product-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 7px;

    min-height: 54px;
}


.product-tags span {

    display: inline-flex;

    align-items: center;

    padding: 3px 8px;

    background: #f6f9fc;

    border: 1px solid #d6e0eb;

    border-radius: 4px;

    color: #19233f;

    font-size: 10px;

    line-height: 1.3;

    font-weight: 500;
}


/* =====================================================
   MSDS BUTTON
===================================================== */

.msds-button {

    width: 100%;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding: 0 11px;

    margin-top: 5px;

    background: #ffffff;

    border: 1px solid #1764a8;

    border-radius: 6px;

    color: #1764a8;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}


.msds-button:hover {

    background: #1764a8;

    color: #ffffff;
}


/* =====================================================
   BROCHURE MODAL
===================================================== */

.brochure-modal {

    overflow: hidden;

    border: 0;

    border-radius: 10px;
}


/* MODAL HEADER */

.brochure-modal .modal-header {

    padding: 13px 18px;

    background: #19233f;

    border: 0;
}


.brochure-label {

    display: block;

    color: #08afe5;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}


.brochure-modal .modal-title {

    color: #ffffff;

    font-size: 17px;

    font-weight: 800;
}


.brochure-modal .btn-close {

    filter: brightness(0) invert(1);

    opacity: .9;
}


/* PDF AREA */

.brochure-modal .modal-body {

    height: 75vh;

    padding: 0;

    background: #eef2f6;
}


.brochure-frame {

    width: 100%;

    height: 100%;

    display: block;

    border: 0;
}


/* MODAL FOOTER */

.brochure-modal .modal-footer {

    padding: 10px 15px;

    border-top: 1px solid #e0e5eb;

    background: #ffffff;
}


.brochure-download {

    height: 34px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 15px;

    background: #08afe5;

    color: #06243a;

    border-radius: 5px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;
}


.brochure-download:hover {

    background: #009ed2;

    color: #06243a;
}


.brochure-close {

    height: 34px;

    padding: 0 15px;

    background: #19233f;

    color: #ffffff;

    border: 0;

    border-radius: 5px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .product-range-section {

        padding: 52px 0;
    }

    .product-image {

        height: 180px;
    }

    .product-description {

        min-height: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .product-range-section {

        padding: 45px 0;
    }

    .product-range-header h2 {

        font-size: 23px;
    }

    .product-range-header p {

        font-size: 12px;

        line-height: 1.7;
    }

    .product-image {

        height: 190px;
    }

    .product-card-body {

        padding: 13px 14px;
    }

    .product-description {

        font-size: 11px;

        line-height: 1.7;
    }

    .product-tags {

        min-height: auto;
    }

    .brochure-modal .modal-body {

        height: 70vh;
    }

}

/* =====================================================
   INDUSTRIAL & MEDICAL GAS RANGE
===================================================== */

.gas-range-section {

    background: #f4f8fc;

    padding: 55px 0 60px;

    overflow: hidden;
}


/* =====================================================
   HEADER
===================================================== */

.gas-range-header {

    max-width: 650px;

    margin-bottom: 26px;
}


.gas-range-label {

    color: #08afe5;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 7px;
}


.gas-range-header h2 {

    margin: 0;

    color: #19233f;

    font-size: 25px;

    font-weight: 800;

    line-height: 1.25;
}


.gas-range-line {

    width: 44px;

    height: 3px;

    background: #08afe5;

    border-radius: 4px;

    margin-top: 8px;

    margin-bottom: 15px;
}


.gas-range-header p {

    margin: 0;

    color: #52677f;

    font-size: 12px;

    line-height: 1.8;
}



/* =====================================================
   SLIDER
===================================================== */

.gas-slider-wrapper {

    position: relative;

    display: flex;

    align-items: center;

}


.gas-slider {

    width: 100%;

    overflow: hidden;
}


.gas-track {

    display: flex;

    gap: 17px;

    transition: transform .5s ease;
}


.gas-slide {

    flex: 0 0 calc((100% - 51px) / 4);

    min-width: 0;
}



/* =====================================================
   CARD
===================================================== */

.gas-card {

    height: 100%;

    background: #ffffff;

    border: 1px solid #d8e1ec;

    border-radius: 9px;

    overflow: hidden;

    box-shadow:
        0 7px 20px rgba(25,35,63,.07);

    transition: .3s ease;
}


.gas-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 27px rgba(25,35,63,.12);
}



/* =====================================================
   IMAGE
===================================================== */

.gas-image {

    width: 100%;

    height: 150px;

    overflow: hidden;
}


.gas-image img {

    width: 100%;

    height: 150px;

    display: block;

    object-fit: cover;

    transition: .4s ease;
}


.gas-card:hover .gas-image img {

    transform: scale(1.03);
}



/* =====================================================
   CARD BODY
===================================================== */

.gas-card-body {

    padding: 13px 16px 14px;
}


.gas-small-label {

    color: #08afe5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}


.gas-code {

    height: 27px;

    display: flex;

    align-items: center;

    padding: 0 9px;

    background: #19233f;

    color: #08afe5;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 7px;
}


.gas-card h3 {

    margin: 0 0 7px;

    color: #19233f;

    font-size: 15px;

    font-weight: 800;
}


.gas-card p {

    min-height: 105px;

    margin: 0;

    color: #60728a;

    font-size: 12px;

    line-height: 1.7;
}



/* =====================================================
   DETAILS
===================================================== */

.gas-details {

    margin-top: 7px;

    padding-top: 8px;

    border-top: 1px solid #dce3ec;
}


.gas-details > div {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 8px;

    min-height: 25px;

    border-bottom: 1px solid #edf1f5;
}


.gas-details span {

    color: #6b7c91;

    font-size: 12px;
}


.gas-details strong {

    color: #19233f;

    font-size: 12px;

    font-weight: 600;

    text-align: right;
}



/* =====================================================
   TAGS
===================================================== */

.gas-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 4px;

    margin-top: 7px;

    min-height: 48px;
}


.gas-tags span {

    display: inline-flex;

    align-items: center;

    padding: 3px 7px;

    background: #f6f9fc;

    border: 1px solid #d6e0eb;

    border-radius: 4px;

    color: #19233f;

    font-size: 10px;

    line-height: 1.3;
}



/* =====================================================
   MSDS BUTTON
===================================================== */

.gas-msds {

    width: 100%;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding: 0 10px;

    margin-top: 5px;

    background: #ffffff;

    border: 1px solid #1764a8;

    border-radius: 5px;

    color: #1764a8;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}


.gas-msds:hover {

    background: #1764a8;

    color: #ffffff;
}



/* =====================================================
   SLIDER ARROWS
===================================================== */

.gas-slider-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d6e0eb;

    border-radius: 50%;

    background: #ffffff;

    color: #19233f;

    font-size: 14px;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(25,35,63,.12);

    transition: .3s ease;
}


.gas-slider-btn:hover {

    background: #08afe5;

    border-color: #08afe5;

    color: #ffffff;
}


.gas-prev {

    left: -18px;
}


.gas-next {

    right: -18px;
}


.gas-slider-btn:disabled {

    opacity: .4;

    cursor: not-allowed;
}



/* =====================================================
   DOTS
===================================================== */

.gas-slider-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 22px;
}


.gas-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cbd6e2;

    cursor: pointer;

    transition: .3s ease;
}


.gas-dot.active {

    width: 22px;

    border-radius: 10px;

    background: #08afe5;
}

.gas-track {
    display: flex;
    gap: 17px;
    transition: transform 0.6s ease;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .gas-slide {

        flex: 0 0 calc((100% - 17px) / 2);
    }

    .gas-prev {
        left: -10px;
    }

    .gas-next {
        right: -10px;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .gas-range-section {

        padding: 45px 0 50px;
    }

    .gas-range-header h2 {

        font-size: 22px;
    }

    .gas-range-header p {

        font-size: 11px;
    }

    .gas-slide {

        flex: 0 0 100%;
    }

    .gas-image,
    .gas-image img {

        height: 180px;
    }

    .gas-card-body {

        padding: 13px 14px;
    }

    .gas-slider-btn {

        width: 32px;

        height: 32px;
    }

    .gas-prev {

        left: 5px;
    }

    .gas-next {

        right: 5px;
    }

}

/* =========================================================
   SPECIALTY GASES SECTION
========================================================= */

.specialty-gases-section {

    padding: 95px 0;

    background: #f7fafc;

    position: relative;

    overflow: hidden;

}


/* =========================================================
   TOP CONTENT
========================================================= */

.specialty-top {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 65px;

    align-items: center;

    margin-bottom: 70px;

}


/* =========================================================
   INTRO
========================================================= */

.specialty-kicker {

    display: inline-block;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #1764a8;

    margin-bottom: 12px;

}


.specialty-intro h2 {

    margin: 0;

    color: #102f42;

    font-size: 42px;

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;

}


.specialty-intro h2 span {

    display: block;

    color: #1764a8;

}


.specialty-line {

    width: 65px;

    height: 3px;

    background: #1764a8;

    margin: 22px 0;

}


.specialty-intro > p {

    max-width: 590px;

    color: #647483;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 30px;

}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.specialty-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.specialty-highlight {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 16px;

    background: #ffffff;

    border: 1px solid #e2ebf1;

    border-radius: 8px;

}


.specialty-highlight i {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f6fa;

    color: #1764a8;

    font-size: 16px;

}


.specialty-highlight strong {

    display: block;

    color: #1764a8;

    font-size: 13px;

    font-weight: 800;

}


.specialty-highlight span {

    display: block;

    color: #8997a2;

    font-size: 10px;

    margin-top: 2px;

}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.specialty-feature {

    height: 410px;

    border-radius: 16px;

    overflow: hidden;

    position: relative;

    box-shadow: 0 18px 45px rgba(17, 49, 68, 0.14);

}


.specialty-feature img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.specialty-feature-overlay {

    position: absolute;

    inset: 0;

    background:
       linear-gradient(90deg, rgb(7 35 52 / 37%), rgb(7 35 52 / 0%));

}


.specialty-feature-content {

    position: absolute;

    left: 35px;

    bottom: 35px;

    max-width: 330px;

    color: #fff;

}


.specialty-feature-content span {

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

    color: #000000;

}


.specialty-feature-content h3 {

    font-size: 28px;

    line-height: 1.25;

    margin: 9px 0 0;

    font-weight: 700;

}


/* =========================================================
   PURITY BADGE
========================================================= */

.specialty-purity-badge {

    position: absolute;

    right: 25px;

    top: 25px;

    width: 100px;

    height: 100px;

    border-radius: 50%;

    background: rgba(255,255,255,.96);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

}


.specialty-purity-badge strong {

    font-size: 28px;

    color: #1764a8;

    line-height: 1;

}


.specialty-purity-badge span {

    font-size: 9px;

    text-align: center;

    color: #657581;

    line-height: 1.3;

    margin-top: 5px;

}


/* =========================================================
   PURITY SECTION
========================================================= */

.purity-section {

    margin-bottom: 65px;

}


.purity-heading {

    margin-bottom: 22px;

}


.purity-heading span {

    font-size: 10px;

    letter-spacing: 1.8px;

    font-weight: 800;

    color: #1764a8;

}


.purity-heading h3 {

    margin: 5px 0 0;

    font-size: 24px;

    color: #1764a8;

    font-weight: 750;

}


.purity-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 12px;

}


.purity-item {

    background: #fff;

    border: 1px solid #dfe9ef;

    border-radius: 10px;

    padding: 20px 12px;

    text-align: center;

    transition: all .3s ease;

}


.purity-item:hover {

    transform: translateY(-4px);

    border-color: #1764a8;

    box-shadow: 0 10px 25px rgba(0, 100, 130, .08);

}

.purity-item strong {

    display: block;

    font-size: 22px;

    color: #1764a8;

    font-weight: 800;

}


.purity-item.active strong {

    color: #fff;

}


.purity-item b {

    display: block;

    color: #000000;

    font-size: 13px;

    margin: 4px 0 8px;

}


.purity-item.active b {

    color: #d9f5fa;

}


.purity-item small {

    display: block;

    color: #82919b;

    font-size: 11px;

}


.purity-item.active small {

    color: #b9dce4;

}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.specialty-products {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

}


.specialty-card {

    background: #fff;

    border: 1px solid #e0e9ee;

    border-radius: 13px;

    overflow: hidden;

    transition: all .35s ease;

}


.specialty-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(16, 52, 70, .12);

    border-color: #c9e1e8;

}


/* =========================================================
   CARD IMAGE
========================================================= */

.specialty-card-image {

    height: 215px;

    position: relative;

    overflow: hidden;

}


.specialty-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;

}


.specialty-card:hover
.specialty-card-image img {

    transform: scale(1.06);

}


.specialty-card-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(5, 35, 50, .5)
    );

}


.specialty-card-image span {

    position: absolute;

    left: 18px;

    bottom: 16px;

    z-index: 2;

    color: #fff;

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 800;

}


/* =========================================================
   CARD BODY
========================================================= */

.specialty-card-body {
    padding: 23px;
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;
}


.specialty-card-number {

    position: absolute;

    right: 20px;

    top: 18px;

    color: #e7f0f4;

    font-size: 30px;

    line-height: 1;

    font-weight: 800;

}


.specialty-card-body h3 {

    max-width: 260px;

    color: #1764a8;

    font-size: 18px;

    line-height: 1.35;

    margin: 0 0 10px;

    font-weight: 750;

}


.specialty-card-body p {
    color: #697b86;
    font-size: 12px;
    line-height: 1.7;

    margin-bottom: 18px;
}


/* =========================================================
   TAGS
========================================================= */

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-bottom: 18px;
}


.specialty-tags span {

    font-size:11px;

    color: #1764a8;

    background: #f0f7f9;

    border: 1px solid #d9ebef;

    border-radius: 4px;

    padding: 5px 7px;

}


/* =========================================================
   MSDS BUTTON
========================================================= */

.specialty-msds {

    width: 100%;

    height: 38px;

    border: 1px solid #1764a8;

    background: transparent;

    color: #087fa7;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;

}


.specialty-msds i {

    margin-right: 5px;

}


.specialty-msds:hover {

    background: #1764a8;

    color: #fff;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .specialty-top {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .specialty-feature {

        height: 360px;

    }


    .purity-grid {

        grid-template-columns: repeat(3, 1fr);

    }


    .specialty-products {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .specialty-gases-section {

        padding: 60px 0;

    }


    .specialty-intro h2 {

        font-size: 31px;

    }


    .specialty-intro > p {

        font-size: 13px;

    }


    .specialty-highlights {

        display: grid;

        grid-template-columns: 1fr;

    }


    .specialty-feature {

        height: 300px;

        border-radius: 12px;

    }


    .specialty-feature-content {

        left: 22px;

        bottom: 22px;

    }


    .specialty-feature-content h3 {

        font-size: 23px;

    }


    .specialty-purity-badge {

        width: 78px;

        height: 78px;

        right: 18px;

        top: 18px;

    }


    .specialty-purity-badge strong {

        font-size: 22px;

    }


    .purity-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .specialty-products {

        grid-template-columns: 1fr;

    }


    .specialty-card-image {

        height: 210px;

    }

}

/* =========================================================
   SF6 GAS HANDLING EQUIPMENT
========================================================= */

.gas-equipment-section {

    padding: 10px 0;

    background: #f6f9fb;

    color: #17384b;

}


/* =========================================================
   HEADER
========================================================= */

.gas-equipment-header {

    max-width: 780px;

    margin-bottom: 32px;

}


.gas-equipment-kicker {

    display: block;

    margin-bottom: 8px;

    color: #1764a8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.gas-equipment-header h2 {

    margin: 0 0 14px;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 800;

    color: #19233f;

}


.gas-equipment-header p {

    margin: 0;

    max-width: 720px;

    font-size: 14px;

    line-height: 1.8;

    color: #617681;

}


/* =========================================================
   FEATURE
========================================================= */

.gas-equipment-feature {

    display: grid;

    grid-template-columns: 1fr 1.1fr;

    min-height: 270px;

    background: #fff;

    border: 1px solid #dce7ed;

    border-radius: 12px;

    overflow: hidden;

    margin-bottom: 28px;

}


.gas-feature-image {

    min-height: 270px;

}


.gas-feature-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.gas-feature-content {

    padding: 35px 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.gas-feature-label {

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 800;

    color: #1764a8;

    margin-bottom: 8px;

}


.gas-feature-content h3 {

    font-size: 25px;

    line-height: 1.25;

    color: #14384c;

    margin: 0 0 12px;

    font-weight: 800;

}


.gas-feature-content p {

    font-size: 16px;

    line-height: 1.65;

    color: #617681;

    margin: 0 0 8px;

}


.gas-feature-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 12px;

}


.gas-feature-tags span {

    padding: 5px 9px;

    background: #edf7fa;

    border: 1px solid #d2eaf0;

    border-radius: 4px;

    color: #17617a;

    font-size: 12px;

    font-weight: 600;

}


/* =========================================================
   EQUIPMENT SLIDER
========================================================= */

.gas-equipment-slider {

    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

}


.gas-equipment-viewport {

    width: 100%;

    overflow: hidden;

}


.gas-equipment-track {

    display: flex;

    gap: 18px;

    transition: transform .65s ease;

    will-change: transform;

}


.gas-equipment-slide {

    flex: 0 0 calc((100% - 54px) / 4);

    min-width: 0;

}


/* =========================================================
   CARD
========================================================= */

.gas-equipment-card {

    height: 100%;

    background: #fff;

    border: 1px solid #dce7ed;

    border-radius: 9px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition: all .3s ease;

}


.gas-equipment-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(24, 63, 82, .11);

}


/* =========================================================
   IMAGE
========================================================= */

.gas-equipment-image {

    height: 175px;

    overflow: hidden;

    background: #edf3f6;

}


.gas-equipment-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;

}


.gas-equipment-card:hover
.gas-equipment-image img {

    transform: scale(1.05);

}


/* =========================================================
   BODY
========================================================= */

.gas-equipment-body {

    padding: 18px;

    display: flex;

    flex-direction: column;

    flex: 1;

}


.equipment-category {

    color: #087fa7;

    font-size: 9px;

    letter-spacing: 1.3px;

    font-weight: 800;

    margin-bottom: 7px;

}


.gas-equipment-body h3 {

    font-size: 17px;

    line-height: 1.35;

    color: #14384c;

    margin: 0 0 10px;

    font-weight: 750;

}


.gas-equipment-body p {

    font-size: 12px;

    line-height: 1.65;

    color: #687b86;

    margin: 0 0 15px;

    min-height: 78px;

}


/* =========================================================
   SPECS
========================================================= */

.equipment-specs {

    border-top: 1px solid #e8eef2;

    border-bottom: 1px solid #e8eef2;

    margin-bottom: 15px;

}


.equipment-specs div {

    display: flex;

    justify-content: space-between;

    gap: 10px;

    padding: 7px 0;

    border-bottom: 1px solid #edf2f5;

}


.equipment-specs div:last-child {

    border-bottom: none;

}


.equipment-specs span {

    color: #82919a;

    font-size: 10px;

}


.equipment-specs strong {

    color: #23495c;

    font-size: 10px;

    text-align: right;

}


/* =========================================================
   MSDS
========================================================= */

.equipment-msds {

    width: 100%;

    height: 35px;

    margin-top: auto;

    border: 1px solid #087fa7;

    background: #fff;

    border-radius: 4px;

    color: #087fa7;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition: all .25s ease;

}


.equipment-msds:hover {

    background: #087fa7;

    color: #fff;

}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.equipment-slider-btn {

    flex: 0 0 42px;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    border: 1px solid #d5e5eb;

    background: #fff;

    color: #087fa7;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(20, 60, 80, .08);

    transition: all .25s ease;

    z-index: 5;

}


.equipment-slider-btn:hover {

    background: #087fa7;

    color: #fff;

    border-color: #087fa7;

}


.equipment-slider-btn i {

    font-size: 17px;

}


/* =========================================================
   DOTS
========================================================= */

.equipment-slider-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 25px;

}


.equipment-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c9dce4;

    cursor: pointer;

    transition: all .3s ease;

}


.equipment-dot.active {

    width: 24px;

    border-radius: 10px;

    background: #087fa7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gas-equipment-slide {

        flex: 0 0 calc((100% - 18px) / 2);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .gas-equipment-slider {

        gap: 5px;

    }

    .equipment-slider-btn {

        flex: 0 0 34px;

        width: 34px;

        height: 34px;

    }

    .gas-equipment-track {

        gap: 12px;

    }

    .gas-equipment-slide {

        flex: 0 0 100%;

    }

    .gas-equipment-image {

        height: 200px;

    }

}

/* =========================================================
   CARD IMAGE
========================================================= */

.gas-equipment-image {

    height: 155px;

    overflow: hidden;

    background: #edf3f6;

}


.gas-equipment-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;

}


.gas-equipment-card:hover
.gas-equipment-image img {

    transform: scale(1.05);

}


/* =========================================================
   CARD BODY
========================================================= */

.gas-equipment-body {

    padding: 18px;

    display: flex;

    flex-direction: column;

    flex: 1;

}


.equipment-category {

    color: #1764a8;

    font-size: 11px;

    letter-spacing: 1.3px;

    font-weight: 800;

    margin-bottom: 6px;

}


.gas-equipment-body h3 {

    font-size: 18px;

    line-height: 1.35;

    color: #14384c;

    margin: 0 0 9px;

    font-weight: 750;

}


.gas-equipment-body p {

    font-size: 13px;

    line-height: 1.65;

    color: #687b86;

    margin: 0 0 15px;

    min-height: 73px;

}


/* =========================================================
   SPECS
========================================================= */

.equipment-specs {

    border-top: 1px solid #e8eef2;

    border-bottom: 1px solid #e8eef2;

    margin-bottom: 14px;

}


.equipment-specs div {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    padding: 7px 0;

    border-bottom: 1px solid #edf2f5;

}


.equipment-specs div:last-child {

    border-bottom: none;

}


.equipment-specs span {

    color: #82919a;

    font-size: 12px;

}


.equipment-specs strong {

    color: #23495c;

    font-size: 11px;

    text-align: right;

}


/* =========================================================
   MSDS BUTTON
========================================================= */

.equipment-msds {

    width: 100%;

    height: 32px;

    margin-top: auto;

    border: 1px solid #087fa7;

    background: #fff;

    border-radius: 4px;

    color: #1764a8;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: all .25s ease;

}


.equipment-msds i {

    margin-right: 5px;

}


.equipment-msds:hover {

    background: #087fa7;

    color: #fff;

}


/* =========================================================
   TABLE SECTION
========================================================= */

.equipment-table-section {

    margin-top: 40px;

}


.equipment-table-heading {

    margin-bottom: 12px;

}


.equipment-table-heading span {

    font-size: 12px;

    color: #1764a8;

    letter-spacing: 1.5px;

    font-weight: 800;

}


.equipment-table-heading h3 {

    margin: 4px 0 0;

    font-size: 25px;

    color: #17384b;

    font-weight: 800;

}


/* =========================================================
   TABLE
========================================================= */

.equipment-table-wrap {

    width: 100%;

    overflow-x: auto;

    background: #fff;

    border-radius: 7px;

    box-shadow: 0 5px 18px rgba(25, 56, 72, .06);

}


.equipment-table {

    width: 100%;

    border-collapse: collapse;

    min-width: 850px;

}


.equipment-table th {

    background: #17334d;

    color: #fff;

    padding: 10px 12px;

    text-align: left;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

}


.equipment-table td {

    padding: 9px 12px;

    border-bottom: 1px solid #e0e9ee;

    color: #516c78;

    font-size: 14px;

    line-height: 1.4;

}


.equipment-table tbody tr:hover {

    background: #f3f9fb;

}


.equipment-table td:first-child {

    color: #17384b;

    font-weight: 700;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gas-equipment-feature {

        grid-template-columns: 1fr;

    }

    .gas-feature-image {

        height: 280px;

    }

    .gas-equipment-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .gas-equipment-section {

        padding: 55px 0;

    }

    .gas-equipment-header h2 {

        font-size: 28px;

    }

    .gas-equipment-header p {

        font-size: 13px;

    }

    .gas-feature-content {

        padding: 25px;

    }

    .gas-feature-content h3 {

        font-size: 22px;

    }

    .gas-equipment-grid {

        grid-template-columns: 1fr;

    }

    .gas-equipment-image {

        height: 190px;

    }

    .gas-equipment-body {

        padding: 20px;

    }

    .gas-equipment-body h3 {

        font-size: 18px;

    }

    .gas-equipment-body p {

        font-size: 12px;

        min-height: auto;

    }

}

/* =========================================================
   ENGINEERING SOLUTIONS
========================================================= */

.engineering-solutions-section {

    padding: 75px 0;

    background: #ffffff;

    overflow: hidden;

}


/* =========================================================
   HEADER
========================================================= */

.engineering-header {

    max-width: 760px;

    margin-bottom: 28px;

}


.engineering-header > span {

    display: block;

    color: #0066a6;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 5px;

}


.engineering-header h2 {

    margin: 0;

    color: #102e52;

    font-size: 29px;

    line-height: 1.2;

    font-weight: 800;

}


.engineering-line {

    width: 52px;

    height: 3px;

    background: #0066a6;

    margin: 10px 0 13px;

}


.engineering-header p {

    max-width: 700px;

    margin: 0;

    color: #60758a;

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   SLIDER
========================================================= */

.engineering-slider-wrap {

    display: flex;

    align-items: center;

    gap: 10px;

}


.engineering-viewport {

    width: 100%;

    overflow: hidden;

}


.engineering-track {

    display: flex;

    gap: 10px;

    transition: transform .6s ease;

    will-change: transform;

}


.engineering-slide {

    flex: 0 0 calc((100% - 30px) / 4);

    min-width: 0;

}


/* =========================================================
   CARD
========================================================= */

.engineering-card {

    height: 100%;

    background: #ffffff;

    border: 1px solid #d5e0eb;

    border-radius: 6px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition: .3s ease;

}


.engineering-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(16, 46, 82, .10);

    border-color: #9dbbd3;

}


/* =========================================================
   IMAGE
========================================================= */

.engineering-image {

    height: 145px;

    background: #1c3560;

    overflow: hidden;

}


.engineering-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;

}


.engineering-card:hover
.engineering-image img {

    transform: scale(1.04);

}


/* =========================================================
   ICON CARDS
========================================================= */

.engineering-icon-image {

    display: flex;

    align-items: center;

    justify-content: center;

    background: #1c3560;

}


.engineering-icon-image i {

    font-size: 48px;

    color: #ffffff;

}


/* =========================================================
   CARD BODY
========================================================= */

.engineering-body {

    padding: 13px 14px 15px;

    display: flex;

    flex-direction: column;

    flex: 1;

}


.engineering-category {

    color: #0066a6;

    font-size: 9px;

    letter-spacing: 1.3px;

    font-weight: 800;

    margin-bottom: 5px;

}


.engineering-body h3 {

    color: #102e52;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 800;

    margin: 0 0 7px;

}


.engineering-body p {

    color: #65788a;

    font-size: 14px;

    line-height: 1.6;

    margin: 0 0 10px;

}


/* =========================================================
   TAGS
========================================================= */

.engineering-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 4px;

    margin-top: auto;

}


.engineering-tags span {

    display: inline-block;

    padding: 4px 6px;

    background: #f4f8fb;

    border: 1px solid #cfdeea;

    color: #174a70;

    border-radius: 3px;

    font-size: 11px;

    line-height: 1;

}


/* =========================================================
   ARROWS
========================================================= */

.engineering-arrow {

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    border-radius: 50%;

    border: 1px solid #c9d9e5;

    background: #ffffff;

    color: #1c3560;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: .3s ease;

    z-index: 2;

}


.engineering-arrow:hover {

    background: #1c3560;

    color: #ffffff;

    border-color: #1c3560;

}


.engineering-arrow i {

    font-size: 14px;

}


/* =========================================================
   DOTS
========================================================= */

.engineering-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 20px;

}


.engineering-dot {

    width: 7px;

    height: 7px;

    border: 0;

    padding: 0;

    border-radius: 50%;

    background: #c7d6e2;

    cursor: pointer;

    transition: .3s ease;

}


.engineering-dot.active {

    width: 22px;

    border-radius: 10px;

    background: #1c3560;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .engineering-slide {

        flex: 0 0 calc((100% - 10px) / 2);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .engineering-solutions-section {

        padding: 55px 0;

    }


    .engineering-header h2 {

        font-size: 25px;

    }


    .engineering-header p {

        font-size: 11px;

    }


    .engineering-slide {

        flex: 0 0 100%;

    }


    .engineering-arrow {

        width: 32px;

        height: 32px;

        flex: 0 0 32px;

    }


    .engineering-image {

        height: 180px;

    }


    .engineering-body {

        padding: 16px;

    }


    .engineering-body h3 {

        font-size: 16px;

    }


    .engineering-body p {

        font-size: 11px;

    }

}

/* =========================================================
   INDUSTRIES SECTION
========================================================= */

.industries-section {

    padding: 70px 0;

    background: #f4f8fc;

    overflow: hidden;

}


/* =========================================================
   HEADER
========================================================= */

.industries-header {

    max-width: 760px;

    margin-bottom: 28px;

}


.industries-header > span {

    display: block;

    color: #009fe3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 6px;

}


.industries-header h2 {

    margin: 0;

    color: #102e52;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 800;

}


.industries-line {

    width: 44px;

    height: 3px;

    background: #009fe3;

    margin: 10px 0 16px;

}


.industries-header p {

    max-width: 720px;

    margin: 0;

    color: #60758a;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   SLIDER
========================================================= */

.industries-slider {

    display: flex;

    align-items: center;

    gap: 10px;

}


.industries-viewport {

    width: 100%;

    overflow: hidden;

}


.industries-track {

    display: flex;

    gap: 12px;

    transition: transform .6s ease;

    will-change: transform;

}


.industry-slide {

    flex: 0 0 calc((100% - 36px) / 4);

    min-width: 0;

}


/* =========================================================
   CARD
========================================================= */

.industry-card {

    min-height: 220px;

    height: 100%;

    padding: 22px 18px;

    background: #ffffff;

    border: 1px solid #d7e2ed;

    border-radius: 9px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    transition: all .3s ease;

    box-shadow: 0 8px 22px rgba(16, 46, 82, .05);

}


.industry-card:hover {

    transform: translateY(-5px);

    border-color: #a9c7dc;

    box-shadow: 0 14px 30px rgba(16, 46, 82, .10);

}


/* =========================================================
   ICON
========================================================= */

.industry-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    line-height: 1;

    margin-bottom: 13px;

}


/* =========================================================
   TITLE
========================================================= */

.industry-card h3 {

    margin: 0 0 8px;

    color: #102e52;

    font-size: 14px;

    line-height: 1.35;

    font-weight: 800;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.industry-card p {

    margin: 0;

    color: #60758a;

    font-size: 11px;

    line-height: 1.55;

}


/* =========================================================
   ARROWS
========================================================= */

.industry-arrow {

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    border-radius: 50%;

    border: 1px solid #cbdbe8;

    background: #ffffff;

    color: #173b61;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all .25s ease;

    z-index: 5;

}


.industry-arrow:hover {

    background: #173b61;

    border-color: #173b61;

    color: #ffffff;

}


.industry-arrow i {

    font-size: 14px;

}


/* =========================================================
   DOTS
========================================================= */

.industries-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 23px;

}


.industry-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c7d7e5;

    cursor: pointer;

    transition: all .3s ease;

}


.industry-dot.active {

    width: 22px;

    border-radius: 10px;

    background: #173b61;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .industry-slide {

        flex: 0 0 calc((100% - 12px) / 2);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .industries-section {

        padding: 55px 0;

    }

    .industries-header h2 {

        font-size: 24px;

    }

    .industries-header p {

        font-size: 11px;

    }

    .industry-slide {

        flex: 0 0 100%;

    }

    .industry-arrow {

        width: 32px;

        height: 32px;

        flex: 0 0 32px;

    }

    .industry-card {

        min-height: 230px;

    }

}
/* =========================================================
   ENGINEERING SERVICES
========================================================= */

.eng-services-section {

    padding: 85px 0;

    background: #192542;

    overflow: hidden;

}


/* =========================================================
   HEADER
========================================================= */

.eng-services-header {

    display: grid;

    grid-template-columns: 1fr 480px;

    align-items: end;

    gap: 50px;

    margin-bottom: 40px;

}


.eng-services-kicker {

    display: block;

    margin-bottom: 8px;

    color: #00a9e8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.eng-services-header h2 {

    margin: 0;

    color: #ffffff;

    font-size: 32px;

    font-weight: 800;

    line-height: 1.2;

}


.eng-services-header h2::after {

    content: "";

    display: block;

    width: 42px;

    height: 3px;

    margin-top: 13px;

    background: #00a9e8;

}


.eng-services-header p {

    margin: 0;

    color: #aebdd1;

    font-size: 12px;

    line-height: 1.75;

}


/* =========================================================
   GRID
========================================================= */

.eng-services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


/* =========================================================
   CARD
========================================================= */

.eng-service-card {

    position: relative;

    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.eng-service-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 32px rgba(0,0,0,.20);

}

/* =========================================================
   IMAGE
========================================================= */

.eng-service-top {

    height: 125px;

    position: relative;

    overflow: hidden;

}


.eng-service-image {

    width: 100%;

    height: 100%;

}


.eng-service-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;

}


.eng-service-card:hover
.eng-service-image img {

    transform: scale(1.06);

}
/* =========================================================
   DARK IMAGE OVERLAY
========================================================= */


.eng-service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(10,25,50,.65)
        );

}

/* =========================================================
   NUMBER
========================================================= */

.eng-service-number {

    position: absolute;

    z-index: 3;

    top: 12px;

    left: 12px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #00a9e8;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   CONTENT
========================================================= */

.eng-service-content {

    padding: 17px 18px 18px;

}


.eng-service-content > span {

    display: block;

    margin-bottom: 5px;

    color: #008fc7;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.eng-service-content h3 {

    margin: 0 0 7px;

    color: #173457;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 800;

}


.eng-service-content p {

    margin: 0;

    color: #60758a;

    font-size: 12px;

    line-height: 1.55;

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .eng-services-header {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .eng-services-header p {

        max-width: 700px;

    }


    .eng-services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .eng-services-section {

        padding: 60px 0;

    }


    .eng-services-header h2 {

        font-size: 26px;

    }


    .eng-services-grid {

        grid-template-columns: 1fr;

    }


   
    .eng-service-top {

        height: 150px;

    }

    .eng-service-content {

        padding: 17px;

    }

}

/* =========================================================
   CLEAN CONTACT SECTION
========================================================= */

.contact-clean-section {

    padding: 85px 0;

    background: #f6f9fc;

}


/* =========================================================
   HEADER
========================================================= */

.contact-clean-header {

    max-width: 720px;

    margin: 0 auto 42px;

    text-align: center;

}


.contact-clean-kicker {

    display: block;

    color: #009fe3;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 9px;

}


.contact-clean-header h2 {

    margin: 0;

    color: #192542;

    font-size: 31px;

    font-weight: 800;

}


.contact-clean-line {

    width: 45px;

    height: 3px;

    margin: 14px auto 15px;

    background: #009fe3;

}


.contact-clean-header p {

    margin: 0;

    color: #6b7e92;

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-clean-info {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-bottom: 28px;

}


.contact-clean-box {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 22px 20px;

    background: #ffffff;

    border: 1px solid #dce6ef;

    border-radius: 7px;

    transition: all .3s ease;

}


.contact-clean-box:hover {

    border-color: #8bd5ef;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(25,50,80,.07);

}


/* ICON */

.contact-clean-icon {

    flex: 0 0 42px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: #e9f7fc;

    color: #008fc7;

    font-size: 17px;

}


.contact-clean-box span {

    display: block;

    color: #009fe3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 4px;

}


.contact-clean-box h3 {

    margin: 0 0 7px;

    color: #192542;

    font-size: 15px;

    font-weight: 800;

}


.contact-clean-box p {

    margin: 0;

    color: #65798e;

    font-size: 12px;

    line-height: 1.65;

}


.contact-clean-box a {

    display: block;

    color: #176ca3;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

}


.contact-clean-box a:hover {

    color: #009fe3;

}


.contact-clean-box small {

    display: block;

    margin-top: 5px;

    color: #8a9bab;

    font-size: 11px;

    line-height: 1.5;

}


/* =========================================================
   FORM WRAPPER
========================================================= */

.contact-clean-form-wrap {

    background: #ffffff;

    border: 1px solid #dce6ef;

    border-radius: 8px;

    padding: 30px 32px;

}


/* =========================================================
   FORM HEADING
========================================================= */

.contact-form-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 20px;

    margin-bottom: 22px;

    border-bottom: 1px solid #e7edf2;

}


.contact-form-heading span {

    color: #009fe3;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.contact-form-heading h3 {

    margin: 5px 0 0;

    color: #192542;

    font-size: 21px;

    font-weight: 800;

}


.contact-form-heading p {

    max-width: 390px;

    margin: 0;

    color: #748699;

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================================
   FORM GRID
========================================================= */

.contact-form-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px 20px;

}


.clean-form-group {

    width: 100%;

}


.clean-form-group label {

    display: block;

    margin-bottom: 6px;

    color: #243b55;

    font-size: 13px;

    font-weight: 700;

}


.clean-form-group label b {

    color: #009fe3;

}


.clean-form-group input,
.clean-form-group select,
.clean-form-group textarea {

    width: 100%;

    border: 1px solid #d8e2eb;

    border-radius: 5px;

    background: #fbfdff;

    color: #344c63;

    font-family: inherit;

    font-size: 12px;

    outline: none;

    transition: .25s ease;

}


.clean-form-group input,
.clean-form-group select {

    height: 42px;

    padding: 0 12px;

}


.clean-form-group textarea {

    min-height: 90px;

    padding: 11px 12px;

    resize: vertical;

}


.clean-form-group input:focus,
.clean-form-group select:focus,
.clean-form-group textarea:focus {

    border-color: #009fe3;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(0,159,227,.06);

}


.clean-form-group input::placeholder,
.clean-form-group textarea::placeholder {

    color: #a0adba;

}


/* =========================================================
   MESSAGE
========================================================= */

.clean-message {

    grid-column: 1 / 2;

}


/* =========================================================
   SUBMIT
========================================================= */

.clean-form-submit {

    grid-column: 2 / 3;

    display: flex;

    align-items: flex-end;

}


.clean-form-submit button {

    width: 100%;

    height: 43px;

    border: 0;

    border-radius: 5px;

    background: #087dbb;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    transition: .3s ease;

}


.clean-form-submit button:hover {

    background: #006a9e;

}


.clean-form-submit button i {

    font-size: 13px;

}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.contact-bottom-strip {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 20px;

    border: 1px solid #dce6ef;

    border-radius: 7px;

    background: #ffffff;

}


.contact-bottom-strip > div {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px;

    border-right: 1px solid #e3eaf0;

}


.contact-bottom-strip > div:last-child {

    border-right: 0;

}


.contact-bottom-strip i {

    color: #009fe3;

    font-size: 18px;

}


.contact-bottom-strip span {

    color: #7b8d9e;

    font-size: 13px;

}


.contact-bottom-strip strong {

    display: block;

    margin-top: 2px;

    color: #243b55;

    font-size: 12px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .contact-clean-info {

        grid-template-columns: 1fr;

    }


    .contact-clean-box {

        padding: 20px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .contact-clean-section {

        padding: 60px 0;

    }


    .contact-clean-header h2 {

        font-size: 26px;

    }


    .contact-clean-form-wrap {

        padding: 24px 18px;

    }


    .contact-form-heading {

        display: block;

    }


    .contact-form-heading p {

        margin-top: 10px;

    }


    .contact-form-grid {

        grid-template-columns: 1fr;

    }


    .clean-message,
    .clean-form-submit {

        grid-column: auto;

    }


    .contact-bottom-strip {

        grid-template-columns: 1fr;

    }


    .contact-bottom-strip > div {

        justify-content: flex-start;

        border-right: 0;

        border-bottom: 1px solid #e3eaf0;

    }


    .contact-bottom-strip > div:last-child {

        border-bottom: 0;

    }

}

/* =========================================================
   DOWNLOAD SHOWCASE
========================================================= */

.downloads-showcase {

    padding: 85px 0;

    background: #f4f8fb;

}


/* =========================================================
   HEADER
========================================================= */

.downloads-top {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 35px;

}


.downloads-label {

    display: block;

    margin-bottom: 8px;

    color: #00a8e5;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.downloads-top h2 {

    margin: 0;

    color: #172744;

    font-size: 31px;

    font-weight: 800;

}


.downloads-top p {

    max-width: 470px;

    margin: 0;

    color: #687c8f;

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   FEATURED DOWNLOAD
========================================================= */

.featured-download {

    position: relative;

    display: grid;

    grid-template-columns: 75px 1fr auto;

    align-items: center;

    gap: 25px;

    padding: 27px 30px;

    margin-bottom: 18px;

    background: #172744;

    border-radius: 8px;

    overflow: hidden;

}


.featured-download::after {

    content: "";

    position: absolute;

    width: 230px;

    height: 230px;

    right: -90px;

    top: -120px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 50%;

}


.featured-document-icon {

    width: 66px;

    height: 66px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #008fc7;

    border-radius: 8px;

    font-size: 27px;

}


.featured-content span {

    color: #00b4ed;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.featured-content h3 {

    margin: 5px 0 7px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 800;

}


.featured-content p {

    max-width: 700px;

    margin: 0;

    color: #b7c7d6;

    font-size: 11px;

    line-height: 1.6;

}


.featured-meta {

    display: flex;

    gap: 17px;

    margin-top: 10px;

}


.featured-meta span {

    display: flex;

    align-items: center;

    gap: 5px;

    color: #91a8bc;

    font-size: 11px;

    letter-spacing: 0;

}


.featured-meta i {

    color: #00a8e5;

}


.featured-download-btn {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 12px 18px;

    white-space: nowrap;

    background: #00a2dc;

    color: #ffffff;

    border-radius: 4px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: .3s ease;

}


.featured-download-btn:hover {

    background: #ffffff;

    color: #007cae;

}


.featured-download-btn i {

    font-size: 12px;

}


/* =========================================================
   DOWNLOAD GRID
========================================================= */

.download-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

}


/* =========================================================
   DOWNLOAD CARD
========================================================= */

.download-card {

    padding: 20px;

    background: #ffffff;

    border: 1px solid #dce6ed;

    border-radius: 7px;

    transition: all .3s ease;

}


.download-card:hover {

    transform: translateY(-5px);

    border-color: #9bd6ea;

    box-shadow:
        0 12px 28px rgba(23,48,72,.09);

}


.download-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;

}


.download-card-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f6fb;

    color: #008fc7;

    border-radius: 6px;

    font-size: 30px;

}


.download-card-number {

    color: #dce8ef;

    font-size: 20px;

    font-weight: 800;

}


.download-type {

    color: #009fd8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

}


.download-card h3 {

    margin: 6px 0 8px;

    color: #172744;

    font-size: 14px;

    line-height: 1.35;

    font-weight: 800;

}


.download-card p {

    min-height: 58px;

    margin: 0;

    color: #6c7f91;

    font-size: 12px;

    line-height: 1.6;

}


.download-card-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 12px;

    border-top: 1px solid #e5edf2;

}


.download-card-bottom span {

    color: #9aa9b5;

    font-size: 11px;

}


.download-card-bottom a {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #b9d9e7;

    border-radius: 50%;

    color: #008fc7;

    text-decoration: none;

    font-size: 18px;

    transition: .3s ease;

}


.download-card-bottom a:hover {

    background: #008fc7;

    color: #ffffff;

    border-color: #008fc7;

}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.download-bottom-strip {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 16px;

    padding: 15px 20px;

    background: #ffffff;

    border: 1px solid #dce6ed;

    border-radius: 6px;

}


.download-bottom-strip > div {

    display: flex;

    align-items: center;

    gap: 10px;

}


.download-bottom-strip i {

    color: #009ed8;

    font-size: 20px;

}


.download-bottom-strip strong {

    color: #253b55;

    font-size: 12px;

}


.download-bottom-strip span {

    color: #8293a2;

    font-size:11px;

}


.download-bottom-strip a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #0088bd;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .downloads-top {

        display: block;

    }

    .downloads-top p {

        margin-top: 15px;

    }

    .download-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .downloads-showcase {

        padding: 60px 0;

    }

    .downloads-top h2 {

        font-size: 27px;

    }

    .featured-download {

        grid-template-columns: 55px 1fr;

        gap: 15px;

        padding: 20px;

    }

    .featured-document-icon {

        width: 50px;

        height: 50px;

        font-size: 21px;

    }

    .featured-content h3 {

        font-size: 16px;

    }

    .featured-download-btn {

        grid-column: 1 / -1;

        justify-content: center;

    }

    .download-grid {

        grid-template-columns: 1fr;

    }

    .download-bottom-strip {

        display: block;

    }

    .download-bottom-strip > div {

        margin-bottom: 12px;

        align-items: flex-start;

    }

}

/* =====================================================
   PREMIUM FOOTER
===================================================== */

.premium-footer {

    background: #182441;

    color: #ffffff;

    padding: 70px 0 0;

    position: relative;

    overflow: hidden;

}


/* subtle background effect */

.premium-footer::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.06);

}

.premium-footer::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.05);

}


.premium-footer .container {

    position: relative;

    z-index: 2;

}


/* =====================================================
   MAIN FOOTER
===================================================== */

.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.35fr;

    gap: 55px;

    padding-bottom: 55px;

}


/* =====================================================
   BRAND
===================================================== */

.footer-brand {

    max-width: 330px;

}


.footer-logo {

    margin-bottom: 22px;

}


.footer-logo img {

    max-width: 230px;

    max-height: 65px;

    object-fit: contain;

}


.footer-brand p {

    color: #b9c6dc;

    font-size: 14px;

    line-height: 1.8;

    margin: 0 0 25px;

}


.footer-established {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 9px 15px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 5px;

}


.footer-established span {

    font-size: 9px;

    letter-spacing: 1.8px;

    color: #8fa3c2;

}


.footer-established strong {

    color: #00a9e8;

    font-size: 18px;

}


/* =====================================================
   COLUMN
===================================================== */

.footer-heading {

    position: relative;

    display: inline-block;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

    margin-bottom: 22px;

    padding-bottom: 10px;

}


.footer-heading::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 30px;

    height: 2px;

    background: #00a9e8;

}


.footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-column li {

    margin-bottom: 11px;

}


.footer-column a {

    color: #aebdd4;

    text-decoration: none;

    font-size: 13px;

    transition: .3s ease;

}


.footer-column a:hover {

    color: #00a9e8;

    padding-left: 4px;

}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;

}


.footer-contact-icon {

    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(0,169,232,.12);

    border: 1px solid rgba(0,169,232,.25);

    color: #00a9e8;

    font-size: 14px;

}


.footer-contact-item span {

    display: block;

    color: #7f96b8;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 4px;

}


.footer-contact-item p {

    color: #c1ccdd;

    font-size: 13px;

    line-height: 1.6;

    margin: 0;

}


.footer-contact-item a {

    color: #c9d5e7;

    text-decoration: none;

    font-size: 13px;

}


.footer-contact-item a:hover {

    color: #00a9e8;

}


/* =====================================================
   CTA
===================================================== */

.footer-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 25px 28px;

    border-radius: 8px;

    background: #203152;

    border: 1px solid rgba(255,255,255,.08);

}


.footer-cta-content span {

    display: block;

    color: #00a9e8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 6px;

}


.footer-cta-content h3 {

    margin: 0;

    color: #ffffff;

    font-size: 21px;

    font-weight: 700;

}


.footer-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 4px;

    background: #00a9e8;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition: .3s ease;

}


.footer-cta-btn:hover {

    background: #ffffff;

    color: #182441;

}


.footer-cta-btn i {

    font-size: 14px;

}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-top: 45px;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.10);

    color: #8294b1;

    font-size: 11px;

}


/* COPYRIGHT */

.copyright-text {

    margin: 0;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 4px;

    line-height: 1.7;

}


.company-name {

    color: #b8c7dc;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;

}


.company-name:hover {

    color: #00a9e8;

}


/* DEVELOPER */

.developer-text {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-left: 5px;

}


.developer-text a {

    display: inline-flex;

    align-items: center;

}


.technest-logo {

    width: 15px;

    height: auto;

    max-height: 28px;

    object-fit: contain;

    vertical-align: middle;

}


/* FOOTER LINKS */

.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 10px;

    white-space: nowrap;

}


.footer-bottom-links a {

    color: #8294b1;

    text-decoration: none;

    transition: .3s ease;

}


.footer-bottom-links a:hover {

    color: #00a9e8;

}


.footer-bottom-links span {

    color: #4e607d;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        margin-top: 35px;

    }

    .copyright-text {

        display: block;

    }

    .developer-text {

        margin-left: 0;

        margin-top: 5px;

    }

    .footer-bottom-links {

        flex-wrap: wrap;

    }

}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .footer-main {

        grid-template-columns: 1.3fr 1fr 1fr;

        gap: 40px;

    }

    .footer-brand {

        grid-column: span 3;

        max-width: 600px;

    }

    .footer-contact {

        grid-column: span 3;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .premium-footer {

        padding-top: 50px;

    }

    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;

    }

    .footer-brand,
    .footer-contact {

        grid-column: auto;

    }

    .footer-brand {

        max-width: 100%;

    }

    .footer-logo img {

        max-width: 200px;

    }

    .footer-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 22px;

    }

    .footer-cta-content h3 {

        font-size: 19px;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 35px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .footer-bottom-links {

        flex-wrap: wrap;

    }

    .footer-cta-btn {

        width: 100%;

        justify-content: center;

    }

}