:root {
    --header-bar: 60px;

    /* Same, but we can leave it like this in case we want to try different in the future : */
    --font-stack-heading: "Inter", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    --font-stack-text: "Inter", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;

    /* Desktop */
    --custom-title-1-default: 2.6667rem;
    --custom-title-2-default: 2.2222rem;
    --custom-title-3-default: 1.9444rem;
    --custom-title-4-default: 1.9444rem;
    --custom-title-5-default: 1.5556rem;
    --custom-title-6-default: 1.2222rem;
    --custom-title-7-default: 1.1111rem;

    /* Small laptop */
    --custom-title-1-1365-max: 2.111111rem;
    --custom-title-2-1365-max: 1.888889rem;
    --custom-title-3-1365-max: 1.666667rem;
    --custom-title-4-1365-max: 1.666667rem;
    --custom-title-5-1365-max: 1.111111rem;
    --custom-title-6-1365-max: 1.111111rem;
    --custom-title-7-1365-max: 1.055556rem;

    /* Tablet */
    --custom-title-1-1024-max: 2rem;
    --custom-title-2-1024-max: 1.7778rem;
    --custom-title-3-1024-max: 1.5556rem;
    --custom-title-4-1024-max: 1.5556rem;
    --custom-title-5-1024-max: 1.1111rem;
    --custom-title-6-1024-max: 1.055556rem;
    --custom-title-7-1024-max: 1rem;

    /* Mobile */
    --custom-title-1-767-max: 1.6111rem;
    --custom-title-2-767-max: 1.6667rem;
    --custom-title-3-767-max: 1.5556rem;
    --custom-title-4-767-max: 1.5556rem;
    --custom-title-5-767-max: 1.1111rem;
    --custom-title-6-767-max: 1.055556rem;
    --custom-title-7-767-max: 0.8889rem;

    /* Color backup, moved to body now 
    --black-dark-bg: #1E1E1E;
    --black-medium-bg: #3A3A3A;
    --gray-dark-bg: #636363;
    --black-soft: #343A40;
    --black-medium: #3E3E3E;
    --green: #C1D82F;
    --blue: #0096D9;
    --text-pure-white: #FFFFFF;
    --text-white-soft: #E0E0E0;
    */
}

/* for chinese pages we want to use Inter for latin text and system chinese font for chinese: */
:root:lang(zh-TW) {
	--font-stack-heading: "Inter", "Roboto", "Helvetica Neue", Arial, "PingFang TC", "Noto Sans TC", "微軟正黑體", sans-serif;
	--font-stack-text: "Inter", "Roboto", "Helvetica Neue", Arial, "PingFang TC", "Noto Sans TC", "微軟正黑體", sans-serif;
}

@media screen and (min-width: 1025px) {

    :root {
        --header-bar: 80px;
    }
}

html {
    scroll-padding-top: var(--header-bar); 
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-stack-text);
    font-size: 18px;
    color: var(--text-white-soft);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    background: var(--black-dark-bg);
    line-height: 1.66em;

    /* Base colors */
    --black-dark-bg: var(--e-global-color-61b985c);
    --black-medium-bg: var(--e-global-color-712fa9d);
    --gray-dark-bg: var(--e-global-color-668956c);

    /* Text colors */
    --black-soft: var(--e-global-color-6f7c20f);
    --black-medium: var(--e-global-color-571ec22);

    /* Accent colors */
    --green: var(--e-global-color-accent);
    --blue: var(--e-global-color-secondary);

    /* White tones */
    --text-pure-white: var(--e-global-color-primary);
    --text-white-soft: var(--e-global-color-text);
}

@media screen and (max-width: 1600px) {

    html,
    body {
        font-size: 17px;
    }
}

@media screen and (max-width: 1024px) {

    html,
    body {
        font-size: 16px;
    }
}

/* Small Mobile */
@media screen and (max-width: 380px) {

    html,
    body {
        font-size: 15px;
    }
}

p,
input,
textarea,
button,
form,
label,
option,
select {
    outline: 0;
    font-size: 1rem;
}

.elementor-editor-active p {
    /* body font in elementor needs this */
    font-size: 1rem;
}

@media screen and (min-width: 1025px) {
    .desktop-hidden {
        display: none;
    }
}

/* @media screen and (max-width: 1024px) {
    .touch-hidden {
        display: none;
    }
} */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .touch-hidden {
        display: none;
    }
}


@media screen and (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }

    .mobile-force-2col {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
}

b,
strong {
    font-weight: 600;
}

a {
    color: var(--green);
}

a:focus {
    outline: none;
    box-shadow: none;
}

blockquote {
    background-color: black;
    color: white;
    padding: 10px;
}

.margin0>p:first-child {
    margin-top: 0;
}

/* glass card, most of them are mobile only, 
so use .glass-card for mobile and .glass-card-all for all*/
@media screen and (max-width: 1024px) {
    .glass-card {
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.47) !important;
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5) !important;
    }
}

.cart-item,
.glass-card-all {
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.47) !important;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5) !important;
    border-radius: 10px;
}

/* Some sites might need this for the overflow problem */
body>div[data-elementor-post-type="page"] {
    overflow-x: hidden;
}

/* Make hero 100% on mobile */
@media screen and (max-width: 767px) {
    .hero-section {
        height: calc(100svh - var(--header-bar));
        min-height: 0;
    }
}

/* Headings style */
.custom-title-1 h1,
.custom-title-1 h2,
.custom-title-1 h3,
.custom-title-1 h4,
.custom-title-1 h5,
.custom-title-1 h6,
.custom-title-1 span,
.custom-title-1 p {
    font-size: var(--custom-title-1-default);
    font-weight: 400;
    font-family: var(--font-stack-heading);
    line-height: 1.25em !important;
    letter-spacing: -0.0375em;
}

.custom-title-2 h1,
.custom-title-2 h2,
.custom-title-2 h3,
.custom-title-2 h4,
.custom-title-2 h5,
.custom-title-2 h6,
.custom-title-2 span,
.custom-title-2 p {
    font-size: var(--custom-title-2-default);
    font-weight: 400;
    font-family: var(--font-stack-heading);
    line-height: 1.25em !important;
}

.custom-title-3 h1,
.custom-title-3 h2,
.custom-title-3 h3,
.custom-title-3 h4,
.custom-title-3 h5,
.custom-title-3 h6,
.custom-title-3 span,
.custom-title-3 p {
    font-size: var(--custom-title-3-default);
    font-weight: 500;
    font-family: var(--font-stack-heading);
    line-height: 1.25em !important;
}

.custom-title-4 h1,
.custom-title-4 h2,
.custom-title-4 h3,
.custom-title-4 h4,
.custom-title-4 h5,
.custom-title-4 h6,
.custom-title-4 span,
.custom-title-4 p {
    font-size: var(--custom-title-4-default);
    font-weight: 400;
    font-family: var(--font-stack-heading);
    line-height: auto !important;
}

.custom-title-5 h1,
.custom-title-5 h2,
.custom-title-5 h3,
.custom-title-5 h4,
.custom-title-5 h5,
.custom-title-5 h6,
.custom-title-5 span,
.custom-title-5 p {
    font-size: var(--custom-title-5-default);
    font-weight: 400;
    line-height: 1.25em !important;
    font-family: var(--font-stack-heading);
}

.custom-title-6 h1,
.custom-title-6 h2,
.custom-title-6 h3,
.custom-title-6 h4,
.custom-title-6 h5,
.custom-title-6 h6,
.custom-title-6 span,
.custom-title-6 p {
    font-size: var(--custom-title-6-default);
    line-height: 1.25em !important;
    font-weight: 400;
    font-family: var(--font-stack-heading);
}

.custom-title-7 h1,
.custom-title-7 h2,
.custom-title-7 h3,
.custom-title-7 h4,
.custom-title-7 h5,
.custom-title-7 h6,
.custom-title-7 span,
.custom-title-7 p {
    font-size: var(--custom-title-7-default);
    line-height: auto !important;
    font-weight: 400;
    font-family: var(--font-stack-heading);
}

.related-product .custom-title-4 p {
    font-size: 1.2rem;
}

@media screen and (max-width: 1365px) {

    .custom-title-1 h1,
    .custom-title-1 h2,
    .custom-title-1 h3,
    .custom-title-1 h4,
    .custom-title-1 h5,
    .custom-title-1 h6,
    .custom-title-1 span,
    .custom-title-1 p {
        font-size: var(--custom-title-1-1365-max);
        line-height: 1.210526em !important;
    }

    .custom-title-2 h1,
    .custom-title-2 h2,
    .custom-title-2 h3,
    .custom-title-2 h4,
    .custom-title-2 h5,
    .custom-title-2 h6,
    .custom-title-2 span,
    .custom-title-2 p {
        font-size: var(--custom-title-2-1365-max);
    }

    .custom-title-3 h1,
    .custom-title-3 h2,
    .custom-title-3 h3,
    .custom-title-3 h4,
    .custom-title-3 h5,
    .custom-title-3 h6,
    .custom-title-3 span,
    .custom-title-3 p {
        font-size: var(--custom-title-3-1365-max);
    }

    .custom-title-4 h1,
    .custom-title-4 h2,
    .custom-title-4 h3,
    .custom-title-4 h4,
    .custom-title-4 h5,
    .custom-title-4 h6,
    .custom-title-4 span,
    .custom-title-4 p {
        font-size: var(--custom-title-4-1365-max);
    }

    .custom-title-5 h1,
    .custom-title-5 h2,
    .custom-title-5 h3,
    .custom-title-5 h4,
    .custom-title-5 h5,
    .custom-title-5 h6,
    .custom-title-5 span,
    .custom-title-5 p {
        font-size: var(--custom-title-5-1365-max);
    }

    .custom-title-6 h1,
    .custom-title-6 h2,
    .custom-title-6 h3,
    .custom-title-6 h4,
    .custom-title-6 h5,
    .custom-title-6 h6,
    .custom-title-6 span,
    .custom-title-6 p {
        font-size: var(--custom-title-6-1365-max);
    }

    .custom-title-7 h1,
    .custom-title-7 h2,
    .custom-title-7 h3,
    .custom-title-7 h4,
    .custom-title-7 h5,
    .custom-title-7 h6,
    .custom-title-7 span,
    .custom-title-7 p {
        font-size: var(--custom-title-7-1365-max);
    }
}

@media screen and (max-width: 1024px) {

    .custom-title-1 h1,
    .custom-title-1 h2,
    .custom-title-1 h3,
    .custom-title-1 h4,
    .custom-title-1 h5,
    .custom-title-1 h6,
    .custom-title-1 span,
    .custom-title-1 p {
        font-size: var(--custom-title-1-1024-max);
        line-height: 1.277777778em !important;
    }

    .custom-title-2 h1,
    .custom-title-2 h2,
    .custom-title-2 h3,
    .custom-title-2 h4,
    .custom-title-2 h5,
    .custom-title-2 h6,
    .custom-title-2 span,
    .custom-title-2 p {
        font-size: var(--custom-title-2-1024-max);
        line-height: 1.1875em !important;
    }

    .custom-title-3 h1,
    .custom-title-3 h2,
    .custom-title-3 h3,
    .custom-title-3 h4,
    .custom-title-3 h5,
    .custom-title-3 h6,
    .custom-title-3 span,
    .custom-title-3 p {
        font-size: var(--custom-title-3-1024-max);
        line-height: 1.214285714em !important;
    }

    .custom-title-4 h1,
    .custom-title-4 h2,
    .custom-title-4 h3,
    .custom-title-4 h4,
    .custom-title-4 h5,
    .custom-title-4 h6,
    .custom-title-4 span,
    .custom-title-4 p {
        font-size: var(--custom-title-4-1024-max);
        line-height: 1.235294118em !important;
    }

    .custom-title-5 h1,
    .custom-title-5 h2,
    .custom-title-5 h3,
    .custom-title-5 h4,
    .custom-title-5 h5,
    .custom-title-5 h6,
    .custom-title-5 span,
    .custom-title-5 p {
        font-size: var(--custom-title-5-1024-max);
        line-height: 1.2em !important;
    }

    .custom-title-6 h1,
    .custom-title-6 h2,
    .custom-title-6 h3,
    .custom-title-6 h4,
    .custom-title-6 h5,
    .custom-title-6 h6,
    .custom-title-6 span,
    .custom-title-6 p {
        font-size: var(--custom-title-6-1024-max);
        line-height: 1.25em !important;
    }

    .custom-title-7 h1,
    .custom-title-7 h2,
    .custom-title-7 h3,
    .custom-title-7 h4,
    .custom-title-7 h5,
    .custom-title-7 h6,
    .custom-title-7 span,
    .custom-title-7 p {
        font-size: var(--custom-title-7-1024-max);
        line-height: 1.25em !important;
    }
}

@media screen and (max-width: 767px) {

    .custom-title-1 h1,
    .custom-title-1 h2,
    .custom-title-1 h3,
    .custom-title-1 h4,
    .custom-title-1 h5,
    .custom-title-1 h6,
    .custom-title-1 span,
    .custom-title-1 p {
        font-size: var(--custom-title-1-767-max);
        line-height: 1.310344828em !important;
    }

    .custom-title-2 h1,
    .custom-title-2 h2,
    .custom-title-2 h3,
    .custom-title-2 h4,
    .custom-title-2 h5,
    .custom-title-2 h6,
    .custom-title-2 span,
    .custom-title-2 p {
        font-size: var(--custom-title-2-767-max);
        line-height: 1.266666667em !important;
    }

    .custom-title-3 h1,
    .custom-title-3 h2,
    .custom-title-3 h3,
    .custom-title-3 h4,
    .custom-title-3 h5,
    .custom-title-3 h6,
    .custom-title-3 span,
    .custom-title-3 p {
        font-size: var(--custom-title-3-767-max);
        line-height: 1.357142857em !important;
    }

    .custom-title-4 h1,
    .custom-title-4 h2,
    .custom-title-4 h3,
    .custom-title-4 h4,
    .custom-title-4 h5,
    .custom-title-4 h6,
    .custom-title-4 span,
    .custom-title-4 p {
        font-size: var(--custom-title-4-767-max);
        line-height: 1.571428571em !important;
    }

    .custom-title-5 h1,
    .custom-title-5 h2,
    .custom-title-5 h3,
    .custom-title-5 h4,
    .custom-title-5 h5,
    .custom-title-5 h6,
    .custom-title-5 span,
    .custom-title-5 p {
        font-size: var(--custom-title-5-767-max);
        line-height: 1.25em !important;
    }

    .custom-title-6 h1,
    .custom-title-6 h2,
    .custom-title-6 h3,
    .custom-title-6 h4,
    .custom-title-6 h5,
    .custom-title-6 h6,
    .custom-title-6 span,
    .custom-title-6 p {
        font-size: var(--custom-title-6-767-max);
        line-height: 1.4em !important;
    }

    .custom-title-7 h1,
    .custom-title-7 h2,
    .custom-title-7 h3,
    .custom-title-7 h4,
    .custom-title-7 h5,
    .custom-title-7 h6,
    .custom-title-7 span,
    .custom-title-7 p {
        font-size: var(--custom-title-7-767-max);
        line-height: 1.125em !important;
    }
}

.custom-title-1.with-bullet,
.custom-title-2.with-bullet,
.custom-title-3.with-bullet,
.custom-title-4.with-bullet,
.custom-title-5.with-bullet,
.custom-title-6.with-bullet,
.custom-title-7.with-bullet {
    padding-left: 30px;
    position: relative;
}

.custom-title-1.with-bullet::before,
.custom-title-2.with-bullet::before,
.custom-title-3.with-bullet::before,
.custom-title-4.with-bullet::before,
.custom-title-5.with-bullet::before,
.custom-title-6.with-bullet::before,
.custom-title-7.with-bullet::before {
    content: "";
    width: 19px;
    height: 19px;
    background-color: var(--green);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

/* make bullet smaller for smaller headings */
.custom-title-5.with-bullet::before,
.custom-title-6.with-bullet::before,
.custom-title-7.with-bullet::before {
    width: 14px;
    height: 14px;
}

@media screen and (max-width: 1024px) {

    .custom-title-5.with-bullet::before,
    .custom-title-6.with-bullet::before,
    .custom-title-7.with-bullet::before {
        top: 8px !important;
    }

}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .about-us-heading {
        margin-top: -95px !important;
    }
}

@media screen and (min-width: 1366px) {
    .about-us-heading {
        padding-left: 0 !important;
    }

    .about-us-heading::before {
        display: none;
    }
}

.padding-small {
    padding: 0 0 0 10px;
}

@media screen and (min-width: 1025px) {
    .parallax-img {
        position: relative;
        width: 100%;
        /*         margin: 100px 0; */
        /*this causes the hero fixed img to show*/
        /*         height: 600px; */
        height: 400px;
        clip-path: inset(0);
    }

    .parallax-img img {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        pointer-events: none;
    }
}

/* Homepage */

@media screen and (max-width: 767px) {
    #since1978 {
        background-color: var(--black-medium-bg);
    }
}

.acdc-icons {
    max-width: 600px;
}

.gradient-card {
    border-radius: 8px;
    border: 1px solid transparent;
    background-image: linear-gradient(#1c1c1c, #1c1c1c), linear-gradient(135deg, var(--green) 0%, rgba(189, 229, 46, 0) 50%, var(--green) 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
}

.gradient-card.blue {
    background-image: linear-gradient(#1c1c1c, #1c1c1c), linear-gradient(135deg, var(--blue) 0%, rgba(189, 229, 46, 0) 50%, var(--blue) 100%);
}

@media screen and (min-width: 1025px) {
    .acdc-icons .vh-lines {
        display: none;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1600px) {
    .acdc-icons {
        font-size: 16px !important;
        margin: 0 !important
    }

    .acdc-icons img {
        width: 48px;
        height: 48px;
    }
}

.vh-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vh-lines::after,
.vh-lines .h-line::before,
.vh-lines .h-line::after,
.vh-lines .v-line::before,
.vh-lines .v-line::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #666;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.vh-lines .h-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #444;
    transform: translateY(-50%);
}

.vh-lines .h-line::before {
    left: 0;
    top: 50%;
}

.vh-lines .h-line::after {
    right: -6px;
    top: 50%;
}

.vh-lines .v-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #444;
    transform: translateX(-50%);
}

.vh-lines .v-line::before {
    top: 0;
    left: 50%;
}

.vh-lines .v-line::after {
    bottom: -6px;
    left: 50%;
}

.vh-lines::after {
    content: "";
    top: 50%;
    left: 50%;
    position: absolute;
}

@media screen and (max-width: 767px) {
    .hero-icons>.e-con-full {
        flex: 0 33%;
    }
}

.contact-card {
    border: 1px var(--gray-dark-bg) solid;
    border-radius: 8px;
    background-image: none;
    padding: 40px 20px 20px 20px;
}

.contact-card .elementor-widget-heading.with-bullet {
    background: var(--black-dark-bg);
    margin-top: -60px;
    margin-left: -21px;
}

.contact-card .elementor-widget-heading.with-bullet::before {
    width: 10px;
    height: 10px;
    top: 16px;
}

.custom-title-4.align-left {
    align-self: start;
    padding-right: 20px;
}

@media screen and (max-width: 1024px) {
    .vh-lines.v-only .v-line:first-child {
        left: 33%;
    }

    .vh-lines.v-only .v-line:last-child {
        left: 66%;
    }

    .gradient-card {
        border: 1px var(--gray-dark-bg) solid;
        border-radius: 8px;
        background-image: none;
        padding: 40px 20px 20px 20px;
    }

    .gradient-card .elementor-widget-heading.with-bullet {
        background: var(--black-dark-bg);
        margin-top: -60px;
        margin-left: -21px;
    }

    .gradient-card .elementor-widget-heading.with-bullet::before {
        width: 10px;
        height: 10px;
        top: 16px;
    }

    .boxed-card-mobile {
        border: 1px var(--gray-dark-bg) solid;
        border-radius: 8px;
        background-image: none;
        padding: 40px 20px 20px 20px;
    }

    .boxed-card-mobile .elementor-widget-heading.with-bullet {
        background: var(--black-dark-bg);
        margin-top: -60px;
        margin-left: -21px;
    }

    .boxed-card-mobile .elementor-widget-heading.with-bullet::before {
        width: 10px;
        height: 10px;
        top: 16px;
    }

    .vh-lines.v-only::after {
        display: none;
    }

    .vh-lines.v-only {
        height: 66%;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 1365px) {
    .boxed-card-laptop {
        border: 1px var(--gray-dark-bg) solid;
        border-radius: 8px;
        background-image: none;
        padding: 40px 20px 20px 20px;
    }

    .boxed-card-laptop .elementor-widget-heading.with-bullet {
        background: var(--black-dark-bg);
        margin-top: -60px;
        margin-left: -21px;
    }

    .boxed-card-laptop .elementor-widget-heading.with-bullet::before {
        width: 10px;
        height: 10px;
        top: 11px;
        left: 7px;
    }
}

@media screen and (min-width: 1025px) {
    .vh-lines.v-only {
        display: none;
    }
}

.why-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1960 / 107;
    z-index: 2;
}

.why-shape img {
    width: 100%;
    transform: scale(1.1);
}

.why-top {
    position: relative;
}


@media screen and (min-width: 1025px) {
    .why-container {
        position: absolute;
        bottom: 20px;
        z-index: 1;
    }

    .why-top::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        background: linear-gradient(to top, var(--black-dark-bg), transparent);
        z-index: 0;
        pointer-events: none;
    }

}

@media screen and (max-width: 1025px) {
    .why-container {
        order: 99;
        z-index: 1;

    }

    .why-top .why-pic.elementor-widget-image::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        background: linear-gradient(to top, var(--black-dark-bg), transparent);
        z-index: 0;
        pointer-events: none;
    }

}

.why-grid>.elementor-element {
    padding: 30px;
}

@media screen and (min-width: 1025px) {

    .why-grid>.elementor-element:first-child,
    .why-grid>.elementor-element:nth-child(3) {
        padding-left: 0 !important;
    }
}

/* contact */

.hero-img-contact {
    position: fixed;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    overflow: hidden;
    aspect-ratio: 1920 / 1080;
}

.hero-img-contact img {
    width: 100vw !important;
}

@media screen and (max-width: 767px) {
    .social-contact .left-col:last-child {
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px var(--black-medium-bg) solid;
    }

    .social-contact .left-col:last-child:before,
    .social-contact .left-col:last-child:after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        background: #666;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        top: 0;
        left: 0;
    }

    .social-contact .left-col:last-child:after {
        right: 0;
        top: 0;
        left: auto;
    }
}

@media screen and (max-width: 1365px) {
    .contact-box .thin-line-headline-wrapper {
        margin-top: -80px;
        margin-left: -20px;
        background: var(--black-dark-bg);
    }

    .contact-box .thin-line-headline-wrapper .elementor-heading-title::before {
        width: 10px;
        height: 10px;
        left: 0;
        top: 10px;
    }

    .contact-box .thin-line-headline-wrapper .thin-line {
        display: none;
    }
}

.apac-service-line,
.b-hours {
    line-height: 1.2;
}

.apac-service-line a {
    color: var(--text-white-soft);
}

.repair-process-block {
    background-color: var(--black-medium-bg);
    border-radius: 10px;
    position: relative;
}

.repair-process-block::before {
    content: attr(data-number);
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
}

/* laptop */
@media screen and (min-width: 1025px) and (max-width: 1500px) {
    .why-grid>.elementor-element {
        padding: 20px;
    }
}

/* big laptop and up */
@media screen and (min-width: 1501px) {

    .why-grid>.elementor-element {
        padding: 30px;
    }
}

.why-grid .vh-lines::after,
.why-grid .vh-lines .h-line::before,
.why-grid .vh-lines .h-line::after,
.why-grid .vh-lines .v-line::before,
.why-grid .vh-lines .v-line::after {
    background-color: var(--green);
}

.why-grid .elementor-widget-text-editor p {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .why-grid .custom-title-5 * {
        color: var(--green) !important;
    }

    .why-grid .vh-lines {
        display: none;
    }

    .why-grid>.elementor-element:not(.last) {
        border-bottom: 1px var(--black-medium-bg) solid;
        position: relative;
    }

    .why-grid>.elementor-element:not(.last)::after,
    .why-grid>.elementor-element:not(.last)::before {
        content: '';
        position: absolute;
        top: auto;
        width: 5px;
        height: 5px;
        background: #666;
        border-radius: 50%;
        z-index: 10;
    }

    .why-grid>.elementor-element::before {
        left: 0;
        bottom: -3px;
    }

    .why-grid>.elementor-element::after {
        right: 0;
        bottom: -3px;
    }

    .why-grid>.elementor-element {
        padding: 20px 0;
    }
}

.why-grid .vh-lines::after,
.why-grid .vh-lines .h-line::before,
.why-grid .vh-lines .h-line::after,
.why-grid .vh-lines .v-line::before,
.why-grid .vh-lines .v-line::after {
    width: 10px;
    height: 10px;
}

.return-slider .swiper-slide .elementor-slide-heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    font-size: clamp(3rem, 6vw, 128px);
    margin-bottom: 0 !important;
    white-space: nowrap;
    font-weight: 500;
}

.return-slider .elementor-slide-heading img {
    display: block;
}

.return-slider .swiper-slide .elementor-slide-description {
    font-size: var(--custom-title-4-default);
    font-weight: 200;
}

/* About us, product pages: */
.eec-cta-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.eec-cta-section .eec-cta-clip-wrapper {
    clip-path: inset(0 0 0 0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eec-cta-section .eec-cta-bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.eec-cta-section .eec-cta-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 80px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.eec-cta-section .eec-cta-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.eec-cta-section .eec-cta-title {
    font-size: var(--custom-title-1-default);
    margin-bottom: 30px;
    font-weight: 400;
    color: #fff;
}

.eec-cta-section .eec-cta-subtitle {
    margin-bottom: 35px;
    font-weight: 300;
    color: #fff;
}

.eec-cta-section .eec-cta-button-container {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
}

.eec-cta-section .eec-cta-button-wrap {
    display: inline-block;
}

/* Mobile specific adjustments */
@media (max-width: 1365px) {
    .eec-cta-section .eec-cta-title {
        font-size: var(--custom-title-1-1365-max);
    }
}

@media (max-width: 1024px) {
    .eec-cta-section .eec-cta-title {
        font-size: var(--custom-title-1-1024-max);
    }

    .touch-green .elementor-heading-title {
        color: var(--green) !important;
    }
}

@media (max-width: 767px) {
    .mobile-green .elementor-heading-title {
        color: var(--green) !important;
    }

    .eec-cta-overlay {
        justify-content: start !important;
    }

    .eec-cta-content {
        align-items: start !important;
    }

    .eec-cta-section .eec-cta-subtitle,
    .eec-cta-section .eec-cta-title {
        margin-bottom: 20px;
        text-align: left;
    }

    .eec-cta-section .eec-cta-title {
        margin-bottom: 0;
        line-height: 125%;
    }

    .eec-cta-section .eec-cta-button-container {
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .eec-cta-section .eec-cta-content {
        min-height: 400px;
    }
}

/* Kenburns effect */

.elementor-widget-image.animate.kenburn.active .elementor-widget-container {
    overflow: hidden;
}

.elementor-widget-image.animate.kenburn.active picture,
.elementor-widget-image.animate.kenburn.active img {
    animation: kenburns 20s ease-in-out both;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

/* Adjust Elementor transitions */

@keyframes customfadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -10%, 0);
        /* less movement for subtler effect */
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes customfadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-10%, 0, 0);
        /* less movement for subtler effect */
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes customfadeInRight {
    from {
        opacity: 0;
        transform: translate3d(10%, 0, 0);
        /* less movement for subtler effect */
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes customfadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 10%, 0);
        /* less movement for subtler effect */
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: customfadeInDown !important;
}

.fadeInLeft {
    animation-name: customfadeInLeft !important;
}

.fadeInRight {
    animation-name: customfadeInRight !important;
}

.fadeInUp {
    animation-name: customfadeInUp !important;
}

/* ===================================================== */
/* Bullet Points */
/* ===================================================== */
.eec-small-bullets ul {
    padding: 0px 0px 0px 15px;
}

/* hide link to the chinese site for now */
a.china-site {
	display: none !important;
}

/* elementor lightbox */
.elementor-popup-modal .dialog-widget-content {
	background: var(--black-dark-bg);
}

.elementor-popup-modal .dialog-close-button svg {
	fill: white;
}