.elementor-16880 .elementor-element.elementor-element-7a5c129{padding:0px 0px 0px 0px;}.elementor-16880 .elementor-element.elementor-element-00f74df > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){--kit-widget-spacing:0px;}.elementor-16880 .elementor-element.elementor-element-00f74df > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-16880 .elementor-element.elementor-element-7f317c2{padding:0px 0px 0px 0px;}.elementor-16880 .elementor-element.elementor-element-85f8fd2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){--kit-widget-spacing:0px;}.elementor-16880 .elementor-element.elementor-element-85f8fd2 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-16880 .elementor-element.elementor-element-9e6ec93{--display:flex;--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}.elementor-16880 .elementor-element.elementor-element-1a23b5a{--display:flex;--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}/* Start custom CSS for html, class: .elementor-element-2a9c44c */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');


/* =====================================================
   GLOBAL
===================================================== */

.cassani-product-page,
.cassani-product-page *{
    box-sizing:border-box;
}

.cassani-product-page{
    --blue:#123f73;
    --blue-dark:#0d315a;
    --yellow:#f2b705;
    --white:#ffffff;

    width:100%;
    margin:0;
    padding:0;

    background:#ffffff;

    font-family:"Montserrat",Arial,sans-serif;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.cassani-container{
    width:100%;
    max-width:1400px;

    margin:0 auto;

    padding:15px 30px 55px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:0;

    align-items:start;
}


/* =====================================================
   MAIN TITLE
===================================================== */

.cassani-title{
    grid-column:1 / -1;

    position:relative;

    width:100%;

    margin:0 0 45px;

    padding:0 0 20px;

    text-align:center;
}

.cassani-title:after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:var(--yellow);
}

.cassani-title h1{
    margin:0;

    font-size:clamp(32px,4vw,48px);
    line-height:.95;

    font-weight:800;

    letter-spacing:-1px;

    text-transform:uppercase;

    color:var(--blue);
}

.cassani-title p{
    margin:10px 0 0;

    font-size:14px;
    line-height:1.3;

    font-weight:700;

    text-transform:uppercase;

    color:var(--blue);
}


/* =====================================================
   EACH CATEGORY
===================================================== */

.cassani-grade-section{
    width:100%;
    min-width:0;

    margin:0;

    padding:0 30px 35px;

    text-align:center;

    border-right:1px solid #dddddd;
}

.cassani-grade-section:last-child{
    border-right:0;
}


/* =====================================================
   CATEGORY TITLE
===================================================== */

.cassani-grade-title{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:180px;
    min-height:37px;

    margin:0 auto 55px;

    padding:9px 25px;

    border-radius:30px;

    background:var(--yellow);

    font-size:13px;
    line-height:1;

    font-weight:800;

    text-transform:uppercase;

    color:var(--blue-dark);
}


/* =====================================================
   PRODUCTS GRID
===================================================== */

.cassani-products{
    width:100%;

    display:grid;

    align-items:center;
    justify-content:center;

    margin:0 auto;
}


/* TWO PRODUCTS */

.cassani-products.two-products{
    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:20px;
}


/* ONE PRODUCT */

.cassani-products.one-product{
    grid-template-columns:1fr;

    justify-items:center;
}


/* =====================================================
   SAME IMAGE BOX FOR EVERY PRODUCT
===================================================== */

.cassani-product-image{
    width:100%;
    height:190px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0;

    padding:0;

    overflow:visible;

    background:#ffffff;
}


/* =====================================================
   SAME IMAGE SIZE
===================================================== */

.cassani-product-image img,
.shining-section .cassani-product-image img{
    display:block;

    width:170px !important;
    height:170px !important;

    max-width:170px !important;
    max-height:170px !important;

    min-width:0;

    margin:0 auto;

    padding:0;

    object-fit:contain;
    object-position:center;

    transform:none !important;

    transition:none !important;
}


/* =====================================================
   SHINING - SAME HOLDER
===================================================== */

.shining-section .cassani-product-image{
    width:100%;
    height:190px;

    display:flex;

    align-items:center;
    justify-content:center;
}


/* =====================================================
   IMPORTANT VISUAL CORRECTIONS
   PNG transparent spacing compensation
===================================================== */

/* Grinding first image */
.cassani-grade-section:nth-of-type(1)
.cassani-product-image:nth-child(1) img{
    transform:scale(1.12) !important;
}


/* Grinding second image */
.cassani-grade-section:nth-of-type(1)
.cassani-product-image:nth-child(2) img{
    transform:scale(1.12) !important;
}


/* Polishing black */
.cassani-grade-section:nth-of-type(2)
.cassani-product-image:nth-child(1) img{
    transform:scale(1.12) !important;
}


/* Polishing brown */
.cassani-grade-section:nth-of-type(2)
.cassani-product-image:nth-child(2) img{
    transform:scale(1.12) !important;
}


/* Shining */
.shining-section
.cassani-product-image img{
    transform:scale(1.12) !important;
}


/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px){

    .cassani-container{
        padding-left:20px;
        padding-right:20px;
    }

    .cassani-grade-section{
        padding-left:18px;
        padding-right:18px;
    }

    .cassani-products.two-products{
        gap:10px;
    }

    .cassani-product-image,
    .shining-section .cassani-product-image{
        height:165px;
    }

    .cassani-product-image img,
    .shining-section .cassani-product-image img{
        width:150px !important;
        height:150px !important;

        max-width:150px !important;
        max-height:150px !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .cassani-container{
        grid-template-columns:1fr;

        padding:40px 30px 60px;
    }

    .cassani-title{
        grid-column:1;

        margin-bottom:40px;
    }

    .cassani-grade-section{
        max-width:650px;

        margin:0 auto 45px;

        padding:0 0 40px;

        border-right:0;
        border-bottom:1px solid #dddddd;
    }

    .cassani-grade-section:last-child{
        margin-bottom:0;

        border-bottom:0;
    }

    .cassani-grade-title{
        margin-bottom:30px;
    }

    .cassani-products.two-products{
        grid-template-columns:repeat(2,200px);

        justify-content:center;

        gap:30px;
    }

    .cassani-products.one-product{
        grid-template-columns:200px;
    }

    .cassani-product-image,
    .shining-section .cassani-product-image{
        height:190px;
    }

    .cassani-product-image img,
    .shining-section .cassani-product-image img{
        width:175px !important;
        height:175px !important;

        max-width:175px !important;
        max-height:175px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .cassani-container{
        padding:35px 18px 50px;
    }

    .cassani-title{
        margin-bottom:35px;

        padding-bottom:17px;
    }

    .cassani-title h1{
        font-size:33px;
    }

    .cassani-title p{
        font-size:11px;
    }

    .cassani-grade-section{
        margin-bottom:38px;

        padding-bottom:35px;
    }

    .cassani-grade-title{
        min-width:165px;

        min-height:34px;

        margin-bottom:25px;

        padding:8px 18px;

        font-size:11px;
    }

    .cassani-products.two-products{
        grid-template-columns:repeat(2,1fr);

        gap:12px;
    }

    .cassani-products.one-product{
        grid-template-columns:1fr;

        width:50%;
    }

    .cassani-product-image,
    .shining-section .cassani-product-image{
        height:150px;
    }

    .cassani-product-image img,
    .shining-section .cassani-product-image img{
        width:140px !important;
        height:140px !important;

        max-width:140px !important;
        max-height:140px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .cassani-container{
        padding-left:12px;
        padding-right:12px;
    }

    .cassani-title h1{
        font-size:29px;
    }

    .cassani-title p{
        font-size:9px;
    }

    .cassani-products.two-products{
        gap:6px;
    }

    .cassani-products.one-product{
        width:55%;
    }

    .cassani-product-image,
    .shining-section .cassani-product-image{
        height:125px;
    }

    .cassani-product-image img,
    .shining-section .cassani-product-image img{
        width:115px !important;
        height:115px !important;

        max-width:115px !important;
        max-height:115px !important;
    }

}

/* =====================================================
   POLISHING GRADE - IMAGE SIZE FIX
===================================================== */

/* Both polishing product boxes same */
.cassani-grade-section:nth-of-type(2) .cassani-product-image{
    width:100%;
    height:220px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:visible;
}


/* BOTH IMAGES BASE SIZE */
.cassani-grade-section:nth-of-type(2) .cassani-product-image img{
    width:210px;
    height:210px;

    max-width:none;
    max-height:none;

    object-fit:contain;
    object-position:center;
}


/* BLACK IMAGE - MAKE VISUALLY BIGGER */
.cassani-grade-section:nth-of-type(2)
.cassani-product-image:first-child img{
    transform:scale(1.38) !important;
    transform-origin:center center;
}


/* BROWN IMAGE - NORMAL SIZE */
.cassani-grade-section:nth-of-type(2)
.cassani-product-image:nth-child(2) img{
    transform:scale(1) !important;
    transform-origin:center center;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1200px){

    .cassani-grade-section:nth-of-type(2)
    .cassani-product-image{
        height:190px;
    }

    .cassani-grade-section:nth-of-type(2)
    .cassani-product-image img{
        width:180px;
        height:180px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .cassani-grade-section:nth-of-type(2)
    .cassani-product-image{
        height:160px;
    }

    .cassani-grade-section:nth-of-type(2)
    .cassani-product-image img{
        width:150px;
        height:150px;
    }

    .cassani-grade-section:nth-of-type(2)
    .cassani-product-image:first-child img{
        transform:scale(1.35) !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .cassani-grade-section:nth-of-type(2)
    .cassani-product-image{
        height:135px;
    }

    .cassani-grade-section:nth-of-type(2)
    .cassani-product-image img{
        width:125px;
        height:125px;
    }

}

/* =====================================================
   SHINING GRADE IMAGE - SLIGHTLY BIGGER
===================================================== */

.shining-section .cassani-product-image img{
    width:210px !important;
    height:210px !important;

    max-width:210px !important;
    max-height:210px !important;

    object-fit:contain;

    transform:scale(1.18) !important;
    transform-origin:center center;
}


/* TABLET */

@media(max-width:1200px){

    .shining-section .cassani-product-image img{
        width:185px !important;
        height:185px !important;

        max-width:185px !important;
        max-height:185px !important;

        transform:scale(1.15) !important;
    }

}


/* MOBILE */

@media(max-width:767px){

    .shining-section .cassani-product-image img{
        width:160px !important;
        height:160px !important;

        max-width:160px !important;
        max-height:160px !important;

        transform:scale(1.12) !important;
    }

}


/* SMALL MOBILE */

@media(max-width:480px){

    .shining-section .cassani-product-image img{
        width:135px !important;
        height:135px !important;

        max-width:135px !important;
        max-height:135px !important;

        transform:scale(1.12) !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c71dfc4 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');


/* =====================================================
   GLOBAL
===================================================== */

.frankfurt-product-page,
.frankfurt-product-page *{
    box-sizing:border-box;
}

.frankfurt-product-page{
    --blue:#123f73;
    --blue-dark:#0d315a;
    --yellow:#f2b705;
    --white:#ffffff;

    width:100%;
    margin:0;
    padding:0;

    background:#ffffff;

    font-family:"Montserrat",Arial,sans-serif;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.frankfurt-container{
    width:100%;
    max-width:1400px;

    margin:0 auto;
    padding:15px 30px 55px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:0;

    align-items:start;
}


/* =====================================================
   MAIN TITLE
===================================================== */

.frankfurt-title{
    grid-column:1 / -1;

    position:relative;

    width:100%;

    margin:0 0 45px;
    padding:0 0 20px;

    text-align:center;
}

.frankfurt-title:after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:var(--yellow);
}

.frankfurt-title h1{
    margin:0;

    font-size:clamp(32px,4vw,48px);
    line-height:.95;

    font-weight:800;

    letter-spacing:-1px;

    text-transform:uppercase;

    color:var(--blue);
}

.frankfurt-title p{
    margin:10px 0 0;

    font-size:14px;
    line-height:1.3;

    font-weight:700;

    text-transform:uppercase;

    color:var(--blue);
}


/* =====================================================
   EACH CATEGORY
===================================================== */

.frankfurt-grade-section{
    width:100%;
    min-width:0;

    margin:0;
    padding:0 25px 35px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:flex-start;

    text-align:center;

    border-right:1px solid #dddddd;
}

.frankfurt-grade-section:last-child{
    border-right:0;
}


/* =====================================================
   CATEGORY TITLE
===================================================== */

.frankfurt-grade-title{
    display:flex;

    align-items:center;
    justify-content:center;

    width:180px;
    height:38px;

    margin:0 auto 35px;

    padding:0 20px;

    border-radius:30px;

    background:var(--yellow);

    font-size:13px;
    line-height:1;

    font-weight:800;

    text-align:center;
    text-transform:uppercase;

    color:var(--blue-dark);
}


/* =====================================================
   PRODUCTS AREA
===================================================== */

.frankfurt-products{
    width:100%;

    min-height:230px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto;
}


/* =====================================================
   TWO PRODUCTS
===================================================== */

.frankfurt-products.two-products{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    align-items:center;
    justify-content:center;
}


/* =====================================================
   ONE PRODUCT
===================================================== */

.frankfurt-products.one-product{
    display:flex;

    align-items:center;
    justify-content:center;

    width:100%;
}


/* =====================================================
   IMAGE HOLDER
===================================================== */

.frankfurt-product-image{
    width:220px;
    height:220px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto;
    padding:0;

    position:relative;

    overflow:visible;

    background:transparent;
}


/* =====================================================
   DEFAULT IMAGE
===================================================== */

.frankfurt-product-image img{
    display:block;

    width:180px !important;
    height:180px !important;

    max-width:none !important;
    max-height:none !important;

    margin:auto;

    object-fit:contain;
    object-position:center center;

    transform-origin:center center;

    transition:none !important;
}


/* =====================================================
   GRINDING GRADE
   CREAM IMAGE
   MAKE BIGGER
===================================================== */

.frankfurt-grade-section:nth-of-type(1)
.frankfurt-product-image img{
    transform:scale(1.45) !important;
}


/* =====================================================
   POLISHING GRADE
   PINK + GREEN IMAGE
===================================================== */

.frankfurt-grade-section:nth-of-type(2)
.frankfurt-product-image img{
    transform:scale(1.12) !important;
}


/* =====================================================
   SHINING GRADE
   ORANGE IMAGE
===================================================== */

.frankfurt-grade-section:nth-of-type(3)
.frankfurt-product-image img{
    transform:scale(1.30) !important;
}


/* =====================================================
   FORCE PERFECT CENTER
===================================================== */

.frankfurt-grade-section:nth-of-type(1)
.frankfurt-products,

.frankfurt-grade-section:nth-of-type(2)
.frankfurt-products,

.frankfurt-grade-section:nth-of-type(3)
.frankfurt-products{
    display:flex;

    align-items:center;
    justify-content:center;

    min-height:230px;
}


.frankfurt-grade-section:nth-of-type(1)
.frankfurt-product-image,

.frankfurt-grade-section:nth-of-type(2)
.frankfurt-product-image,

.frankfurt-grade-section:nth-of-type(3)
.frankfurt-product-image{
    display:flex;

    align-items:center;
    justify-content:center;

    margin-left:auto;
    margin-right:auto;
}


/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px){

    .frankfurt-container{
        padding-left:20px;
        padding-right:20px;
    }

    .frankfurt-grade-section{
        padding-left:15px;
        padding-right:15px;
    }

    .frankfurt-products{
        min-height:210px;
    }

    .frankfurt-product-image{
        width:190px;
        height:190px;
    }

    .frankfurt-product-image img{
        width:160px !important;
        height:160px !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .frankfurt-container{
        grid-template-columns:1fr;

        padding:40px 30px 60px;
    }

    .frankfurt-title{
        grid-column:1;

        margin-bottom:40px;
    }

    .frankfurt-grade-section{
        width:100%;
        max-width:650px;

        margin:0 auto 40px;

        padding:0 0 35px;

        border-right:0;
        border-bottom:1px solid #dddddd;
    }

    .frankfurt-grade-section:last-child{
        margin-bottom:0;

        border-bottom:0;
    }

    .frankfurt-grade-title{
        margin-bottom:25px;
    }

    .frankfurt-products{
        min-height:210px;
    }

    .frankfurt-product-image{
        width:210px;
        height:210px;
    }

    .frankfurt-product-image img{
        width:175px !important;
        height:175px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .frankfurt-container{
        padding:35px 18px 50px;
    }

    .frankfurt-title{
        margin-bottom:35px;

        padding-bottom:17px;
    }

    .frankfurt-title h1{
        font-size:33px;
    }

    .frankfurt-title p{
        font-size:11px;
    }

    .frankfurt-grade-section{
        margin-bottom:35px;

        padding-bottom:30px;
    }

    .frankfurt-grade-title{
        width:165px;
        height:34px;

        margin-bottom:20px;

        font-size:11px;
    }

    .frankfurt-products{
        min-height:180px;
    }

    .frankfurt-product-image{
        width:175px;
        height:175px;
    }

    .frankfurt-product-image img{
        width:145px !important;
        height:145px !important;
    }

    /* CREAM */

    .frankfurt-grade-section:nth-of-type(1)
    .frankfurt-product-image img{
        transform:scale(1.38) !important;
    }

    /* PINK + GREEN */

    .frankfurt-grade-section:nth-of-type(2)
    .frankfurt-product-image img{
        transform:scale(1.10) !important;
    }

    /* ORANGE */

    .frankfurt-grade-section:nth-of-type(3)
    .frankfurt-product-image img{
        transform:scale(1.25) !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .frankfurt-container{
        padding-left:12px;
        padding-right:12px;
    }

    .frankfurt-title h1{
        font-size:29px;
    }

    .frankfurt-title p{
        font-size:9px;
    }

    .frankfurt-products{
        min-height:155px;
    }

    .frankfurt-product-image{
        width:150px;
        height:150px;
    }

    .frankfurt-product-image img{
        width:125px !important;
        height:125px !important;
    }

}

/* =========================================
   FRANKFURT GRINDING IMAGE - EXTRA BIG
========================================= */

.frankfurt-grade-section .frankfurt-products.one-product
.frankfurt-product-image img[src*="ChatGPT-Image-Sep-10-2026-03_48_03-PM"]{
    width:240px !important;
    height:240px !important;

    max-width:none !important;
    max-height:none !important;

    object-fit:contain;

    transform:scale(1.45) !important;
    transform-origin:center center;
}


/* Make holder large enough */
.frankfurt-grade-section .frankfurt-products.one-product
.frankfurt-product-image:has(img[src*="ChatGPT-Image-Sep-10-2026-03_48_03-PM"]){
    width:300px !important;
    height:250px !important;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:visible !important;
}


/* TABLET */
@media(max-width:900px){

    .frankfurt-grade-section .frankfurt-products.one-product
    .frankfurt-product-image img[src*="ChatGPT-Image-Sep-10-2026-03_48_03-PM"]{
        width:210px !important;
        height:210px !important;

        transform:scale(1.40) !important;
    }

}


/* MOBILE */
@media(max-width:767px){

    .frankfurt-grade-section .frankfurt-products.one-product
    .frankfurt-product-image img[src*="ChatGPT-Image-Sep-10-2026-03_48_03-PM"]{
        width:170px !important;
        height:170px !important;

        transform:scale(1.35) !important;
    }

}


/* SMALL MOBILE */
@media(max-width:480px){

    .frankfurt-grade-section .frankfurt-products.one-product
    .frankfurt-product-image img[src*="ChatGPT-Image-Sep-10-2026-03_48_03-PM"]{
        width:145px !important;
        height:145px !important;

        transform:scale(1.30) !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e5970b8 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');


/* =====================================================
   GLOBAL
===================================================== */

.plate10-product-page,
.plate10-product-page *{
    box-sizing:border-box;
}

.plate10-product-page{
    --blue:#123f73;
    --blue-dark:#0d315a;
    --yellow:#f2b705;
    --white:#ffffff;

    width:100%;
    margin:0;
    padding:0;

    background:#ffffff;

    font-family:"Montserrat",Arial,sans-serif;
}


/* =====================================================
   CONTAINER
===================================================== */

.plate10-container{
    width:100%;
    max-width:1400px;

    margin:0 auto;
    padding:0 30px 55px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:0;

    align-items:start;
}


/* =====================================================
   TITLE
===================================================== */

.plate10-title{
    grid-column:1 / -1;

    width:100%;

    margin:0 0 45px;

    padding:0 0 18px;

    position:relative;

    text-align:center;
}


.plate10-title:after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:var(--yellow);
}


.plate10-title h1{
    margin:0;

    font-size:46px;
    line-height:1;

    font-weight:800;

    letter-spacing:-1.5px;

    color:var(--blue);

    text-transform:uppercase;
}


.plate10-title p{
    margin:12px 0 0;

    font-size:14px;
    line-height:1.3;

    font-weight:700;

    color:var(--blue);

    text-transform:uppercase;
}


/* =====================================================
   EACH GRADE COLUMN
===================================================== */

.plate10-grade-section{
    width:100%;

    min-height:340px;

    margin:0;

    padding:0 28px 25px;

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:flex-start;

    text-align:center;

    border-right:1px solid #dddddd;
}


.plate10-grade-section:last-child{
    border-right:0;
}


/* =====================================================
   GRADE TITLE
===================================================== */

.plate10-grade-title{
    display:flex;

    align-items:center;
    justify-content:center;

    width:190px;
    height:38px;

    margin:0 auto 45px;

    padding:0 18px;

    border-radius:30px;

    background:var(--yellow);

    font-size:13px;
    line-height:1;

    font-weight:800;

    color:var(--blue-dark);

    text-transform:uppercase;
}


/* =====================================================
   PRODUCT AREA
===================================================== */

.plate10-products{
    width:100%;

    min-height:220px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:auto 0;
}


/* =====================================================
   TWO PRODUCTS
===================================================== */

.plate10-products.two-products{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    align-items:center;
    justify-content:center;

    gap:18px;
}


/* =====================================================
   ONE PRODUCT
===================================================== */

.plate10-products.one-product{
    display:flex;

    align-items:center;
    justify-content:center;
}


/* =====================================================
   IMAGE HOLDER
===================================================== */

.plate10-product-image{
    width:100%;
    height:190px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto;

    padding:0;

    overflow:visible;

    background:transparent;
}


/* =====================================================
   BASE IMAGE
===================================================== */

.plate10-product-image img{
    display:block;

    width:165px !important;
    height:165px !important;

    max-width:165px !important;
    max-height:165px !important;

    margin:auto;

    object-fit:contain;
    object-position:center center;

    transform-origin:center center;

    transition:none !important;
}


/* =====================================================
   GRINDING GRADE
   WHITE / CREAM PLATES
===================================================== */

.plate10-grade-section:nth-of-type(1)
.plate10-product-image img{
    transform:scale(1.15) !important;
}


/* =====================================================
   POLISHING GRADE
   BROWN + GREEN
===================================================== */

.plate10-grade-section:nth-of-type(2)
.plate10-product-image:first-child img{
    transform:scale(1.12) !important;
}


.plate10-grade-section:nth-of-type(2)
.plate10-product-image:nth-child(2) img{
    transform:scale(1.12) !important;
}


/* =====================================================
   SHINING GRADE
===================================================== */

.plate10-grade-section:nth-of-type(3)
.plate10-product-image img{
    width:195px !important;
    height:195px !important;

    max-width:195px !important;
    max-height:195px !important;

    transform:scale(1.08) !important;
}


/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px){

    .plate10-container{
        padding-left:20px;
        padding-right:20px;
    }

    .plate10-grade-section{
        padding-left:18px;
        padding-right:18px;
    }

    .plate10-product-image{
        height:170px;
    }

    .plate10-product-image img{
        width:145px !important;
        height:145px !important;

        max-width:145px !important;
        max-height:145px !important;
    }

    .plate10-grade-section:nth-of-type(3)
    .plate10-product-image img{
        width:170px !important;
        height:170px !important;

        max-width:170px !important;
        max-height:170px !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .plate10-container{
        grid-template-columns:1fr;

        padding:35px 30px 55px;
    }

    .plate10-title{
        grid-column:1;

        margin-bottom:35px;
    }

    .plate10-grade-section{
        width:100%;
        max-width:650px;

        min-height:auto;

        margin:0 auto 40px;

        padding:0 0 35px;

        border-right:0;
        border-bottom:1px solid #dddddd;
    }

    .plate10-grade-section:last-child{
        border-bottom:0;
    }

    .plate10-grade-title{
        margin-bottom:25px;
    }

    .plate10-products{
        min-height:200px;
    }

    .plate10-products.two-products{
        grid-template-columns:repeat(2,200px);

        justify-content:center;

        gap:25px;
    }

    .plate10-product-image{
        height:185px;
    }

    .plate10-product-image img{
        width:165px !important;
        height:165px !important;

        max-width:165px !important;
        max-height:165px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .plate10-container{
        padding:30px 18px 45px;
    }

    .plate10-title{
        margin-bottom:32px;

        padding-bottom:16px;
    }

    .plate10-title h1{
        font-size:34px;
    }

    .plate10-title p{
        font-size:11px;
    }

    .plate10-grade-section{
        margin-bottom:32px;

        padding-bottom:28px;
    }

    .plate10-grade-title{
        width:170px;
        height:34px;

        margin-bottom:18px;

        font-size:11px;
    }

    .plate10-products.two-products{
        grid-template-columns:repeat(2,1fr);

        gap:10px;
    }

    .plate10-product-image{
        height:150px;
    }

    .plate10-product-image img{
        width:135px !important;
        height:135px !important;

        max-width:135px !important;
        max-height:135px !important;
    }

    .plate10-grade-section:nth-of-type(3)
    .plate10-product-image img{
        width:155px !important;
        height:155px !important;

        max-width:155px !important;
        max-height:155px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .plate10-container{
        padding-left:12px;
        padding-right:12px;
    }

    .plate10-title h1{
        font-size:30px;
    }

    .plate10-title p{
        font-size:9px;
    }

    .plate10-product-image{
        height:130px;
    }

    .plate10-product-image img{
        width:115px !important;
        height:115px !important;

        max-width:115px !important;
        max-height:115px !important;
    }

    .plate10-grade-section:nth-of-type(3)
    .plate10-product-image img{
        width:135px !important;
        height:135px !important;

        max-width:135px !important;
        max-height:135px !important;
    }

}

/* =====================================================
   PLATE 10 - FINAL IMAGE POSITION FIX
===================================================== */


/* =========================
   GRINDING - EXACT CENTER
========================= */

.plate10-grade-section:nth-of-type(2)
.plate10-products{
    width:100% !important;

    display:flex !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;
}


.plate10-grade-section:nth-of-type(2)
.plate10-product-image{
    width:100% !important;
    height:200px !important;

    display:flex !important;

    align-items:center !important;
    justify-content:center !important;

    margin:0 auto !important;

    text-align:center !important;
}


.plate10-grade-section:nth-of-type(2)
.plate10-product-image img{
    display:block !important;

    width:180px !important;
    height:180px !important;

    max-width:180px !important;
    max-height:180px !important;

    min-width:0 !important;
    min-height:0 !important;

    margin:auto !important;

    object-fit:contain !important;
    object-position:center center !important;

    transform:none !important;
}


/* =========================
   SHINING - BIGGER + CENTER
========================= */

.plate10-grade-section:nth-of-type(3)
.plate10-products{
    width:100% !important;

    display:flex !important;

    align-items:center !important;
    justify-content:center !important;
}


.plate10-grade-section:nth-of-type(3)
.plate10-product-image{
    width:100% !important;
    height:220px !important;

    display:flex !important;

    align-items:center !important;
    justify-content:center !important;

    margin:0 auto !important;

    overflow:visible !important;
}


.plate10-grade-section:nth-of-type(3)
.plate10-product-image img{
    display:block !important;

    width:220px !important;
    height:220px !important;

    max-width:220px !important;
    max-height:220px !important;

    min-width:0 !important;
    min-height:0 !important;

    margin:auto !important;

    object-fit:contain !important;
    object-position:center center !important;

    transform:none !important;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .plate10-grade-section:nth-of-type(2)
    .plate10-product-image{
        height:180px !important;
    }

    .plate10-grade-section:nth-of-type(2)
    .plate10-product-image img{
        width:165px !important;
        height:165px !important;

        max-width:165px !important;
        max-height:165px !important;
    }


    .plate10-grade-section:nth-of-type(3)
    .plate10-product-image{
        height:200px !important;
    }

    .plate10-grade-section:nth-of-type(3)
    .plate10-product-image img{
        width:195px !important;
        height:195px !important;

        max-width:195px !important;
        max-height:195px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    /* GRINDING */

    .plate10-grade-section:nth-of-type(2)
    .plate10-product-image{
        height:155px !important;
    }

    .plate10-grade-section:nth-of-type(2)
    .plate10-product-image img{
        width:140px !important;
        height:140px !important;

        max-width:140px !important;
        max-height:140px !important;
    }


    /* SHINING */

    .plate10-grade-section:nth-of-type(3)
    .plate10-product-image{
        height:175px !important;
    }

    .plate10-grade-section:nth-of-type(3)
    .plate10-product-image img{
        width:170px !important;
        height:170px !important;

        max-width:170px !important;
        max-height:170px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .plate10-grade-section:nth-of-type(2)
    .plate10-product-image img{
        width:120px !important;
        height:120px !important;

        max-width:120px !important;
        max-height:120px !important;
    }


    .plate10-grade-section:nth-of-type(3)
    .plate10-product-image img{
        width:150px !important;
        height:150px !important;

        max-width:150px !important;
        max-height:150px !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fb80ad7 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');


/* =====================================================
   GLOBAL
===================================================== */

.diamond-pad-page,
.diamond-pad-page *{
    box-sizing:border-box;
}

.diamond-pad-page{
    --blue:#123f73;
    --blue-dark:#0d315a;
    --yellow:#f2b705;
    --white:#ffffff;

    width:100%;
    margin:0;
    padding:0;

    background:#ffffff;

    font-family:"Montserrat",Arial,sans-serif;
}


/* =====================================================
   CONTAINER
===================================================== */

.diamond-pad-container{
    width:100%;
    max-width:1400px;

    margin:0 auto;

    padding:0 30px 60px;
}


/* =====================================================
   TITLE
===================================================== */

.diamond-pad-title{
    position:relative;

    width:100%;

    margin:0 0 50px;

    padding:0 0 20px;

    text-align:center;
}

.diamond-pad-title:after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:var(--yellow);
}

.diamond-pad-title h1{
    margin:0;

    font-size:clamp(34px,4vw,50px);
    line-height:1;

    font-weight:800;

    letter-spacing:-1.5px;

    color:var(--blue);

    text-transform:uppercase;
}

.diamond-pad-title p{
    margin:12px 0 0;

    font-size:14px;
    line-height:1.3;

    font-weight:700;

    color:var(--blue);

    text-transform:uppercase;
}


/* =====================================================
   SECTION
===================================================== */

.diamond-pad-section{
    width:100%;
}


/* =====================================================
   3 IMAGES IN ONE ROW
===================================================== */

.diamond-pad-grid{
    width:100%;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:0;

    align-items:center;
}


/* =====================================================
   IMAGE BOX
===================================================== */

.diamond-pad-image{
    width:100%;
    height:300px;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:25px;

    background:#ffffff;

    border-right:1px solid #dddddd;
}

.diamond-pad-image:last-child{
    border-right:0;
}


/* =====================================================
   SAME IMAGE SIZE
===================================================== */

.diamond-pad-image img{
    display:block;

    width:250px !important;
    height:250px !important;

    max-width:250px !important;
    max-height:250px !important;

    margin:0 auto;

    object-fit:contain;
    object-position:center center;

    transform:none !important;

    transition:none !important;
}


/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px){

    .diamond-pad-container{
        padding-left:20px;
        padding-right:20px;
    }

    .diamond-pad-image{
        height:270px;

        padding:20px;
    }

    .diamond-pad-image img{
        width:220px !important;
        height:220px !important;

        max-width:220px !important;
        max-height:220px !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .diamond-pad-container{
        padding:35px 25px 55px;
    }

    .diamond-pad-title{
        margin-bottom:35px;
    }

    .diamond-pad-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .diamond-pad-image{
        height:220px;

        padding:15px;
    }

    .diamond-pad-image img{
        width:185px !important;
        height:185px !important;

        max-width:185px !important;
        max-height:185px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .diamond-pad-container{
        padding:30px 18px 45px;
    }

    .diamond-pad-title{
        margin-bottom:30px;

        padding-bottom:16px;
    }

    .diamond-pad-title h1{
        font-size:32px;
    }

    .diamond-pad-title p{
        font-size:11px;
    }

    .diamond-pad-grid{
        grid-template-columns:1fr;

        gap:20px;
    }

    .diamond-pad-image{
        height:230px;

        border-right:0;
        border-bottom:1px solid #dddddd;
    }

    .diamond-pad-image:last-child{
        border-bottom:0;
    }

    .diamond-pad-image img{
        width:210px !important;
        height:210px !important;

        max-width:210px !important;
        max-height:210px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .diamond-pad-title h1{
        font-size:28px;
    }

    .diamond-pad-title p{
        font-size:9px;
    }

    .diamond-pad-image{
        height:200px;
    }

    .diamond-pad-image img{
        width:180px !important;
        height:180px !important;

        max-width:180px !important;
        max-height:180px !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a766a0a */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');


/* =====================================================
   GLOBAL
===================================================== */

.diamond-cutting-page,
.diamond-cutting-page *{
    box-sizing:border-box;
}

.diamond-cutting-page{
    --blue:#123f73;
    --blue-dark:#0d315a;
    --yellow:#f2b705;
    --white:#ffffff;

    width:100%;
    margin:0;
    padding:0;

    background:#ffffff;

    font-family:"Montserrat",Arial,sans-serif;
}


/* =====================================================
   CONTAINER
===================================================== */

.diamond-cutting-container{
    width:100%;
    max-width:1400px;

    margin:0 auto;

    padding:0 30px 60px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:0;

    align-items:start;
}


/* =====================================================
   TITLE
===================================================== */

.diamond-cutting-title{
    grid-column:1 / -1;

    position:relative;

    width:100%;

    margin:0 0 45px;

    padding:0 0 20px;

    text-align:center;
}


.diamond-cutting-title:after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:var(--yellow);
}


.diamond-cutting-title h1{
    margin:0;

    font-size:clamp(36px,4vw,52px);
    line-height:.95;

    font-weight:800;

    letter-spacing:-1.5px;

    text-transform:uppercase;

    color:var(--blue);
}


/* =====================================================
   EACH CATEGORY
===================================================== */

.diamond-cutting-section{
    width:100%;

    min-height:360px;

    margin:0;

    padding:0 28px 30px;

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:flex-start;

    text-align:center;

    border-right:1px solid #dddddd;
}


.diamond-cutting-section:last-child{
    border-right:0;
}


/* =====================================================
   CATEGORY LABEL
===================================================== */

.diamond-cutting-label{
    display:flex;

    align-items:center;
    justify-content:center;

    width:190px;
    height:38px;

    margin:0 auto 40px;

    padding:0 18px;

    border-radius:30px;

    background:var(--yellow);

    font-size:13px;
    line-height:1;

    font-weight:800;

    text-transform:uppercase;

    color:var(--blue-dark);
}


/* =====================================================
   IMAGE HOLDER
===================================================== */

.diamond-cutting-image{
    width:100%;
    height:240px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto;

    padding:0;

    overflow:visible;

    background:transparent;
}


/* =====================================================
   ALL IMAGES SAME SIZE
===================================================== */

.diamond-cutting-image img{
    display:block;

    width:220px !important;
    height:220px !important;

    max-width:220px !important;
    max-height:220px !important;

    margin:0 auto;

    object-fit:contain;
    object-position:center center;

    transform:none !important;

    transition:none !important;
}


/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px){

    .diamond-cutting-container{
        padding-left:20px;
        padding-right:20px;
    }

    .diamond-cutting-section{
        padding-left:18px;
        padding-right:18px;
    }

    .diamond-cutting-image{
        height:210px;
    }

    .diamond-cutting-image img{
        width:190px !important;
        height:190px !important;

        max-width:190px !important;
        max-height:190px !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .diamond-cutting-container{
        grid-template-columns:1fr;

        padding:35px 30px 55px;
    }

    .diamond-cutting-title{
        grid-column:1;

        margin-bottom:35px;
    }

    .diamond-cutting-section{
        width:100%;
        max-width:650px;

        min-height:auto;

        margin:0 auto 40px;

        padding:0 0 35px;

        border-right:0;
        border-bottom:1px solid #dddddd;
    }

    .diamond-cutting-section:last-child{
        margin-bottom:0;

        border-bottom:0;
    }

    .diamond-cutting-label{
        margin-bottom:25px;
    }

    .diamond-cutting-image{
        height:220px;
    }

    .diamond-cutting-image img{
        width:200px !important;
        height:200px !important;

        max-width:200px !important;
        max-height:200px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .diamond-cutting-container{
        padding:30px 18px 45px;
    }

    .diamond-cutting-title{
        margin-bottom:32px;

        padding-bottom:16px;
    }

    .diamond-cutting-title h1{
        font-size:34px;
    }

    .diamond-cutting-section{
        margin-bottom:32px;

        padding-bottom:28px;
    }

    .diamond-cutting-label{
        width:170px;
        height:34px;

        margin-bottom:20px;

        font-size:11px;
    }

    .diamond-cutting-image{
        height:185px;
    }

    .diamond-cutting-image img{
        width:165px !important;
        height:165px !important;

        max-width:165px !important;
        max-height:165px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .diamond-cutting-container{
        padding-left:12px;
        padding-right:12px;
    }

    .diamond-cutting-title h1{
        font-size:30px;
    }

    .diamond-cutting-image{
        height:155px;
    }

    .diamond-cutting-image img{
        width:140px !important;
        height:140px !important;

        max-width:140px !important;
        max-height:140px !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5858307 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');


/* =====================================================
   GLOBAL
===================================================== */

.adhesive-line-page,
.adhesive-line-page *{
    box-sizing:border-box;
}

.adhesive-line-page{
    --blue:#123f73;
    --blue-dark:#0d315a;
    --yellow:#f2b705;
    --white:#ffffff;

    width:100%;
    margin:0;
    padding:0;

    background:#ffffff;

    font-family:"Montserrat",Arial,sans-serif;
}


/* =====================================================
   CONTAINER
===================================================== */

.adhesive-line-container{
    width:100%;
    max-width:1450px;

    margin:0 auto;

    padding:0 30px 60px;
}


/* =====================================================
   TITLE
===================================================== */

.adhesive-line-title{
    position:relative;

    width:100%;

    margin:0 0 45px;

    padding:0 0 20px;

    text-align:center;
}

.adhesive-line-title:after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:var(--yellow);
}

.adhesive-line-title h1{
    margin:0;

    font-size:clamp(36px,4vw,52px);
    line-height:1;

    font-weight:800;

    letter-spacing:-1.5px;

    text-transform:uppercase;

    color:var(--blue);
}


/* =====================================================
   PRODUCT SECTION
===================================================== */

.adhesive-line-section{
    width:100%;
}


/* =====================================================
   5 PRODUCTS IN ONE ROW
===================================================== */

.adhesive-line-grid{
    width:100%;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:0;

    align-items:center;
}


/* =====================================================
   IMAGE HOLDER
===================================================== */

.adhesive-line-image{
    width:100%;
    height:280px;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:20px;

    background:#ffffff;

    border-right:1px solid #dddddd;

    overflow:hidden;
}

.adhesive-line-image:last-child{
    border-right:0;
}


/* =====================================================
   ALL IMAGES SAME BOX SIZE
===================================================== */

.adhesive-line-image img{
    display:block;

    width:230px !important;
    height:230px !important;

    max-width:230px !important;
    max-height:230px !important;

    margin:0 auto;

    object-fit:contain;
    object-position:center center;

    transform:none !important;

    transition:none !important;
}


/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px){

    .adhesive-line-container{
        padding-left:20px;
        padding-right:20px;
    }

    .adhesive-line-image{
        height:240px;

        padding:15px;
    }

    .adhesive-line-image img{
        width:195px !important;
        height:195px !important;

        max-width:195px !important;
        max-height:195px !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .adhesive-line-container{
        padding:35px 25px 55px;
    }

    .adhesive-line-title{
        margin-bottom:35px;
    }

    .adhesive-line-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .adhesive-line-image{
        height:220px;

        border-bottom:1px solid #dddddd;
    }

    .adhesive-line-image:nth-child(3){
        border-right:0;
    }

    .adhesive-line-image:nth-child(4),
    .adhesive-line-image:nth-child(5){
        border-bottom:0;
    }

    .adhesive-line-image img{
        width:180px !important;
        height:180px !important;

        max-width:180px !important;
        max-height:180px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .adhesive-line-container{
        padding:30px 18px 45px;
    }

    .adhesive-line-title{
        margin-bottom:30px;

        padding-bottom:16px;
    }

    .adhesive-line-title h1{
        font-size:32px;
    }

    .adhesive-line-grid{
        grid-template-columns:repeat(2,1fr);

        gap:0;
    }

    .adhesive-line-image{
        height:190px;

        padding:12px;

        border-bottom:1px solid #dddddd;
    }

    .adhesive-line-image:nth-child(2n){
        border-right:0;
    }

    .adhesive-line-image:last-child{
        border-bottom:0;
    }

    .adhesive-line-image img{
        width:160px !important;
        height:160px !important;

        max-width:160px !important;
        max-height:160px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .adhesive-line-container{
        padding-left:12px;
        padding-right:12px;
    }

    .adhesive-line-title h1{
        font-size:28px;
    }

    .adhesive-line-image{
        height:165px;
    }

    .adhesive-line-image img{
        width:140px !important;
        height:140px !important;

        max-width:140px !important;
        max-height:140px !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-86aa159 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap');


/* =====================================================
   GLOBAL
===================================================== */

.tools-machinery-page,
.tools-machinery-page *{
    box-sizing:border-box;
}

.tools-machinery-page{
    --blue:#123f73;
    --blue-dark:#0d315a;
    --yellow:#f2b705;

    width:100%;
    margin:0;
    padding:0;

    background:#ffffff;

    font-family:"Montserrat",Arial,sans-serif;
}


/* =====================================================
   CONTAINER
===================================================== */

.tools-machinery-container{
    width:100%;
    max-width:1400px;

    margin:0 auto;

    padding:0 30px 65px;
}


/* =====================================================
   TITLE
===================================================== */

.tools-machinery-title{
    position:relative;

    width:100%;

    margin:0 0 45px;

    padding:0 0 20px;

    text-align:center;
}


/* YELLOW LINE */

.tools-machinery-title:after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:var(--yellow);
}


.tools-machinery-title h1{
    margin:0;

    font-size:clamp(36px,4vw,50px);
    line-height:1;

    font-weight:800;

    letter-spacing:-1.3px;

    color:var(--blue);

    text-transform:uppercase;
}


/* =====================================================
   SECTION
===================================================== */

.tools-machinery-section{
    width:100%;
}


/* =====================================================
   2 PRODUCTS IN ONE ROW
===================================================== */

.tools-machinery-grid{
    width:100%;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    align-items:center;

    gap:0;
}


/* =====================================================
   IMAGE HOLDER
===================================================== */

.tools-machinery-image{
    width:100%;
    height:420px;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:30px;

    background:#ffffff;

    overflow:hidden;
}


/* CENTER DIVIDER */

.tools-machinery-image:first-child{
    border-right:1px solid #dddddd;
}


/* =====================================================
   IMAGES
===================================================== */

.tools-machinery-image img{
    display:block;

    width:100% !important;
    height:100% !important;

    max-width:540px !important;
    max-height:360px !important;

    margin:0 auto;

    object-fit:contain !important;
    object-position:center center !important;

    transform:none !important;

    transition:none !important;
}


/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px){

    .tools-machinery-container{
        padding-left:20px;
        padding-right:20px;
    }

    .tools-machinery-image{
        height:360px;

        padding:25px;
    }

    .tools-machinery-image img{
        max-width:460px !important;
        max-height:310px !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .tools-machinery-container{
        padding:35px 25px 55px;
    }

    .tools-machinery-title{
        margin-bottom:35px;
    }

    .tools-machinery-image{
        height:300px;

        padding:20px;
    }

    .tools-machinery-image img{
        max-width:350px !important;
        max-height:260px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .tools-machinery-container{
        padding:30px 18px 45px;
    }


    /* TITLE */

    .tools-machinery-title{
        margin-bottom:25px;

        padding-bottom:16px;
    }

    .tools-machinery-title h1{
        font-size:30px;
    }


    /* STACK PRODUCTS */

    .tools-machinery-grid{
        grid-template-columns:1fr;
    }


    .tools-machinery-image{
        width:100%;

        height:300px;

        padding:20px;

        border-right:0 !important;

        border-bottom:1px solid #dddddd;
    }

    .tools-machinery-image:last-child{
        border-bottom:0;
    }


    .tools-machinery-image img{
        width:100% !important;
        height:100% !important;

        max-width:360px !important;
        max-height:260px !important;

        object-fit:contain !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .tools-machinery-container{
        padding-left:12px;
        padding-right:12px;
    }

    .tools-machinery-title h1{
        font-size:27px;
    }

    .tools-machinery-image{
        height:250px;

        padding:15px;
    }

    .tools-machinery-image img{
        max-width:300px !important;
        max-height:220px !important;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3aab92d */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');


/* =====================================================
   FOOTER GLOBAL
===================================================== */

.htc-footer,
.htc-footer *{
    box-sizing:border-box;
}

.htc-footer{
    --blue:#123f73;
    --blue-dark:#0d315a;
    --blue-light:#3978b8;

    --yellow:#f2b705;
    --yellow-dark:#daa500;

    --white:#ffffff;

    width:100%;

    overflow:hidden;

    background:var(--blue-dark);

    font-family:"Open Sans",Arial,sans-serif;
}


/* =====================================================
   TOP ACCENT
===================================================== */

.htc-footer-accent{
    width:100%;
    height:7px;

    background:var(--yellow);
}


/* =====================================================
   MAIN
===================================================== */

.htc-footer-main{
    position:relative;

    padding:75px 0 35px;

    background:
        linear-gradient(
            135deg,
            #0d315a 0%,
            #123f73 55%,
            #164c82 100%
        );
}


/* BACKGROUND DECORATION */

.htc-footer-main:before{
    content:"";

    position:absolute;

    width:430px;
    height:430px;

    right:-170px;
    top:-180px;

    border-radius:50%;

    border:1px solid rgba(242,183,5,.12);
}


.htc-footer-main:after{
    content:"";

    position:absolute;

    width:230px;
    height:500px;

    right:5%;
    top:-160px;

    transform:rotate(20deg);

    border-left:1px solid rgba(242,183,5,.08);
    border-right:1px solid rgba(255,255,255,.04);
}


/* =====================================================
   CONTAINER
===================================================== */

.htc-footer-container{
    position:relative;

    z-index:2;

    width:100%;

    max-width:1380px;

    margin:0 auto;

    padding:0 45px;
}


/* =====================================================
   MAIN GRID
===================================================== */

.htc-footer-grid{
    display:grid;

    grid-template-columns:1.25fr 1fr .75fr;

    gap:75px;

    align-items:start;
}


/* =====================================================
   SMALL LABEL
===================================================== */

.htc-footer-label{
    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:24px;

    font-family:"Montserrat",sans-serif;

    font-size:11px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--yellow);
}


.htc-footer-label:before{
    content:"";

    width:34px;
    height:3px;

    background:var(--yellow);
}


/* =====================================================
   OFFICE
===================================================== */

.htc-footer-office h2{
    max-width:560px;

    margin:0;

    font-family:"Montserrat",sans-serif;

    font-size:clamp(27px,2.8vw,39px);
    line-height:1.25;

    font-weight:700;

    letter-spacing:-1.2px;

    color:#ffffff;
}


.htc-footer-office h2 span{
    display:block;

    color:#d7e2ee;
}


.htc-country{
    margin:12px 0 30px;

    font-family:"Montserrat",sans-serif;

    font-size:11px;
    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#aebfd0;
}


/* =====================================================
   PHONE
===================================================== */

.htc-footer-phone{
    max-width:390px;

    display:flex;

    align-items:center;

    gap:15px;

    padding-top:24px;

    border-top:1px solid rgba(255,255,255,.13);

    text-decoration:none;
}


.htc-footer-phone span,
.htc-contact-item span{
    display:block;

    margin-bottom:5px;

    font-size:9px;
    font-weight:600;

    letter-spacing:1.4px;

    text-transform:uppercase;

    color:#9fb1c4;
}


.htc-footer-phone strong{
    font-family:"Montserrat",sans-serif;

    font-size:16px;

    font-weight:600;

    color:#ffffff;
}


/* =====================================================
   ICON
===================================================== */

.htc-footer-icon{
    width:44px;
    height:44px;

    flex:0 0 44px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:var(--yellow);
}


.htc-footer-icon svg{
    width:19px;
    height:19px;

    fill:var(--blue-dark);
}


/* =====================================================
   CONTACT
===================================================== */

.htc-footer-contact{
    min-width:0;
}


.htc-contact-item{
    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.12);
}


.htc-contact-item:first-of-type{
    padding-top:0;
}


.htc-contact-item a{
    display:block;

    color:#ffffff;

    font-size:14px;
    line-height:1.5;

    font-weight:500;

    text-decoration:none;

    word-break:break-word;

    transition:color .25s ease;
}


.htc-contact-item a:hover{
    color:var(--yellow);
}


/* =====================================================
   LOCATIONS
===================================================== */

.htc-location-list{
    display:flex;

    flex-direction:column;

    border-top:1px solid rgba(255,255,255,.12);
}


.htc-location-list span{
    position:relative;

    display:block;

    padding:14px 0 14px 18px;

    border-bottom:1px solid rgba(255,255,255,.12);

    font-family:"Montserrat",sans-serif;

    font-size:12px;
    font-weight:600;

    letter-spacing:.5px;

    text-transform:uppercase;

    color:#ffffff;
}


.htc-location-list span:before{
    content:"";

    position:absolute;

    left:0;
    top:50%;

    width:6px;
    height:6px;

    transform:translateY(-50%);

    border-radius:50%;

    background:var(--yellow);
}


/* =====================================================
   SOCIAL ROW
===================================================== */

.htc-footer-social-row{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    margin-top:65px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.14);
}


.htc-social-heading{
    flex:0 0 auto;

    font-family:"Montserrat",sans-serif;

    font-size:11px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#aebfd0;
}


/* =====================================================
   SOCIAL LINKS
===================================================== */

.htc-social-links{
    display:flex;

    align-items:center;

    justify-content:flex-end;

    flex-wrap:wrap;

    gap:10px;
}


.htc-social-links a{
    min-height:46px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:9px;

    padding:0 17px;

    border:1px solid rgba(255,255,255,.14);

    text-decoration:none;

    color:#ffffff;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}


.htc-social-links a svg{
    width:17px;
    height:17px;

    fill:var(--yellow);

    transition:fill .3s ease;
}


.htc-social-links a span{
    font-family:"Montserrat",sans-serif;

    font-size:10px;

    font-weight:600;

    letter-spacing:.5px;

    text-transform:uppercase;
}


.htc-social-links a:hover{
    background:var(--yellow);

    border-color:var(--yellow);

    color:var(--blue-dark);

    transform:translateY(-3px);
}


.htc-social-links a:hover svg{
    fill:var(--blue-dark);
}


/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px){

    .htc-footer-container{
        padding:0 30px;
    }

    .htc-footer-grid{
        grid-template-columns:1.2fr 1fr .7fr;

        gap:45px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:950px){

    .htc-footer-main{
        padding-top:60px;
    }

    .htc-footer-grid{
        grid-template-columns:1fr 1fr;

        gap:50px;
    }

    .htc-footer-locations{
        grid-column:1 / -1;
    }

    .htc-location-list{
        display:grid;

        grid-template-columns:repeat(5,1fr);
    }

    .htc-location-list span{
        text-align:center;

        padding:15px 8px;

        border-right:1px solid rgba(255,255,255,.12);
    }

    .htc-location-list span:before{
        display:none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .htc-footer-accent{
        height:5px;
    }

    .htc-footer-main{
        padding:55px 0 28px;
    }

    .htc-footer-container{
        padding:0 20px;
    }

    .htc-footer-grid{
        grid-template-columns:1fr;

        gap:50px;
    }

    .htc-footer-locations{
        grid-column:auto;
    }

    .htc-footer-office h2{
        font-size:29px;

        letter-spacing:-1px;
    }

    .htc-footer-phone{
        max-width:100%;
    }

    .htc-location-list{
        grid-template-columns:1fr 1fr;
    }

    .htc-location-list span{
        text-align:left;

        padding:14px 12px 14px 17px;
    }

    .htc-location-list span:before{
        display:block;
    }

    .htc-footer-social-row{
        display:block;

        margin-top:50px;

        padding-top:25px;
    }

    .htc-social-heading{
        margin-bottom:18px;
    }

    .htc-social-links{
        display:grid;

        grid-template-columns:1fr 1fr;

        gap:8px;
    }

    .htc-social-links a{
        justify-content:flex-start;

        padding:0 14px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:430px){

    .htc-footer-container{
        padding:0 16px;
    }

    .htc-footer-office h2{
        font-size:25px;
    }

    .htc-footer-phone strong{
        font-size:14px;
    }

    .htc-contact-item a{
        font-size:12px;
    }

    .htc-location-list{
        grid-template-columns:1fr;
    }

    .htc-social-links{
        grid-template-columns:1fr;
    }

    .htc-social-links a{
        min-height:48px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media(prefers-reduced-motion:reduce){

    .htc-footer *,
    .htc-footer *:before,
    .htc-footer *:after{
        transition:none !important;
    }

}/* End custom CSS */