/* =========================================================
   ECONOMIC FORGE - MODERN FULL-WIDTH RESPONSIVE DESIGN
   ========================================================= */

:root {
    --navy: #062f62;
    --navy-dark: #041f42;
    --blue: #1d76b9;
    --blue-light: #3e9bd2;
    --orange: #ee5a0a;
    --text: #303840;
    --muted: #7a838c;
    --light: #f5f7f9;
    --border: #e4e8ec;
    --dark: #151719;
    --container: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.8;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 60px));
    margin: 0 auto;
}

/* Header */

.site-header {
    background: #fff;
}

.header-top {
    min-height: 76px;
    border-bottom: 1px solid #edf0f3;
    padding: 5px 0;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    color: var(--navy);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .8px;
    height: 80px;
}
.brand img {
    height: 80px;
}
.brand span {
    color: var(--orange);
    font-weight: 500;
}

.header-tagline {
    color: #6d6d6d;
    font-size: 16px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Navigation */

.main-nav {
    position: relative;
    z-index: 20;
    background: linear-gradient(to bottom, #4388cc 0%, #1d5fa5 35%, #0b3f7c 70%, #062e60 100%);
    box-shadow: 0 4px 18px rgba(4, 31, 66, .16);
}

.nav-container {
    display: flex;
    align-items: stretch;
}

.nav-menu {
    list-style: none;
    display: flex;
    width: 100%;
}

.nav-menu li {
    display: flex;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    min-height: 52px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,.08);
    transition: .25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--blue-light);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 14px 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 27px;
    height: 2px;
    display: block;
    margin: 5px 0;
    background: #fff;
}

/* Hero */

.hero-carousel {
    position: relative;
    width: 100%;
    height: min(620px, 48vw);
    min-height: 390px;
    overflow: hidden;
    background: #dcebf3;
}

.slides,
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide:nth-child(2) img,
.slide:nth-child(3) img {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,25,51,.60) 0%, rgba(2,25,51,.20) 42%, rgba(2,25,51,.02) 75%);
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
}

.hero-eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.hero-content h1 {
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.8px;
    max-width: 700px;
}

.hero-btn {
    margin-top: 28px;
    padding: 12px 23px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .25s ease;
}

.hero-btn:hover {
    background: #fff;
    color: var(--navy);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(2, 31, 62, .35);
    cursor: pointer;
    transition: .25s ease;
}

.carousel-arrow:hover {
    background: var(--blue);
}

.carousel-arrow.prev {
    left: 25px;
}

.carousel-arrow.next {
    right: 25px;
}

.carousel-dots {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
}

.dot.active {
    background: var(--orange);
}

/* General section heading */

.section-heading {
    margin-bottom: 24px;
}

.section-heading span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.section-heading h2 {
    color: var(--navy);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 600;
}

.section-heading.centered {
    text-align: center;
}

/* Welcome */

.welcome-section {
    padding: 75px 0 70px;
    background: #fff;
}

.intro-text {
    /* max-width: 1060px; */
    /* color: #68727b; */
    /* font-size: 14px; */
    line-height: 1.8;
}

/* Feature cards */

.features-section {
    padding: 75px 0;
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(22, 45, 66, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(22, 45, 66, .12);
}

.feature-image {
    height: 205px;
    overflow: hidden;
    background: #edf2f5;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-image {
    padding: 28px;
    background: #f8fafc;
}

.quality-image img {
    object-fit: contain;
}

.feature-content {
    position: relative;
    padding: 25px 25px 28px;
}

.feature-number {
    display: block;
    margin-bottom: 5px;
    color: #a9b3bc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.feature-content h3 {
    margin-bottom: 10px;
    color: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 700;
}

.feature-content p {
    /* color: #66707a; */
    font-size: 16px;
    line-height: 1.8;
}

/* Gallery */

.gallery-section {
    padding: 78px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid a {
    position: relative;
    display: block;
    height: 190px;
    overflow: hidden;
    background: #eee;
}

.gallery-grid a::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    padding: 10px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: .3s ease;
}

.gallery-grid a:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.06);
}

/* Shoppe */

.shoppe-section {
    padding: 52px 0;
    background: var(--navy);
}

.shoppe-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.shoppe-inner span {
    color: #7dbce8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.shoppe-inner h2 {
    margin-top: 7px;
    color: #fff;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 500;
}

.outline-btn {
    flex: 0 0 auto;
    padding: 12px 24px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .25s ease;
}

.outline-btn:hover {
    color: var(--navy);
    background: #fff;
}

 /* =========================================================
    FOOTER
 ========================================================= */

.site-footer {
    color: #dee0e2;
    background: var(--dark);

    /* Basic copy protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* =========================================================
   MAIN FOOTER GRID
 ========================================================= */

.footer-grid {
    display: grid;

    /*
       About       Links       Contact
       35%         32%         33%
    */
    grid-template-columns: 1.1fr 1fr 1fr;

    gap: 45px;

    align-items: start;

    padding: 32px 0 30px;
}


/* =========================================================
   FOOTER HEADINGS
 ========================================================= */

.site-footer h3 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 17px;
    font-weight: 500;
}


/* =========================================================
   ABOUT ECONOMIC FORGE
 ========================================================= */

.footer-about {
    padding-right: 10px;
}

.footer-about p {
    margin: 0;
    color: #dee0e2;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   WEBSITE LINKS
 ========================================================= */

.footer-link-columns {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.footer-link-columns ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-link-columns li {
    margin: 0 0 11px;
    padding: 0;
}

.footer-links a {
    color: #dee0e2;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}


/* =========================================================
   CONTACT US
 ========================================================= */

.footer-contact {
    padding: 0;
}

.footer-contact strong {
    display: block;

    margin-bottom: 17px;

    color: #fff;

    font-size: 15px;
    font-weight: 600;
}


/* Address */

.contact-address {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin: 0;
    padding: 0;

    font-style: normal;

    font-size: 14px;

    line-height: 1.7;
}


/* Email */

.contact-email {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 18px;

    font-size: 14px;
}


/* =========================================================
   CONTACT ICONS
 ========================================================= */

.contact-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;
}


/* =========================================================
   FOOTER BOTTOM
 ========================================================= */

.footer-bottom {
    background: rgba(0, 0, 0, 0.18);
}

.footer-bottom .container {
    display: flex;

    justify-content: space-between;

    align-items: center;

    min-height: 52px;
}

.footer-bottom span {
    font-size: 14px;
}


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

@media (max-width: 1000px) {

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

        gap: 35px;
    }

    .footer-about {
        grid-column: 1 / -1;

        padding-right: 0;
    }

}


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

@media (max-width: 650px) {

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

        gap: 30px;

        padding: 30px 0;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-link-columns {
        gap: 20px;
    }

    .footer-bottom .container {
        min-height: auto;

        padding: 15px 0;

        flex-direction: column;

        gap: 8px;

        text-align: center;
    }

}


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

@media (max-width: 450px) {

    .footer-link-columns {
        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }

    .footer-about p,
    .footer-links a,
    .contact-address,
    .contact-email {
        font-size: 13px;
    }

}

/* Back top */

.back-top {
    position: fixed;
    z-index: 50;
    right: 22px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 3px;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

/* Tablet */

@media (max-width: 1050px) {
    .container {
        width: min(var(--container), calc(100% - 40px));
    }

    .nav-menu a {
        padding: 0 13px;
        font-size: 9px;
    }

    .feature-grid {
        gap: 18px;
    }

    .feature-image {
        height: 175px;
    }
}

/* Mobile */

@media (max-width: 760px) {

    .container {
        width: calc(100% - 32px);
    }

    .header-top {
        min-height: 70px;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand {
        font-size: 17px;
    }

    .header-tagline {
        display: none;
    }

    .nav-container {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li,
    .nav-menu a {
        width: 100%;
    }

    .nav-menu a {
        min-height: 44px;
        padding: 0 16px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .hero-carousel {
        height: 300px;
        min-height: 0;
    }

    .hero-content h1 {
        font-size: 31px;
    }

    .hero-eyebrow {
        font-size: 10px;
    }

    .hero-btn {
        margin-top: 20px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .carousel-arrow.prev {
        left: 12px;
    }

    .carousel-arrow.next {
        right: 12px;
    }

    .welcome-section,
    .features-section,
    .gallery-section {
        padding: 55px 0;
    }

    .intro-text {
        font-size: 13px;
        line-height: 1.8;
        text-align: justify;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .feature-image {
        height: 210px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-grid a {
        height: 145px;
    }

    .shoppe-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 3px;
    }
}

@media (max-width: 450px) {
    .container {
        width: calc(100% - 24px);
    }

    .hero-carousel {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

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

    .gallery-grid a {
        height: 175px;
    }

    .section-heading h2 {
        font-size: 25px;
    }
}

/*--- company profile page ----*/
/* =========================================
   PAGE BREADCRUMB
   ========================================= */

.page-breadcrumb {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(3, 38, 78, 0.94) 0%,
            rgba(7, 57, 108, 0.88) 50%,
            rgba(13, 78, 135, 0.80) 100%
        );
    overflow: hidden;
}
/*-- , url("../images/company-profile-banner.jpg") center center / cover no-repeat --*/


/* Decorative line */

.page-breadcrumb::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #3baef3;
}


/* Content */

.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 35px 0;
}


/* Small label */

.breadcrumb-label {
    display: block;
    margin-bottom: 8px;
    color: #7fc2eb;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
}


/* Page title */

.breadcrumb-content h1 {
    margin: 0 0 12px;

    color: #ffffff;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 600;
}


/* Breadcrumb navigation */

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}


.breadcrumb-nav a {
    color: #ffffff;
    transition: color 0.25s ease;
}


.breadcrumb-nav a:hover {
    color: #7fc2eb;
}


.breadcrumb-nav span:first-of-type {
    color: #3e9bd2;
    font-weight: 700;
}


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

@media (max-width: 768px) {

    .page-breadcrumb {
        min-height: 190px;
    }

    .breadcrumb-content {
        padding: 30px 0;
    }

    .breadcrumb-content h1 {
        font-size: 34px;
    }
}


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

@media (max-width: 480px) {

    .page-breadcrumb {
        min-height: 165px;

        background:
            linear-gradient(
                90deg,
                rgba(3, 38, 78, 0.95),
                rgba(7, 57, 108, 0.90)
            );
    }
    /*-- , url("images/company-profile-banner.jpg") center / cover no-repeat --*/

    .breadcrumb-content {
        padding: 25px 0;
    }

    .breadcrumb-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .breadcrumb-content h1 {
        margin-bottom: 9px;
        font-size: 28px;
    }

    .breadcrumb-nav {
        font-size: 11px;
    }
}
/* =========================================
   COMPANY PROFILE SECTION
   ========================================= */

.company-profile-section {
    padding: 45px 0 20px;
    background: #ffffff;
}

.company-profile-section .container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* Page Title */

.company-profile-title {
    margin: 0 0 18px;

    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 400;
}


/* =========================================
   COMPANY PROFILE BANNER
   ========================================= */

.company-profile-banner {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #dedede;
    background: #f5f5f5;
}

.company-profile-banner img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}


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

.company-profile-content {
    color: #3f464c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.company-profile-content p {
    margin: 0 0 20px;
}

.company-profile-content strong {
    color: #202020;
    font-weight: 700;
}

.company-profile-content em {
    color: #333;
}


/* =========================================
   MAP
   ========================================= */

.company-map img {
    display: inline;
    /* margin-top: 30px; */
}

.company-map iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}


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

@media (max-width: 768px) {

    .company-profile-section {
        padding: 35px 0 55px;
    }

    .company-profile-section .container {
        width: calc(100% - 35px);
    }

    .company-profile-title {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .company-profile-banner img {
        height: 190px;
    }

    .company-profile-content {
        font-size: 13px;
        line-height: 1.75;
    }

    .company-profile-content p {
        margin-bottom: 18px;
    }
    .company-map {
        margin-top: 25px;
    }

    .company-map iframe {
        height: 320px;
    }
}


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

@media (max-width: 480px) {

    .company-profile-section {
        padding: 28px 0 45px;
    }

    .company-profile-section .container {
        width: calc(100% - 24px);
    }

    .company-profile-title {
        font-size: 23px;
        margin-bottom: 14px;
    }

    .company-profile-banner {
        margin-bottom: 20px;
    }

    .company-profile-banner img {
        height: 125px;
        object-fit: cover;
    }

    .company-profile-content {
        font-size: 12px;
        line-height: 1.75;
        text-align: left;
    }

    .company-profile-content p {
        margin-bottom: 16px;
    }

    .company-map {
        margin-top: 20px;
    }

    .company-map iframe {
        height: 260px;
    }
}
/* =========================================
   PRODUCTS PAGE
   ========================================= */

.products-page {
    padding: 35px 0 70px;
    background: #ffffff;
}

.products-page .container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================
   PAGE TITLE
   ========================================= */

.page-title {
    margin: 0 0 14px;

    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 400;
}


/* =========================================
   PRODUCTS BANNER
   ========================================= */

.products-banner {
    width: 100%;
    margin-bottom: 18px;

    overflow: hidden;
    border: 1px solid #dcdcdc;
    background: #f5f5f5;
}

.products-banner img {
    display: block;

    width: 100%;
    height: 230px;

    object-fit: cover;
}


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

.products-intro,
.product-range-text {
    color: #3f464c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.products-intro p,
.product-range-text p {
    margin: 0 0 8px;
}


/* =========================================
   PRODUCT GRADES
   ========================================= */

.product-grades {
    margin-top: 10px;
}


.grade-section {
    display: grid;
    grid-template-columns: 1fr 35%;
    gap: 25px;
    /* min-height: 130px; */
    margin-bottom: 8px;
    align-items: start;
}


.grade-content h3 {
    margin: 0 0 12px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
}


.grade-content ul {
    margin: 0;
    padding-left: 17px;
    color: #3f464c;
    font-size: 16px;
    line-height: 1.8;
}


.grade-content li {
    padding-left: 2px;
}


/* Product 1 / Product 2 */

.grade-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* min-height: 110px; */
}

.grade-image img {
    display: block;
    max-width: 100%;
    /* max-height: 125px; */
    object-fit: contain;
}


/* =========================================
   PRODUCT RANGE
   ========================================= */

.product-range-text {
    margin-top: 5px;
    margin-bottom: 20px;
}

.product-range-text strong {
    color: #222;
    font-weight: 700;
}


/* =========================================
   TABLE SECTION
   ========================================= */

.product-table-section {
    margin-top: 18px;
    margin-bottom: 24px;
}


.table-title {
    margin: 0 0 6px;
    color: #303030;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}


/* Table + Image */

.table-image-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 35%;
    gap: 24px;

    align-items: start;
}


/* =========================================
   PRODUCT TABLE
   ========================================= */

.responsive-table {
    width: 100%;
    overflow-x: auto;
}


.responsive-table table {
    width: 100%;
    min-width: 550px;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}


.responsive-table thead th {
    padding: 5px 12px;
    color: #ffffff;
    background: #666666;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
}


.responsive-table tbody td {
    padding: 6px 12px;
    color: #444;
    background: #eeeeee;
    border-bottom: 1px solid #ffffff;
    line-height: 1.8;
}


.responsive-table tbody tr:nth-child(even) td {
    background: #e2e2e2;
}


.responsive-table tbody tr:hover td {
    background: #d9d9d9;
}


/* Table note */

.table-note {
    margin: 10px 0 0;
    color: #333;
    font-size: 14px;
}


/* =========================================
   PRODUCT SIDE IMAGE
   ========================================= */

.product-side-image {
    width: 100%;
    /* height: 150px; */
    overflow: hidden;
    /* background: #f3f3f3; */
}


.product-side-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.product4-image {
    background: transparent;
}


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

@media (max-width: 768px) {

    .products-page {
        padding: 30px 0 55px;
    }

    .products-page .container {
        width: calc(100% - 35px);
    }


    .page-title {
        font-size: 25px;
    }


    .products-banner img {
        height: 190px;
    }


    .products-intro,
    .product-range-text {
        font-size: 12px;
        line-height: 1.75;
    }


    .grade-section {
        grid-template-columns: 1fr 30%;
        gap: 15px;
    }


    .table-image-row {
        grid-template-columns: 1fr 30%;
        gap: 15px;
    }


    .product-side-image {
        height: 130px;
    }
}


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

@media (max-width: 600px) {

    .products-page {
        padding: 25px 0 45px;
    }

    .products-page .container {
        width: calc(100% - 24px);
    }


    .page-title {
        margin-bottom: 12px;
        font-size: 23px;
    }


    .products-banner {
        margin-bottom: 16px;
    }


    .products-banner img {
        height: 125px;
    }


    .products-intro,
    .product-range-text {
        font-size: 12px;
        line-height: 1.7;
    }


    /* Product grade image moves below content */

    .grade-section {
        display: flex;
        flex-direction: column;

        gap: 10px;
        margin-bottom: 25px;
    }


    .grade-content {
        width: 100%;
    }


    .grade-image {
        width: 100%;
        min-height: 0;

        justify-content: flex-start;
    }


    .grade-image img {
        max-width: 180px;
        max-height: 100px;
    }


    /* Table + image */

    .table-image-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }


    .responsive-table {
        width: 100%;
    }


    .responsive-table table {
        min-width: 540px;
    }


    .product-side-image {
        width: 100%;
        max-width: 300px;
        height: 160px;
    }


    .table-title {
        font-size: 11px;
    }
}


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

@media (max-width: 400px) {

    .products-banner img {
        height: 105px;
    }

    .products-intro,
    .product-range-text {
        font-size: 11px;
    }

    .grade-content ul {
        font-size: 11px;
    }

    .responsive-table table {
        font-size: 9px;
    }
}
/* =========================================
   TECHNICAL SPECIFICATIONS
   ========================================= */

.technical-specifications {
    padding: 40px 0 70px;
    background: #ffffff;
}

.technical-specifications .container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================
   TABLE SECTION
   ========================================= */

.spec-table-section {
    margin-bottom: 28px;
}


/* Section title */

.spec-title {
    margin: 0 0 2px;
    color: #252525;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 700;
}


/* Standard text */

.standard-name {
    margin: 0 0 6px;
    color: #555;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   TABLE WRAPPER
   ========================================= */

.spec-table-wrapper {
    width: 100%;
    overflow-x: auto;

    -webkit-overflow-scrolling: touch;
}


/* =========================================
   COMMON TABLE
   ========================================= */

.spec-table {
    width: 100%;
    border-collapse: collapse;

    color: #41484d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;

    border: 1px solid #dce3e7;
}


/* =========================================
   TABLE HEADER
   ========================================= */

.spec-table thead th {
    height: 46px;
    padding: 6px 8px;
    color: #ffffff;
    background: #3f78bd;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}


.spec-table thead th:first-child {
    text-align: left;
}


.spec-table thead th small {
    display: block;
    margin-top: 3px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
}


/* =========================================
   TABLE BODY
   ========================================= */

.spec-table tbody td {
    padding: 7px 10px;
    background: #f1f7f5;
    border-bottom: 1px solid #dce4e1;
    border-right: 1px solid #e5ebe8;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    vertical-align: middle;
}


.spec-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
}


/* Alternate rows */

.spec-table tbody tr:nth-child(even) td {
    background: #eaf2f0;
}


/* Hover */

.spec-table tbody tr:hover td {
    background: #e2ece9;
}


/* =========================================
   COLUMN WIDTHS - CHEMICAL TABLE
   ========================================= */

.chemical-table th:first-child,
.chemical-table td:first-child {
    width: 15%;
}

.chemical-table th:nth-child(2),
.chemical-table td:nth-child(2) {
    width: 11%;
}

.chemical-table th:nth-child(3),
.chemical-table td:nth-child(3) {
    width: 9%;
}

.chemical-table th:nth-child(4),
.chemical-table td:nth-child(4) {
    width: 10%;
}

.chemical-table th:nth-child(5),
.chemical-table td:nth-child(5) {
    width: 9%;
}

.chemical-table th:nth-child(6),
.chemical-table td:nth-child(6) {
    width: 9%;
}

.chemical-table th:nth-child(7),
.chemical-table td:nth-child(7) {
    width: 16%;
}

.chemical-table th:nth-child(8),
.chemical-table td:nth-child(8) {
    width: 11%;
}

.chemical-table th:nth-child(9),
.chemical-table td:nth-child(9) {
    width: 10%;
}


/* =========================================
   MECHANICAL / ASTM TABLES
   ========================================= */

.mechanical-table,
.astm-table {
    table-layout: fixed;
}


.mechanical-table th:first-child,
.mechanical-table td:first-child,
.astm-table th:first-child,
.astm-table td:first-child {
    width: 25%;
}


.mechanical-table th:not(:first-child),
.mechanical-table td:not(:first-child),
.astm-table th:not(:first-child),
.astm-table td:not(:first-child) {
    width: 15%;
}


/* =========================================
   RESPONSIVE - TABLET
   ========================================= */

@media (max-width: 768px) {

    .technical-specifications {
        padding: 30px 0 55px;
    }

    .technical-specifications .container {
        width: calc(100% - 35px);
    }

    .spec-table-section {
        margin-bottom: 24px;
    }

    .spec-title {
        font-size: 12px;
    }

    .standard-name {
        font-size: 9px;
    }

    .spec-table {
        min-width: 760px;
    }

    .spec-table thead th {
        height: 44px;
        font-size: 9px;
    }

    .spec-table thead th small {
        font-size: 7px;
    }

    .spec-table tbody td {
        padding: 7px 8px;
        font-size: 9px;
    }
}


/* =========================================
   RESPONSIVE - MOBILE
   ========================================= */

@media (max-width: 480px) {

    .technical-specifications {
        padding: 25px 0 45px;
    }

    .technical-specifications .container {
        width: calc(100% - 24px);
    }

    .spec-table-section {
        margin-bottom: 22px;
    }

    .spec-title {
        font-size: 11px;
    }

    .standard-name {
        font-size: 9px;
    }

    /*
       Keep tables at readable width.
       User can horizontally scroll on mobile.
    */

    .spec-table {
        min-width: 720px;
    }

    .spec-table thead th {
        height: 42px;
        padding: 5px 7px;

        font-size: 8px;
    }

    .spec-table thead th small {
        font-size: 7px;
    }

    .spec-table tbody td {
        padding: 6px 7px;
        font-size: 8px;
    }

    /*
       Visible scrollbar on mobile
       so users know the table can scroll.
    */

    .spec-table-wrapper {
        padding-bottom: 5px;
    }

    .spec-table-wrapper::-webkit-scrollbar {
        height: 5px;
    }

    .spec-table-wrapper::-webkit-scrollbar-track {
        background: #eeeeee;
    }

    .spec-table-wrapper::-webkit-scrollbar-thumb {
        background: #3f78bd;
        border-radius: 10px;
    }
}
/* =========================================
   MANUFACTURING SECTION
   ========================================= */

.manufacturing-section {
    padding: 35px 0 70px;
    background: #ffffff;
}

.manufacturing-section .container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================
   PAGE TITLE
   ========================================= */

.manufacturing-section .page-title {
    margin: 0 0 15px;

    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 400;
}


/* =========================================
   MANUFACTURING BANNER
   ========================================= */

.manufacturing-banner {
    width: 100%;
    margin-bottom: 25px;

    overflow: hidden;
    background: #f5f5f5;
}

.manufacturing-banner img {
    display: block;

    width: 100%;
    height: 230px;

    object-fit: cover;
}


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

.manufacturing-content {
    color: #3f464c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.manufacturing-content p {
    margin: 0 0 17px;
}


/* =========================================
   MACHINERY SECTION
   ========================================= */

.machinery-section {
    display: grid;

    grid-template-columns: 34% 66%;

    gap: 20px;

    margin-top: 10px;
    margin-bottom: 25px;
}


/* =========================================
   MACHINE LIST
   ========================================= */

.machinery-list {
    padding-top: 2px;
}

.machine-item {
    display: flex;
    align-items: flex-start;

    min-height: 42px;

    color: #3f464c;
}

.machine-item > span {
    flex: 0 0 auto;

    margin-right: 8px;

    color: #333;
}

.machine-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MACHINE IMAGES
   ========================================= */

.machinery-images {
    display: grid;

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

    gap: 22px 25px;

    align-content: start;
}

.machine-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f7f7f7;
}

.machine-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

.production-content {
    margin-top: 5px;
}

.production-content p {
    margin-bottom: 17px;
}


/* =========================================
   PRODUCTION PROCESS IMAGE
   ========================================= */

.production-process-image {
    width: 100%;
    margin-top: 5px;

    text-align: center;
}

.production-process-image img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 0 auto;
}


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

@media (max-width: 768px) {

    .manufacturing-section {
        padding: 30px 0 55px;
    }

    .manufacturing-section .container {
        width: calc(100% - 35px);
    }

    .manufacturing-section .page-title {
        font-size: 25px;
    }

    .manufacturing-banner img {
        height: 190px;
    }

    .manufacturing-content {
        font-size: 12px;
        line-height: 1.75;
    }

    .machinery-section {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .machinery-images {
        gap: 15px;
    }

    .machine-image {
        height: 120px;
    }

    .machine-item p {
        font-size: 11px;
    }
}


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

@media (max-width: 600px) {

    .manufacturing-section {
        padding: 25px 0 45px;
    }

    .manufacturing-section .container {
        width: calc(100% - 24px);
    }

    .manufacturing-section .page-title {
        margin-bottom: 12px;
        font-size: 23px;
    }

    .manufacturing-banner {
        margin-bottom: 20px;
    }

    .manufacturing-banner img {
        height: 125px;
    }

    .manufacturing-content {
        font-size: 12px;
        line-height: 1.7;
    }

    .manufacturing-content p {
        margin-bottom: 16px;
    }


    /* -------------------------------------
       Machinery
       ------------------------------------- */

    .machinery-section {
        display: flex;
        flex-direction: column;

        gap: 20px;
    }


    .machinery-list {
        width: 100%;
    }

    .machine-item {
        min-height: auto;

        margin-bottom: 13px;
    }

    .machine-item p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* -------------------------------------
       Machine Images
       ------------------------------------- */

    .machinery-images {
        width: 100%;

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

        gap: 12px;
    }

    .machine-image {
        height: 130px;
    }


    /* -------------------------------------
       Production Process
       ------------------------------------- */

    .production-process-image {
        margin-top: 10px;
    }

    .production-process-image img {
        width: 100%;
    }
}


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

@media (max-width: 400px) {

    .manufacturing-section .container {
        width: calc(100% - 20px);
    }

    .manufacturing-section .page-title {
        font-size: 22px;
    }

    .manufacturing-content {
        font-size: 11px;
    }

    .machinery-images {
        grid-template-columns: 1fr;
    }

    .machine-image {
        height: 170px;
    }
}
/* =========================================
   QUALITY SECTION
   ========================================= */

.quality-section {
    padding: 35px 0 70px;
    background: #ffffff;
}

.quality-section .container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================
   PAGE TITLE
   ========================================= */

.quality-section .page-title {
    margin: 0 0 15px;

    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 400;
}


/* =========================================
   QUALITY BANNER
   ========================================= */

.quality-banner {
    width: 100%;
    margin-bottom: 25px;

    overflow: hidden;
    background: #f5f5f5;
}

.quality-banner img {
    display: block;

    width: 100%;
    height: 230px;

    object-fit: cover;
}


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

.quality-content {
    color: #3f464c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.quality-content p {
    margin: 0 0 17px;
}


/* =========================================
   CERTIFICATES
   ========================================= */

.quality-certificates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 18px;
}


.certificate-card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 150px;
    text-align: center;
}


.certificate-card img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(22, 45, 66, .06);
}


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

@media (max-width: 768px) {

    .quality-section {
        padding: 30px 0 55px;
    }

    .quality-section .container {
        width: calc(100% - 35px);
    }

    .quality-section .page-title {
        font-size: 25px;
    }

    .quality-banner {
        margin-bottom: 20px;
    }

    .quality-banner img {
        height: 190px;
    }

    .quality-content {
        font-size: 12px;
        line-height: 1.75;
    }

    .quality-certificates {
        gap: 20px;
    }

    .certificate-card {
        min-height: 120px;
    }
}


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

@media (max-width: 600px) {

    .quality-section {
        padding: 25px 0 45px;
    }

    .quality-section .container {
        width: calc(100% - 24px);
    }

    .quality-section .page-title {
        margin-bottom: 12px;
        font-size: 23px;
    }

    .quality-banner {
        margin-bottom: 20px;
    }

    .quality-banner img {
        height: 125px;
    }

    .quality-content {
        font-size: 12px;
        line-height: 1.7;
    }

    .quality-content p {
        margin-bottom: 16px;
    }


    /* Certificates stack vertically */

    .quality-certificates {
        display: flex;
        flex-direction: column;

        gap: 25px;

        margin-top: 20px;
    }

    .certificate-card {
        width: 100%;
        min-height: auto;
    }

    .certificate-card img {
        max-width: 100%;
        width: auto;
    }
}


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

@media (max-width: 400px) {

    .quality-section .container {
        width: calc(100% - 20px);
    }

    .quality-section .page-title {
        font-size: 22px;
    }

    .quality-content {
        font-size: 11px;
    }

    .quality-banner img {
        height: 105px;
    }
}
/* =========================================
   VALUE PROPOSITION
   ========================================= */

.value-proposition-section {
    padding: 35px 0 70px;
    background: #ffffff;
}

.value-proposition-section .container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================
   PAGE TITLE
   ========================================= */

.value-proposition-section .page-title {
    margin: 0 0 15px;

    color: #171717;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 400;
}


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

.value-banner {
    width: 100%;
    margin-bottom: 22px;

    overflow: hidden;

    border: 1px solid #d9d9d9;
    background: #f5f5f5;
}

.value-banner img {
    display: block;

    width: 100%;
    height: 230px;

    object-fit: cover;
}


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

.value-content {
    color: #3f464c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.value-content p {
    margin: 0 0 20px;
}


/* Benefit headings */

.value-content h3 {
    margin: 10px 0 5px;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}


/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials-section {
    margin-top: 5px;
}


/* Testimonial heading */

.testimonial-heading {
    margin: 0 0 7px;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    line-height: 1.8;
    font-weight: 700;
}


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

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 55px;
    gap: 12px;
    min-height: 62px;
    margin-bottom: 15px;
    padding: 7px 10px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #eeeeee;
    box-sizing: border-box;
}


/* Testimonial text */

.testimonial-text {
    min-width: 0;
}

.testimonial-text p {
    margin: 0 0 4px;
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* Author */

.testimonial-author {
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    text-align: right;
    font-style: italic;
}


/* =========================================
   TESTIMONIAL LOGO
   ========================================= */

.testimonial-logo {
    display: flex;

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

    min-width: 0;
}

.testimonial-logo img {
    display: block;

    max-width: 100%;
    max-height: 55px;

    width: auto;
    height: auto;

    object-fit: contain;
}


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

@media (max-width: 768px) {

    .value-proposition-section {
        padding: 30px 0 55px;
    }

    .value-proposition-section .container {
        width: calc(100% - 35px);
    }

    .value-proposition-section .page-title {
        font-size: 25px;
    }

    .value-banner {
        margin-bottom: 20px;
    }

    .value-banner img {
        height: 190px;
    }

    .value-content {
        font-size: 12px;
        line-height: 1.7;
    }

    .value-content h3 {
        font-size: 12px;
    }

    .testimonial-heading {
        font-size: 12px;
    }

    .testimonial-card {
        grid-template-columns: 1fr 50px;

        gap: 10px;

        padding: 7px 8px;
    }

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

    .testimonial-author {
        font-size: 10px;
    }
}


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

@media (max-width: 600px) {

    .value-proposition-section {
        padding: 25px 0 45px;
    }

    .value-proposition-section .container {
        width: calc(100% - 24px);
    }

    .value-proposition-section .page-title {
        margin-bottom: 12px;

        font-size: 23px;
    }

    .value-banner {
        margin-bottom: 18px;
    }

    .value-banner img {
        height: 125px;
    }

    .value-content {
        font-size: 12px;
        line-height: 1.7;
    }

    .value-content p {
        margin-bottom: 14px;
    }

    .value-content h3 {
        margin-top: 10px;
        margin-bottom: 5px;

        font-size: 12px;
    }


    /* -------------------------------------
       Testimonials
       ------------------------------------- */

    .testimonials-section {
        margin-top: 8px;
    }

    .testimonial-heading {
        margin-bottom: 8px;

        font-size: 12px;
    }

    .testimonial-card {
        display: flex;
        flex-direction: column;

        gap: 8px;

        padding: 9px;
    }

    .testimonial-text p {
        font-size: 11px;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 10px;
        text-align: right;
    }

    .testimonial-logo {
        justify-content: flex-end;
    }

    .testimonial-logo img {
        max-height: 45px;
    }
}


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

@media (max-width: 400px) {

    .value-proposition-section .container {
        width: calc(100% - 20px);
    }

    .value-proposition-section .page-title {
        font-size: 22px;
    }

    .value-content {
        font-size: 11px;
    }

    .value-content h3 {
        font-size: 11px;
    }

    .value-banner img {
        height: 105px;
    }

    .testimonial-text p {
        font-size: 10px;
    }

    .testimonial-author {
        font-size: 9px;
    }
}
/* =========================================
   EFPL SHOPPE SECTION
   ========================================= */

.shoppe-section {
    padding: 35px 0 60px;
    background: #ffffff;
}

.shoppe-section .container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================
   PAGE TITLE
   ========================================= */

.shoppe-section .page-title {
    margin: 0 0 24px;

    color: #171717;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 400;
}


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

.shoppe-content {
    color: #303840;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.shoppe-content p {
    margin: 0;
}

.shoppe-welcome {
    margin-bottom: 0 !important;
}


/* =========================================
   LOGIN FORM
   ========================================= */

.shoppe-login {
    margin-top: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e2e2;
}


.password-row {
    display: flex;
    align-items: center;

    gap: 6px;
}


/* Label */

.password-row label {
    flex: 0 0 auto;

    color: #303840;

    font-size: 16px;
    line-height: 1.5;
}


/* Password input */

.password-row input {
    width: 225px;
    height: 43px;

    padding: 8px 10px;

    box-sizing: border-box;

    border: 1px solid #d6d6d6;
    border-radius: 0;

    outline: none;

    background: #ffffff;

    color: #333;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;

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

.password-row input:focus {
    border-color: #9b9b9b;

    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.04);
}


/* Submit button */

.password-row button {
    height: 43px;

    padding: 0 20px;

    border: 1px solid #d3d3d3;
    border-radius: 2px;

    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #e9e9e9 100%
    );

    color: #777;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    cursor: pointer;

    transition: all 0.2s ease;
}

.password-row button:hover {
    background: linear-gradient(
        to bottom,
        #f8f8f8 0%,
        #dddddd 100%
    );

    color: #444;
}


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

@media (max-width: 768px) {

    .shoppe-section {
        padding: 30px 0 50px;
    }

    .shoppe-section .container {
        width: calc(100% - 35px);
    }

    .shoppe-section .page-title {
        margin-bottom: 20px;
        font-size: 27px;
    }

    .shoppe-content {
        font-size: 14px;
        line-height: 1.75;
    }

    .password-row label {
        font-size: 14px;
    }

    .password-row input {
        width: 210px;
        height: 40px;

        font-size: 14px;
    }

    .password-row button {
        height: 40px;

        padding: 0 18px;

        font-size: 14px;
    }
}


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

@media (max-width: 600px) {

    .shoppe-section {
        padding: 25px 0 45px;
    }

    .shoppe-section .container {
        width: calc(100% - 24px);
    }

    .shoppe-section .page-title {
        margin-bottom: 18px;

        font-size: 24px;
    }

    .shoppe-content {
        font-size: 13px;
        line-height: 1.7;
    }


    /* Login */

    .shoppe-login {
        margin-top: 5px;
        padding-bottom: 15px;
    }

    .password-row {
        flex-wrap: wrap;
        align-items: center;
    }

    .password-row label {
        width: 100%;

        margin-bottom: 5px;

        font-size: 13px;
    }

    .password-row input {
        flex: 1;

        width: auto;
        min-width: 0;

        height: 40px;
    }

    .password-row button {
        height: 40px;

        padding: 0 17px;

        font-size: 13px;
    }
}


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

@media (max-width: 400px) {

    .shoppe-section .container {
        width: calc(100% - 20px);
    }

    .shoppe-section .page-title {
        font-size: 22px;
    }

    .shoppe-content {
        font-size: 12px;
    }

    .password-row {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 7px;
    }

    .password-row label {
        grid-column: 1 / -1;

        margin-bottom: 0;
    }

    .password-row input {
        width: 100%;
    }

    .password-row button {
        padding: 0 15px;
    }
}
/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-section {
    padding: 50px 0 70px;
    background: #ffffff;
}

.contact-section .container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================
   MAIN CONTACT GRID
   ========================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 40% 60%;

    gap: 30px;

    align-items: stretch;
}


/* =========================================
   CONTACT INFORMATION BOX
   ========================================= */

.contact-info-box {
    padding: 35px 32px;

    background: #f5f7f8;

    border: 1px solid #dfe4e8;
}


.contact-info-box > h1 {
    margin: 0 0 12px;

    color: #171717;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
}


.contact-info-box > h2 {
    margin: 0 0 30px;

    color: #303840;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


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

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 20px 0;

    border-bottom: 1px solid #d8dee2;
}


.contact-item:first-of-type {
    padding-top: 0;
}


.contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}


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

.contact-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #3f78bd;
    color: #ffffff;
    font-size: 12px;
}


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

.contact-item-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #3f464c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


.contact-label {
    display: block;
    margin-bottom: 4px;
    color: #3f78bd;
    font-size: 16px;
    font-weight: 700;
    /* letter-spacing: 0.5px; */
}


.contact-item-content address {
    margin: 0;

    color: #3f464c;

    font-style: normal;
}


.contact-item-content a {
    color: #3f464c;

    text-decoration: none;

    transition: color 0.2s ease;
}


.contact-item-content a:hover {
    color: #3f78bd;
}


.contact-item-content strong {
    font-weight: 700;
}


/* =========================================
   CONTACT FORM BOX
   ========================================= */

.contact-form-box {
    padding: 35px 40px;

    background: #ffffff;

    border: 1px solid #d8dee3;
}


.contact-form-box > h2 {
    margin: 0 0 8px;

    color: #171717;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
}


.form-intro {
    margin: 0 0 25px;
    color: #66717a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   FORM
   ========================================= */

.contact-form {
    display: grid;

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

    gap: 18px 18px;
}


.form-group {
    display: flex;
    flex-direction: column;
}


.form-group-full {
    grid-column: 1 / -1;
}


/* Labels */

.form-group label {
    margin-bottom: 7px;
    color: #4b555d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    /* letter-spacing: 0.4px; */
}


/* Inputs */

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 13px;
    border: 1px solid #d5dce1;
    border-radius: 2px;
    background: #ffffff;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input {
    height: 43px;
}


.form-group textarea {
    min-height: 125px;

    resize: vertical;

    line-height: 1.6;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #929ba2;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #3f78bd;

    box-shadow: 0 0 0 2px rgba(63, 120, 189, 0.10);
}


/* =========================================
   SUBMIT
   ========================================= */

.form-submit {
    grid-column: 1 / -1;

    margin-top: 3px;
}


.form-submit button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 43px;
    padding: 0 24px;
    border: 0;
    border-radius: 2px;
    background: #3f78bd;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.form-submit button:hover {
    background: #315f98;

    transform: translateY(-1px);
}


/* =========================================
   OFFICE SECTION
   ========================================= */

.contact-office {
    display: grid;

    grid-template-columns: 470px 1fr;

    margin-top: 40px;

    border: 1px solid #d8dee3;

    background: #ffffff;
}


.office-map {
    min-height: 190px;
}


.office-map iframe {
    display: block;

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

    border: 0;
}


.office-details {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px;
}


.office-details h3 {
    margin: 0 0 8px;

    color: #303840;

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

    text-transform: uppercase;
}


.office-details p {
    margin: 0;
    color: #4c555c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


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

@media (max-width: 900px) {

    .contact-section {
        padding: 40px 0 60px;
    }

    .contact-section .container {
        width: calc(100% - 35px);
    }

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

        gap: 20px;
    }

    .contact-info-box {
        padding: 28px 24px;
    }

    .contact-form-box {
        padding: 28px 25px;
    }

    .contact-info-box > h1 {
        font-size: 25px;
    }

    .contact-office {
        grid-template-columns: 230px 1fr;
    }
}


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

@media (max-width: 700px) {

    .contact-section {
        padding: 30px 0 45px;
    }

    .contact-section .container {
        width: calc(100% - 24px);
    }


    /* Stack contact + form */

    .contact-grid {
        display: flex;
        flex-direction: column;

        gap: 20px;
    }


    /* Contact information */

    .contact-info-box {
        padding: 25px 20px;
    }

    .contact-info-box > h1 {
        font-size: 23px;
    }

    .contact-info-box > h2 {
        margin-bottom: 22px;

        font-size: 15px;
    }


    /* Form */

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-form-box > h2 {
        font-size: 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .form-group-full,
    .form-submit {
        grid-column: auto;
    }


    /* Office */

    .contact-office {
        display: flex;
        flex-direction: column;

        margin-top: 25px;
    }

    .office-map {
        min-height: 220px;
    }

    .office-map iframe {
        min-height: 220px;
    }

    .office-details {
        padding: 22px 20px;
    }
}


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

@media (max-width: 400px) {

    .contact-section .container {
        width: calc(100% - 20px);
    }

    .contact-info-box,
    .contact-form-box {
        padding: 22px 17px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        flex-basis: 34px;

        width: 34px;
        height: 34px;

        font-size: 13px;
    }

    .contact-item-content {
        font-size: 12px;
    }

    .form-group input {
        height: 41px;
    }

    .form-group textarea {
        min-height: 110px;
    }
}