/*Writen by Cheah Siew Kwan (Inspiren)*/

/*Font face*/
/*@font-face {*/
/*    font-family:OpenSans;*/
/*    font-weight: 400;*/
/*    src: url('./fonts/OpenSans-Regular.ttf')format("truetype");*/
/*}*/

/*@font-face {*/
/*    font-family:OpenSans;*/
/*    font-weight: 500;*/
/*    src: url('./fonts/OpenSans-Medium.ttf')format("truetype");*/
/*}*/

/*@font-face {*/
/*    font-family:OpenSans;*/
/*    font-weight: 600;*/
/*    src: url('./fonts/OpenSans-SemiBold.ttf')format("truetype");*/
/*}*/

/*@font-face {*/
/*    font-family:OpenSans;*/
/*    font-weight: 700;*/
/*    src: url('./fonts/OpenSans-Bold.ttf')format("truetype");*/
/*}*/

/*@font-face {*/
/*    font-family:Acumin;*/
/*    font-weight: 400;*/
/*    src: url('./fonts/Acumin-RPro.otf')format("truetype");*/
/*}*/

/*@font-face {*/
/*    font-family:Acumin;*/
/*    font-weight: 700;*/
/*    src: url('./fonts/Acumin-BdPro.otf')format("truetype");*/
/*}*/


@font-face {
    font-family:Helvetica;
    font-weight: 300;
    src: url('./fonts/helvetica-light.ttf')format("truetype");
}

@font-face {
    font-family:Helvetica;
    font-weight: 400;
    src: url('./fonts/Helvetica.ttf')format("truetype");
}

@font-face {
    font-family:Helvetica;
    font-weight: 700;
    src: url('./fonts/Helvetica-Bold.ttf')format("truetype");
}

@font-face {
    font-family:Helvetica;
    font-weight: 800;
    src: url('./fonts/Helvetica CE Bold.otf')format("opentype");
}




@font-face {
    font-family:Helvetica-LT;
    font-weight: 400;
    src: url('./fonts/Helvetica Neue LT Std 55 Roman.otf')format("opentype");
}

@font-face {
    font-family:Helvetica-LT;
    font-weight: 500;
    src: url('./fonts/Helvetica Neue LT Std 65 Medium.otf')format("opentype");
}



/*new Float btn*/
.floating-button{
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 80px;
    right: 19px;
    font-size: 20px;
    background-color: #4F6ACA;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.floating-button *{
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.floating-button.float-btn-trigger{
    background-color: #4F6ACA;
    animation: 2.5s wiggle ease infinite;
    animation-delay: 1s;
}

.floating-button:not(.float-btn-trigger){
    opacity: 0;
}

.floating-button.float-btn-trigger #open-float{
    opacity: 1;
}
.floating-button.float-btn-trigger #close-float{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(0deg);
    opacity: 0;
}

.floating-button.floating-button_mail{background-color: rgba(0, 114, 198, 1);}
.floating-button.floating-button_phone{background-color: rgba(220, 16, 16, 1);}
.floating-button.floating-button_whatsapp{background-color: rgba(37, 211, 102, 1);}

.floating-button.floating-button_facebook{background-color: rgba(0, 114, 198, 1);}
.floating-button.floating-button_tiktok{background-color: #000;}
.floating-button.floating-button_shopee{background-color: #ee4d2d;}
.floating-button.floating-button_lazada{background-color: #1f15a5;}

/*when toogle*/
.floating-button.float-btn-trigger.toogle{
    animation: none;
}

.floating-button.toogle:not(.float-btn-trigger){
    opacity: 1;
}

.floating-button.float-btn-trigger.toogle #open-float{
    opacity: 0;
}
.floating-button.float-btn-trigger.toogle #close-float{
    opacity: 1;
    transform: translate(-50%,-50%) rotate(180deg);
}

/*.floating-button.floating-button_mail.toogle{bottom:140px;}*/
.floating-button_phone.toogle{bottom:140px;}
.floating-button_whatsapp.toogle{bottom:200px;}

.floating-button.floating-button_facebook.toogle{bottom:260px;}
.floating-button.floating-button_tiktok.toogle{bottom:320px;}
.floating-button.floating-button_shopee.toogle{bottom:380px;}
.floating-button.floating-button_lazada.toogle{bottom:440px;}

/*animation for triger*/
@keyframes wiggle {
  0% {
    transform: scale(1),rotate(0);
  }
  9.375% {
    transform: scale(1.1) rotate(0);
  }
  18.75% {
    transform: scale(1.1) rotate(-3deg);
  }
  28.125% {
    transform: scale(1.1) rotate(20deg);
  }
  37.5% {
    transform: scale(1.1) rotate(-15deg);
  }
  46.875% {
    transform: scale(1.1) rotate(5deg);
  }
  56.25% {
    transform: scale(1.1) rotate(-1deg);
  }
  65.625% {
    transform: scale(1.1) rotate(0);
  }
  75% {
    transform: scale(1) rotate(0);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

/*when mobile only*/
@media only screen and (max-width: 768px) {
    .floating-button{
        bottom:10px;
        right: 15px;
    }

    .floating-button.floating-button_mail.toogle{bottom:70px;}
    .floating-button_phone.toogle{bottom: 130px;}
    .floating-button_whatsapp.toogle{bottom:190px;}
    
    #side-contact {
        position: fixed;
        background: #fff;
        width: 100%;
        height: 70px;
        bottom: 0;
        right: -100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        z-index: 999;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        /*padding-right: 70px;*/
    }
    
    #side-contact.toogle {
        right: 0;
    }
    
    #side-contact a.floating-button:not(.float-btn-trigger) {
        position: initial;
        opacity:1;
    }
}

/*Animation delay*/
.delay1{animation-delay: 0.5s;}
.delay2{animation-delay: 1s;}
.delay3{animation-delay: 1.5s;}
.delay4{animation-delay: 2s;}
.delay5{animation-delay: 2.5s;}
.delay6{animation-delay: 3s;}

/*variable for website font, style, container spacing etc*/
:root {
    /*  fonts  */
    --fontFamily: Helvetica, sans-serif !important;
    --fontHelvetica-LT: Helvetica-LT, sans-serif !important;
    --fontAwesome: "Font Awesome 6 Free" !important;

    /*  site color  */
    --black: #000;
    --white: #fff;
    --siteBodyText: #231F20;
    --green: #96BE1E;
    --orange: #FF9843;
    --siteHeading: #3E3E3F;
    --grey: #414042;
    --red: #ED1C24;
	--darkblue:#080a45;
    --black1a: #1a1a1a;
    --grey43:#424343;
    --green1:#83CE37;
    --blue:#024EC5;
	--whatsapp: #25d366;

    --placeholder: #000000;

    --rounded-radius:30px;

    /*  filtered  */
    --filterWhite: invert(1) brightness(100);
    --filterBlack: invert(1) brightness(0);
    --filterNormal: invert(0) brightness(1);

    /*  transition  */
    --allTransition: all 0.3s ease-in-out;
    --imageTransition: all 0.5s linear;

    /*max screen percentage rules*/
    /*  make own container style  */
    /*width and space*/
    --row-spacing:85px;
    --container-width: 100%;
    --normal-container-max-width: 100%;

    /*column gap for visual composer row*/
    --vc_col_gap: 30px;

    /*  Woocomerce sidebar gap */
    --woo_col_gap: 90px;

    /*  Woocomerce catalog gap */
    --woo_catalog_col_gap: 50px;

    /* single product  */
    --productImgWidth: 300px;
}

@media only screen and (max-width: 1299.98px) {
    :root {
        --woo_col_gap: 50px;
    }
}

@media only screen and (max-width: 1199.98px) {
    :root {
        --vc_col_gap:15px;
        --row-spacing:35px;
    }
}

@media only screen and (max-width: 999.98px) {
    :root {
        --woo_col_gap: 30px;
        --woo_catalog_col_gap: 30px;
        --row-spacing:35px;
        --vc_col_gap:0px;
        --productImgWidth: 100%;
    }
}

@media only screen and (max-width: 768px) {
    :root {
        --row-spacing:0px;
        --rounded-radius:15px;
    }
}

/*all woocomerce page,single page,archive page*/
body.woocommerce,
body.woocommerce-page,
body.single,
body.archive,
body.blog{
    --row-spacing-post:calc(var(--row-spacing) + 15px);
    --container-width: calc(100% - var(--row-spacing-post)*2);
}

/*all single page w/o sidebar*/
body.woocommerce-page .ct-container-full,
body.single .ct-container-full{
    width:var(--container-width);
}

/*Overall*/
html,
body {
    scroll-behavior: smooth;
    background:#fff;
}

.desktop-view {
    display: block;
}

.mobile-view,.tablet-view {
    display: none !important;
}

@media only screen and (max-width: 999.98px) {
    .tablet-view {
        display: block !important;
    }
}

@media only screen and (max-width: 768px) {
    .desktop-view {
        display: none !important;
    }

    .mobile-view {
        display: block !important;
    }
}

body * {
    line-height: 1.3;
    word-wrap: break-word;
}

h1,h2,h3,h4,h5,h6{
    line-height: 1.5;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6{
	margin-bottom: 25px;
}

p{margin-bottom:20px}

a, button{
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}

.entry-content ul,
.entry-content ol {
    list-style-position: outside;
    padding-left: 20px;
    padding-bottom: 40px;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 13px;
    position: relative;
} 

/*ul li::marker{
    color:inherit;
}*/

img[data-dominant-color]:not(.has-transparency){
    background:none !important;
}

/*Placeholder*/
input,
textarea{
    --place-font-size:16px;
    --place-font-weight:400;
}

input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--placeholder) !important;
  font-size:var(--place-font-size);
  font-weight:var(--place-font-weight);
  opacity: 1 !important; /* Firefox */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--placeholder) !important;
  font-size:var(--place-font-size);
  font-weight:var(--place-font-weight);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--placeholder) !important;
  font-size:var(--place-font-size);
  font-weight:var(--place-font-weight);
}

/*404 page*/

.error404 .site-main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error404 .ct-no-results{
    padding-top: 100px;
    padding-bottom: 100px;
}

.error404 .ct-no-results .search-form{display: none !important;}

@media only screen and (max-width: 768) {
    .error404 .ct-no-results{
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/*Header*/
#header-menu-1 ul{padding-left:0}

#header-menu-1 ul.menu li{margin-bottom:0}

#header-menu-1 li[class*="current"] > a,
#header-menu-1 li[class*="current"] > .ct-sub-menu-parent{
    font-weight: 700;
    color: #581C9E;
}

#header-menu-1 li:hover > a,
#header-menu-1 li:hover > .ct-sub-menu-parent{
    font-weight: 700;
}

#header-menu-1{
    --move-align: calc(0px - var(--menu-items-spacing)/2);
    margin:0  var(--move-align) !important;
}

#header [data-row] .ct-container {
    padding-left: 15px;
    padding-right: 15px;
    width: auto;
    margin-left: var(--row-spacing);
    margin-right: var(--row-spacing);
}

#header-menu-1 .menu > [data-submenu="right"] > .sub-menu {
    left: 50%;
    transform: translate(-50%);
}

#header-menu-1 .menu ul.sub-menu > li > a {
    text-align: center;
    justify-content: center;
}

#header-menu-1 ul.menu > li > a > .ct-toggle-dropdown-desktop{display:none}

/*ONLY THIS SITE*/  
.ct-header-text .entry-content{
    display:flex;
    flex-direction: row;
    justify-content: end;
    align-items: stretch;
    gap:0 20px;
    /*flex-wrap: wrap;*/
}

.ct-header-text .entry-content p{margin-bottom: 0}

.ct-header-text .entry-content:after{display: none !important}

.ct-header-text .top-contact{
    display:flex;
    flex-direction: row;
    justify-content: end;
    align-items: stretch;
    gap:0 20px;
    flex-wrap: wrap;
    font-weight:700;
    padding:10px 0;
}

.ct-header-text .search-wrap {
	position: relative;
	isolation: isolate;
	padding: 10px 0 10px 20px;
	border-left: 1px solid var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
}

.ct-header-text .search-wrap .toggle{
    cursor:pointer;
}

.ct-header-text .search-wrap .is-search-form {
	position: absolute;
	right: 0;
	top: 100%;
	width: 300px;
	opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}

.ct-header-text .search-wrap .is-search-form .is-search-input {
	color: var(--siteBodyText) !important;
	border:1px solid var(--greyE6) !important;
	font-size:16px !important;
}

.ct-header-text .search-wrap .is-search-form.open{
    opacity: 1;
    visibility: visible;
}


@media only screen and (max-width: 768px) {
    .ct-header-text .search-wrap .is-search-form {
    	right: -15px;
    	width: 300px;
    	top: 100%;
    }
}

/*blocksy article*/
.woocommerce-notices-wrapper, 
article > .related, 
article > .upsells, 
article > .page-links, 
article > .entry-tags, 
article > .author-box, 
article > .ct-comments, 
article > .ct-share-box, 
article > .hero-section, 
article > .post-edit-link, 
article > .post-navigation, 
article > .ct-related-posts, 
article > .ct-newsletter-subscribe-block, 
article > .product .wc-tabs, 
article > .post-password-form, 
article > .product .product-entry-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

/*visual composer for blocksy*/
.vc_row[data-vc-full-width="true"]{left:0 !important}

/*For Section*/
.vc_section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.vc_section > .vc_row{
    margin-left: auto;
    margin-right: auto;
}

/*For Row*/
.default-row{
    margin-left: var(--row-spacing) !important;
    margin-right: var(--row-spacing) !important;
}

.default-row-fill{
    margin-left: calc(var(--row-spacing) + 15px) !important;
    margin-right: calc(var(--row-spacing) + 15px) !important;
}

.stretch-row{
    padding-left: var(--row-spacing) !important;
    padding-right: var(--row-spacing) !important;
}

.stretch-row-fill{
    padding-left: calc(var(--row-spacing) + 15px) !important;
    padding-right: calc(var(--row-spacing) + 15px) !important;
}

.no-padding-row > .wpb_column > .vc_column-inner{
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.full-column-row{
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/*increasing gap for each row*/
.row-more-col{
    --inbox: var(--vc_col_gap);
    --outbox: calc(15px - var(--inbox));
    margin-left: var(--outbox) !important;
    margin-right: var(--outbox) !important;
}

.row-more-col.default-row{
    --outbox: calc(var(--row-spacing) - var(--inbox));
}

.row-more-col.default-row-fill {
    --outbox: calc(var(--row-spacing) + 15px);
}

.row-more-col.stretch-row{
    --outbox: calc(0px - var(--inbox));
}

.row-more-col.stretch-row-fill{
    --inbox: calc(var(--vc_col_gap) + 15px);
    --outbox: calc(0px - var(--inbox));
}

.row-more-col.full-column-row{
    --inbox-side: calc(var(--row-spacing) + 15px);
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.row-more-col>.wpb_column{
    padding-left: var(--inbox) !important;
    padding-right: var(--inbox) !important;
}

.row-more-col.full-column-row>.wpb_column{
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.row-more-col.full-column-row>.wpb_column>.vc_column-inner{
    padding-left: var(--inbox-side) !important;
    padding-right: var(--inbox-side) !important;
}

.row-more-col.full-column-row>.wpb_column:first-child>.vc_column-inner {padding-left: var(--inbox-side) !important;}
.row-more-col.full-column-row>.wpb_column:last-child>.vc_column-inner {padding-right: var(--inbox-side) !important;}

/*Full Side Image Row*/
.full-left-img-row, 
.full-right-img-row{
    --gaps:calc(15px + var(--vc_col_gap));
}

.full-left-img-row > .wpb_column,
.full-right-img-row >.wpb_column{
    padding-left: var(--gaps) !important;
    padding-right:var(--gaps) !important;
}

.full-left-img-row > .wpb_column > .vc_column-inner,
.full-right-img-row >.wpb_column > .vc_column-inner{
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.full-left-img-row >.wpb_column:first-child{
    padding-left: 0 !important;
}

.full-right-img-row >.wpb_column:last-child{
    padding-right: 0 !important;
}

.full-left-img-row >.wpb_column:last-child{
    padding-right: calc(var(--row-spacing) + 15px) !important;
}

.full-right-img-row >.wpb_column:first-child{
    padding-left: calc(var(--row-spacing) + 15px) !important;
}

@media only screen and (max-width: 768px) {
    .full-left-img-row > .wpb_column,
    .full-right-img-row >.wpb_column{
        padding-left: var(--gaps) !important;
        padding-right:var(--gaps) !important;
    }

    .full-left-img-row >.wpb_column:first-child{
        padding-left: var(--gaps) !important;
    }

    .full-right-img-row >.wpb_column:last-child{
        padding-right: var(--gaps) !important;
    }

    .full-left-img-row >.wpb_column:last-child{
        padding-right: var(--gaps) !important;
    }

    .full-right-img-row >.wpb_column:first-child{
        padding-left: var(--gaps) !important;
    }

    .full-right-img-row {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}

/*CF 7 - blocks form*/
.wpcf7-form{
    margin-bottom:35px;
}

.wpcf7-form .form{
    --placeholder: var(--grey43);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap:20px;
    margin-bottom:20px;
}

.wpcf7-form .form #msg,
.wpcf7-form .form #recapctha {grid-column: 1/4}

@media only screen and (max-width: 768px) {
    .wpcf7-form .form {
        display: block !important;
    }
    .wpcf7-form .form > div {
        margin-bottom: 15px;
    }

}

.wpcf7-form .form input,
.wpcf7-form .form textarea{
    font-size:16px;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    resize: none;
}

.wpcf7-form #recaptcha{
    width:100%;
    text-align:center;
    margin-bottom:20px;
    display:flex;
    justify-content:center;
}

.wpcf7-form span.wpcf7-not-valid-tip {
    margin-top: 5px;
}

.wpcf7-form .wpcf7-response-output {
    color: var(--white);
    margin: 35px 0 0 !important;
    border-radius: 0;
    font-weight: 400;
    text-align: center;
}

.wpcf7-form #send .wpcf7-spinner {
    margin: 0;
    top: 50%;
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    left: calc(100% + 10px);
    opacity: 1;
    z-index: 9;
}

.wpcf7-form #send .wpcf7-spinner:before {
    left: 2px;
    top: 2px;
}

.wpcf7-form #send{
    display:flex;
    justify-content: center;
    align-items: center;
}

.wpcf7-form #send input{
    --btn-font-size:14px;
    --btn-line-height:calc( var(--btn-font-size)*1.3);
    --btn-radius:2em;
    --border-color:#25D366;
    --bg-color:#25D366;
    --font-color:var(--white);

    padding: 10px 35px 10px 20px;
    min-width: 120px;
    font-size: var(--btn-font-size);
    line-height: var(--btn-line-height);
    font-weight: 400;
    text-transform: initial;
    color: var(--font-color) !important;
    background-image: none !important;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius) !important;
    position: relative;
    z-index: 1;
    isolation: isolate;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    overflow: hidden;
    text-align: left;
}

.wpcf7-form #send .effect:hover input{
    --bg-color:var(--white);
    --font-color:var(--darkblue);
    --btn-radius:30px;
}

.wpcf7-form #send .effect{
    position: relative;
    isolation: isolate;
}

.wpcf7-form #send .effect:after{
    --font-color:var(--white);
    content: "\f178";
    position: absolute;
    top:50%;
    right:20px;
    transform: translateY(-50%);
    z-index: 1;
    display: block !important;
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: var(--font-color);
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}


.wpcf7-form #send .effect:hover:after{
    --font-color:var(--darkblue);
}

/*Footer*/
#footer .widget-title{padding-bottom: 15px}

#footer .ct-container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: var(--row-spacing);
    margin-right: var(--row-spacing);
    width: auto;
}

/*can use grid also just spacing must equal*/
#footer [data-row*="middle"] .ct-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap:0;
    gap:30px 15px;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area"]{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    flex-basis: -webkit-fit-content;
    flex-basis: -moz-fit-content;
    flex-basis: fit-content;
}

#footer p.inspiren{
    margin-bottom: 0;
    font-size: 14px;
}
#footer [data-row*="bottom"] .ct-footer-copyright p{margin-bottom: 0}


#footer p.inspiren span,
#footer [data-row*="bottom"] .ct-footer-copyright span{
    display: inline-block;
    padding-right: 3px;
}

/*only this site*/

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-1"]{
    width: clamp(0px,28%,378px);
    flex-basis: clamp(0px,28%,378px);
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-1"] .widget_media_image img{
    width: auto;
    max-height: 50px;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-1"] .widget_media_image + .widget_text{
    margin-top: 20px;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-1"] .widget_media_image + .widget_text h5{
    font-weight: 600;
    color: #333333;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-1"] .widget_media_image + .widget_text .reg{
    font-weight: 400;
    font-size: 14px;
}

/*#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] .widget_text ul.product-items{*/
/*    padding-left: 0;*/
/*    -webkit-column-count: 2;*/
/*    -moz-column-count: 2;*/
/*    column-count: 2;*/
/*    -webkit-column-gap: 60px;*/
/*    -moz-column-gap: 60px;*/
/*    column-gap: 60px;*/
/*}*/

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] .widget_text ul.product-items li.product-item{
    padding-left:0;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] .widget_text ul.product-items li.product-item{
padding-bottom:10px
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] .widget_text ul.product-items li.product-item a{
    text-decoration: none;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] .widget_text ul.product-items li.product-item.current-product a{
    color: var(--linkHoverColor);
    font-weight: 600;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-3"] .widget_text .entry-content p{
    font-weight: 700;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-3"] .widget_text .entry-content p:not(:last-child){margin-bottom: 13px}

@media only screen and (max-width: 1100px) {
    #footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] .widget_text ul.product-items{
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

/*disable*/
#footer [data-row*="bottom"]{display: none !important;}

.page-id-28 #footer [data-row*="middle"]{display: none !important;}
.page-id-28 #footer [data-row*="bottom"]{
    display: block !important;
    background: var(--white);
}

.page-id-28 #footer [data-row*="bottom"] .ct-footer-copyright{
    text-align: center;
}

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

    #footer [data-row*="bottom"]{display: block !important;}

    #footer [data-row*="middle"] .ct-container{
        padding-bottom: 25px;
    }

    #footer [data-row*="middle"] .ct-container [data-column*="widget-area"]{
        width: 100%;
        flex-basis: 100%;
    }

    #footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] .widget_text ul.product-items{
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    #footer [data-row*="middle"] .ct-container [data-column*="widget-area-1"] .widget_text:last-child{display: none}

}

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

    #footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] .widget_text ul.product-items{
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

}

/*Woocommerce*/
body.woocommerce-page #main [class*="ct-container"] {
    padding-top: 100px;
    padding-bottom: 100px; 
    margin-bottom: 100px;
}

body.woocommerce-page .ct-container[data-sidebar] {
    grid-column-gap: var(--woo_col_gap);
    grid-row-gap: 35px;
}

@media only screen and (max-width: 999.98px) {
    body.woocommerce-page #main [class*="ct-container"] {
        padding-top: 70px;
        padding-bottom: 100px;
    }
}

/*Product Catalog*/
.woocommerce ul.products{padding-left: 0}

.woocommerce ul.products{
    padding:0;
    grid-column-gap:var(--woo_catalog_col_gap);
    grid-row-gap:35px;
}

.woocommerce ul.products li{margin-bottom: 0}

/*only this site*/
.woocommerce ul.products li {
    --rounded-radius: 15px;
    /*border-radius: var(--rounded-radius);*/
    /*border: 1px solid var(--grey43);*/
    overflow: hidden;
    /*padding: 35px 30px;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px 60px;
    flex-wrap: wrap;
}

/*.woocommerce ul.products li:nth-child(6n),*/
/*.woocommerce ul.products li:nth-child(6n-1),*/
/*.woocommerce ul.products li:nth-child(6n-2) {*/
/*    flex-direction: row;*/
/*}*/

.woocommerce ul.products li .product-content{
    flex:1;
}

/*.woocommerce ul.products li > :first-child{*/
/*    width: 40%;*/
/*    flex-basis: 40%;*/
/*}*/

.woocommerce ul.products li .ct-image-container{
    --rounded-radius: 15px;
    position: relative;
    isolation: isolate;
    border-radius: var(--rounded-radius);
/*    width: 40%;
    flex-basis: 40%;*/
}

/*.woocommerce ul.products li .ct-image-container:before{*/
/*    content:'';*/
/*    position: absolute;*/
/*    top:0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #E2E3E4;*/

/*    -webkit-mask-image: url('./images/cover-mask-square-type.svg');*/
/*    -webkit-mask-size: 100% 100%;*/
/*    -webkit-mask-repeat: no-repeat;*/
/*    -webkit-mask-position: center;*/

/*    mask-image: url('./images/cover-mask-square-type.svg');*/
/*    mask-size: 100% 100%;*/
/*    mask-repeat: no-repeat;*/
/*    mask-position: center;*/
/*    z-index: -1;*/
/*}*/

.woocommerce ul.products li:nth-child(6n) .ct-image-container:before,
.woocommerce ul.products li:nth-child(6n-1) .ct-image-container:before,
.woocommerce ul.products li:nth-child(6n-2) .ct-image-container:before{
    transform: scaleX(-1);
}

.woocommerce ul.products li .ct-image-container img {
    /*aspect-ratio: 550/394 !important;*/
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
}

.woocommerce ul.products li .product-content .entry-excerpt{
    margin-top: 20px;
}

.woocommerce ul.products li .product-content .ct-woo-card-actions{padding-top: 20px}

.woocommerce ul.products li .product-content .ct-woo-card-actions a.button{
    --btn-font-size:14px;
    --btn-line-height:calc( var(--btn-font-size)*1.3);
    --btn-radius:2em;
    --border-color:#581C9E;
    --bg-color:#581C9E;
    --font-color:var(--white);

    padding: 10px 20px;
    min-width: 120px;
    font-size: var(--btn-font-size);
    line-height: var(--btn-line-height);
    font-weight: 400;
    text-transform: initial;
    color: var(--font-color) !important;
    background-image: none !important;
    background: var(--bg-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--btn-radius) !important;
    position: relative;
    z-index: 1;
    isolation: isolate;
    -webkit-transition: var(--allTransition);
    transition: color 1s, background-color 1s ease;
    overflow: hidden;
    cursor: pointer;
}

.woocommerce ul.products li .product-content .ct-woo-card-actions a.button::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 135%;
  height: 175%;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 1.0s ease, top 1.0s ease; 
  z-index:-1;
}


.woocommerce ul.products li .product-content .ct-woo-card-actions a.button:hover {
    --bg-color:var(--white);
    --font-color:#581C9E;
    --btn-radius:30px;
}

.woocommerce ul.products li .product-content .ct-woo-card-actions a.button:hover::before {
  top: -25px; 
  transform: translateX(-50%) scale(1); 
}

/*single product*/
/*.single-product.woocommerce div.product > .product-entry-wrapper{display: none !important}*/

.single-product.woocommerce div.product .woocommerce-product-gallery{
    /*width: var(--productImgWidth);*/
}

.single-product.woocommerce div.product .woocommerce-product-gallery .ct-image-container{
    border: 1px solid #e2e3e4 !important;
    background: #fff;
    background-image: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/Product-background.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    border-radius: 15px;
    transition: 500ms linear;
}

.single-product.woocommerce div.product .woocommerce-product-gallery .ct-image-container img{
    aspect-ratio:1/1 !important;
    object-fit:cover;
    object-position:center;
}

.woocommerce.single-product .woocommerce-product-gallery .flexy-items{
    overflow: hidden;
}

/*.woocommerce.single-product .woocommerce-product-gallery .flexy-items .ct-image-container{
    border-radius: 0;
}

.woocommerce.single-product .woocommerce-product-gallery .flexy-pills .ct-image-container{border-radius: 0}*/

.single-product.woocommerce div.product .woocommerce-product-gallery .flexy-pills .ct-image-container img{
    aspect-ratio: 1/1 !important;
}

.single-product.woocommerce div.product .entry-summary{
    width: calc(100% - var(--productImgWidth));
    /*padding-left: var(--woo_col_gap);*/
    padding-left: 50px;
}

@media (max-width: 999.98px){
    .single-product.woocommerce div.product .entry-summary{
        width: var(--productImgWidth);
        padding-left: 0;
    }
}

.woocommerce.single-product .woocommerce-tabs{padding-top:0;}

.woocommerce.single-product .woocommerce-tabs .tabs.wc-tabs{display: none !important}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    padding-top: 40px !important;
    margin-bottom: -35px;
    display: block;
    float: left;
    width: 100%;
    color:#333333;
    font-family:Helvetica-LT !important;
}


.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel p{
    font-weight:500;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel .vc_row {
    margin-left: -15px;
    margin-right: -15px;
    max-width: unset !important;
    width: unset !important;
}

/*.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel > .vc_row:not(:last-of-type){margin-bottom: 35px}*/

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel > .vc_row.product-list{margin-bottom:0;}

/*.woocommerce.single-product article > .related{
    margin-top: 0;
    padding-top: 65px;
}

.woocommerce.single-product article > .related >h2{
    --fontSize: 30px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

@media (max-width: 689.98px){
    .woocommerce.single-product article > .related >h2{
        --fontSize: 27px;
    }
}*/

/*Cart & Checkout*/
.woocommerce-cart article > .entry-content > *,
.woocommerce-checkout article > .entry-content > *{
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

.ct-woocommerce-cart-form{
    grid-column-gap: var(--woo_col_gap);
    grid-row-gap: 35px;
}

form.woocommerce-checkout {
    grid-column-gap: var(--woo_col_gap);
    grid-row-gap: 35px;
}

/*cart modal*/
.ct-cart-content .product_list_widget .product-data{
    font-size: 14px;
}

.ct-cart-content .product_list_widget .product-data .product-title{
    font-size: 16px;
}

/*My Account*/
.woocommerce-account article > .entry-content > *{
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

.woocommerce-MyAccount-navigation ul{padding-left: 0}

.woocommerce-account .ct-acount-nav{
    margin-inline-end: var(--woo_col_gap);
}

.woocommerce-account .ct-woo-unauthorized .woocommerce-form-login__rememberme{margin-bottom: 20px}

@media only screen and (max-width: 999.98px) {  
    .woocommerce-account .ct-acount-nav{
        --woo_col_gap: 30px;
    }
}

@media only screen and (max-width: 689.98px) {  
    .woocommerce-account .ct-acount-nav{
        margin-inline-end: 0;
    }
}

/*Post page*/
body.single-post article > .entry-content > :not(.alignfull):not(.alignleft):not(.alignright){
    width: 100%;
    max-width: 100%;
}

body.single-post article > .entry-content > [class*="vc"] {
    width: auto !important;
    max-width: unset !important;
}

body.single-post #main > [class*="ct-container"] {
    padding-top: 100px;
    padding-bottom: 100px;
}

/*if need use full page for single post*/
/*test stage*/
/*body.single-post article > .entry-content{
    --side: calc(var(--row-spacing) + 15px);
    position: relative;
    left: calc(0px - var(--side));
    width: calc(100% + var(--side)*2);
}*/

@media only screen and (max-width: 999.98px) { 
    body.single-post #main > [class*="ct-container"] {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/*Post grid*/
[data-prefix="blog"] .entries[data-layout*="grid"]{
    grid-gap: 70px var(--woo_catalog_col_gap);
}

/*Tablet & Mobile*/
/*Stop animation on mobile*/
@media only screen and (max-width: 999.98px) {
    body .wpb_animate_when_almost_visible {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-animation: none;
        -moz-animation: none;
        -o-animation: none;
        animation: none;
    }

    html:not(.no-js) .aoswp-enabled [data-aos] {
        opacity: 1!important;
        -webkit-transform: none!important;
        transform: none!important;
        transition: none!important;
        transition-timing-function: unset!important;
        transition-duration: unset!important;
        transition-property: none!important;
    }
}


/*header*/
@media only screen and (max-width: 999.98px) {
    .mobile-menu{margin-bottom: 0 !important}

    .mobile-menu > ul{
        padding-left:0;
        border-top:none !important;
    }

    .mobile-menu > ul li.menu-item{margin-bottom: 0}

    .mobile-menu > ul[role="menubar"] > li.menu-item:last-child{border-bottom: none}

    .mobile-menu li.menu-item > a:hover,
    .mobile-menu li[class*="current"] > a,
    .mobile-menu li[class*="current"] > .ct-sub-menu-parent > a{
        font-weight: 600;
        color: #581C9E !important;
    }

    .mobile-menu li.menu-item .sub-menu > li.menu-item{
        border-bottom: none;
    }

    .mobile-menu li.menu-item .sub-menu > li.menu-item a{
        position: relative;
        isolation: isolate;
    }

    .mobile-menu li.menu-item .sub-menu > li.menu-item a:before{display: none}

    .mobile-menu li.menu-item .sub-menu > li.menu-item a::after {
        content: '\f054';
        position: absolute;
        top: var(--menu-item-padding);
        left: -20px;
        display: block !important;
        z-index: -1;
        color: var(--customBodyText);
        font-family: var(--fontAwesome);
        font-weight: 900;
        font-size: 10px;
    }

    .mobile-menu [class*="children"] > ul{
        padding-left: 20px;
    }

/*    .mobile-menu li.menu-item .sub-menu > li.menu-item a:before{
        content:'\f105';
        position: absolute;
        top:50%;
        left: -20px;
        transform: translateY(-50%);
        width: auto;
        height: auto;
        background: none;
        display: block !important;
        font-weight: 900;
        font-size: 14px;
        font-family: var(--fontAwesome);
        color: inherit;
        opacity: 1;
    }*/

    /*only on this site*/
}

/*website Style*/
/*color text / heading */
.all-title{margin-bottom: 25px}

.subheading{
    margin-bottom: 20px;
    font-weight: 700;
}

.regular-font-heading h1,
.regular-font-heading h2,
.regular-font-heading h3,
.regular-font-heading h4,
.regular-font-heading h5,
.regular-font-heading h6,
.regular-font-heading.vc_custom_heading{
    font-weight: 400 !important;
}

.black-text{color: var(--black);}
.white-text{color: var(--white);}
.purple-text{color: #581C9E;}
.orange-text{color: #FF9843;}
.blue-text{color:#080a45}
.green-text{color: var(--green);}
.grey-text{color:#333333}
.light-purple-text{color:#2F0B65 !important}

/*Alignment*/
.justify-text{text-align: justify;}

/*Read More Button*/
.readmore{
    margin-bottom: 35px !important;
}

.readmore button.vc_general.vc_btn3{
    font-family: var(--fontFamily);
}

.readmore .vc_general.vc_btn3 {
    --btn-font-size:14px;
    --btn-line-height:calc( var(--btn-font-size)*1.3);
    --btn-radius:2em;
    --border-color:var(--red);
    --bg-color:var(--red);
    --font-color:var(--white);

    padding: 10px 20px;
    min-width: 120px;
    font-size: var(--btn-font-size);
    line-height: var(--btn-line-height);
    font-weight: 400;
    text-transform: initial;
    color: var(--font-color) !important;
    background-image: none !important;
    background: var(--bg-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--btn-radius) !important;
    position: relative;
    z-index: 1;
    isolation: isolate;
    -webkit-transition: var(--allTransition);
    transition: color 1.0s, background-color 1.0s ease;
    overflow: hidden;
}

.readmore .vc_general.vc_btn3::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 135%;
  height: 175%;
  background-color: #581C9E;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 1.0s ease, top 1.0s ease; 
  z-index:-1;
}


.readmore .vc_general.vc_btn3:hover {
    --bg-color:#581C9E;
    --font-color:#fff;
    --btn-radius:2em;
    border:1px solid #581C9E !important;
}


.readmore .vc_general.vc_btn3:hover::before {
  top: -25px; 
  transform: translateX(-50%) scale(1); 
}

/* .readmore.red .vc_general.vc_btn3{
    --bg-color:var(--red);
    --border-color:var(--red);
}

.readmore.red .vc_general.vc_btn3:hover {
    --bg-color:var(--white);
    --font-color:var(--red);
} */


.home-about .readmore.darkblue .vc_general.vc_btn3 {
  position: relative;
  padding: 12px 24px;
  font-size: 16px;
  color: white;
  background: linear-gradient(150deg, rgba(169, 49, 155, 1) 0%, rgba(254, 178, 248, 1) 100%) !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s, background-color 0.3s ease; 
}

.home-about .readmore.darkblue .vc_general.vc_btn3::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 135%;
  height: 175%;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 1.0s ease, top 1.0s ease; 
  z-index:-1;
}

/* Hover effect */
.home-about .readmore.darkblue .vc_general.vc_btn3:hover {
  color: purple;  /* Change text color to purple on hover */
  background-color: white !important; 
}

.home-about .readmore.darkblue .vc_general.vc_btn3:hover::before {
  top: -25px; 
  transform: translateX(-50%) scale(1); 
}



.readmore.darkblue .vc_general.vc_btn3 {
  position: relative;
  --bg-color:#581C9E;
  --border-color:#581C9E;
  cursor: pointer;
  overflow: hidden;
  transition: color 1s, background-color 1s ease; 
}

.readmore.darkblue .vc_general.vc_btn3::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 135%;
  height: 175%;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 1.0s ease, top 1.0s ease; 
  z-index:-1;
}

/* Hover effect */
.readmore.darkblue .vc_general.vc_btn3:hover {
  --bg-color:var(--white);
  --font-color:var(--darkblue); 
}

.readmore.darkblue .vc_general.vc_btn3:hover::before {
  top: -25px; 
  transform: translateX(-50%) scale(1); 
}

.readmore.long .vc_general.vc_btn3{
    width: 100%;
    text-align: left;
    max-width: 150px;
}

.readmore.cta .vc_general.vc_btn3:after{
    content: "\f178";
    position: absolute;
    top:50%;
    right:20px;
    transform: translateY(-50%);
    z-index: -1;
    display: block !important;
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: inherit;
}

/*make the row background image parallax*/
.fixed-bg{background-attachment: fixed;}

/*Image effect*/
/*Grow Effect*/
.grow-effect figure {
    overflow: hidden;
}

.grow-effect img {
    transform: scale(1);
    -webkit-transition: var(--imageTransition);
    transition: var(--imageTransition);
}

.grow-effect:hover img {
    transform: scale(1.05);
}

/*filter black and white*/
.img-filter-white img{
    filter: var(--filterWhite);
}

.img-filter-black img {
    filter: var(--filterBlack);
}

/*make image round or rounded*/
.round-image figure{
    overflow: hidden;
    border-radius: 50%;
}

.rounded-image figure{
    overflow: hidden;
    border-radius: var(--rounded-radius);
}

/*banner*/
/*.banner-with-trans-header{*/
/*    padding-top:40px;*/
/*}*/

/*home*/
.home-main-section {
    position: relative;
    isolation: isolate;
    padding-top: 100px !important;
    margin-top: -61px;
    z-index: 10;
}

.home-main-section:before,
.home-main-section:after {
    content:'';
    position:absolute;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
     -webkit-mask-image: url(./images/home-main-section-bg.svg);
    mask-image: url(./images/home-main-section-bg.svg);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat; 
    -webkit-mask-position: top center;
    mask-position: top center;
    z-index: -1;
}

.home-main-section:before{
    background: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/Home-about-bg.png') no-repeat center / cover;
    display: block !important;
    opacity:0.5;
}

.home-main-section:after {
    background: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/Home-about-bg.png') no-repeat center / cover;
    opacity: 1;
}

/*.home-main-section::after {*/
/*    content: '01';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: -2%;*/
/*    transform: translateY(-50%);*/
/*    color: var(--greyE6);*/
/*    font-size: 25vw;*/
/*    display: block !important;*/
/*    z-index: -1;*/
/*    font-weight: 700;*/
/*    font-family: var(--fontAcumin);*/
/*    -webkit-text-fill-color: transparent;*/
/*    -webkit-text-stroke-width: 1px;*/
/*    -webkit-text-stroke-color: #004696;*/
/*    opacity: 0.2;*/
/*    line-height: 1;*/
/*    letter-spacing: 0;*/
/*}*/

.home-about{
    padding-bottom: 35px;
}

/*.home-about .wpb_text_column {*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    max-width: 580px;*/
/*}*/

.home-counter-row{padding-bottom: 100px}

.home-counter-row > .wpb_column:nth-child(2n){margin-top: 50px}

.home-counter-row > .wpb_column > .vc_column-inner > .wpb_wrapper{
    border-radius: 10px;
    padding:20px 20px;
    background: #fff;
    position: relative;
    isolation: isolate;
    overflow:hidden;
}

/*.inner-flex-box> .wpb_column > .vc_column-inner > .wpb_wrapper{*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    gap:20px;*/
/*}*/

.inner-flex-box{padding-bottom: 10px}

.inner-flex-box > .wpb_column > .vc_column-inner > .wpb_wrapper > *{margin-bottom: 0 !important}

.inner-flex-box .wpb_single_image img{
    width: auto;
    max-height: 50px;
}

.evc-counter{
    margin-bottom: 35px;
}

.home-counter-row .evc-counter .evc-c-digit {
    color: var(--white);
    height: auto;
    line-height: 1;
    font-size: 40px;
    font-weight: 700;
    font-family: var(--fontFamily);
}

.counter-plus.evc-counter .evc-c-digit:after{
    content: '+';
    margin-left: 3px;
}

.home-counter-row .arrow-btn-html{text-align: right;}

.home-counter-row .arrow-btn-html a{
    color: var(--white);
    font-size: 25px;
}

.home-counter-row .arrow-btn-html a:hover{color: var(--green);}

.home-product-section{    
    position: relative;
    isolation: isolate;
    padding-top: 100px !important;
    padding-bottom: 65px;
    z-index: 10;
    overflow: hidden;
}

/*.home-product-section:after {*/
/*    content: '02';*/
/*    position: absolute;*/
/*    bottom: -12.5%;*/
/*    left: -6%;*/
/*    color: var(--greyE6);*/
/*    font-size: 25vw;*/
/*    display: block !important;*/
/*    z-index: -1;*/
/*    font-weight: 700;*/
/*    font-family: var(--fontAcumin);*/
/*    -webkit-text-fill-color: transparent;*/
/*    -webkit-text-stroke-width: 1px;*/
/*    -webkit-text-stroke-color: #004696;*/
/*    opacity: 0.2;*/
/*    line-height: 0.8;*/
/*    letter-spacing: 0;*/
/*}*/

.home-product{padding-bottom: 35px}
.home-product-slider .woocommerce ul.products li:nth-child(2n+1){margin-top: 50px}
.home-product-slider .woocommerce ul.products li:nth-child(2n){margin-bottom: 50px;}

.home-product-slider .woocommerce ul.products li {
    --rounded-radius: 0;
    border-radius: var(--rounded-radius);
    border: none;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px 60px;
    flex-wrap: wrap;
    position: relative;
    isolation: isolate;
}
@media only screen and (min-width: 768px){
    /*.home-product-slider .woocommerce ul.products li:nth-child(3) .ct-image-container img{*/
    /*    transform: scaleX(-1);*/
    /*}*/
    
    .package-cta .package-img{
    margin-top:-100px;
    }
    
    .product-details-row .numbering{
        left:0;
    }
    
}
/*.home-product-slider .woocommerce ul.products li:before {
    content: "\2b";
    position: absolute;
    top: 20px;
    left: 32px;
    z-index: 1;
    display: block !important;
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: var(--siteBodyText);
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    opacity: 0;
    font-size: 20px;
}

.home-product-slider .woocommerce ul.products li:hover:before{
    opacity: 1;
}*/

.home-product-slider .woocommerce ul.products li .product-content{
    flex:1;
}

.home-product-slider .woocommerce ul.products li > :first-child{
    width: 100%;
    flex-basis: 100%;
    position: relative;
    isolation: isolate;
}

.home-product-slider .woocommerce ul.products li > :first-child:before {
    content: "\2b";
    position: absolute;
    top: 4.45%;
    left: 9.4%;
    z-index: 1;
    display: block !important;
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: var(--siteBodyText);
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    opacity: 0;
    font-size: 20px;
}

.home-product-slider .woocommerce ul.products li > :first-child:hover:before{
    opacity: 1;
}

.woocommerce ul.products li .ct-image-container{
    border: 1px solid #e2e3e4 !important;
    background: #fff;
    background-image: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/Product-background.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    border-radius: 15px;
    margin-bottom: 0;
    transition: 500ms linear;
}
    
/*.home-product-slider .woocommerce ul.products li .ct-image-container{*/
/*    --mask-p: 100% 100%;*/
/*    --mask-s: 200% 200%;*/
/*    border: 1px solid #e2e3e4 !important;*/
/*    background: #e2e3e4;*/
/*    border-radius: 15px;*/
/*    display: block;*/
/*    margin-bottom: 0;*/
/*    position: relative;*/
/*    isolation: isolate;*/
/*    overflow: hidden;*/
/*    -webkit-mask-image: url('./images/product-slider-mask.svg'));*/
/*    -webkit-mask-size: var(--mask-s);*/
/*    -webkit-mask-repeat: no-repeat;*/
/*    -webkit-mask-position:var(--mask-p);*/

/*    mask-image: url('./images/product-slider-mask.svg');*/
/*    mask-size: var(--mask-s);*/
/*    mask-repeat: no-repeat;*/
/*    mask-position: var(--mask-p);*/
/*    -webkit-transition: var(--allTransition);*/
/*    transition: var(--allTransition);*/
/*}*/

.home-product-slider .woocommerce ul.products li:hover .ct-image-container{
    /*--mask-p: 0 0;*/
    /*--mask-s: 100% 100%;*/
    border-top-left-radius: 10em !important;
}
.home-product-slider .woocommerce ul.products li .ct-image-container:before{display: none !important}
/*.home-product-slider .woocommerce ul.products li .ct-image-container:after {*/
/*.woocommerce ul.products li .ct-image-container:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 100%;*/
/*    transform: translate(-50%,-50%);*/
/*    width: auto;*/
/*    height: 100%;*/
/*    background: var(--grey43);*/
/*    display: block !important;*/
/*    z-index: -1;*/
/*    opacity: 0.1;*/
/*    border-radius: 50%;*/
/*    aspect-ratio: 1/1;*/
/*}*/

/*.home-product-slider .woocommerce ul.products li .ct-image-container img {*/
.woocommerce ul.products li .ct-image-container img {
    aspect-ratio: 358/448 !important;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
}

.home-product-slider .woocommerce ul.products li .product-content .woocommerce-loop-product__title{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3 !important;
    text-align: left;
}

.home-product-slider .woocommerce ul.products li .product-content .entry-excerpt,
.home-product-slider .woocommerce ul.products li .product-content .ct-woo-card-actions{display: none}

.home-product-slider .readmore {
    padding-top: 70px;
}

.carousel-slider .owl-item{
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}
.carousel-slider .owl-item.active:nth-of-type(2n){
    margin-top: 50px;
}

.carousel-slider .carousel-slider__product{
    box-shadow: none !important;
    position: relative;
    isolation: isolate;
}


.carousel-slider .carousel-slider__product:before {
    content: "\2b";
    position: absolute;
    top: 20px;
    left: 32px;
    z-index: 1;
    display: block !important;
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: var(--siteBodyText);
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    opacity: 0;
    font-size: 20px;
}

.carousel-slider .owl-item:hover .carousel-slider__product:before{
    opacity: 1;
}

.carousel-slider .carousel-slider__product > a:first-child {
    --mask: none;
    border: 1px solid #e2e3e4 !important;
    background: #e2e3e4;
    border-radius: 15px;
    display: block;
    margin-bottom: 20px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    -webkit-mask-image: var(--mask);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-image: var(--mask);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}

.carousel-slider .owl-item:hover .carousel-slider__product > a:first-child{
    --mask: url('./images/product-slider-mask.svg');
}

.carousel-slider .carousel-slider__product > a:first-child:after{
    content: '';
    position: absolute;
    top:50%;
    right:0;
    transform: translate(0,-50%);
    width: 60%;
    height: 100%;
    background: var(--grey43);
    display: block !important;
    z-index: -1;
    opacity: 0.1;
    border-radius: 10em 0 0 10em;
}

.carousel-slider .carousel-slider__product > a:first-child img{
    aspect-ratio: 358/448;
    object-fit: contain;
    object-position: center;
}

.carousel-slider .carousel-slider__product .woocommerce-loop-product__title{
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3 !important;
    margin-top: 20px !important;
    text-align: left;
}

.home-video-section{    
    position: relative;
    isolation: isolate;
    padding-top: 100px !important;
    padding-bottom: 65px;
    z-index: 10;
    overflow: hidden;
}

.facebook-section:after {
    content: '03';
    position: absolute;
    top: 28%;
    right: -1%;
    transform: translateY(-50%);
    color: var(--greyE6);
    font-size: 25vw;
    display: block !important;
    z-index: -1;
    font-weight: 700;
    font-family: var(--fontAcumin);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #024EC5;
    opacity: 0.2;
    line-height: 0.5;
    letter-spacing: 0;
}

.home-video{padding-bottom: 35px}

.home-video-slick{
    margin-left: var(--row-spacing) !important;
    width: 115%;
    position: relative;
    isolation: isolate;
}

.home-video-slick .slick-track .wpb_column{
    margin-right: 30px;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}

.home-video-slick .slick-track:before,
.home-video-slick .slick-track:after{
    display: none !important;
}

.home-video-slick .slick-arrow{
    z-index: 99;
    color: transparent;
    width: 50px;
    height:50px;
    overflow:hidden;
    background: var(--green);
    opacity: 0.8 ;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    border-radius: 50%;
}

.home-video-slick .slick-arrow:hover{
    opacity: 1;
}

.home-video-slick .slick-arrow:after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    display: block !important;
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: var(--white);
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    opacity: 1;
    font-size: 20px;
}

.home-video-slick .slick-prev.slick-arrow:after{content: '\f177'}
.home-video-slick .slick-next.slick-arrow:after{content: '\f178'}

.home-video-slick .slick-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
     display: none !important; 
}

.home-video-slick .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 34.4%;
}

.home-video-slick .wpb_column > .vc_column-inner > .wpb_wrapper{
    position: relative;
    isolation: isolate;
}

.home-video-slick .video-poster figure{
    --mask-p: 100% 100%;
    --mask-s: 150% 150%;
    border-radius: 15px;
    overflow: hidden;

    -webkit-mask-image: url('./images/cover-mask-no-corner.svg');
    -webkit-mask-size: var(--mask-s);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: var(--mask-p);

    mask-image: url('./images/cover-mask-no-corner.svg');
    mask-size: var(--mask-s);
    mask-repeat: no-repeat;
    mask-position: var(--mask-p);
    overflow: hidden;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}

.home-video-slick .wpb_column:hover .video-poster figure{
    --mask-p: 0 0;
    --mask-s: 100% 100%;
}

.home-video-slick .slick-track .slick-active:nth-of-type(2n-1){
    margin-top:50px;
}

/*.home-video-slick .slick-track div.slick-active:nth-of-type(5){}*/

.home-video-slick .video-poster*{
    width: 100%;
}

.home-video-slick .video-poster{
    position: relative;
    isolation: isolate;
}

.home-video-slick .video-poster:before {
    content: "\2b";
    position: absolute;
    top: 3.1%;
    left: 4.7%;
    z-index: 1;
    display: block !important;
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: var(--white);
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    opacity: 0;
    font-size: 20px;
}

.home-video-slick .wpb_column:hover .video-poster:before{
    opacity: 1;
}

.home-video-slick .video-poster img{
    aspect-ratio: 638/513;
    object-fit: cover;
    object-position: center;
    height: auto;
}

.home-video-slick .video-poster[class*="popmake"] figure{
    position: relative;
    isolation: isolate;
}

.home-video-slick .video-poster[class*="popmake"] figure:after {
    content: '\f04b';
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: var(--white);
    opacity: 0.7;
    display: block !important;
    z-index: 5;
    font-size: 40px !important;
    position: absolute;
}

.home-download-enquiry-section{
    position: relative;
    isolation: isolate;
    /*padding-top: 100px !important;*/
    padding-bottom: 65px;
    z-index: 10;
    overflow: hidden;
}

.home-download-enquiry-section:before{
    content: '';
    position: absolute;
    width: 100%;
    top:0;
    left: 0;
    height: 100%;
    background: linear-gradient(0deg, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0.6) 19%, rgba(255,255,255,0.89) 41%, rgba(255,255,255,1) 61%);
/*    opacity: 0.8;*/
    display: block !important;
    z-index: -1;
}

/*.home-download-enquiry-section:after {*/
/*    content: '02';*/
/*    position: absolute;*/
/*    bottom:25%;*/
/*    left: 0%;*/
/*    transform: translateY(50%);*/
/*    color: var(--greyE6);*/
/*    font-size: 25vw;*/
/*    display: block !important;*/
/*    z-index: -1;*/
/*    font-weight: 700;*/
/*    font-family: var(--fontAcumin);*/
/*    -webkit-text-fill-color: transparent;*/
/*    -webkit-text-stroke-width: 1px;*/
/*    -webkit-text-stroke-color: #004696;*/
/*    opacity: 0.2;*/
/*    line-height: 1;*/
/*    letter-spacing: 0;*/
/*}*/

.home-catalog{padding-bottom: 65px}

.home-catalog > .wpb_column{
    position: relative;
    isolation: isolate;
}

.home-catalog > .wpb_column:not(:last-child):after{
    content: '';
    position: absolute;
    top:35px;
    right: 0;
    width: 1px;
    height: calc(100% - 105px);
    background: #B5BFD2;
    display: block !important;
    z-index:-1;
}

.home-catalog .wpb_single_image img{
    width: auto;
    max-height: 300px;
}

.home-catalog > .wpb_column:nth-child(1) > .vc_column-inner > .wpb_wrapper{
    padding-right: calc(var(--inbox) + 15px);
}

.home-catalog > .wpb_column:nth-child(2) > .vc_column-inner > .wpb_wrapper{
    padding-left: calc(var(--inbox) + 15px);
}


.home-cta-title > .wpb_column:first-child {
    background: linear-gradient(50deg, rgba(19, 0, 41, 1) 0%, rgba(46, 10, 100, 1) 77%);
    position: relative;
    isolation: isolate;
}

/*.home-cta-title > .wpb_column:first-child,*/
.package-cta-title > .wpb_column:first-child,
.package-cta-title-1 > .wpb_column:last-child{
    background: #080a45;
    position: relative;
    isolation: isolate;
}

.home-cta-title > .wpb_column:first-child,
.package-cta-title > .wpb_column:first-child{
    border-top-right-radius: 50px;
}

.package-cta-title-1 > .wpb_column:last-child{
    border-top-left-radius: 50px;
}


.home-cta-title > .wpb_column:first-child > .vc_column-inner{
    padding-top:70px !important;
    padding-bottom: 35px;
}

.package-cta-title > .wpb_column:first-child > .vc_column-inner,
.package-cta-title-1 > .wpb_column:last-child > .vc_column-inner{
    padding-top:35px;
}



.home-cta-title > .wpb_column:first-child:before {
    content: '';
    top: 0;
    position: absolute;
    width: 9999px;
    height: 100%;
    background: linear-gradient(0deg, rgba(19,0,41,1) 0%, rgba(26,2,57,1) 100%);
    display: block !important;
    z-index: -1;
}

/*.home-cta-title > .wpb_column:first-child:before,*/
.package-cta-title > .wpb_column:first-child:before,
.package-cta-title-1 > .wpb_column:last-child:before {
    content:'';
    top:0;
    position: absolute;
    width: 9999px;
    height: 100%;
    background: inherit;
    display: block !important;
    z-index: -1;
}

.home-cta-title > .wpb_column:first-child:before,
.package-cta-title > .wpb_column:first-child:before{
    right: calc(100% - 15px);
}

.package-cta-title-1 > .wpb_column:last-child:before{
 
    left: calc(100% - 15px);
}
.home-cta{
    margin-top: -177px;
    align-items:flex-end;
}

.masked-img.wpb_single_image figure{
    position: relative;
    isolation: isolate;

    -webkit-mask-image: url('./images/cover-mask-no-corner.svg');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-image: url('./images/cover-mask-no-corner.svg');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    border-radius:var(--rounded-radius);
    overflow: hidden;
}

.masked-img-square-type.wpb_single_image figure{
    position: relative;
    isolation: isolate;

    -webkit-mask-image: url('./images/cover-mask-square-type.svg');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-image: url('./images/cover-mask-square-type.svg');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    border-radius:var(--rounded-radius);
    overflow: hidden;
}

.home-cta .wpb_single_image img{
/*    width: auto;*/
    max-height: 500px;
    object-position: center;
    object-fit:cover;
}

.home-cta .wpb_single_image *{
    width: 100%;
}

.home-cta > .wpb_column:nth-child(1) > .vc_column-inner > .wpb_wrapper{
    width: clamp(0px, 100%, 520px);
    margin-right: auto;
}

/*about*/
.about-main-section{
    padding-top: 100px !important;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-bottom:30px;
}

.about-main-section:after {
    content: '01';
    position: absolute;
    bottom: -20%;
    left: -2%;
    color: var(--blue);
    font-size: 25vw;
    display: block !important;
    z-index: -1;
    font-weight: 700;
    font-family: var(--fontAcumin);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #004696;
    opacity: 0.2;
    line-height: 0.8;
    letter-spacing: 0;
}

.about-main{
    padding-bottom: 35px;
}

.about-main > .wpb_column > .vc_column-inner > .wpb_wrapper{
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.about-main-cert{padding-bottom: 65px}

.about-main-cert > .wpb_column > .vc_column-inner > .wpb_wrapper{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:30px;
    flex-wrap: wrap;
}

.about-main-cert .wpb_single_image img {
    max-width: 125px;
    max-height: 100px;
    width: auto;
}

.about-lafeeder-section {
    position: relative;
    isolation: isolate;
    padding-top: 100px !important;
    z-index: 10;
    overflow: hidden;
}

.about-lafeeder-section:before{
    content:'';
    position:absolute;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
    background: #2F0B65;
    display: block !important;
    z-index: -1;
    -webkit-mask-image: url(./images/home-main-section-bg.svg);
    mask-image: url(./images/home-main-section-bg.svg);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat; 
    -webkit-mask-position: top center;
    mask-position: top center;
}

.about-lafeeder-section:after {
    content: '02';
    position: absolute;
    bottom: -10%;
    right: -4.6%;
    color: var(--greyE6);
    font-size: 25vw;
    display: block !important;
    z-index: -1;
    font-weight: 700;
    font-family: var(--fontAcumin);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    opacity: 0.2;
    line-height: 0.8;
    letter-spacing: 0;
}

.about-lafeeder{padding-bottom: 65px}

.about-choose-us-section{
    padding-top: 100px !important;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.about-choose-us-section:before{
    content: '';
    position: absolute;
    width: 100%;
    top:0;
    left: 0;
    height: 100%;
    background: linear-gradient(180deg, #FFF 20%, rgba(255, 255, 255, 0.45) 100%);
    display: block !important;
    z-index: -1;
}

.about-choose-us-title{}

.about-counter-row.home-counter-row > .wpb_column:nth-child(2n+1) {
    margin-top: 50px;
}

.about-counter-row.home-counter-row > .wpb_column:nth-child(2n) {
    margin-top: 0;
}

.about-vm-section{
    padding-top: 100px !important;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.about-vm-section::after {
    content: '03';
    position: absolute;
    top: 12%;
    right: -2%;
    color: var(--greyE6);
    font-size: 25vw;
    display: block !important;
    z-index: -1;
    font-weight: 700;
    font-family: var(--fontAcumin);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #004696;
    opacity: 0.2;
    line-height: 0.5;
    letter-spacing: 0;
}

.about-vm-title{padding-bottom: 35px}

.about-vm{
    padding-bottom: 100px !important;
}

.about-vm > .wpb_column > .vc_column-inner > .wpb_wrapper,
.about-vm .slick-track > .wpb_column > .vc_column-inner > .wpb_wrapper{
    background: #2F0B65;
    border-radius: var(--rounded-radius);
    padding:35px 30px 1px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap:30px;
}

.about-vm > .wpb_column > .vc_column-inner > .wpb_wrapper > *,
.about-vm  .slick-track > .wpb_column > .vc_column-inner > .wpb_wrapper > *{
    flex:1;
}

.about-vm .wpb_column > .vc_column-inner > .wpb_wrapper {
    height: 100%;
}
.vm-text-box{padding-top: 35px}

/*Catalog*/
.catalog-row{
    padding-top: 100px !important;
    padding-bottom:65px;
}

.catalog-row .wpb_single_image{margin-bottom: 20px}

.hover-masked-img.wpb_single_image figure{
    --mask-p: 100% 100%;
    --mask-s: 200% 200%;
    position: relative;
    isolation: isolate;

    -webkit-mask-image: url('./images/cover-mask-no-corner.svg');
    -webkit-mask-size: var(--mask-s);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: var(--mask-p);

    mask-image: url('./images/cover-mask-no-corner.svg');
    mask-size: var(--mask-s);
    mask-repeat: no-repeat;
    mask-position: var(--mask-p);
    border-radius:var(--rounded-radius);
    overflow: hidden;
    -webkit-transition: var(--imageTransition);
    transition: var(--imageTransition);
}

.hover-masked-img.wpb_single_image:hover figure{
    --mask-p: 0 0;
    --mask-s: 100% 100%;
}

/*Video*/
.video-section{
    padding-top: 100px !important;
    padding-bottom: 30px;
}

.video-row > .wpb_column{
    padding-bottom: 35px;
}

.video-row .wpb_video_widget {
    margin-bottom: 20px;
    border-radius: var(--rounded-radius);
    overflow: hidden;
}

/*Contact*/
.contact-main-section{
    padding-top: 100px !important;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.contact-main-section:after {
    content: '01';
    position: absolute;
    bottom: -20.5%;
    right: -3%;
    font-size: 25vw;
    display: block !important;
    z-index: -1;
    font-weight: 700;
    font-family: var(--fontAcumin);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #004696;
    opacity: 0.2;
    line-height: 1;
    letter-spacing: 0;
}

.contact-main{padding-bottom: 65px}

.contact-main .wpb_single_image[class*="masked-img"] figure{
    --rounded-radius:15px;
}

.contact-main .company-name h4 {
    line-height: 1;
}

.contact-main .company-name .reg {
    font-weight: 400;
    font-size: 14px;
}

.contact-main .address .add{
    display: inline-block;
    padding-right: 3px;
}

.contact-main .operating-hour p:first-child{margin-bottom: 10px}

.contact-map{}

.contact-map .wpb_gmaps_widget{
    margin-bottom: 0;
}

.contact-map .wpb_gmaps_widget .wpb_wrapper{padding:0}

.contact-form-section{
    padding-top: 100px !important;
    padding-bottom: 65px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.contact-form-section:after {
    content: '02';
    position: absolute;
    bottom: -7%;
    left: -3.5%;
    color: var(--greyE6);
    font-size: 25vw;
    display: block !important;
    z-index: -1;
    font-weight: 700;
    font-family: var(--fontAcumin);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    opacity: 0.2;
    line-height: 0.5;
    letter-spacing: 0;
}

/*Woocomerce*/
/*sidebar*/
#sidebar .widget_text ul.product-items{
    padding-left: 0;
    list-style: none;
}

#sidebar .widget_text ul.product-items li.product-item:first-child{padding-top: 0}

#sidebar .widget_text ul.product-items li.product-item{
    padding:10px 0;
    /*border-bottom: 1px solid var(--siteBodyText);*/
    margin:0;
    position:relative;
}

#sidebar .widget_text ul.product-items li.product-item:before{
    content:'';
    position:absolute;
    width:100%;
    height:0;
    bottom:-1px;
    left:0;
    border-bottom: 1px solid var(--siteBodyText);
    display:block !important;
    z-index:-1;
}

#sidebar .widget_text ul.product-items li.product-item a{
    text-decoration: none;
}

#sidebar .widget_text ul.product-items li.product-item.current-product a{
    color: var(--linkHoverColor);
    font-weight: 600;
}

/*for mobile*/
@media only screen and (max-width: 999.98px) {
#sidebar .widget_text ul.product-items{
    border:1px solid var(--siteBodyText);
    /*border-bottom:none;*/
    border-radius:5px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    height:41.6px;
    overflow:hidden;
    position:relative;
    isolation:isolate;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}

#sidebar .widget_text ul.product-items.expand{
    height:100%;
}

#sidebar .widget_text ul.product-items:after{
    content:'\f107';
    position:absolute;
    top:10px;
    right:15px;
    color:inherit;
    font-family: var(--fontAwesome);
    font-weight: 900;
    transform:rotate(0);
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
}


#sidebar .widget_text ul.product-items.expand:after{
    transform:rotate(180deg);
}

#sidebar .widget_text ul.product-items li.product-item{
    padding:10px 15px !important;
    width:100%;
}

#sidebar .widget_text ul.product-items li.product-item.current-product{order:-1;}
}

/*Single products*/

/*.product-title-desc{
    padding-bottom:35px;
}*/

.product-list{}

.vc_custom_heading.product-image-title{
    margin-bottom: 35px;
    font-weight: 600;
}

.product-item-img{
    --mask : url('./images/product-mask.svg');
    --mask-p: 100% 100%;
    --mask-s: 200% 200%;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    isolation: isolate;
    padding:1px;
}

.product-list > .wpb_column:hover .product-item-img{
    --mask-p: 0 0;
    --mask-s: 100% 100%;
}

.product-item-img:before{
    --rounded-radius: 15px;
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
    background: var(--grey43);
    -webkit-mask-image: var(--mask);
    -webkit-mask-size: var(--mask-s);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: var(--mask-p);

    mask-image: var(--mask);
    mask-size: var(--mask-s);
    mask-repeat: no-repeat;
    mask-position: var(--mask-p);
    border-radius:var(--rounded-radius);
    overflow: hidden;
    -webkit-transition: var(--imageTransition);
    transition: var(--imageTransition);
}

.product-item-img *{
    width: 100%;
}

.product-item-img figure{
    --rounded-radius: 15px;
    position: relative;
    isolation: isolate;
    background: var(--white);
    -webkit-mask-image: var(--mask);
    -webkit-mask-size: var(--mask-s);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: var(--mask-p);

    mask-image: var(--mask);
    mask-size: var(--mask-s);
    mask-repeat: no-repeat;
    mask-position: var(--mask-p);
    border-radius:var(--rounded-radius);
    overflow: hidden;
    -webkit-transition: var(--imageTransition);
    transition: var(--imageTransition);
}

.product-item-img img {
    transform: scale(1);
    aspect-ratio: 500/432;
    object-fit: contain;
    object-position: center;
    -webkit-transition: var(--imageTransition);
    transition: var(--imageTransition);
}

.product-list > .wpb_column:hover .product-item-img img {
    transform: scale(1.05);
}

/*popup maker*/

.pum-theme-282 .theme-282 .vc_row > .wpb_column > .vc_column-inner > .wpb_wrapper > :last-child{margin-bottom: 0}

#popmake-386{
    background:#99999A;
    padding: 35px 15px 0;
}

/*mobile*/
/*home*/
@media only screen and (max-width: 999.98px) {
    .home-main-section {
        padding-top: 100px !important;
        margin-top: -10px;
        background: #f1f1f1;
    }

    .home-product-slider .woocommerce ul.products{
        --shop-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .home-main-section {
        padding-top: 70px !important;
    }

    .home-main-section:before {
        -webkit-mask-image: url(./images/home-main-section-bg-mobile.svg);
        mask-image: url(./images/home-main-section-bg-mobile.svg);
    }
    
    .home-main-section:after {
        -webkit-mask-image: url(./images/home-main-section-bg-mobile.svg);
        mask-image: url(./images/home-main-section-bg-mobile.svg);
    }

    /*.home-main-section:after {*/
    /*    content: '01';*/
    /*    position: absolute;*/
    /*    top: 29%;*/
    /*    right: -1.5%;*/
    /*    transform: none;*/
    /*}*/

    .home-main-section .home-about{
        position: relative;
        isolation: isolate;
    }

    /*.home-main-section .home-about:before {*/
    /*    content: '';*/
    /*    width: clamp(0px,45%,200px);*/
    /*    height: auto;*/
    /*    position: absolute;*/
    /*    bottom: -5%;*/
    /*    left: 0;*/
    /*    aspect-ratio: 7/5;*/
    /*    background: url('./images/home-section-bg-items-absolute.png');*/
    /*    background-size: contain;*/
    /*    background-position: center;*/
    /*    background-repeat: no-repeat;*/
    /*    display: block !important;*/
    /*    z-index: -1;*/
    /*}*/
    .home-counter-row > .wpb_column > .vc_column-inner > .wpb_wrapper{
        padding: 20px 15px 1px;
    }
    
    .home-counter-row > .wpb_column > .vc_column-inner > .wpb_wrapper .evc-counter{margin-bottom:19px;}
    
    .home-counter-row > .wpb_column > .vc_column-inner > .wpb_wrapper .arrow-btn-html {
        position: absolute;
        bottom: 0;
        right: 15px;
        margin-bottom:19px;
    }

    .home-counter-row > .wpb_column:nth-child(2n) {
        margin-top: 0;
    }

    .home-counter-row > .wpb_column{margin-bottom: 35px}

    .home-counter-row {padding-bottom: 35px;}
    
    .inner-flex-box .wpb_single_image img {
    	width: auto;
    	max-height: 40px;
    }

    .home-product-section {
        padding-top: 70px !important;
        padding-bottom: 35px;
        overflow: visible;
        z-index: 11;
    }

    .home-product-slider .woocommerce ul.products li .ct-image-container img {
        /*aspect-ratio: 43/23 !important;*/
        min-height: 250px;
    }

    .home-product-slider .woocommerce ul.products li > :first-child:before {
        opacity: 1;
        top: 4%;
        left: 5.6%;
    }

    .home-product-slider .woocommerce ul.products{
        --shop-columns: repeat(1, 1fr);
    }

    .home-product-slider{
        padding-left: 15px;
        padding-right: 15px;
    }

    .home-product-slider .woocommerce ul.products li .ct-image-container{
        /*-webkit-mask-image: url('./images/product-slider-mask-mobile.svg');*/
        /*mask-image: url('./images/product-slider-mask-mobile.svg');*/
        /*mask-size: 100% 100%;*/
        /*--mask-p: 0 0;*/
        /*--mask-s: 100% 100%;*/
    }
    
    .home-product-slider .woocommerce ul.products li:nth-child(2n+1){margin-top: 0}
    .home-product-slider .woocommerce ul.products li:nth-child(2n){margin-bottom: 0;}
    
    .home-product-slider .woocommerce ul.products{grid-row-gap: 70px;}

    .home-product-slider .readmore {padding-top: 35px;}

    .home-product-section:after {
        bottom: -2%;
        left: 0;
    }

    .home-video-slick .video-poster::before {
    	top: 2%;
    	left: 4%;
    }

    .home-video-slick {
    	width: calc(100% - 30px);
    	margin-left: auto !important;
    	margin-right: auto !important;
    }

    .home-video-slick .slick-track .wpb_column{margin-right: 0}

    .home-video-slick .slick-next {
        right: 0;
        top: calc(50% - 17.5px);
    }

    .home-video-section {
        padding-top: 70px !important;
        padding-bottom: 35px;
    }

    .home-video {padding-bottom: 0;}

    .home-video-section:after {
        bottom: -6%;
        left: 0;
    }
    
    .home-video-slick .slick-track .slick-active:nth-of-type(2n-1) {
    	margin-top:0;
    }

    .home-catalog > .wpb_column:not(:last-child){margin-bottom: 35px}

    .home-catalog > .wpb_column:not(:last-child):after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        right: unset;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        height: 1px;
        background: #B5BFD2;
        display: block !important;
        z-index: -1;
    }
    
    .home-catalog > .wpb_column:nth-child(1) > .vc_column-inner > .wpb_wrapper {
        padding-right: 0;
    }

    .home-catalog > .wpb_column:nth-child(2) > .vc_column-inner > .wpb_wrapper {
        padding-left: 0;
    }
    
    .home-catalog > .wpb_column:nth-child(1) .wpb_single_image{
        width:70%;
        margin-left:auto;
        margin-right:auto;
        text-align:center;
    }

    .home-catalog > .wpb_column:nth-child(2) .all-title{text-align: center !important}
    .home-catalog > .wpb_column:nth-child(2) .readmore{text-align: center !important}

    .home-download-enquiry-section {
        padding-top: 70px !important;
        padding-bottom: 35px;
    }

    .home-catalog {
        padding-bottom: 35px;
    }
    
    .home-cta-title.stretch-row{padding-right:15px !important;}
    .package-cta-title.stretch-row{padding-right:15px !important;}
    .package-cta-title-1.stretch-row{padding-right:15px !important;}

    .home-cta-title > .wpb_column:first-child > .vc_column-inner {
        padding-top: 35px !important;
        padding-bottom: 150px;
    }

    .home-cta {
        margin-top: -100px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .home-cta .wpb_single_image img {
        /* width: auto; */
        max-height: 300px;
        /*aspect-ratio: 430/230;*/
    }

    .home-download-enquiry-section::before {
        background: linear-gradient(180deg, #FFF 83%, rgba(255, 255, 255, 0.00) 100%);
    }

    .home-download-enquiry-section::after {
        top: 48%;
        right: 0;
    }
    
    .home-product {
    	padding-bottom: 0;
    }
    
    .home-counter-row{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .home-counter-row:before{
        display:none;
    }
}

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

    .home-product-slider .woocommerce ul.products li .product-content{order:2}

    .home-product-slider .woocommerce ul.products li > :first-child {
        order:1;
    }
}

/*about*/
@media only screen and (max-width: 768px) {
    .about-main-section {
        padding-top: 70px !important;
        padding-bottom:35px !important;
    }

    .about-main .subheading{text-align: left !important}

    .about-main .wpb_text_column > .wpb_wrapper > *{ 
        
        text-align:justify !important; 
        font-size:18px;
    }

    .about-main-cert .wpb_single_image img {
        max-width: 92px;
        max-height: 80px;
        width: auto;
    }

    .about-main-cert {
        padding-bottom: 35px;
    }

    .about-main {
        padding-bottom: 0;
    }

    .about-main-section:after {
        bottom: -1.6%;
        left: 0;
    }

    .about-lafeeder-section {
        padding-top: 70px !important;
    }

    .about-lafeeder {
        padding-bottom: 35px;
    }

    .about-lafeeder-section::before {
        -webkit-mask-image: url(./images/home-main-section-bg-mobile.svg);
        mask-image: url(./images/home-main-section-bg-mobile.svg);
        mask-size: 100% 100%;
    }

    .about-lafeeder .wpb_text_column > .wpb_wrapper > *{ text-align:justify !important; }

    .about-choose-us-section {
        padding-top: 70px !important;
    }

    .about-counter-row.home-counter-row > .wpb_column:nth-child(2n+1) {
        margin-top: 0;
    }

    .about-lafeeder-section::after {
        bottom: -1.4%;
        right: 0;
    }

    .about-vm-section {
        padding-top: 70px !important;
    }

    .about-vm-title {
        padding-bottom: 0;
    }

    .about-vm > .wpb_column,.about-vm .slick-track > .wpb_column{
        margin-bottom: 35px;
    }

    .about-vm > .wpb_column > .vc_column-inner > .wpb_wrapper,
    .about-vm .slick-track > .wpb_column > .vc_column-inner > .wpb_wrapper {
        background: #2F0B65;
        border-radius: var(--rounded-radius);
        padding: 35px 15px 1px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0 30px;
    }
    
    .about-vm .wpb_single_image img{
        aspect-ratio:38/21 !important;
        object-fit:cover;
        object-position:center;
    }

    .vm-text-box {
        padding-top: 0;
    }

    .about-vm {
        padding-bottom: 35px !important;
    }

    .about-vm-section::after {
        bottom: 0;
        left: 0;
    }
}

/*cataolog*/
@media only screen and (max-width: 768px) {
    .catalog-row .wpb_single_image img{
        aspect-ratio: 430/275;
        object-fit: cover;
        object-position: center;
    }

    .catalog-row > .wpb_column{margin-bottom: 35px}

    .catalog-row {
        padding-top: 70px !important;
        padding-bottom: 0;
    }
}

/*video*/
@media only screen and (max-width: 768px) {
    .video-section {
        padding-top: 70px !important;
        padding-bottom: 0;
    }
}

/*contact*/
@media only screen and (max-width: 768px) {
    .contact-main-section {
        padding-top: 70px !important;
    }

    .contact-main {
        padding-bottom: 35px;
    }

    .contact-form-section {
        padding-top: 70px !important;
        padding-bottom: 35px;
    }

    .contact-form-section:after {
        bottom: 0;
        left: 0;
    }

    .contact-main-section:after {
        bottom: -3%;
        right: -1.2%;
    }
}

@media only screen and (max-width: 999.98px) {
    .woocommerce ul.products li {
        gap: 20px 30px;
    }
}

/*woocom catalog*/
@media only screen and (max-width: 689.98px) {
    .woocommerce ul.products li {
        /*padding: 35px 15px;*/
        flex-direction: row;
        gap: 30px;
    }
    
    .woocommerce ul.products{grid-row-gap: 35px;}

    .woocommerce ul.products li .product-content{order:2}

    .woocommerce ul.products li > :first-child {
        width: 100%;
        flex-basis: 100%;
        order:2;
    }

    /*.woocommerce ul.products li .ct-image-container img {*/
    /*    aspect-ratio: 380/248 !important;*/
    /*}*/

    .woocommerce ul.products li .ct-image-container{margin-bottom: 0}

    .woocommerce ul.products li:nth-child(6n) .ct-image-container::before,
    .woocommerce ul.products li:nth-child(6n-1) .ct-image-container::before,
    .woocommerce ul.products li:nth-child(6n-2) .ct-image-container::before {
        transform: scaleX(1);
    }

    .woocommerce ul.products li .product-content .entry-excerpt {
        text-align: justify;
    }

    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel > .vc_row .wpb_text_column{
        text-align: justify;
        margin-bottom:0px !important;
    }

    .woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel > .vc_row:not(:last-of-type) {
        margin-bottom: 0;
    }

    .product-item-img img {
        aspect-ratio: 431/275;
    }

    .product-list > .wpb_column .product-item-img {
        --mask: url('./images/product-img-mobile.svg');
        --mask-p: 0 0;
        --mask-s: 100% 100%;
    }

    .product-list > .wpb_column{margin-bottom: 35px}

    body.woocommerce-page.single-product #main [class*="ct-container"] {
        padding-bottom: 35px;
    }

}


/*Infinity Window Flim*/
.text-grey12{
    color:#99999A;
}
.text-justify {
    text-align: justify;
}

.mb-35{margin-bottom:35px !important;}
.mb-15{margin-bottom:15px !important;}
.mb-0{margin-bottom:0px !important;}
.mt-35{margin-top:35px !important;}

.all-icon img {
    height: 50px;
    vertical-align: top;
    object-fit: contain;
    min-width: 48px !important;

}

.full-cover-image,
.full-cover-image *{
    width:100%;
}

.full-cover-image img{
    object-fit:cover;
}

.all-title span{
    font-size:45px;
}

.banner-overflow rs-fullwidth-wrap * {
    overflow: visible !important;
}

/*Home page*/

.inner-flex-box .wpb_column .vc_column-inner .wpb_wrapper .wpb_text_column{
    min-height:55px;
    font-weight:700;
}

.home-service-section .free-service .wpb_column .vc_column-inner{
    width:80%;
    margin:auto;
}

.home-service-section .free-service .wpb_column .vc_column-inner .wpb_wrapper{
    margin-bottom:15px;
}

.home-service-section{
    /*padding-top:100px !important;*/
    padding-bottom:100px;
}

/*.home-about:after {*/
/*    content: '01';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: -2%;*/
/*    transform: translateY(-50%);*/
/*    color: var(--blue);*/
/*    font-size: 25vw;*/
/*    display: block !important;*/
/*    z-index: 1;*/
/*    font-weight: 700;*/
/*    font-family: var(--fontAcumin);*/
/*    -webkit-text-fill-color: transparent;*/
/*    -webkit-text-stroke-width: 1px;*/
/*    -webkit-text-stroke-color: #004696;*/
/*    opacity: 0.2;*/
/*    line-height: 1;*/
/*    letter-spacing: 0;*/
/*}*/

.home-cta-title{
    margin-top:-100px;
    
}

.home-download-enquiry-section{
    overflow:visible;
}

.facebook-pic .wpb_column .vc_column-inner {
    padding-left:0px;
    padding-right:0px;
}

.facebook-pic .wpb_content_element{
    margin-bottom:0px;
}

.facebook-section{
    padding-top:100px !important;
    position:relative;
}

/*.facebook-row{*/
/*    padding-bottom:65px;*/
/*}*/
/*About*/
.about-choose-us-title{
    margin-bottom:35px;
}

/*.about-main-section:before{*/
/*    content:'';*/
/*    position:absolute;*/
/*    width: 100%;*/
/*    height:100%;*/
/*    top:0;*/
/*    left: 0;*/
/*    display: block !important;*/
/*    z-index: 0;*/
/*    background: url('./images/about-main-section-bg.png') no-repeat right / cover;*/
/*    opacity:0.2;*/
    
/*}*/

/*.banner-with-trans-header{*/
/*    overflow:visible !important;*/
/*}*/

/*Package page*/
.package-section:before{
    content:'';
    position:absolute;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
    display: block !important;
    z-index: -1;
    background: url('./images/line-layer.png') no-repeat right/ cover;
    opacity:0.2;
}

.package-section{
    padding-top:100px !important;
    padding-bottom:30px;
    position:relative;
}

.package-img{
    position:relative;
}

.package-cta{
    overflow:visible !important;
    align-items:flex-end;
}

.package-cta .wpb_single_image img{
/*    width: auto;*/
    object-position: center;
    max-height:450px;
    object-fit:contain;
}

.masked-img1.wpb_single_image figure,
.masked-img2.wpb_single_image figure{
    position: relative;
    isolation: isolate;

    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    border-radius:var(--rounded-radius);
    overflow: hidden;
}

.masked-img1.wpb_single_image figure{
    -webkit-mask-image: url('./images/cover-mask-no-corner-left.svg');
    mask-image: url('./images/cover-mask-no-corner-left.svg');
}

.masked-img2.wpb_single_image figure{
    -webkit-mask-image: url('./images/cover-mask-no-corner-right.svg');
    mask-image: url('./images/cover-mask-no-corner-right.svg');
}

.package-promotion-section{
    padding-top:70px !important;
    padding-bottom:35px;
}

.package-promotion-section:before{
    background: url('./images/package-background.png') no-repeat center / cover;
    display: block !important;
    opacity:0.1;
}

.package-promotion-section:after {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    
}

.package-promotion-section:before,
.package-promotion-section:after{
    content:'';
    position:absolute;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
    display: block !important;
    z-index: -1;
}


.package-promotion-section {
    position: relative;
    isolation: isolate;
    z-index: 10;
}

/*Careers*/
.careers-section{
    padding-top:100px;
    padding-bottom:100px;
}

.job-list-row {
    width: calc(100% - 30%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.job-list-row > div {
    position: relative;
    width: calc(50% - 35px);
}

.job-list-row > div{
    background-color:#E2E3E4;
   -webkit-mask-image: url('./images/shape-right.png');
    mask-image: url('./images/shape-right.png');
    mask-repeat:no-repeat;
    mask-size: 100% 100%;
    padding: 35px 30px 15px;
}

.job-list-row .wpb_text_column > div > p:first-child strong {
    font-size: 18px;
}

.application-form-section {
    position: relative;
    z-index:10;
}

.application-form-section:before{
    content:'';
    position:absolute;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
    display: block !important;
    z-index: 0;
    background: url('./images/application-form-bg.png') no-repeat center / cover;
    opacity:0.36;
    
}

.application-form-section:after{
    content:'';
    position:absolute;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
    display: block !important;
    z-index: -1;
    background: #000;
    opacity:0.4;
}

.form.application-form #send input{
    --border-color: var(--green1);
    --bg-color: var(--green1);
    background:var(--bg-color);
    border: 1px solid var(--border-color);
    width:100%;
}

.form.application-form #send:hover input{
    --bg-color:var(--white);
    --font-color:var(--green1);
    --border-color:var(--green1)
}

.form.application-form {
    grid-template-columns: repeat(6, 1fr);
}
.application-form-row .form #name { grid-area: 1 / 1 / 2 / 3; }
.application-form-row .form #phone { grid-area: 1 / 3 / 2 / 5; }
.application-form-row .form #email { grid-area: 1 / 5 / 2 / 7; }
.application-form-row .form #text { grid-area: 2 / 1 / 3 / 4; }
.application-form-row .form #file { grid-area: 2 / 4 / 3 / 7; }
.application-form-row .form #msg { grid-area: 3 / 1 / 4 / 7; }



.form.application-form #recaptcha,
.form.application-form #send{grid-column: 1/7;}


.form.application-form #file {
    height: var(--theme-form-field-height, 40px);
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: space-between;
    border-radius: var(--has-classic-forms, var(--form-field-border-radius, 3px));
    align-items: center;
}


.form.application-form [data-name*=file],
.form.application-form #file [data-name*=file] input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.form.application-form #file > p {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color:#424343;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    margin-bottom: 0;
}

.form.application-form #file > p:after {
    content: '\f07b';
    font-family: var(--fontAwesome);
    color: rgba(0 0 0 / 0.5);
}

.application-form-row{
    padding-top:100px;
    padding-bottom:65px;
}


@media only screen and (max-width: 768px) {
    .job-list-row {
        width: calc(100% - 30px) !important;
        flex-direction: column;
    }
    .job-list-row > div {
        width: 100%;
    }
}


/*Contact Page*/
.company-name h4{
    margin-bottom:0px;
}

.contact-form-section{
    background:#2F0B65;
}

/*.woocommerce ul.products li:nth-child(6n+1) .ct-image-container,*/
/*.woocommerce ul.products li:nth-child(6n+2) .ct-image-container,*/
/*.woocommerce ul.products li:nth-child(6n+3) .ct-image-container{*/
/*    transform:scaleY(-1);*/
/*}*/


/*product details*/
.product-details-row {
    position: relative;
}

.product-detaiks-row .wpb_column:first-child .vc_column-inner{
    position:relative;
}

.product-details-row .numbering {
    position: absolute;
    top:65%;
    transform: translateY(-50%);
    color: var(--greyE6);
    font-size: 21vw;
    display: block !important;
    z-index: -1;
    font-weight: 700;
    font-family: var(--fontAcumin);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #004696;
    opacity: 0.2;
    line-height: 1;
    letter-spacing: 0;
}

.product-details-row .details-box{
    background-color:#3e3e3f;
    /*column-count:2;*/
    border-radius:10px;
    padding:15px 0px;
}


.product-details-row .details-box table,
.product-details-row .details-box table *{
    border:0;
}

.product-details-row .details-box table {
    color:#fff;
}

.product-details-row .details-box table td {
    border-right: 1px solid #FF9843;
}

.product-details-row .details-box table td:nth-child(4) {
	border-right: 0;
}

.product-details-row .details-box table td{
    padding-left:0px;
}

/*.product-details-row .details-box:before{*/
/*    content: '';*/
/*    left: 51%;*/
/*    bottom: 23%;*/
/*    position: absolute;*/
/*    background: #FF9843;*/
/*    width: 1px;*/
/*    height: 71px;*/
/*}*/

.product-details-row .product-images{
    position:relative;
    overflow:hidden;
    border: 1px solid #424343 !important;
    border-radius: 15px;
}

.product-details-row .product-images:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #e2e3e4;
    margin-bottom:0;
    overflow:hidden;
    z-index:-1;
}

.product-details-row .product-images:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 94%;
    transform: translate(-50%,-50%);
    width: auto;
    height: 100%;
    background: var(--grey43);
    display: block !important;
    z-index: -1;
    opacity: 0.3;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.product-details-row{
    margin-bottom:35px;
}

.gallery-row{
    padding-top:125px;
    padding-bottom:65px;
}

.gallery-row .wpb_text_column .wpb_wrapper .home a,
.gallery-row .wpb_text_column .wpb_wrapper .products a{
    color:#99999A;
}

.gallery-row .wpb_text_column .wpb_wrapper .home a:hover,
.gallery-row .wpb_text_column .wpb_wrapper .products a:hover{
    color:#080a45;
}

.gallery-row .wpb_text_column p{
    display:flex;
    column-gap:5px;
}

.gallery-row .wpb_text_column{
    font-size:14px;
}

.gallery-row .vc_grid-item, .gallery-row .vc_grid-item > div {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-row .vc_grid-item .vc_gitem-zone {
    aspect-ratio: 5/6;
      transition: 500ms ease;
}
.gallery-row .vc_grid-item:hover .vc_gitem-zone {
    transform: scale(1.15);
}

.gallery-row{
    position:relative;
}

.gallery-row:before{
    content:'';
    position:absolute;
    width: 100%;
    height:100%;
    top:0;
    right: -100px;
    display: block !important;
    z-index: -1;
    background: url('./images/gallery-bg.png') no-repeat right / cover;
    opacity:0.2;
}

/*footer*/
#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"]  div#text-5 .textwidget{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"]  div#text-5 .textwidget p:first-child{
    grid-area: 1 / 1 / 2 / 3;
}
#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"]  div#text-5 .textwidget p:nth-child(2){
    grid-area: 2 / 1 / 3 / 2;
}


#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"]  div#text-2 .textwidget ul.product-items{
    display:flex;
    flex-wrap: wrap;
    row-gap: 15px;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] div#text-2 .textwidget ul.product-items li:not(:last-child),
#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] div#text-5 .textwidget p:nth-child(2){
    padding-right: 15px;
    /*border-right: 1px solid;*/
    margin-right: 15px;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"]  div#text-2 .textwidget ul.product-items li.product-item{
    padding-bottom:0px;
}

/*#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"]  div#text-2 .textwidget ul.product-items li.product-item:not(:last-child){*/
/*    border-right:1px solid #000;*/
/*    padding-right:20px;*/
/*}*/

/*#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"]  div#text-2 .textwidget ul.product-items li.product-item:first-child{*/
/*    padding-right:20px;*/
/*}*/

@media only screen and (max-width: 767.98px) {
    .home-cta .wpb_column:last-child .vc_column-inner{
        padding-right:0px;
    }
    
    .home-service-section{
        /*padding-top:70px !important;*/
        padding-bottom:70px;
    }
    
    .facebook-section{
        padding-top:70px !important;
    }
    
    .facebook-section:after{
        top: 4%;
        right: 0%;
    }
    
    .package-section{
        padding-top:70px !important;
        padding-bottom:35px;
    }
    
    .package-cta-mb{
        flex-direction: column-reverse;
    }
    
    .package-cta .wpb_column .vc_column-inner .wpb_wrapper .wpb_text_column{
        margin-top:0px !important;
    }
    
    .careers-section{
        padding-top:70px !important;
        padding-bottom:70px;
    }
    
    .application-form-row{
        padding-top:70px !important;
        padding-bottom:35px;
    }
    .form.application-form {
        display: flex;
        grid-gap: 20px;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        flex-wrap: nowrap;
    }
    
    .product-details-row .numbering{
        top:7%;
        right:0;
    }
    
    .product-details-row:nth-child(even){
        flex-direction: column-reverse;
    }
    
    .gallery-row{
        padding-top:70px;
        padding-bottom:45px;
    }
    
    .package-left .wpb_wrapper p{
        text-align:left !important;
    }
    .hesperiden.tparrows:before{
        display:none !important;
    }
    
}

#rev_slider_1_1_wrapper .hesperiden.tparrows:before{
    color:#000 !important;
}

#rev_slider_1_1_wrapper .hesperiden.tparrows{
    background:transparent !important;
}


.form.application-form div#send .wpcf7-spinner {
    top: auto;
    transform: initial;
}

@media only screen and (max-width: 999.98px) {
    #footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] div#text-5 .textwidget{
        display:block;
    }
    #footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] div#text-5 .textwidget p:nth-child(2){
        border-right:0px;
    }
}


/*woocommerce sidebar*/
@media only screen and (min-width: 1000px) {
    /*.woocommerce .ct-sidebar .iksm-container .iksm-term .iksm-terms-tree--children {*/
    /*    display: block !important;*/
    /*}*/
    /*.woocommerce .ct-sidebar .iksm-container .iksm-term .iksm-term__toggle {*/
    /*    display: none;*/
    /*}*/
    .woocommerce .ct-sidebar .iksm-container .iksm-terms > div > div > .iksm-term:not(:last-child) {
        margin-bottom: 0px;
    }
    /*.woocommerce .ct-sidebar .iksm-widget .widget-title {*/
    /*    display: none;*/
    /*}*/
    .woocommerce .ct-sidebar .widget-title{
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0,0,0,0.8);
        padding-bottom: 10px;
    }
    
}

.woocommerce .ct-sidebar .iksm-container .iksm-terms > div > div > .iksm-term:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.8);
}

/*.woocommerce .ct-sidebar .iksm-container .iksm-term .iksm-term__link > .iksm-term__shifts:before {*/
/*    width: 0 !important;*/
/*    min-width: 0 !important;*/
/*    max-width: 0 !important;*/
/*}*/

.woocommerce .ct-sidebar .iksm-container .iksm-term .iksm-term__link > .iksm-term__shifts {
    position: relative;
}
.woocommerce .ct-sidebar .iksm-container .iksm-term .iksm-term__link > .iksm-term__shifts:before {
    content: '\f054';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
}

.woocommerce .ct-sidebar .iksm-container .iksm-terms >  .iksm-terms-tree > div > .iksm-term > div > a.iksm-term__link {
    font-weight: 400;
    font-size: 16px;
}

/*.woocommerce .ct-sidebar .iksm-container .iksm-terms .iksm-terms-tree--children > div > .iksm-term {*/
/*    border-bottom: 1px solid #414042;*/
/*}*/


@media only screen and (max-width: 999.98px) {
    .woocommerce .ct-sidebar .iksm-widget .widget-title {
        position: relative;
        border: 1px solid #414042;
        border-radius: 5px;
        padding: 10px 8px;
        margin-bottom: 0;
    }
    .woocommerce .ct-sidebar .iksm-widget .widget-title:after {
        content: "\E817";
        font-family: "IksIcons";
        font-size: 16px;
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
        color: #000;
        transition: 300ms ease;
    }
    
    .woocommerce .ct-sidebar .iksm-widget .widget-title.minus:after {
        transform: translateY(-50%) rotate(180deg);
    }
    .woocommerce .ct-sidebar .iksm-widget .iksm-container {
        display: none;
        border: 1px solid #414042;
        border-top: 0;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        padding: 10px 8px 25px;
        transition: 300ms ease;
    }
    .woocommerce .ct-sidebar .iksm-widget .iksm-container.display {
        display: block;
    }
    /*.woocommerce .ct-sidebar .iksm-container .iksm-terms > div > div > div > div {*/
    /*    border-bottom: 1px solid #414042;*/
    /*}*/
    /*.woocommerce .ct-sidebar .iksm-container .iksm-terms > div > div > div.iksm-term--expanded > div  {*/
    /*    border-bottom: 0;*/
    /*} */
    .woocommerce .ct-sidebar .iksm-container .iksm-terms > div > div > div.iksm-term--expanded .iksm-terms-tree--children > div> div:last-child {
        border-bottom: 0;
    }
}

.about-main .wpb_text_column h4{
    font-weight:600 !important;
}

.contact-main .wpb_single_image img{
    scale:0.9;
}

#popmake-714 {
    background: #99999A;
}

.readmore.whatsapp .vc_general.vc_btn3{
    --bg-color:var(--whatsapp);
    --border-color:var(--whatsapp);
}

.readmore.whatsapp .vc_general.vc_btn3:hover {
    --bg-color:var(--white) !important;
    --font-color:var(--whatsapp) !important;
    border: 1px solid var(--whatsapp) !important;
}

.readmore.whatsapp .vc_general.vc_btn3::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 135%;
  height: 175%;
  background-color: #581C9E;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 1.0s ease, top 1.0s ease; 
  z-index:-1;
  display:none !important;
}

.readmore.whatsapp .vc_general.vc_btn3:after{
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    color: inherit;
	margin-left:10px;
}


/* additional by Jun Vun*/
.projectRow .wpb_single_image,
.projectRow .wpb_single_image *{
	object-fit:cover;
	width:100%;
}

.projectRow img{
	max-height:400px;
	width:auto;
}

.project-section{
	padding-top:100px !important;
	padding-bottom:65px !important;
}

@media only screen and (max-width: 768px){
	.project-section{
		padding-top:70px !important;
		padding-bottom:35px !important;
	}
}




/*Start new style*/


[data-column=end] [data-items=primary]>*:last-child {
    --margin: 0 0 0 30px;
}

.home-product-section {
    position: relative; /* This makes it the positioning context */}

.home-product-section:before {
    content: '';
    position: absolute;
    background-image: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/Background-1.png'); 
    background-size: cover; 
    background-position: center; 
    opacity: 0.2; 
    background-repeat:no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: block !important;
}


/*Product*/
.woocommerce-product-details__short-description p {
    padding-top: 20px;
    margin-bottom: 0px;
}

.woocommerce-product-details__short-description li {
    padding-top: 20px;
    font-family:Helvetica-LT !important;
}

.woocommerce-product-details__short-description {
   color:#333333;
}

.product[class*=gallery] .entry-summary .product_title,
.woocommerce.single-product .woocommerce-tabs .all-title {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
}

.column-count-2 ul {
    column-count: 2;
}

.woocommerce-product-details__short-description ul {
    padding-left: 15px;
}

.woocommerce-loop-category__title .count {
    display: none;
}

.woocommerce-product-details__short-description > :nth-child(4) {
    column-count: 3; 
}



/*Footer*/


#footer .social-icons {
    display: flex;
    flex-direction: row;
    gap: 10px; 
}

#footer .icon {
    display: flex;
    align-items: center;
    font-size: 25px; 
    padding-right:0px !important;
    margin-right:0px !important;
}


#footer .icon img {
    margin-right: 8px; 
    color: #fff; 
}

#footer .icon  {
    text-decoration: none; 
    color: #333; 
    transition: filter 0.3s ease;
}






.footer-cta {
    background: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/Home-enquire-bg.png?id=1037') no-repeat center / cover;
    background-attachment: fixed;
}
.footer-cta .home-cta-title {
    margin-left: 15px;
    margin-right: 15px;
}

.footer-cta .home-cta {
    padding-left: 15px;
    padding-right: 15px;
}





/*Font-Weight*/
.fw-300{
    font-weight:300;
}

.fw-400{
    font-weight:400;
}

.fw-500{
    font-weight:500;
}

.fw-700{
    font-weight:700;
}

.fw-800{
    font-weight:800;
}

.Font-LT{
font-family:Helvetica-LT !important;
}

/*Home-about hover effect*/

.home-counter-row > .wpb_column > .vc_column-inner > .wpb_wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
}



.home-counter-row > :nth-child(1) > .vc_column-inner > .wpb_wrapper::after {
  content: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/about-hover1.png'); /* Hover image */
  opacity: 0; 
}
.home-counter-row > :nth-child(2) > .vc_column-inner > .wpb_wrapper::after {
  content: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/about-hover2.png'); /* Hover image */
  opacity: 0; 
}
.home-counter-row > :nth-child(3) > .vc_column-inner > .wpb_wrapper::after {
  content: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/about-hover3.png'); /* Hover image */
  opacity: 0; 
}
.home-counter-row > :nth-child(4) > .vc_column-inner > .wpb_wrapper::after {
  content: url('https://blissbarcode.com.my/wp-content/uploads/2024/11/about-hover4.png'); /* Hover image */
  opacity: 0; 
}

.home-counter-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover::after {
  opacity: 1; 
  transform: scale(1.05); 
}

.text-block-hov {
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
  position:absolute;
  opacity: 0;  
  visibility: hidden;  
  transition: opacity 0.3s ease, visibility 0s 0.3s;  
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0 7px;
}

.text-block-hov p {
    margin-bottom: 0;
}



/* Hover Effect: Reveal the Text Block */
.home-counter-row >div > div > .wpb_wrapper:hover .text-block-hov {
  opacity: 1;  
  visibility: visible;  
  transition: opacity 0.3s ease, visibility 0s 0s;  
}


/*whatsapp button*/

.custom-field-button {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}
.custom-field-button > a {
    padding: 8px 25px;
    border-radius: 2rem;
    color: #fff;
    font-size: var(--btn-font-size);
    transition: var(--allTransition);
    overflow: hidden;
}

.custom-field-button > a.whatsapp-button {
    background-color: #25d366;
    border: 1px solid #25d366;
}

.custom-field-button > a.whatsapp-button:hover {
    background-color: #fff;
    color: #25d366;
}

.custom-field-button > a.pdf-button {
    background-color: #FF1B21;
    border: 1px solid #FF1B21;
}

.custom-field-button > a.pdf-button:hover {
    background-color: #fff;
    color: #FF1B21;
}


/*.whatsapp-button {*/
/*    font-family: var(--theme-font-family) !important;*/
/*    padding: var(--btn-padding);*/
/*    min-width: 120px;*/
/*    min-height: unset;*/
/*    font-size: var(--btn-font-size);*/
/*    line-height: var(--btn-line-height);*/
/*    font-weight: var(--btn-font-weight);*/
/*    text-transform: var(--btn-text-transform);*/
/*    color: #fff !important;*/
/*    background-image: none !important;*/
/*    background-color: #25d366 !important;*/
/*    border: #25d366 !important;*/
/*    border-radius: 40px !important;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    isolation: isolate;*/
/*    -webkit-transition: var(--allTransition);*/
/*    transition: var(--allTransition);*/
/*    overflow: hidden;*/
/*    display: inline-block !important;*/
/*    padding: 5px 15px;*/
/*    margin: 20px 0px;*/
/*}*/

/*.whatsapp-button:hover {*/
/*    background-color: #fff !important;*/
/*    color: #25d366 !important;*/
/*    border:1px solid #25d366 !important;*/
/*}*/


/*.pdf-button {*/
/*    font-family: var(--theme-font-family) !important;*/
/*    padding: var(--btn-padding);*/
/*    min-width: 120px;*/
/*    min-height: unset;*/
/*    font-size: var(--btn-font-size);*/
/*    line-height: var(--btn-line-height);*/
/*    font-weight: var(--btn-font-weight);*/
/*    text-transform: var(--btn-text-transform);*/
/*    color: #fff !important;*/
/*    background-image: none !important;*/
/*    background-color: #FF1B21 !important;*/
/*    border: #FF1B21 !important;*/
/*    border-radius: 40px !important;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    isolation: isolate;*/
/*    -webkit-transition: var(--allTransition);*/
/*    transition: var(--allTransition);*/
/*    overflow: hidden;*/
/*    display: inline-block !important;*/
/*    padding: 5px 15px;*/
/*    margin: 20px 0;*/
/*    margin-left: 25px;*/
/*}*/

/*.pdf-button:hover {*/
/*    background-color: #fff !important;*/
/*    color: #FF1B21 !important;*/
/*    border:1px solid #FF1B21 !important;*/
/*}*/

/*product*/
span.last-item {
    color: #581C9E;
}

.entry-content >* {
    width: 100% !important;
}



/*Header button*/

.ct-button{
    font-family: var(--theme-font-family) !important;
    padding: var(--btn-padding);
    min-width: 120px;
    min-height: unset;
    font-size: var(--btn-font-size);
    line-height: var(--btn-line-height);
    font-weight: var(--btn-font-weight);
    text-transform: var(--btn-text-transform);
    color: #fff !important;
    background-image: none !important;
    background-color: #581C9E !important;
    border: #581C9E !important;
    border-radius: 40px !important;
    position: relative;
    z-index: 1;
    isolation: isolate;
    /*-webkit-transition: var(--allTransition);*/
    transition: color 1s, background-color 1s ease;
    overflow: hidden;
    display: inline-block !important;
    padding: 5px 15px;
    margin: 20px 0;
    margin-left:15px;
}

.ct-button::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 135%;
  height: 175%;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 1.0s ease, top 1.0s ease; 
  z-index:-1;
}


.ct-button:hover {
    background-color: #fff !important;
    color:#581C9E !important;
    border:1px solid #581C9E !important;
}

.ct-button:hover::before {
  top: -10px; 
  transform: translateX(-50%) scale(1); 
}


.company-name img {
    max-height: 80px;
    max-width: fit-content;
}

.address p {
    display: flex
;
}

.wpb_text_column.address {
    margin-bottom: 20px !important;
}

/*Slick*/

/*.more-logo {*/
/*    margin: 0 auto;*/
/*    max-width: 80%; */

/*}*/

.more-logo img {
    width: 100%; 
    height: auto; 
    padding:15px;
}


.slick-prev:hover, .slick-next:hover {
   display:none;
}

.slick-prev{
    position: absolute;
    top: 20%;
    right: 100%;
    display:none;
}

.slick-next{
    position: absolute;
    left: 105%;
    top: 20%;
    display:none;
}


 .slick-arrow{
    z-index: 99;
    color: transparent;
    width: 50px;
    height:50px;
    overflow:hidden;
    background: transparent;
    opacity: 0.8 ;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    border-radius: 50%;
}

 .slick-arrow:hover{
    opacity: 1;
}

 .slick-arrow:after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    display: block !important;
    font-family: var(--fontAwesome);
    font-weight: 900;
    color: #484848;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    opacity: 1;
    font-size: 20px;
}

 .slick-prev.slick-arrow:after{content: '\f053'}
.slick-next.slick-arrow:after{content: '\f054'}

 .slick-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
     /*display: none !important; */
}

 .slick-next {
    position: absolute;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    right: -50px;
}


.home-logo-row.vc_row {
    margin-left: 0;
    margin-right: 0;
    padding-right: 15px;
    padding-left: 15px;
}


.product-gallery-row {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 50px;
}

.product-gallery-row > div {
    width: 100%;
}

.product-gallery-row > div > div {
    padding: 0 !important;
}

.product-gallery-row .wpb_single_image {
    margin-bottom: 0;
}

.product-gallery-row .wpb_single_image img {
    aspect-ratio: 1/1;
    max-height: 350px;
}


.product-gallery-row::before,
.product-gallery-row::after {
    display: none;
}
@media only screen and (min-width: 767px){
    .woocommerce-product-details__short-description ul.material-ul {
        column-count: 3;
    }
    .product-gallery-row {
        display: grid !important;
        grid-template-columns: repeat(3,1fr);
        grid-gap: 15px;
    }
    
}

/*Mobile View*/


@media only screen and (max-width: 767px){
    
    
    .home-about .wpb_text_column > .wpb_wrapper > h5 {
        font-size: 18px;
    }
    
    .home-main-section:before, .home-main-section:after {
        width: 250% !important;
    }
    
    body.woocommerce-page #main [class*="ct-container"] {
    margin-bottom: 0px !important;
    }
    
    .facebook-pic h3 {
    padding: 0 15px;
    }
    
    .slick-prev {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: -10px;
    }
    .slick-next {
    position: absolute;
    top: 45%;
    left: auto;
    transform: translateY(-50%);
    right: -5px;
    }
    
    /*Product*/
    div.woocommerce-product-gallery li {
    --thumbs-width: 20%;
    }
    
    .column-count-2 ul {
    column-count: 1;
    }
    
    .woocommerce-product-details__short-description ul {
    column-count: 1 !important;
    }
    
    
    .woocommerce ul.products li .ct-image-container img {
    aspect-ratio: 1/1 !important;
    padding: 50px;
    }
    
    .vc_row.wpb_row.home-logo-row {
    column-count: 3;
    }
    .product-gallery-sec .product-gallery-row:last-child {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 520px){
 
        /*#side-contact {*/
        /*    padding-right: 20px;*/
        /*}*/
 
        .floating-button {
            position: fixed;
            width: 35px;
            height: 35px;
            line-height: 35px;
        }
 
         .floating-button img {
            width: 35px !important;
            height: 35px !important;
        }
        
        .floating-button {
            bottom: 18px;
            right: 15px;
        }
             
        /*#side-contact {*/
        /*    padding-right: 40px;*/
        /*}*/
}
