/*
** Theme Variables
*/
:root {
    --green: #399c39;
    --red: #dc3232;
    --white: #ffffff;
    --dark: #191919;
    --black: #000000;

    --primary:  #218795;
    --primary-a:#176a75;

    --secondary:   #90C239;
    --secondary-a: #77a725;

    --body: rgba(25, 25, 25, 0.8);

    --gray: #f7f7f7;
    --lightp: rgba(33, 135, 149, 0.1);
    
    --link: var(--primary);
    --link-a: var(--primary-a);

    --formfieldbg: var(--gray);
    --formfieldplaceholder: rgba(25, 25, 25, 0.5);
    --formtextcolor: var(--body);
    --formfieldborder: transparent;

    --siteradius: 24px;
    --siteradius16: 16px;
}

:target {
    scroll-margin-top: 140px
}


/*
** Fonts
*/
@font-face {
    font-family: 'mt';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'mt-md';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'mt-sb';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'mt-bd';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*
** Font Icons
*/
@font-face {
  font-family: 'wls';
  src:  url('../fonts/icons/wls.ttf?sorlej') format('truetype'),
    url('../fonts/icons/wls.woff?sorlej') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'wls';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-angle-down:before {
    content: "\e900";
}
.icon-arrow:before {
    content: "\e901";
}
.icon-author:before {
    content: "\e902";
}
.icon-calendar:before {
    content: "\e903";
}
.icon-call:before {
    content: "\e904";
}
.icon-circle-check:before {
    content: "\e905";
}
.icon-clock:before {
    content: "\e906";
}
.icon-envelope:before {
    content: "\e907";
}
.icon-fb:before {
    content: "\e908";
}
.icon-in:before {
    content: "\e909";
}
.icon-leaf:before {
    content: "\e90a";
}
.icon-mail:before {
    content: "\e90b";
}
.icon-minus:before {
    content: "\e90c";
}
.icon-phone:before {
    content: "\e90d";
}
.icon-pin:before {
    content: "\e90e";
}
.icon-plus:before {
    content: "\e90f";
}
.icon-quotes:before {
    content: "\e910";
}
.icon-search:before {
    content: "\e911";
}
.icon-tag:before {
    content: "\e912";
}
.icon-x:before {
    content: "\e913";
}


/*
** Custom Reset
*/
*,:after,:before { -webkit-box-sizing: border-box; box-sizing: border-box }
img { max-width: 100%; height: auto; vertical-align: top; }
a, span, i, label { display: inline-block; }
a { color: var(--link); text-decoration: none; transition: 0.3s ease-in-out; }
a:hover { color: var(--link-a); }
a:focus { outline: none; }
strong, b { font-family: 'mt-bd', sans-serif; font-weight: normal; }

header ul,
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p:last-child,
ul:last-child,
li:last-child {
  margin-bottom: 0;
}

button,
button:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

input:focus {
    outline: none;
    box-shadow: none;
}

ul, ol { padding-left: 20px; }

li { margin-bottom: 10px; }


/*
** Globals
*/

/*Typo*/
body {
    font-family: 'mt-md', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--body);
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'mt-bd', serif;
    font-style: normal;
    font-weight: normal;
    margin-top: 0;
    color: var(--dark);
}

h1, .h1 { --fsize: 48px; font-size: var(--fsize); line-height: calc(var(--fsize) + 6px); margin-bottom: 30px; }
h2, .h2 { --fsize: 42px; font-size: var(--fsize); line-height: calc(var(--fsize) + 6px); margin-bottom: 30px; }
h3, .h3 { --fsize: 26px; font-size: var(--fsize); line-height: calc(var(--fsize) + 6px); margin-bottom: 20px; }
h4, .h4 { --fsize: 22px; font-size: var(--fsize); line-height: calc(var(--fsize) + 6px); margin-bottom: 16px; }
h5, .h5 { --fsize: 20px; font-size: var(--fsize); line-height: calc(var(--fsize) + 6px); margin-bottom: 12px; }
h6, .h6 { --fsize: 18px; font-size: var(--fsize); line-height: calc(var(--fsize) + 6px); margin-bottom: 10px; }


/*
h1 strong,
h1 span,
h2 strong,
h2 span {
    font-weight: normal;
    color: var(--primary);
}
*/

p { margin-top: 0; }

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Form Fields */
form {
    --fieldsize: 52px;
    --fieldpadds: 0 16px;
    --fieldtop: 16px;
    --fieldfsize: 16px;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="num"],
input[type="tel"],
input[type="url"],
select,
textarea {
    font-family: 'mt-md', sans-serif;
    font-size: var(--fieldfsize);
    line-height: calc(var(--fieldsize) - 2px);
    width: 100%;
    height: var(--fieldsize);
    padding: var(--fieldpadds);
    border-radius: 0;
    background-color: var(--formfieldbg);
    border: 1px solid var(--formfieldborder);
    outline: 0;
    vertical-align: top;
    color: var(--dark);
}

input::placeholder,
textarea::placeholder {
    font-family: 'mt', sans-serif;
    color: var(--formfieldplaceholder);
}

textarea {
    padding-top: var(--fieldtop);
    line-height: calc(var(--fieldfsize) + 10px);
    height: 90px;
    resize: none;
}

select {
    width: 100%;
    padding-right: 42px;
    background-image: url('../images/angle-down.svg');
    background-size: 10px;
    background-position: right 20px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
}

/*Background Utilities*/
.bg--primary { background-color: var(--primary); color: var(--white); }
.bg--secondary { background: var(--secondary); color: var(--white); }
.bg--lightp { background: var(--lightp); }
.bg--gray { background: var(--gray); }
.bg--white { background: var(--white); }
.bg--dark { background: var(--dark); color: var(--white); }
.bg--dark h2 { color: var(--white); }
.bg--art {
    background-image: url('../images/corner-art.svg'), url('../images/corner-art-r.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: 28vw;
    background-size: 400px;
}

/*Text Utilities*/
.text-rg { font-family: 'mt', sans-serif; }
.text-md { font-family: 'mt-md', sans-serif; }
.text-sb { font-family: 'mt-sb', sans-serif; }
.text-bd { font-family: 'mt-bd', sans-serif; }

.text--primary { color: var(--primary); }
.text--secondary { color: var(--secondary); }
.text--body { color: var(--body); }
.text--dark { color: var(--dark); }
.text--white { color: var(--white); }
.text--black { color: var(--black); }

.text-upercase { text-transform: uppercase; }
.text-justify { text-align: justify; }

.font-32 { font-size: 32px; line-height: 42px; }
.font-28 { font-size: 28px; line-height: 36px; }
.font-26 { font-size: 26px; line-height: 34px; }
.font-24 { font-size: 24px; line-height: 32px; }
.font-22 { font-size: 22px; line-height: 30px; }
.font-20 { font-size: 20px; line-height: 28px; }
.font-18 { font-size: 18px; line-height: 26px; }
.font-16 { font-size: 16px; line-height: 22px; }
.font-14 { font-size: 14px; line-height: 20px; }

/*Image*/
.wlsimg, .wlsimg img { border-radius: var(--siteradius); }
.imgbg { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/*Gap*/
.gap-40 { gap: 40px; }
.gap-30 { gap: 30px; }
.gap-20 { gap: 20px; }
.gapy-40 { row-gap: 40px; }
.gapy-30 { row-gap: 30px; }
.gapy-20 { row-gap: 20px; }

/*
** Buttons
*/
.bttn {
    --btnsize: 52px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'mt-sb', sans-serif;
    font-size: 16px;
    line-height: calc(var(--btnsize) - 2px);
    min-width: 145px;
    height: var(--btnsize);
    padding: 0 18px;
    text-align: center;
    border: 0px solid transparent;
    border-radius: 24px;
    border-top-right-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.bttn-secondary {
    color: var(--white);
    background-color: var(--secondary);
}

.bttn-secondary:hover {
    color: var(--white);
    background-color: var(--secondary-a);
}

.bttn-white {
    color: var(--secondary);
    background-color: var(--white);
}

.bttn-white:hover {
    color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.8);
}

.bttn-sm { --btnsize: 44px; padding: 0 16px; }

.bttn-icon { display: inline-flex; align-items: center; gap: 10px; }

.bttn-icon i {
    --bttniSize: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--bttniSize);
    height: var(--bttniSize);
    font-size: 6px;
    text-align: center;
    color: var(--secondary);
    border-radius: 100%;
    background-color: var(--white);
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}

.bttn-icon:hover i { transform: translateX(3px) rotate(-90deg); }

.bttn-white.bttn-icon i { color: var(--white); background-color: var(--secondary); }

.sitelink {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.sitelink i { font-size: 12px; }

/*Other Utilities*/
.unlist, .unlist ul, .unlist ol { padding: 0; margin: 0; list-style: none; }
.transition { transition: 0.3s ease-in-out; }
.unlink { pointer-events: none; cursor: none; }
.siteradius { border-radius: var(--siteradius); }
.foonav li, .socialnav li, .footerms li { margin-bottom: 0; }

/*
** Bootstrap Extends & Overrides
*/
.container, .container-fluid, .row>* { padding-left: 15px; padding-right: 15px; }
.row { margin-left: -15px; margin-right: -15px; }

.gx-0.row { margin-left: 0; margin-right: 0; }
.gx-0.row>* { padding-left: 0; padding-right: 0; }

.row-20 { margin-left: -10px; margin-right: -10px; }
.row-20>* { padding-left: 10px; padding-right: 10px; }

.visually-hidden,
.sr-only {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    margin: -1px!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    white-space: nowrap!important;
    border: 0!important;
}

.overflow-hidden { overflow: hidden; }

/*
** WP Overrides
*/
.screen-reader-text { position: absolute; visibility: hidden; opacity: 0; }

/*
** Slick Slider
*/
.slick-initialized { z-index: 0; position: relative; }
.slide .slick-slide, .slide { display: none; float: left; height: 100%; min-height: 1px; }
.slick-initialized .slick-list { position: relative; overflow: hidden; }
.slick-initialized .slick-slide { display: inline-block; width: auto; }
.slick-initialized .slick-slide:focus { outline: none; }
.slick-dots { display: flex; align-items: center; justify-content: center; list-style: none; padding: 0; }
.slick-dots li { margin: 0; }
.slick-dots li + li { margin: 0; margin-left: 10px; }
.slick-dots li button {
    display: block;
    font-size: 0px;
    width: 12px;
    max-width: 12px;
    height: 12px;
    padding:0;
    border: 0px solid transparent;
    border-radius: 12px;
    background-color: var(--dark);
    opacity: 0.2;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.slick-dots li.slick-active button { background-color: var(--secondary); width: 20px; max-width: 20px; opacity: 1; }

/*Check List*/
.wlclist ul,
ul.wlclist {
    display: grid;
    gap: 18px;
    list-style: none;
    padding: 0;
}

.wlclist li,
ul.wlclist li {
    padding-left: 30px;
    margin: 0;
    background-image: url('../images/icon-circle-check.svg');
    background-position: left top 5px;
    background-size: 18px;
    background-repeat: no-repeat;
}

.wlclist-col ul,
ul.wlclist-col {
    grid-template-columns: 1fr 1fr;
}


/*
** Header
*/

.sub-menu { display: none; }

.site-header {
    font-family: 'mt-sb', sans-serif;
    position: sticky;
    top: 0;
    padding: 15px 0;
    border-top: 38px solid var(--primary);
    border-bottom: 1px solid rgba(25, 25, 25, 0.1);
    background-color: var(--white);
    transition: all 0.2s ease;
    z-index: 15;
}

.site-header.siteheader-sticky { padding: 10px 0; }

.site-header .container { position: relative; }

.site-header .custom-logo {
    width: auto;
    height: 45px;
    transition: 0.2s ease;
}

/* .siteheader-sticky .custom-logo { height: 38px; } */

.site-header .row { align-items: center; }

.colheadright {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 30px;
}

.headernav {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
}

.headernav li { margin-bottom: 0; }

.headernav a {
    padding: 10px 5px;
    color: var(--dark);
}

.headernav a:hover,
.headernav .current-menu-ancestor>a,
.headernav .current-menu-parent>a,
.headernav .current-menu-item>a {
    color: var(--primary);
}

.headctas {
    position: absolute;
    bottom: calc(100% + 16px + 9px);
    right: 15px;
    font-family: 'mt-sb', sans-serif;
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.site-header.siteheader-sticky .headctas {
    bottom: calc(100% + 16px + 4px);
}

.headctas a { color: var(--white); }

.site-header.siteheader-sticky .bttn { --btnsize: 40px; }

.headcta-call {
    display: inline-flex;
    align-items: center;
    gap: 8.5px;
    color: var(--body);
}

.headcta-call .icon-call {
    font-size: 18px;
    color: var(--white);
}

/*Site Menu Toggle*/
.site-menutoggle {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    position: relative;
    margin-bottom: 0;
}

.site-menutoggle span {
    display: block;
    width: 33px;
    height: 5px;
    margin-bottom: 5px;
    position: relative;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary) 100%);
    border-radius: 6px;
    transform-origin: 5px 5px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    z-index: 1;
}

.site-menutoggle span:last-child {
    margin-bottom: 0;
}

.site-menutoggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

.site-menutoggle input:checked~span {
    margin: 0;
    opacity: 1;
    transform: rotate(45deg) translate(-8px, -12px);
}

.site-menutoggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(1px, 20px);
    transform: rotate(-45deg) translate(-2px, 13px);
}

.site-menutoggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    transition: 0s;
}


/*GTrasnslate*/
/*
.gtranslate_wrapper * {
    box-sizing: border-box !important;
}

.headctas .gtranslate_wrapper .gt_switcher-popup {
    font-family: 'mt-sb', sans-serif;
    font-size: 16px;
    color: var(--white);
}

.headctas .gtranslate_wrapper .gt_switcher-popup > span + span { color: var(--white) !important; }

.headctas .gtranslate_wrapper .gt_switcher-popup > img {
    width: 18px;
    height: 18px;
    margin-right: 4px;
    object-fit: cover;
    border-radius: 100%;
}

.gt_white_content a { color: var(--body); }
*/
.lang-widget {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

.lang-name {
    line-height: 15px;
    margin-right: 2px;
}

.lang-widget  img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 100%;
}

.lang-widget i { font-size: 5px; }

.lang-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
    background: var(--body);
}

.lang-popup {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 200px;
    padding: 20px;
    border-radius: var(--siteradius16);
    background: var(--white);
}


.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 0 100%;
    width: 100%;
    cursor: pointer;
}

/*GTrasnslate ENDS*/


/*Common Section*/
section.section { --paddSize: 120px; padding-top: var(--paddSize); padding-bottom: var(--paddSize); }
.section-head { margin-bottom: 60px; }
.section-head h2:last-child { margin-bottom: 0; }
.section-head p { font-size: 18px; line-height: 28px; }
.section-head p + .bttn { margin-top: 40px; }
.section.bg--primary h2 { color: var(--white); }
.badge {
    font-family: 'mt-bd', sans-serif;
    font-size: 16px;
    line-height: 1;
    padding: 8px 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 100px;
}

.badge-alt {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

/*Footer Edit*/
.post-edit-link,
.wp-logout {
    position: fixed;
    left: 0;
    bottom: 28px;
    font-size: 16px;
    line-height: 16px;
    padding: 6px 12px;
    min-width: 70px;
    text-align: center;
    color: var(--white) !important;
    background-color: var(--primary);
    z-index: 9000;
}

/*
** Homepage
*/

/*Hero*/
.hero-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh - 114px);
    padding: 80px 0;
}

.hero-slide::before,
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.hero-slide::before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}

.hero-row {
    position: relative;
    display: flex;
    gap: 30px 80px;
    align-items: flex-end;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.stat { flex: 1 0 auto; }

/*Features*/
.wicaps { padding: 50px 0; }

.wicaps-row {
    display: flex;
    gap: 40px;
}

.wicaps-card {
    display: flex;
    align-items: flex-start;
    flex: 1;
    gap: 15px;
    padding: 20px;
    outline: 1px dashed var(--primary);
}

.wicaps-info .h3 { margin-bottom: 15px; }

/*About*/
.homabt .col-rt::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/icon-leaves.svg');
    background-repeat: no-repeat;
    background-position: right top;
}

.hagrid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    align-items: stretch;
}

.haitem-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.haitem-2 .imgbg, .hastats { flex: 1 0 calc(50% - 10px); }

.hastats {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.hastats-nun.h2 { --fsize: 62px; }

.haitem-3 { padding: 60px; }

.hafoo { margin-top: 60px; }

/*Products*/
.prodlist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.prodcard { display: flex; flex-direction: column; }

.prodlist img { height: 200px; }

.prodinfo {
    flex: 1;
    padding: 20px;
    background: var(--gray);
}

.prodcard h3 a { color: var(--dark); }

.prodcard h3 a:hover { color: var(--primary); }

.prodcard-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: var(--white);
    background: var(--secondary);
}

.prodcard-cta a {
    align-self: flex-start;
}

.prodcard-cta h3 { color: var(--white); }

/*Sell*/
.sell-l {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.sell-i {
    line-height: 26px;
    display: flex;
    gap: 16px;
    flex: 1 0 calc(33.33% - 26.66px);
    padding: 16px;
    border-radius: var(--siteradius);
}

.sell-i i {
    color: var(--secondary);
}


/*LR Sec*/
.lrsec ul { margin: 0; }
.lrsec .bttn { margin-top: 40px; }


/*Testimonials*/
.testis .slick-track { display: flex; align-items: flex-start; }

.testi-item {
    position: relative;
    padding: 30px;
    margin: 0 20px;
    border-radius: var(--siteradius);
    background-color: var(--white);
    overflow: hidden;
}

.testi-item .icon-quotes {
    font-size: 23px;
    margin-bottom: 20px;
}

.test-foo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.test-foo img { width: 65px; }
.testctrls { margin-top: 30px; }
.testctrls ul { margin: 0; }

/*Latest Blogs*/
.bloglist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.latestblogs {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 40px;
}

.blogitem {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid rgba(33, 135, 149, 0.2);
    border-radius: var(--siteradius);
}

.blogitem img {
    border-radius: var(--siteradius);
    overflow: hidden;
}

.bloginfo {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.bloginfo h3 a { color: var(--dark); }
.bloginfo h3 a:hover { color: var(--primary); }

.bloglink { margin-top: auto; }

/*Client Carousel*/
.logolist {
    --size: clamp(10rem, 1rem + 25vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --gap: calc(var(--size) / 3);
    --duration: 20s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    display: flex;
    gap: var(--gap);
    -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 10%, hsl(0 0% 0% / 1) 90%, hsl(0 0% 0% / 0));
    mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 10%, hsl(0 0% 0% / 1) 90%, hsl(0 0% 0% / 0));
    overflow: hidden;
}

.logotrack {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-around;
    gap: var(--gap);
    animation: scroll-x var(--duration) linear infinite;
    padding: 20px 0;
}

.logoitem {
    display: grid;
    place-items: center;
    width: 240px;
	width: auto;
    max-width: 200px;
    height: auto;
    fill: var(--color-text);
    background: var(--color-bg-accent);
    -webkit-user-drag: none;
}

.logoitem img {
    max-width: 100%;
    width: auto;
    max-height: 120px;
    margin: auto;
}

@keyframes scroll-x {
    from { transform: translateX(var(--scroll-start)); }
    to { transform: translateX(var(--scroll-end)); }
}


/*CTA Form*/
.ctaf-map a {
    position: absolute;
    right: 0%;
    bottom: 50%;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 342px;
    max-width: 100%;
    padding: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 8px 16px rgba(24, 29, 39, 0.08);
    backdrop-filter: blur(4px);
    border-radius: 16px;
}

.ctaf-map i {
    --size: 37px;
    font-size: 16px;
    line-height: var(--size);
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    text-align: center;
    border-radius: var(--siteradius16);
    background-color: #F7A000;
}

.wlsform {
    width: 710px;
    max-width: 100%;
    padding: 60px;
}

.wlsform label,
.wlsform .wpcf7-form-control-wrap {
    display: block;
}

.wlsform label {
    font-family: 'mt-sb', sans-serif;
    margin-bottom: 3px;
    color: var(--dark);
}

/*Contact Form Quiz*/
.input-quiz label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.input-quiz label input {
    width: 50px;
    min-width: 0;
}

.input-quiz label span {
    flex: 0 0 auto;
}

.input-quiz .wpcf7-not-valid-tip {
    /*
    margin-left: 177px;
    margin-left: 192px;
    */
    margin-top: 0;
}

/*Form Errors*/
.iti, .wpcf7-form-control-wrap { display: block; }

.wpcf7-not-valid-tip {
    font-size: 12px;
    font-size: 15px;
    line-height: 1.3;
    padding: 6px 5px 3px;
    color: var(--red);
    border-radius: 0px 0px 10px 10px;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.4em;
    padding: 8px 10px;
    margin: 20px 0 0 0;
    border: 0;
    border-radius: 5px;
    background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: var(--green);
    color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output {
    background: var(--red);
    color: #ffffff;
}

.wpcf7-spinner {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateX(110px) translateY(-15px);
}


/*
** Product Listing
*/
.hero-pmain {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding-top: 80px;
}

.hero-pmain .container {
    position: relative;
    flex: 1 0 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    object-fit: cover;
    z-index: -1;
}

.hasbg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: rgba(1,23,21,0.66);
}

.hasbg h1 { color: var(--white); }

.hero-box {
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    background-color: var(--white);
}

.hero-box .bttn { margin-top: 20px; }

/*
** Product Detail
*/
.secgal {
    --colcount: 4;
    --staticCount: var(--colcount);
    display: grid;
    grid-template-columns: repeat(var(--staticCount), 1fr);
    gap: 20px;
    padding-top: 20px;
}

.secgal-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

h2 + .secgal,
h3 + .secgal,
h4 + .secgal {
    padding-top: 0;
}

.secgal-item {
    padding: 10px;
    border: 1px solid var(--lightp);
}

.secgal-logos .secgal-item {
    border: 0;
    padding: 0;
}

.secgal img {
    display: block;
    margin: auto;
}

.secgal-logos img {
    max-width: 220px;
    max-height: 148px;
    width: auto;
    height: auto;
}

/*
** Product Hero
*/
.hero-prod {
    --secrad: 56px;
    padding: 40px 0 120px;
    border-radius: 0 0 var(--secrad) var(--secrad);
}

.hero-crumbs { margin-bottom: 80px; color: var(--dark); }
.hero-crumbs a { color: var(--primary); }
.hero-crumbs a:hover { color: var(--primary-a); }
.text--white .hero-crumbs, .text--white .hero-crumbs a { color: var(--white); }
.text--white .hero-crumbs a:hover { color: var(--gray); }


.hero-prod .leaf-list { margin-top: 40px; }

.leaf-list {
    display: grid;
    gap: 18px;
}

.leaf-list li {
    display: flex;
    gap: 16px;
}

.leaf-list li::before {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\e90a";
    font-family: 'wls';
    font-size: 20px;
    line-height: 28px;
    color: var(--primary);
}

.prodg {
    display: flex;
    gap: 30px;
}

.prodg-nav {
    display: flex;
    flex-direction: column;
    min-width: 100px;
    gap: 10px;
    order: 0;
}

.prodg-nav img {
    padding: 3px;
    border: 1px solid transparent;
    border-radius: var(--siteradius16);
    cursor: pointer;
}

.prodg-nav img.active {
    padding: 3px;
    border-color: var(--primary);
}

.prodg-img {
    flex: 1 0 calc(100% - 100px - 30px);
    max-width: calc(100% - 100px - 30px);
    order: 1;
}

.prodg-img img { display: none; }
.prodg-img img.active { display: block; }


/*
** Product Features
*/
.prodfeat-l {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    margin-top: 40px;
}

.prodfeat-l li {
    display: flex;
    gap: 20px;
    align-items: center;
}

.prodfeat-l img { min-width: 64px; }


/*
** Packed In
*/
.packedin-l {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.packedin-l li {
    display: flex;
    padding: 12px 16px;
    gap: 12px;
    border: 1px solid rgba(33, 135, 149,0.2);
    border-radius: 14px;
}

.packedin-l i {
    line-height: 26px;
}


/*
** Table
*/
.bagtypes-l {
    --colcount: 6;
    display: grid;
    grid-template-columns: repeat(var(--colcount), 1fr);
    gap: 12px 18px;
    margin-top: 40px;
}

.bagtypes-l li {
    padding: 24px 15px;
    margin: 0;
    border-radius: 12px;
}

.btimg {
    display: flex;
    --size: 120px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.btimg img {
    padding: 12px;
    filter: grayscale(1);
    transition: 0.3s ease;
}

.bagtypes-l li:hover img {
    filter: grayscale(0);
}

/*
** Table
*/
table { width: 100%; text-align: center; }
thead { font-family: 'mt-sb', sans-serif; color: var(--dark); background-color: var(--lightp); }
th, td { padding: 13px 10px; }
td { border: 1px solid var(--white); background-color: var(--gray); }


/*
** LR Fluids
*/
.lrl .lrcont { padding-left: 30px; }
.lrr .lrcont { padding-right: 30px; }

.lrcont .bttn { margin-top: 20px; }

.lrisec-i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/*
**FAQ
*/
.faqlist {
    display: grid;
    gap: 20px;
    padding-top: 10px;
}

.faqitem {
    padding: 20px 24px;
    border: 1px solid rgba(33, 135, 149, 0.2);
    border-radius: var(--siteradius16);
    background-color: var(--white);
}

.faqhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faqhead h3 {
    font-size: 20px;
    line-height: 26px;
}

.faqbody {
    display: none;
    padding: 16px 0 0;
}

.faqbttn {
    --thisSize: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--thisSize);
    min-width: var(--thisSize);
    height: var(--thisSize);
    font-size: 14px;
    line-height: var(--thisSize);
    padding: 1px 0 0 1px;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 100%;
    transform: rotate(0deg);
    transition: all .3s ease-in-out;
}

.faqitem.open .faqbttn { transform: rotate(45deg); }


/*
** Footer
*/
.site-footer {
    padding-top: 120px;
    padding-bottom: 30px;
}

.foodisc {
    position: relative;
    width: 1220px;
    max-width: 100%;
    padding: 40px;
    border-radius: var(--siteradius);
    outline: 1px dashed var(--primary);
}

.foodisc [class^="icon-"] {
    --size: 60px;
    display: block;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    width: var(--size);
    height: var(--size);
    font-size: 26px;
    text-align: center;
    line-height: var(--size);
    margin: 0 auto;
    border-radius: var(--size);
    background: var(--primary);
}

.foologo img {
    width: auto;
    height: 45px;
}

.foointro {
    width: 276px;
    max-width: 100%;
    margin: 30px 0;
}

.foo-title { margin-bottom: 30px; }
.foonav { display: grid; gap: 15px; }
.foonav a { color: var(--body); }
.foonav a:hover { color: var(--primary); }
.foonav .current-menu-item a { color: var(--primary); }

.foocwidg {
    display: block;
    width: 322px;
    max-width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: var(--white);
}

.foocmail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.foocmail i { color: var(--secondary); }
.foocmail:hover { color: var(--primary); }

.foocoff-title { display: flex; align-items: center; gap: 10px; }
.foocoff-title i { font-size: 20px; }

.foocoff-ph.bttn {
    --btnsize: 44px;
    font-family: 'mt-sb', sans-serif;
    font-size: 18px;
    padding: 6px;
    padding-right: 18px;
    border-radius: 100px;
}

.foocoff-ph.bttn i,
.foocoff-ph.bttn i:hover {
    --bttniSize: 32px;
    font-size: 16px;
    transform: none;
}

.foocoff-ctrl {
    width: 322px;
    max-width: 100%;
}

/* .foocoff-ctrl li.slick-active button { background-color: var(--dark); } */

/*Social Media*/
.socialnav {
    display: flex;
    gap: 16px;
    padding-left: 0;
    list-style: none;
}

.socialnav a {
    font-size: 14px;
    width: 38px;
    height: 38px;
    text-align: center;
    border-radius: 38px;
    color: var(--secondary);
    background-color: var(--white);
}

.socialnav i {
    line-height: 38px;
}

.socialnav a:hover {
    color: var(--white);
    background-color: var(--secondary);
}

.foo-copy {
    padding-top: 30px;
    border-top: 1px solid rgba(25, 25, 25, 0.1);;
}


/*
Industries Listing
*/
.hero-def {
    --secrad: 56px;
    border-radius: 0 0 var(--secrad) var(--secrad);
}

.indcard {
    border-radius: var(--siteradius);
    overflow: hidden;
}

.indcard::before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    padding-top: 125%;
    background: linear-gradient(0deg, var(--dark), transparent);
    opacity: 0.8;
    z-index: 1;
}

.indcard img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: 0.4s;
    z-index: 0;
}

.indcard-inn {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 30px 0;
    margin: 0 auto 30px;
    color: var(--white);
    overflow: hidden;
    z-index: 1;
}

.indcard-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.indcard h3 { font-weight: 600; }

.indcard a { color: var(--white); }

.indcard-link {
    display: inline-flex;
    align-self: flex-start;
    padding-bottom: 0px;
    margin-bottom: -38px;
    border-bottom: 1px solid var(--white);
    transition: 0.3s;
}

.indcard:hover img { transform: scale(1.1); }

.indcard:hover .indcard-link {
    padding-right: 5px;
    margin-bottom: 0;
    color: var(--white);
}

/*
** Industry Details
*/
.advbox {
    padding: 40px;
    /* color: var(--white); */
    border-radius: var(--siteradius);
    background: var(--primary);
    background: var(--lightp);
}

/*
.advbox h2,
.advbox h3,
.advbox h4,
.advbox h5 {
    color: var(--white);
}
*/

.prodr-img {
    width: 100%;
    height: 240px;
    border: 1px solid var(--lightp);
    box-shadow: 0px 0px 10px 0px rgba(1,23,21,0.1);
}

.prodr-slide { padding: 10px 0; margin: 0 15px; text-align: center; }
.prodr-slide h3 { --fsize: 20px; }
.prodr-slide h3 a { color: var(--dark); }
.prodr-slide:hover a { color: var(--primary); }

/*
** Contact Us
*/

.hero-contact {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 475px;
    padding: 90px 0 40px;
    color: var(--white);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.hero-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 135, 149, 0.7);
    background-color: rgba(16, 58, 63, 0.7);
}


.hero-contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-wave.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left bottom;
}

.hero-contact .container {
    position: relative;
    z-index: 1;
}

section.contact-form {
    position: relative;
    padding-top: 0;
    margin-top: -210px;
}

.contact-form .wlsform {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.12);
}

.cussec {
    background-image: url('../images/contact-pattern-bg.webp');
    background-repeat: repeat;
}

.cussec .icon-leaf {
    --size: 60px;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    width: var(--size);
    height: var(--size);
    font-size: 26px;
    text-align: center;
    line-height: var(--size);
    margin: 0 auto;
    border-radius: var(--size);
    background: var(--primary);
}

.cuscards {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 30px;
    margin-top: 60px;
}

.cuscard {
    flex: 1 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    /* padding: 30px; */
    border-radius: 12px;
}

.cuscards .foocoff-title { margin-bottom: 10px; }

.cuscards .foocoff-title i { font-size: 1em; width: 24px; text-align: center; }

.cuscards .foocoff-add {
    padding-left: 34px;
    width: 280px;
}

.cuscards .foocmail i { width: 24px; text-align: center; }

.cuscard-nz {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--primary);
}


/*
** Enquiry Now
*/
.contchecks .wpcf7-checkbox {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 52px;
}

.contchecks .wpcf7-checkbox > span {
    margin: 0;
}

.contchecks .wpcf7-checkbox .wpcf7-list-item-label {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    gap: 8px;
    cursor: pointer;
}

.contchecks input {
    width: 0;
    height: 0;
    margin: 0;
    position: absolute;
    opacity: 0;
}

.contchecks .wpcf7-checkbox .wpcf7-list-item-label::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid var(--body);
    border-radius: 0;
}

.contchecks .wpcf7-checkbox .wpcf7-list-item-label::after {
    position: absolute;
    left: 0;
    top: 2px;
    content: "";
    width: 20px;
    height: 20px;
    border: 3px solid var(--white);
    outline: 1px solid var(--primary);
    background: var(--primary);
    border-radius: 0;
    opacity: 0;
    transition: 0.3s ease;
}

.contchecks .wpcf7-checkbox input:checked + .wpcf7-list-item-label::after { opacity: 1; }


.global [class^="icon-"] {
    --size: 60px;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    width: var(--size);
    height: var(--size);
    font-size: 26px;
    text-align: center;
    line-height: var(--size);
    margin: 0 auto 20px;
    border-radius: var(--size);
    background: var(--primary);
}

.gnimg {
    margin-bottom: 15px;
    border-radius: var(--siteradius16);
    background-color: var(--white);
    overflow: hidden;
}

.gnimg-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 50px;
    margin-bottom: 40px;
}

.gnimg-li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gnimg-li span {
    height: 20px;
    border-left: 20px solid;
}

.qcsec .table-responsive { overflow-x: auto; }
.qcsec table { text-align: left; }
.qcsec table td:first-child { width: 22%; }
.qcsec ul { grid-template-columns: repeat(3, 1fr); }
.table-responsive { margin-top: 40px; }
.qcgal-l { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.qcgal-l .glightbox { border-radius: var(--siteradius16); overflow: hidden; }
.glightbox-container .ginner-container { padding: 0 15px;}

.abtintro h2 { color: var(--primary); }