/* =========================================================
   HIGH TECH METAL
   ABOUT + PRODUCTS
   BRAND COLOR THEME
   ========================================================= */

:root {
    --htm-green: #01A751;
    --htm-green-dark: #008A43;
    --htm-magenta: #FC008B;
    --htm-dark: #252525;
    --htm-gray: #6D696A;
    --htm-light: #F7F8F8;
    --htm-border: #E5E7E8;
    --htm-white: #FFFFFF;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.hightech-about-section {
    position: relative;
    padding: 90px 0;
    background: var(--htm-white);
    overflow: hidden;
}

/* Background decorative circle */

.hightech-about-section::before {
    content: "";
    position: absolute;

    width: 430px;
    height: 430px;

    top: -230px;
    left: -180px;

    border: 1px solid rgba(1, 167, 81, 0.10);
    border-radius: 50%;

    pointer-events: none;
}

.hightech-about-section::after {
    display: none;
    content: "";
    position: absolute;

    width: 260px;
    height: 260px;

    right: -150px;
    bottom: -150px;

    border: 1px solid rgba(252, 0, 139, 0.08);
    border-radius: 50%;

    pointer-events: none;
}


/* CONTAINER */

.hightech-about-container {
    width: 100%;
    max-width: 1170px;

    margin: 0 auto;
    padding: 0 15px;

    position: relative;
    z-index: 2;
}


/* ROW */

.hightech-about-row {
    display: flex;
    align-items: center;
    gap: 70px;
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.hightech-about-content-column {
    width: 58%;
}

.hightech-about-content {
    width: 100%;
}


/* HEADING */

.hightech-about-heading {
    margin-bottom: 28px;
}


/* ABOUT US SMALL TITLE */

.hightech-about-subtitle {
    display: inline-flex;
    align-items: center;

    position: relative;

    margin-bottom: 13px;
    padding-left: 17px;

    color: var(--htm-green);

    font-size: 14px;
    line-height: 1.2;

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.hightech-about-subtitle::before {
    content: "";

    position: absolute;
    left: 0;
    top: 1px;

    width: 4px;
    height: 18px;

    background: var(--htm-magenta);
}

.hightech-about-subtitle span {
    color: var(--htm-dark);
}


/* MAIN HEADING */

.hightech-about-heading h2 {
    margin: 0;

    max-width: 650px;

    color: var(--htm-dark);

    font-size: 36px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.3px;
}

.hightech-about-heading h2 strong {
    color: var(--htm-green);
    font-weight: 700;
}


/* GREEN + MAGENTA LINE */

.hightech-about-line {
    position: relative;

    width: 70px;
    height: 4px;

    margin-top: 20px;

    background: var(--htm-green);
}

.hightech-about-line::after {
    display: none;
    content: "";

    position: absolute;

    right: 0;
    top: 0;

    width: 22px;
    height: 4px;

    background: var(--htm-magenta);
}


/* =========================================================
   ABOUT TEXT
   ========================================================= */

.hightech-about-text {
    max-width: 680px;
}

.hightech-about-text p {
    margin: 0 0 18px;

    color: var(--htm-gray);

    font-size: 15px;
    line-height: 1.85;

    font-weight: 400;
}

.hightech-about-text p:last-child {
    margin-bottom: 0;
}

.hightech-about-text strong {
    color: var(--htm-dark);
    font-weight: 600;
}


/* =========================================================
   ABOUT BUTTON
   ========================================================= */

.hightech-about-button {
    margin-top: 30px;
}

.hightech-about-button a {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 14px 22px;

    background: var(--htm-green);
    color: var(--htm-white);

    font-size: 13px;
    line-height: 1;

    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;

    letter-spacing: 0.6px;

    border: 1px solid var(--htm-green);

    transition: all 0.3s ease;
}

.hightech-about-button a span {
    font-size: 19px;
    line-height: 12px;

    transition: transform 0.3s ease;
}

.hightech-about-button a:hover {
    background: var(--htm-magenta);
    border-color: var(--htm-magenta);

    color: var(--htm-white);
}

.hightech-about-button a:hover span {
    transform: translateX(5px);
}


/* =========================================================
   ABOUT IMAGE
   ========================================================= */

.hightech-about-image-column {
    width: 42%;
}

.hightech-about-image-wrapper {
    position: relative;

    width: 100%;

    padding: 0 16px 16px 0;
}


/* GREEN OFFSET BORDER */

.hightech-about-image-accent {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 86%;
    height: 86%;

    border: 3px solid var(--htm-green);

    z-index: 0;
}


/* IMAGE */

.hightech-about-image {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 460px;

    margin: 0;

    overflow: hidden;

    background: var(--htm-light);
}

.hightech-about-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.hightech-about-image-wrapper:hover .hightech-about-image img {
    transform: scale(1.05);
}


/* IMAGE LABEL */

.hightech-about-image-label {
    position: absolute;

    right: 0;
    top: 35px;

    z-index: 4;

    display: flex;
    flex-direction: column;

    padding: 14px 20px;

    background: var(--htm-dark);

    color: var(--htm-white);

    line-height: 1.1;
}

.hightech-about-image-label span {
    font-size: 9px;

    font-weight: 500;

    letter-spacing: 2px;

    opacity: 0.75;
}

.hightech-about-image-label strong {
    margin-top: 4px;

    color: var(--htm-magenta);

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   ABOUT - LARGE DESKTOP
   ========================================================= */

@media (max-width: 1199px) {

    .hightech-about-section {
        padding: 80px 0;
    }

    .hightech-about-container {
        max-width: 970px;
    }

    .hightech-about-row {
        gap: 45px;
    }

    .hightech-about-heading h2 {
        font-size: 32px;
    }

    .hightech-about-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hightech-about-image {
        height: 420px;
    }

}


/* =========================================================
   ABOUT - TABLET
   ========================================================= */

@media (max-width: 991px) {

    .hightech-about-section {
        padding: 70px 0;
    }

    .hightech-about-container {
        max-width: 750px;
    }

    .hightech-about-row {
        flex-direction: column;
        align-items: stretch;
        gap: 45px;
    }

    .hightech-about-content-column,
    .hightech-about-image-column {
        width: 100%;
    }

    .hightech-about-heading h2 {
        max-width: 100%;
        font-size: 34px;
    }

    .hightech-about-text {
        max-width: 100%;
    }

    .hightech-about-image-column {
        max-width: 650px;
        margin: 0 auto;
    }

    .hightech-about-image {
        height: 420px;
    }

}


/* =========================================================
   ABOUT - MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hightech-about-section {
        padding: 55px 0;
    }

    .hightech-about-container {
        padding: 0 20px;
    }

    .hightech-about-heading {
        margin-bottom: 22px;
    }

    .hightech-about-subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .hightech-about-heading h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .hightech-about-line {
        margin-top: 16px;
    }

    .hightech-about-text p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .hightech-about-button {
        margin-top: 25px;
    }

    .hightech-about-image-wrapper {
        padding: 0 10px 10px 0;
    }

    .hightech-about-image {
        height: 350px;
    }

    .hightech-about-image-label {
        top: 25px;
    }

}


/* =========================================================
   ABOUT - SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .hightech-about-section {
        padding: 50px 0;
    }

    .hightech-about-container {
        padding: 0 15px;
    }

    .hightech-about-row {
        gap: 35px;
    }

    .hightech-about-heading h2 {
        font-size: 26px;
    }

    .hightech-about-subtitle {
        font-size: 12px;
    }

    .hightech-about-text p {
        font-size: 13.5px;
        line-height: 1.72;
    }

    .hightech-about-image {
        height: 300px;
    }

    .hightech-about-image-label {
        top: 20px;
        padding: 11px 15px;
    }

    .hightech-about-image-label strong {
        font-size: 14px;
    }

    .hightech-about-button a {
        padding: 12px 18px;
        font-size: 13px;
    }

}


/* =========================================================
   ABOUT - EXTRA SMALL
   ========================================================= */

@media (max-width: 380px) {

    .hightech-about-section {
        padding: 45px 0;
    }

    .hightech-about-heading h2 {
        font-size: 24px;
    }

    .hightech-about-text p {
        font-size: 13px;
        line-height: 1.7;
    }

    .hightech-about-image {
        height: 260px;
    }

}


/* =========================================================
   =========================================================
   HIGH TECH METAL
   PRODUCTS SECTION
   =========================================================
   ========================================================= */

.hightech-products-section {
    position: relative;

    padding: 85px 0 90px;

    background: var(--htm-dark);

    overflow: hidden;
}


/* GREEN BACKGROUND SHAPE */

.hightech-products-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -280px;
    right: -180px;

    border: 1px solid rgba(1, 167, 81, 0.25);

    border-radius: 50%;

    pointer-events: none;
}


/* MAGENTA BACKGROUND SHAPE */

.hightech-products-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -150px;

    border: 1px solid rgba(252, 0, 139, 0.20);

    border-radius: 50%;

    pointer-events: none;
}


/* CONTAINER */

.hightech-products-section .auto-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   PRODUCTS TITLE
   ========================================================= */

.hightech-products-title {
    position: relative;

    text-align: center;

    margin-bottom: 50px;
}


/* SMALL GREEN/MAGENTA LINE */

.hightech-products-title::before {
    content: "";

    display: block;

    width: 65px;
    height: 4px;

    margin: 0 auto 15px;

    background:
        linear-gradient(
            to right,
            var(--htm-green) 0%,
            var(--htm-green) 65%,
            var(--htm-magenta) 65%,
            var(--htm-magenta) 100%
        );
}


/* TITLE */

.hightech-products-title h2 {
    margin: 0;

    color: var(--htm-white);

    font-size: 36px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.2px;
}


/* =========================================================
   PRODUCT ROW
   ========================================================= */

.hightech-products-row {
    margin-left: -10px;
    margin-right: -10px;
}

.hightech-product-column {
    padding-left: 10px;
    padding-right: 10px;

    margin-bottom: 20px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.hightech-product-card {
    position: relative;
}

.hightech-product-inner {
    position: relative;

    height: 330px;

    overflow: hidden;

    background: #1C1F20;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 3px;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.hightech-product-image {
    position: absolute;

    inset: 0;

    margin: 0;

    overflow: hidden;
}

.hightech-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


/* =========================================================
   PRODUCT OVERLAY
   ========================================================= */

.hightech-product-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.90) 0%,
            rgba(0, 0, 0, 0.58) 38%,
            rgba(0, 0, 0, 0.08) 75%
        );

    transition: background 0.4s ease;
}





/* =========================================================
   HIGH TECH METAL
   PRODUCTS AUTO SLIDER
   GREEN + MAGENTA THEME
   ========================================================= */

.htm-products-section {
    position: relative;
    padding: 85px 0 90px;
    background: #252525;
    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.htm-products-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.htm-products-bg-circle-one {
    width: 500px;
    height: 500px;

    top: -300px;
    right: -180px;

    border: 1px solid rgba(1, 167, 81, 0.22);
}

.htm-products-bg-circle-two {
    width: 330px;
    height: 330px;

    bottom: -220px;
    left: -150px;

    border: 1px solid rgba(252, 0, 139, 0.20);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.htm-products-section .auto-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
   ========================================================= */

.htm-products-heading {
    text-align: center;
    margin-bottom: 45px;
}

.htm-products-small-title {
    display: block;

    margin-bottom: 10px;

    color: #01A751;

    font-size: 13px;
    line-height: 1.2;

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.htm-products-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 36px;
    line-height: 1.2;

    font-weight: 700;
}

.htm-products-heading-line {
    position: relative;

    width: 65px;
    height: 4px;

    margin: 18px auto 0;

    background: #01A751;
}

.htm-products-heading-line::after {
    content: "";

    position: absolute;

    right: 0;
    top: 0;

    width: 22px;
    height: 4px;

    background: #FC008B;
}


/* =========================================================
   SLIDER WRAPPER
   ========================================================= */

.htm-products-slider {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   SLIDER TRACK
   ========================================================= */

.htm-products-track {
    display: flex;

    gap: 20px;

    transition: transform 0.7s ease;

    will-change: transform;
}


/* =========================================================
   SLIDE
   ========================================================= */

.htm-product-slide {
    flex: 0 0 calc((100% - 60px) / 4);

    min-width: 0;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.htm-product-card {
    position: relative;

    height: 330px;

    overflow: hidden;

    background: #1c1f20;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 3px;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


/* =========================================================
   IMAGE
   ========================================================= */

.htm-product-image {
    position: absolute;

    inset: 0;

    margin: 0;

    overflow: hidden;
}

.htm-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.htm-product-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.05) 75%
        );
}


/* =========================================================
   CONTENT
   ========================================================= */

.htm-product-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding: 25px;
}

/*
.htm-product-content::before {
    content: "";

    position: absolute;

    left: 25px;
    bottom: 25px;

    width: 4px;
    height: 55px;

    background:
        linear-gradient(
            to bottom,
            #01A751 0%,
            #01A751 68%,
            #FC008B 68%,
            #FC008B 100%
        );
}
*/

.htm-product-content h3 {
    margin: 0 0 0 17px;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 600;
}

.htm-product-content h3 a {
    color: #ffffff;

    text-decoration: none;

    transition: color 0.3s ease;
}


/* NUMBER */

.htm-product-number {
    display: block;

    margin-left: 17px;
    margin-bottom: 5px;

    color: #01A751;

    font-size: 11px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   HOVER
   ========================================================= */

.htm-product-card:hover {
    transform: translateY(-7px);

    border-color: #01A751;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35);
}

.htm-product-card:hover .htm-product-image img {
    transform: scale(1.08);
}

.htm-product-card:hover .htm-product-content h3 a {
    color: #01A751;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (max-width: 1199px) {

    .htm-products-section {
        padding: 75px 0 80px;
    }

    .htm-product-slide {
        flex: 0 0 calc((100% - 40px) / 3);
    }

    .htm-product-card {
        height: 300px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .htm-products-section {
        padding: 65px 0 70px;
    }

    .htm-products-heading {
        margin-bottom: 35px;
    }

    .htm-products-heading h2 {
        font-size: 32px;
    }

    .htm-product-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .htm-product-card {
        height: 285px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .htm-products-section {
        padding: 55px 0 60px;
    }

    .htm-products-heading {
        margin-bottom: 30px;
    }

    .htm-products-small-title {
        font-size: 11px;
    }

    .htm-products-heading h2 {
        font-size: 28px;
    }

    .htm-products-track {
        gap: 15px;
    }

    .htm-product-slide {
        flex: 0 0 100%;
    }

    .htm-product-card {
        height: 300px;
    }

    .htm-product-content {
        padding: 22px;
    }

    .htm-product-content::before {
        left: 22px;
        bottom: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .htm-products-section {
        padding: 50px 0 55px;
    }

    .htm-products-heading h2 {
        font-size: 25px;
    }

    .htm-product-card {
        height: 280px;
    }

}


/* =========================================================
   EXTRA SMALL
   ========================================================= */

@media (max-width: 380px) {

    .htm-products-heading h2 {
        font-size: 23px;
    }

    .htm-product-card {
        height: 250px;
    }

    .htm-product-content {
        padding: 19px;
    }

    .htm-product-content::before {
        left: 19px;
        bottom: 19px;
    }

    .htm-product-content h3 {
        font-size: 18px;
    }

}


/* =========================================================
   HTM PRODUCTS SECTION
========================================================= */

.htm-products-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    overflow: hidden;
    background: #f7f7f7;
}

.htm-products-section .auto-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* =========================================================
   BACKGROUND CIRCLES
========================================================= */

.htm-products-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.htm-products-bg-circle-one {
    width: 350px;
    height: 350px;
    top: -180px;
    left: -180px;
    background: rgba(0, 0, 0, 0.03);
}

.htm-products-bg-circle-two {
    width: 450px;
    height: 450px;
    right: -220px;
    bottom: -220px;
    background: rgba(0, 0, 0, 0.025);
}

/* =========================================================
   HEADING
========================================================= */

.htm-products-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.htm-products-small-title {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2px;
    color: #018f46;
    text-transform: uppercase;
}

.htm-products-heading h2 {
    margin: 0;
    padding: 0;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    color: #222;
}

.htm-products-heading-line {
    display: none;
    width: 55px;
    height: 3px;
    margin: 15px auto 0;
    background: #018f46;
}

/* =========================================================
   SLIDER VIEWPORT
========================================================= */

.htm-products-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.htm-products-slider:active {
    cursor: grabbing;
}

/* =========================================================
   TRACK
========================================================= */

.htm-products-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    width: max-content;
    margin: 0;
    padding: 0;
    transition: transform 0.6s ease;
    will-change: transform;
}

/* =========================================================
   SLIDE
========================================================= */

.htm-product-slide {
    flex: 0 0 280px !important;
    width: 280px;
    min-width: 280px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.htm-product-card {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    background: #111;
    border-radius: 5px;
    box-sizing: border-box;
}

/* =========================================================
   IMAGE
========================================================= */

.htm-product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.htm-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    -webkit-user-drag: none;
}

.htm-product-card:hover .htm-product-image img {
    transform: scale(1.08);
}

/* =========================================================
   OVERLAY
========================================================= */

.htm-product-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.50) 40%,
        rgba(0, 0, 0, 0.08) 75%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* =========================================================
   CONTENT
========================================================= */

.htm-product-content {
    position: absolute;
    left: 22px;
    right: 20px;
    bottom: 22px;
    z-index: 3;
}

.htm-product-number {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    color: #d5b16d;
    letter-spacing: 1px;
}

.htm-product-content h3 {
    margin: 0;
    padding: 0;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.htm-product-content h3 a {
    color: #fff;
    text-decoration: none;
}

.htm-product-content h3 a:hover {
    color: #d5b16d;
}

/* =========================================================
   1024px
========================================================= */

@media (max-width: 1100px) {

    .htm-products-section .auto-container {
        max-width: 100%;
    }

    .htm-product-slide {
        flex-basis: 260px !important;
        width: 260px;
        min-width: 260px;
    }

    .htm-product-card {
        height: 360px;
    }

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .htm-products-section {
        padding: 55px 0;
    }

    .htm-products-heading {
        margin-bottom: 30px;
    }

    .htm-products-heading h2 {
        font-size: 29px;
    }

    .htm-products-track {
        gap: 15px;
    }

    .htm-product-slide {
        flex-basis: 280px !important;
        width: 280px;
        min-width: 280px;
    }

    .htm-product-card {
        height: 350px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .htm-products-section {
        padding: 45px 0;
    }

    .htm-products-heading {
        margin-bottom: 25px;
    }

    .htm-products-small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .htm-products-heading h2 {
        font-size: 25px;
    }

    .htm-products-heading-line {
        margin-top: 12px;
    }

    .htm-products-track {
        gap: 14px;
    }

    .htm-product-slide {
        flex-basis: calc(100vw - 40px) !important;
        width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
    }

    .htm-product-card {
        height: 360px;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .htm-products-section {
        padding: 40px 0;
    }

    .htm-products-heading h2 {
        font-size: 23px;
    }

    .htm-product-slide {
        flex-basis: calc(100vw - 30px) !important;
        width: calc(100vw - 30px);
        min-width: calc(100vw - 30px);
    }

    .htm-product-card {
        height: 330px;
    }

}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.wc-section {
    position: relative;
    width: 100%;
    padding: 75px 0;
    overflow: hidden;
    background: #018f46;
}

.wc-section .auto-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND
========================================================= */

.wc-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.wc-bg-circle-one {
    width: 350px;
    height: 350px;
    top: -180px;
    left: -180px;
    background: rgba(0, 0, 0, 0.03);
}

.wc-bg-circle-two {
    width: 450px;
    height: 450px;
    right: -220px;
    bottom: -220px;
    background: rgba(0, 0, 0, 0.025);
}


/* =========================================================
   HEADING
========================================================= */

.wc-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.wc-small-title {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.wc-heading h2 {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    color: #222;
}

.wc-heading-line {
    width: 55px;
    height: 3px;
    margin: 15px auto 0;
    background: #018f46;
}


/* =========================================================
   SLIDER
========================================================= */

.wc-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}


/* =========================================================
   TRACK
========================================================= */

.wc-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    width: max-content;
    transition: transform 0.6s ease;
    will-change: transform;
}


/* =========================================================
   SLIDE
========================================================= */

.wc-slide {
    flex: 0 0 280px !important;
    width: 280px;
    min-width: 280px;
    box-sizing: border-box;
}


/* =========================================================
   CARD
========================================================= */

.wc-card {
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 32px 25px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.wc-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   ICON
========================================================= */

.wc-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #018f46;
}

.wc-icon i {
    font-size: 25px;
    color: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.wc-number {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #018f46;
}

.wc-content h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
}

.wc-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}


/* =========================================================
   1100px
========================================================= */

@media (max-width: 1100px) {

    .wc-section .auto-container {
        max-width: 100%;
    }

    .wc-slide {
        flex-basis: 260px !important;
        width: 260px;
        min-width: 260px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .wc-section {
        padding: 55px 0;
    }

    .wc-heading {
        margin-bottom: 30px;
    }

    .wc-heading h2 {
        font-size: 29px;
    }

    .wc-track {
        gap: 15px;
    }

    .wc-slide {
        flex-basis: 280px !important;
        width: 280px;
        min-width: 280px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .wc-section {
        padding: 45px 0;
    }

    .wc-heading {
        margin-bottom: 25px;
    }

    .wc-small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .wc-heading h2 {
        font-size: 25px;
    }

    .wc-heading-line {
        margin-top: 12px;
    }

    .wc-track {
        gap: 14px;
    }

    .wc-slide {
        flex-basis: calc(100vw - 40px) !important;
        width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
    }

    .wc-card {
        min-height: 285px;
        padding: 27px 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .wc-section {
        padding: 40px 0;
    }

    .wc-heading h2 {
        font-size: 23px;
    }

    .wc-slide {
        flex-basis: calc(100vw - 30px) !important;
        width: calc(100vw - 30px);
        min-width: calc(100vw - 30px);
    }

    .wc-card {
        min-height: 275px;
    }

}
span.htm-product-number {
    display: none;
}


/* =========================================
   ACHIEVEMENTS SECTION
========================================= */

.achv-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Background Pattern */
.achv-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
/*
    background-image:
        linear-gradient(45deg, #018f46 25%, transparent 25%),
        linear-gradient(-45deg, #018f46 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #018f46 75%),
        linear-gradient(-45deg, transparent 75%, #018f46 75%);
*/
    background-size: 80px 80px;
    background-position:
        0 0,
        0 40px,
        40px -40px,
        -40px 0;
}

.achv-section .auto-container {
    position: relative;
    z-index: 2;
}

/* =========================================
   HEADING
========================================= */

.achv-heading {
    text-align: center;
    margin-bottom: 50px;
}

.achv-subtitle {
    display: inline-block;
    margin-bottom: 8px;
    color: #018f46;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.achv-heading h2 {
    margin: 0;
    color: #018f46;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

/* =========================================
   COUNTERS
========================================= */

.achv-counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.achv-item {
    position: relative;
    text-align: center;
    padding: 10px 25px;
}

/* Vertical separator */
.achv-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 80px;
    background: rgba(1, 143, 70, 0.25);
}

/* Number */
.achv-number {
    margin-bottom: 10px;
}

.achv-count {
    display: inline-block;
    color: #018f46;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
}

/* Text */
.achv-item p {
    margin: 0;
    color: #018f46;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

/* Hover */
.achv-item {
    transition: transform 0.3s ease;
}

.achv-item:hover {
    transform: translateY(-5px);
}

/* =========================================
   1024px
========================================= */

@media (max-width: 1024px) {

    .achv-section {
        padding: 60px 0;
    }

    .achv-heading {
        margin-bottom: 40px;
    }

    .achv-heading h2 {
        font-size: 32px;
    }

    .achv-count {
        font-size: 42px;
    }

    .achv-item {
        padding: 10px 15px;
    }
}

/* =========================================
   768px
========================================= */

@media (max-width: 768px) {

    .achv-section {
        padding: 55px 0;
    }

    .achv-counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .achv-item:nth-child(2)::after {
        display: none;
    }

    .achv-item:nth-child(1),
    .achv-item:nth-child(2) {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(1, 143, 70, 0.25);
    }

    .achv-heading h2 {
        font-size: 30px;
    }

    .achv-count {
        font-size: 40px;
    }
}

/* =========================================
   600px
========================================= */

@media (max-width: 600px) {

    .achv-section {
        padding: 50px 0;
    }

    .achv-heading {
        margin-bottom: 35px;
    }

    .achv-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .achv-heading h2 {
        font-size: 27px;
    }

    .achv-count {
        font-size: 36px;
    }

    .achv-item p {
        font-size: 14px;
    }
}

/* =========================================
   480px
========================================= */

@media (max-width: 480px) {

    .achv-section {
        padding: 45px 0;
    }

    .achv-heading {
        margin-bottom: 30px;
    }

    .achv-heading h2 {
        font-size: 25px;
    }

    .achv-count {
        font-size: 32px;
    }

    .achv-item p {
        font-size: 13px;
    }
}

/* =========================================
   380px
========================================= */

@media (max-width: 380px) {

    .achv-section {
        padding: 40px 0;
    }

    .achv-heading h2 {
        font-size: 23px;
    }

    .achv-count {
        font-size: 29px;
    }

    .achv-item p {
        font-size: 12px;
    }
}


.htm-products-bg-circle.htm-products-bg-circle-one {
    display: none;
}


.htm-products-bg-circle.htm-products-bg-circle-two {
    display: none;
}

/* =========================================
   COMPANY STRENGTHS SECTION
========================================= */

.trustzone-section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: #018f46;
    overflow: hidden;
}

/* Background Circle */
.trustzone-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -300px;
    left: -180px;
}

/* Second Background Circle */
.trustzone-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    right: -220px;
    bottom: -250px;
}

/* =========================================
   CONTAINER
========================================= */

.trustzone-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}

/* =========================================
   LEFT CONTENT
========================================= */

.trustzone-label {
    display: inline-block;
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.trustzone-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

.trustzone-content h2 span {
    display: block;
    color: #ffffff;
}

.trustzone-content > p {
    max-width: 540px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 16px;
    line-height: 1.8;
}

/* =========================================
   BUTTON
========================================= */

.trustzone-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 24px;

    background: #ffffff;
    color: #018f46;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 3px;

    transition: all 0.3s ease;
}

.trustzone-button i {
    transition: transform 0.3s ease;
}

.trustzone-button:hover {
    background: #ffffff;
    color: #018f46;
}

.trustzone-button:hover i {
    transform: translateX(5px);
}

/* =========================================
   FEATURES
========================================= */

.trustzone-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trustzone-feature {
    padding: 28px 22px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.08);

    transition: all 0.3s ease;
}

.trustzone-feature:hover {
    background: #ffffff;
    transform: translateY(-5px);
}

/* =========================================
   ICON
========================================= */

.trustzone-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: #ffffff;
    color: #018f46;

    border-radius: 50%;

    font-size: 20px;
}

.trustzone-icon :hover{
    background: #018f46 !important;
    color: #fff
}

.trustzone-feature h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
}

.trustzone-feature p {
    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
    line-height: 1.6;
}

/* Hover Text */
.trustzone-feature:hover h3 {
    color: #018f46;
}

.trustzone-feature:hover p {
    color: #555555;
}

/* =========================================
   1024px
========================================= */

@media (max-width: 1024px) {

    .trustzone-section {
        padding: 75px 0;
    }

    .trustzone-container {
        gap: 45px;
    }

    .trustzone-content h2 {
        font-size: 40px;
    }

}

/* =========================================
   768px
========================================= */

@media (max-width: 768px) {

    .trustzone-section {
        padding: 65px 0;
    }

    .trustzone-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .trustzone-content {
        text-align: center;
    }

    .trustzone-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .trustzone-content h2 {
        font-size: 36px;
    }

    .trustzone-features {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

}

/* =========================================
   600px
========================================= */

@media (max-width: 600px) {

    .trustzone-section {
        padding: 55px 0;
    }

    .trustzone-container {
        padding: 0 20px;
        gap: 35px;
    }

    .trustzone-content h2 {
        font-size: 32px;
    }

    .trustzone-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .trustzone-features {
        grid-template-columns: 1fr;
    }

    .trustzone-feature {
        padding: 22px;
    }

}

/* =========================================
   480px
========================================= */

@media (max-width: 480px) {

    .trustzone-section {
        padding: 50px 0;
    }

    .trustzone-content h2 {
        font-size: 28px;
    }

    .trustzone-label {
        font-size: 11px;
    }

    .trustzone-button {
        padding: 12px 20px;
    }

}

/* =========================================
   380px
========================================= */

@media (max-width: 380px) {

    .trustzone-section {
        padding: 45px 0;
    }

    .trustzone-content h2 {
        font-size: 25px;
    }

    .trustzone-feature {
        padding: 20px;
    }

}




.main-footer.alternet-2 .widget-section .logo-widget .info-list li i {
    color: #ffffff;
}

.main-footer.alternet-2 .widget-section .footer-widget .widget-title h4:before {
    background: #ffffff;
}


.clients-section .sec-title {
    margin-bottom: 40px;
}

.clients-section .sec-title .sub-title {
    display: block;
    margin-bottom: 8px;
    color: #018f46;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.clients-section .sec-title h2 {
    margin: 0;
    color: #018f46;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

/* =========================================
   INDUSTRIES WE SERVE
========================================= */

.industryshow-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

/* =========================================
   HEADING
========================================= */

.industryshow-upper {
    margin-bottom: 40px;
}

.industryshow-section .sec-title {
    margin: 0;
}

.industryshow-subtitle {
    display: block;
    margin-bottom: 8px;

    color: #018f46;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.industryshow-section .sec-title h2 {
    margin: 0;

    color: #018f46;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

/* =========================================
   CAROUSEL
========================================= */

.industryshow-carousel {
    width: 100%;
}

.industryshow-item {
    padding: 0 10px;
}

/* =========================================
   IMAGE
========================================= */

.industryshow-image {
    position: relative;
    width: 100%;
    height: 270px;

    margin: 0;

    overflow: hidden;
    background: #f5f5f5;
}

.industryshow-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.industryshow-item:hover .industryshow-image img {
    transform: scale(1.06);
}

/* =========================================
   CONTENT
========================================= */

.industryshow-content {
    background: #018f46;
    padding: 17px 15px;
}

.industryshow-content-box {
    width: 100%;
}

.industryshow-content-box h3 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}

/* =========================================
   HOVER
========================================= */

.industryshow-item {
    transition: transform 0.3s ease;
}

.industryshow-item:hover {
    transform: translateY(-5px);
}

/* =========================================
   OWL DOTS
========================================= */

.industryshow-carousel .owl-dots {
    margin-top: 25px;
}

.industryshow-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #d5d5d5;
}

.industryshow-carousel .owl-dot.active span {
    background: #018f46;
}

/* =========================================
   1024px
========================================= */

@media (max-width: 1024px) {

    .industryshow-section {
        padding: 65px 0;
    }

    .industryshow-image {
        height: 250px;
    }

    .industryshow-section .sec-title h2 {
        font-size: 32px;
    }

}

/* =========================================
   768px
========================================= */

@media (max-width: 768px) {

    .industryshow-section {
        padding: 55px 0;
    }

    .industryshow-upper {
        margin-bottom: 30px;
    }

    .industryshow-image {
        height: 240px;
    }

    .industryshow-section .sec-title h2 {
        font-size: 30px;
    }

}

/* =========================================
   600px
========================================= */

@media (max-width: 600px) {

    .industryshow-section {
        padding: 50px 0;
    }

    .industryshow-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .industryshow-section .sec-title h2 {
        font-size: 27px;
    }

    .industryshow-image {
        height: 230px;
    }

    .industryshow-content {
        padding: 15px 12px;
    }

    .industryshow-content-box h3 {
        font-size: 16px;
    }

}

/* =========================================
   480px
========================================= */

@media (max-width: 480px) {

    .industryshow-section {
        padding: 45px 0;
    }

    .industryshow-item {
        padding: 0 5px;
    }

    .industryshow-section .sec-title h2 {
        font-size: 25px;
    }

    .industryshow-image {
        height: 220px;
    }

}

/* =========================================
   380px
========================================= */

@media (max-width: 380px) {

    .industryshow-section {
        padding: 40px 0;
    }

    .industryshow-section .sec-title h2 {
        font-size: 23px;
    }

    .industryshow-image {
        height: 200px;
    }

}


.owl-theme .owl-dots .owl-dot {
    display:none;
}


.simple-products-section {
    width: 100%;
    padding: 70px 20px;
    background: #f7f8fa;
}

.simple-products-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Heading */

.simple-products-heading {
    text-align: center;
    margin-bottom: 40px;
}

.simple-products-heading span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c28b45;
}

.simple-products-heading h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.2;
    color: #222;
}

.simple-products-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: #777;
}


/* Product Grid */

.simple-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* Product Card */

.simple-product-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
}


/* Image */

.simple-product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.simple-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.simple-product-card:hover .simple-product-image img {
    transform: scale(1.06);
}


/* Content */

.simple-product-info {
    position: relative;
    padding: 18px 20px 20px;
}

.simple-product-info span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #c28b45;
}

.simple-product-info h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.3;
}

.simple-product-info h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.simple-product-info h3 a:hover {
    color: #c28b45;
}


/* Tablet */

@media (max-width: 1024px) {

    .simple-products-section {
        padding: 55px 20px;
    }

    .simple-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .simple-product-image {
        height: 200px;
    }

}


/* Small Tablet */

@media (max-width: 768px) {

    .simple-products-heading {
        margin-bottom: 30px;
    }

    .simple-products-heading h2 {
        font-size: 28px;
    }

    .simple-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .simple-product-image {
        height: 190px;
    }

}


/* Mobile */

@media (max-width: 576px) {

    .simple-products-section {
        padding: 45px 15px;
    }

    .simple-products-heading h2 {
        font-size: 25px;
    }

    .simple-products-heading p {
        font-size: 14px;
    }

    .simple-products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .simple-product-image {
        height: 220px;
    }

}


/* Small Mobile */

@media (max-width: 380px) {

    .simple-products-section {
        padding: 35px 12px;
    }

    .simple-products-heading h2 {
        font-size: 23px;
    }

    .simple-product-image {
        height: 200px;
    }

    .simple-product-info {
        padding: 15px;
    }

    .simple-product-info h3 {
        font-size: 17px;
    }

}

