/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */


/*Font face*/

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

@font-face {
  font-family: mondserrat;
  font-weight: 300;
  src: url('./fonts/Montserrat-Light.ttf')format("truetype");
}

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

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

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


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

.grow-effect img {
    -moz-transition: -moz-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.grow-effect:hover img {
    /*-moz-transition: -moz-transform 1s;*/
    /*-o-transition: -o-transform 1s;*/
    /*-webkit-transition: -webkit-transform 1s;*/
    /*transition: transform 1s;*/
    transform: scale(1.1);
}

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

.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);}

/*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: 200px;}
.floating-button_whatsapp.toogle{bottom:260px;}

/*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: 767px) {
    .floating-button{bottom:10px}

    .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;
    }
}

/*define variable*/
:root {
    --row-spacing: 85px;
    --primary-color: #c58931;
    --grey-color: #4d4d4d;
    --form-color: #00a89c;
    --secondary-grey: #f7f7f8;
    --fontFamily: 'mondserrat' !important;
    --font-awesome: 'Font Awesome 6 Free' !important;
    --gap: 100px;
    --padd: 65px;
    --line-color: rgba(0,0,0,0.5);
    --listIndent: 20px !important;
    --theme-color: #B1AA9A;
    --transition-effect:all 0.5s ease-in-out;
    --font-size-1:40px;
    --font-size-2:30px;
    --font-size-3:27px;
    --font-size-4:25px;
    --font-size-5:23px;
    --font-size-6:20px;
    --font-size-t:16px;
    --font-size-s:14px;
    --row-gap:100px;
    --side-gap:100px;
    --inner-row-gap:35px;
    --inner-side-gap:35px;
}

@media only screen and (max-width: 768px){
   :root {
        --row-spacing: 15px;
        --gap: 70px;
        --padd: 35px;
        --font-size-1:30px;
        --font-size-2:27px;
        --font-size-3:25px;
        --font-size-4:23px;
        --font-size-5:20px;
        --font-size-6:18px;
        --row-gap:70px;
        --side-gap:15px;
        --inner-row-gap:25px;
        --inner-side-gap:15px;
    }
}

/*overall*/
html,body {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  line-height: 1.3 !important;
}

@media only screen and (max-width: 768px) {
    body{
        overflow-x: hidden;
    }
}

preloader{display:none !important;}

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

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

.entry-content >* {margin-bottom: 0 !important; margin-top: 0 !important;}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.page .hero-section {display: none !important;}
.woocommerce .hero-section {display: block !important;}

/*container width*/
@media only screen and (min-width: 768px) {
    #header [data-row] > .ct-container,
    #footer [data-row] > .ct-container {
        width: auto;
        margin-left: var(--row-spacing);
        margin-right: var(--row-spacing);
        padding-left: 15px;
        padding-right: 15px;
    }
    #main > .ct-container {
        width: calc(100% - (var(--row-spacing) * 2) - 30px);
    }
   
}

/*header menu*/
#header ul.menu li a {
    font-family: var(--font);
    text-transform: uppercase;
    position: relative;
}

nav[class*=menu] li[class*=current-menu-]>a,
#header ul.menu > li.current_page_parent > a,
nav[class*=menu] li:hover > a,
li.current-menu-item > a,
ul.widget-menu li:hover > a,
.current-menu-parent > a{
    color: #B1AA9A !important;
}


#header ul.menu > li > a:after,
#header ul.menu > li.current_page_parent > a:after{
   /* content: '\f078' !important;*/
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    font-size: 12px;
    color: var(--primary-color);
    font-family: var(--font-awesome);
    font-weight: 900;
    background-color: transparent;
    right: auto;
    transition: .3s ease;
}

.parallax {
    background-attachment:  fixed !important;
  }

@supports (-webkit-appearance: none) {
  /* Styles specific to Safari, including iOS */
 .parallax {
    background-attachment:  scroll !important;
  }
}

#header ul.menu > li:last-child > a:after {
    left: 65%;
}

#header ul.menu > li:hover > a:after,
#header ul.menu li[class*=current-menu-] > a:after,
#header ul.menu > li.current_page_parent > a:after {
    opacity: 1;
    bottom: 30px;
}

#header ul.menu li:last-child a {padding-right: 0;}

#header [data-row*=top] [data-items*=primary] .ct-header-text {
    width: 100%;
}

#header [data-row*=top] [data-items*=primary] .entry-content {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
}

#header .header-contact {
    display: flex;
    gap: 65px;
    color: #fff;
    align-items: center;
    font-weight:300;
}

#header .header-contact .contact-details {margin-bottom: 0 !important;}

#header .header-contact .contact-details:before {
    color: #fff;
}

.is-search-form button.is-search-submit {
    background-color: transparent !important;
}

.is-search-form input.is-search-input {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.is-search-form .is-search-icon {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

/*#footer */
#footer .widget_media_image {
    margin-bottom: 15px;
    max-width:60%;
}

#footer [data-row*="middle"] > div {
    display: grid;
    /* grid-template-columns: auto minmax(min-content, 900px) auto; */
    /*grid-template-columns: auto 1fr auto auto;*/
    padding-bottom: 35px;
}
#footer .ct-widget:not(:first-child) {
    margin-top: 0;
}

#footer .widget-title {
    margin-bottom: 10px !important;
    font-family: 'Mondserrat' !important;
    font-size: 17px;
}

#footer .company-name {
    font-size:var(--font-size-6);
}

#footer .company-name small {
    display: block;
    padding-top: 7px;
}

#footer [data-column*=widget-area-2] {
    display: flex;
    flex-direction: row;
    gap: 15px 35px;
    flex-wrap: wrap;
}

.page-id-118 #footer [data-row*="middle"] {display: none;}
.break {
    display: block;
}

.contact-details {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px !important;
    line-height: 1.3;
}

.contact-details.address:before {content:'\f3c5';}
.contact-details.phone:before {content:'\f2a0';}
.contact-details.email:before {content:'\f0e0';}

.contact-details:before {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 15px;
    font-family: var(--font-awesome);
    font-weight: 900;
    color: #ffffff;
    display: block !important;
}

#footer ul li.current-menu-item > a,
#footer ul li:hover > a {
    font-weight: 400;
    color: var(--primary-color);
}


/*default font syle*/
.all-title {font-weight: 700 !important; margin-bottom: 15px !important;}

.title-20 {font-size: 20px;}
.title-25 {font-size: 25px;}
.small-title {font-size: 16px; font-weight: 400 !important; margin-bottom: 10px !important;}

.white-text {color: #fff;}

.font-18 {font-size: 18px;}


.fw-300 {font-weight: 300;}
.fw-500, .fw-500 strong {font-weight: 500 !important;}
.fw-600, .fw-600 strong {font-weight: 600 !important;}
.fw-700, .fw-700 strong {font-weight: 600 !important;}

.justify-text {text-align: justify !important;}

/*all gap*/
.top-padd {padding-top: var(--gap) !important;
    min-height:400px ;
    background-attachment: fixed;
}
.bttm-padd {padding-bottom: var(--padd);}

.top-padd-65 {padding-top: var(--padd);}
.bttm-padd-100 {padding-bottom: var(--gap);}

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

/*icon style*/
.all-icon.wpb_single_image img {
    max-height: 60px;
    object-fit: contain;
    width: auto;
}

.reverse-img {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    margin-bottom: 15px !important;
}

.reverse-img .wpb_singleimage_heading {
    font-size: 25px;
    font-weight: 600 !important;
    margin-bottom: 0;
    padding-top: 15px;
    color: #000;
}

.reverse-img.row {
    flex-direction: row-reverse;
    align-items: center;
    gap: 25px;
}

.reverse-img.row .wpb_singleimage_heading {
    padding-top: 0;
    margin-bottom: 0 !important;
}

.video-block iframe {
    aspect-ratio: 16/9;
    max-height: 500px;
}

/*button style*/
.readmore {margin-bottom: 35px !important;}

.readmore .vc_general.vc_btn3 {
    position: relative;
    font-family: var(--font) !important;
    font-weight: 400;
    font-size: 14px;
    background-image: none !important;
    border-radius: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.readmore.bottom-line .vc_general.vc_btn3,
.ct-load-more-helper button.ct-load-more,
.banner-btn {
    position: relative;
    padding: 10px 30px;
    border-radius: 10000px;
    font-size: 14px;
    transition: 500ms ease;
}


.ct-load-more-helper {min-height: auto !important;}

.banner-btn:before,
.banner-btn:after,
.readmore.bottom-line .vc_general.vc_btn3:before,
.readmore.bottom-line .vc_general.vc_btn3:after,
.ct-load-more-helper button.ct-load-more:before,
.ct-load-more-helper button.ct-load-more:after {
    content: '';
    position: absolute;
    display: block !important;
    z-index: 0;
    opacity: 1 !important;
    filter: none;
    transition: 1000ms ease;
}

.readmore.bottom-line .vc_general.vc_btn3:before,
.banner-btn:before,
.ct-load-more-helper button.ct-load-more:before {
    background-color: #000000;
    opacity:50% !important;
    width: 0px;
    height: 3px;
    left: 0px;
    bottom: 0;
}

.readmore.bottom-line .vc_general.vc_btn3:after,
.banner-btn:after,
.ct-load-more-helper button.ct-load-more:after {
    content: none;
    font-family: var(--font-awesome);
    font-weight: 900;
    left: 80px;
    font-size: 10px;
    bottom: -5px;
    opacity: 1;
}

.readmore.bottom-line .vc_general.vc_btn3:hover:before,
.banner-btn:hover:before {
    left: 0;
    width: 100%;
} 

.readmore.bottom-line .vc_general.vc_btn3:hover:after,
.banner-btn:hover:after {
    left: 70px;
    opacity: 0 !important;
}



.readmore.outline .vc_general.vc_btn3,
.ct-load-more-helper button.ct-load-more {
    padding: 10px 45px 15px 25px;
    border: 1px solid var(--primary-color);
    transition: 500ms ease;
} 

.readmore.outline .vc_general.vc_btn3:hover,
.ct-load-more-helper button.ct-load-more:hover {
    padding-bottom: 10px;
    padding-right: 25px;
}

.readmore.bottom-line.outline .vc_general.vc_btn3:hover,
.ct-load-more-helper button.ct-load-more:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.readmore.bottom-line.outline .vc_general.vc_btn3:before,
.ct-load-more-helper button.ct-load-more:before {
    width: calc(100% - 60px);
    left: 25px;
    top: auto;
    right: auto;
    bottom: 10px;
}
.readmore.bottom-line.outline .vc_general.vc_btn3:after,
.ct-load-more-helper button.ct-load-more:after {
    content: '\f054\f054\f054';
    left: 83%;
    bottom: 6px;
    color: var(--primary-color);
}

.ct-load-more-helper button.ct-load-more:after  {
    bottom: 4px;
}

.readmore.bottom-line.outline .vc_general.vc_btn3:hover:before,
.ct-load-more-helper button.ct-load-more:hover:before {
    width: 0;
}

.readmore.bottom-line.outline .vc_general.vc_btn3:hover:after,
.ct-load-more-helper button.ct-load-more:hover:after {
    font-size: 0;
}

.banner-btn {
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: var(--fontFamily) !important;
    padding-bottom: 6px !important;
}

.banner-btn:before {
    background-color: #fff;
    left: 45px;
}

.banner-btn:after{
    line-height: 10px;
    left: 100px;
}

.wa-btn .vc_general.vc_btn3,
.wa-btn-2 .vc_general.vc_btn3{
    background-color:#25D366 !important;
    color:#ffffff !important;
}

.wa-btn.readmore.bottom-line .vc_general.vc_btn3:after,
.wa-btn-2.readmore.bottom-line .vc_general.vc_btn3:after {
    content: '\f232' !important;
    font-family: 'Font Awesome 6 Brands';
    display: inline-block !important;
    position: relative !important;
    font-size: 14px;
    left: 0;
    top: 0;
    font-weight: 900;
    margin-left: 10px;
    opacity: 1 !important;
}


/*contact logo style*/
.company-name {
    font-size: 18px;
    font-weight: 600 !important;
    line-height: 1;
}

.company-name small {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    display: block;
}

.company-logo img {
    max-height: 75px;
    object-fit: contain;
    width: auto;
}

.company-logo {margin-bottom: 15px !important
;}

/*background layer*/
.white-layer, .black-layer, .background-layer {position: relative;}

.white-layer:before { background-color: rgba(229, 229, 229, 0.95);}

.black-layer:before {background-color: rgba(0,0,0,0.6); }

.background-layer:before {background-color: #3C3731;
    opacity:0.8;
}

.white-layer:before, .black-layer:before, .background-layer:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block !important;
    z-index: 0;
}

.parallax { background-attachment:fixed; }

/*disable parallax effects on safari*/
@supports (-webkit-touch-callout: none) {
    .parallax {
          background-attachment: scroll;
    }
}

@supports (-webkit-touch-callout: touch) {
     .parallax {
          background-attachment: scroll;
    }
}

/*contact form*/
.form  {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 15px;
}

.form > div {
    margin-bottom: 15px;
}

.form #msg, .form #recaptcha {
    grid-column: 1/4;
}


.form input {
    width: 100%;
    height: 50px !important; 
    border: none !important;
    border-bottom: 1px solid #000 !important;
    background-color: transparent !important;
    font-weight: 400;
    color: rgba(0,0,0,0.5) !important;
    border-radius: 0 !important;
}

.form textarea {
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    background-color: transparent !important;
    font-weight: 400;
    color: #000;
    height: 100px;
    border-radius: 0 !important;
}

.form select {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

#send {
    display: flex;
    position: relative;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
#send input {
    font-family: var(--fontFamily);
    background-color: #EB2A29;
    min-height: auto;
    padding: 10px 30px;
    border-radius: 50px;
}

#send .wpcf7-spinner {
    position: absolute;
    right: -65px;
    top: 5px;
}

    

::-webkit-input-placeholder {
    color: rgba(0,0,0,0.5) !important;
    font-size:16px;
    font-weight: 500;
}

.form .enquiry::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(0,0,0,0.5) !important;
    font-size:16px;
    font-weight:500;
    opacity: 1; /* Firefox */
}

.form .enquiry:focus {
    border: 1px solid transparent;
}

.shape, .line-block, .shape-right, .product-image.w-bg,
.woocommerce #main > .ct-container {
    position: relative;
    isolation: isolate;
}

.shape:before,
.shape-right:after, 
.product-image.w-bg:before,
.woocommerce #main > .ct-container:before {
    content: '';
    position: absolute;
    background-image: url('./images/shape-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    height: auto;
    aspect-ratio: 64 / 27;
    display: block !important;
    z-index: -1;
    background-size:contain !important;
}

.woocommerce #main > .ct-container:before {
    left: calc(var(--side-gap) * -1);
    top: -35px;
    width: 35%;
    background-size: contain;

}
.shape.left:before {
    top: 0;
    left: 0;
}

.shape.left-bottom:before {
    left: 0;
    bottom: 0;
}

.shape.top-center:before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
} 

.shape.full {
    padding-top: var(--padd);
    padding-bottom: 25px;
}

.shape.full:before {
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
}

.shape-right.top:after {
    right: 0;
    top: 0;
}

.shape-right.bottom:after {
    right: 0;
    bottom: 0;
}

.banner-title {font-family: var(--fontFamily) !important;}

.line-block:before,
.woocommerce .product_title:before,
.woocommerce .page-title:before {
    content: '';
    position: absolute;
    left: -125px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 1px;
    background: var(--primary-color);
}

.home-about-row .wpb_single_image * {
    width: 100%;
    height: 100%;
}

.home-about-row .wpb_single_image img {
    aspect-ratio: none;
    max-height: 450px;
    object-fit: cover;
}

.home-full-image {
    min-height: 400px;
}

.home-industry > .wpb_column:first-child .wpb_single_image img {
    aspect-ratio: 171/165;
    object-fit: cover;
    object-position: right;
}

.client-slider .wpb_single_image {
    text-align: center !important;
}

.client-slider.shape.full:before {
    left: 50.5%;
    transform: translate(-50%, -50%);
    width: calc(100% - 70px);
}

.slick-arrow {
    font-size: 0;
    z-index: 9;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    top: 45%;
    transform: translateY(-60%);
    transition: all 2000ms ease;
    cursor: pointer;
}

.slick-arrow.slick-prev {left: -15px;}
.slick-arrow.slick-next {right: -15px;}

.slick-arrow:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: var(--primary-color);
    font-family: var(--font-awesome);
    font-weight: 900;
    transition: all 1500ms ease;
}


.slick-arrow.slick-prev:before {
    content: '\f053';
}

.slick-arrow.slick-next:before {
    content: '\f054';
}

.client-slider.shape.full {
    padding-top: 35px;
    padding-bottom: 0;
}

.slick-arrow:hover {
    background-color: var(--primary-color);
}

.slick-arrow:hover:before {
    color: #fff;
}

/*about*/
.home-icon-row.about {
    margin-top: var(--gap);
}

.about-v-m-row .reverse-img .wpb_singleimage_heading {
    color: #ffffff;
    font-weight:700;
}

.about-v-m-row ul > li:not(:last-child) {
    padding-bottom: 5px;
}

.about-v-m-row .reverse-img.row {
    margin-bottom: 25px !important;
}

/*contact*/
.contact h4 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
}

.contact h4:not(:first-child) {
    margin-top: 25px !important;
}

.contact p {
    margin-bottom: 10px !important;
}

.contact-details-row {overflow: visible !important;}*

.contact-details-row.shape-right.bottom:after {
    bottom: calc(var(--row-gap) * -1);
    transform: translate(0, 100%);
}

/*woocommerce*/
.woocommerce.single-product div.product div.woocommerce-tabs ul.tabs,
.woocommerce div.product div.woocommerce-tabs div.woocommerce-Tabs-panel.panel > h2 {
    display: none !important;
}

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

.woocommerce.single-product div.product > .product-entry-wrapper {
    display: none;
}


.woocommerce ul.products li.product .woocommerce-loop-product__title {
    background-color: #CDA733;
    margin-bottom: 0 !important;
    /*padding-top: 15px;
    padding-bottom: 15px;*/
    color: #fff;
    font-weight: 400 !important;
    width: 100%;
    border-radius: 0;
}

.woocommerce .product_title,
.woocommerce .page-title {
    position: relative;
    font-size: 30px;
}

/*.product_category_title {
    color: #4d4d4d;
    font-size: 16px;
    padding-bottom: 5px;
}*/

.product-image.w-bg:before {
    width: calc(100% + 135px);
    top: -35px;
    left: 0;
}

.product-details-sec .product-image {
    position: relative;
    /*background: #fff !important;*/
    /*text-align: center !important;*/
    isolation: auto;
}

/*.product-details-sec .product-image img {*/
/*    height: 230px;*/
/*    object-fit: contain;*/
/*}*/

.product-info-row.shape-right {
    overflow: visible !important;
}

.product-info-row.shape-right.top:after {
    height: 260px;
    top: -35px;

}


.product-info-row table td,
.product-info-row table th {
    border-color: var(--primary-color);
    text-align: center;
}

.product-info-row table th:not(:last-child) {
    border-right: 1px solid; #fff;
}

.product-info-row table tr th {
    background-color: #CDA733;
    color: #fff;
    font-weight: 600;
}

.product-info-row table tr:nth-child(even) {
    background-color: #fff;
}

.product-info-row table tr:nth-child(odd) {
    background-color: #f1f1f1;
} 

.bottom-arrow, 
.woocommerce ul.products li.product .ct-woo-card-actions {
    position: relative;
    padding-bottom: 25px;
}

.bottom-arrow:before,
.bottom-arrow:after,
.woocommerce ul.products li.product .ct-woo-card-actions:before,
.woocommerce ul.products li.product .ct-woo-card-actions:after {
    content: '';
    position: absolute;
    display: block !important;
    z-index: 0;
    transition: 500ms ease;
}

.bottom-arrow:before {
    left: 0;
    bottom: 0;
    width: 150px;
    height: 1px;
    background-color: var(--primary-color);
}

/*.bottom-arrow:after,
.woocommerce ul.products li.product .ct-woo-card-actions:after {
    content: '\f054\f054';
    font-size: 10px;
    font-weight: 900;
    font-family: var(--font-awesome);
    color: var(--primary-color);
    left: 150px;
    bottom: -5px;
}*/

/*.woocommerce ul.products li.product .ct-woo-card-actions:before {*/
/*    content: '';*/
/*    background-color: #fff;*/
/*    width: 110%;*/
/*}*/

.woocommerce ul.products li.product .ct-woo-card-actions:after {
    left: 110%;
    font-size: 10px;
    bottom: -6px;
    color: #fff;
}

.woocommerce.single-product #main > .ct-container {
    /*border-bottom: 1px solid #cccccc;*/
    /*padding-bottom: var(--padd);*/
    margin-bottom:calc(var(--row-gap) - 35px) !important;
}

.woocommerce ul.products li.product .ct-image-container {
    background-color: #B1AA9A;
    margin-bottom:0px;
}

.woocommerce ul.products li.product .ct-image-container img {
    /*padding: 20px;*/
    /*aspect-ratio: 226/203 !important;*/
    /*object-fit: contain;*/
    /*mix-blend-mode: multiply;*/
    aspect-ratio:3/2 !important;
    object-fit:cover !important;
    background-color:#B1AA9A !important;
}

.woocommerce ul.products li.product {
    padding-bottom: 35px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
        position: relative;
        left: 50%;
        transform: translate(-50%, 20%);
        width: 100%;
        text-align: center;
    }

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title {
    font-size: 18px;
    z-index: 9;
    padding: 10px 35px 0px;
    transition: 300ms ease;
     color: #fff;
     font-weight:500 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title {
    text-align: center;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-category__title {
    text-align: left;
    color: #fff;
}

.woocommerce ul.products li.product .ct-woo-card-actions {
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 9;
    opacity: 0;
    transition: transform 800ms ease;
    background: #B1AA9A;
    text-align: left;
    transform: translateY(25px);
    padding-right: 35px;
    padding-left:100px;
    text-align: left;
}

.woocommerce ul.products li.product .ct-woo-card-actions a {
    color: #3C3731 !important;
    background-color: transparent !important;
    padding: 0 0 10px;
    min-height: auto;
    font-size: 14px;
}


.woocommerce ul.products li.product > a {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/*.woocommerce ul.products li.product > a:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    width: 0;*/
/*    bottom: -65px;*/
/*    height: 10%;*/
/*    background-color: rgba(197,137,49,0.8);*/
/*    z-index: 9;*/
/*    display: block !important;*/
/*    transition: 600ms ease;*/
    
/*}*/

/*.woocommerce ul.products li.product:hover > a:before {*/
/*    width: 100%;*/
/*    height: calc(100% + 30px + 35px);*/
/*}*/

.woocommerce ul.products li.product:hover .ct-woo-card-actions {
    transform: translate(0);
    opacity: 1;
    height: auto;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
   /* color: #fff;*/
    text-align: center;
    transform: translate(-50%, 0);
    flex:1;
}

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


.woocommerce #main > .ct-container {
    margin-top: var(--gap);
    margin-bottom: var(--gap);
}

.woocommerce .hero-section > header{
    display: block;
    justify-content: end;
}

.product-title-con {
    display: none;
    justify-content: end;
}


.iksm-terms a.iksm-term__link {
    font-weight: 600 !important;
}


.iksm-terms .iksm-term--parent > .iksm-term__inner > a.iksm-term__link {
    color: #3C3731;
    position: relative;
    font-weight:700 !important;
}



.iksm-terms .iksm-term--current > .iksm-term__inner,
.iksm-terms .iksm-term__inner:hover {
    background-color: transparent !important;
}

.ct-sidebar h2.widget-title {
    font-size: 25px;
    color: #CDA733;
    padding-left: 15px;
}

.ct-sidebar .iksm-terms {
    background-color: #fff;
    padding: 15px;
    padding-bottom:35px;
}

.iksm-terms .iksm-terms-tree--children > .iksm-terms-tree__inner .iksm-term--is-post > div > a > .iksm-term__shifts:before {
    content: '>';
}

/*.product-details-sec > .product-info-row.right:nth-child(1) > .wpb_column:first-child {*/
/*    padding-top: 35px;*/
    /*background-color: #fff;*/
/*}*/



/*home-product-row*/
.home-product-row .woocommerce ul.products li.product:hover > a:before,
.home-product-row .woocommerce ul.products li.product .ct-woo-card-actions {
    /*display: none !important;*/
}

.home-product-row .woocommerce ul.products li.product .ct-image-container {
    /*background-color: #fff;*/
    margin-bottom: 0;
    /*padding-bottom: 25px;*/
}

 .woocommerce ul.products li.product {
    padding-bottom: 0;
    border: 1px solid #B1AA9A;
    transition: border .3s ease;
    border-radius: 30px;
    overflow: hidden;
    background-color: #B1AA9A;
}



.home-product-row .woocommerce ul.products li.product:hover {
    border-color: var(--primary-color);
}

.home-product-row .woocommerce ul.products li.product .woocommerce-loop-product__title {
    background-color: #CDA733;
    margin-bottom: 0 !important;
    /*padding-top: 15px;
    padding-bottom: 15px;*/
    color: #fff;
    font-weight: 500 !important;
    width: 100%;
    border-radius: 0;
    flex:1;
}

.home-product-row .woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    color: #fff;
    /*transform: translateX(5px);*/
    text-align: center;
}

.home-product-row .woocommerce ul.products li.product img {
    transition: 500ms ease;
    aspect-ratio: 3 / 2 !important;
    object-fit: cover !important;
}

.home-product-row .woocommerce ul.products li.product:hover img {
    transform: scale(1.1);
}

.home-product-row .readmore {
    position: absolute;
    bottom: 18%;
    right: 15px;
    z-index: 9;
}

.home-product-row {
    margin-top: 25px;
}

.about-section.shape:before {
    top:150px;
}

/*@media only screen and (min-width: 1600px) {*/
/*    #footer [data-row*="middle"] > div {*/
/*        display: grid;*/
/*        grid-template-columns: 1fr minmax(min-content, 900px) 1fr;*/
/*    }*/
/*}*/

@media only screen and (min-width: 768px) {
    .home-about-row > .wpb_column:nth-child(1){
        padding-right: 35px;
    }
    .home-about-row > .wpb_column:nth-child(2){
        padding-left: 35px;
    }
    .home-industry .wpb_row.vc_inner {
        display: flex;
        justify-content: space-between;
        padding-top: 15px;
    }
    .home-industry .wpb_row.vc_inner > .wpb_column {
        width: fit-content;
    }
    .home-industry .wpb_row.vc_inner:before {
        display: none;
    }
    .home-industry > .wpb_column:nth-child(1) > .vc_column-inner {
        padding-top: 0 !important;
    }
    .home-industry > .wpb_column:nth-child(2) {
        padding-left: 35px;
    }   
    .about-v-m-row > .wpb_column:first-child {
        border-right: 1px solid #ffffff;
        padding-right: 60px;
    }

    .about-v-m-row > .wpb_column:last-child {
        padding-left: 60px;
    } 
    .width-80 {
        width: 80% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .contact-details-row > div:first-child {
        padding-right: 35px;
    }
    .contact-details-row > div:last-child {
        padding-left: 35px;
    }
    .product-info-row > .wpb_column:nth-child(1) {
        padding-right: 35px;
    }
    .product-info-row > .wpb_column:nth-child(2) {
        padding-left: 35px;
    }
    
    .home-product-row {
        position: relative;
    }

}

@media only screen and (min-width: 1000px) {
    .iksm-terms .iksm-terms-tree.iksm-terms-tree--children {
        display: block !important;
    }

    .iksm-terms .iksm-term__toggle {display: none !important;}

    .ct-sidebar h2.widget-title {width: 140px;}

    /*.iksm-terms .iksm-term--parent > .iksm-term__inner > a.iksm-term__link:before {*/
    /*    content: '';*/
    /*    position: absolute;*/
    /*    bottom: 5px;*/
    /*    left: 0;*/
    /*    background: var(--primary-color);*/
    /*    width: 150px;*/
    /*    height: 1px;*/
    /*    display: block !important;*/
    /*    z-index: 0;*/
    /*}*/

}

/*[data-products=type-1] .product-category>a, [data-products=type-1] .woocommerce-loop-product__link {
    padding-bottom: 0;
    border: 1px solid #CDA733;
    transition: border .3s ease;
    border-radius: 30px;
    overflow: hidden;
    background-color: #CDA733;
}
*/


/*.vc_column_container>.vc_column-inner {
    padding-top: 100px;
}*/


.home-cta{
    margin-bottom:100px !important;
}

/*.about-paragraph-1 {*/
/*    font-weight:700 !important;*/
/*}*/

.about-paragraph, .about-3{
    margin-top:65px !important;
}


.visionmision {
    color:#ffffff !important;
}

/*Project Page Figure*/
.project-img img {
    border-radius: 25px;
    aspect-ratio:1/1;
    object-fit:cover;
}

.projects-row-1st {
    padding-top: 100px;
}


.projects-last {
    padding-bottom: 65px;
}


.fix-img{
    position relative;
    isolation:isolate;
}

/*.about-fix-img:before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    background: rgba(0,0,0,0.4);*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    display: block !important;*/
    
/*}*/

.home-fix-img:before{
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: block !important;
    
}



span.add {
    display:inline-block;
    padding-right:0.35em;
}

.fix-img {
    min-height: 300px;
    

}

.product-table small{
    
    font-size: 14px;
    padding-top: 10px;
    display: inline-block;
}


.whatsapp-button{
    background-color:green;
    border:1px solid green;
    border-radius:25px;
    padding:8px 24px;
    transition:500ms ease;
}

.whatsapp-button > a{
    color:white;
}

.whatsapp-button:hover{
    background-color:white;
    border:1px solid green;
}

.whatsapp-button:hover > a{
    color:green;
}

.home-banner-btn {
    line-height:2 !important;
    border:none !important;
}

@media only screen and (min-width:768px) {
    .vc_column_container>.vc_column-inner {
        padding-inline:0 !important;
    }
}

.readmore.bottom-line .vc_general.vc_btn3.home-banner-btn:before {
    color:##B1AA9A;
}

.readmore.bottom-line.form-btn .vc_general.vc_btn3 {
    background-color:#EB2A29 !important;
    color:#ffffff !important;
    padding:10px 35px !important;
    position:relative !important;
    display:block !important;
    border:none !important;
}

.readmore.bottom-line.form-btn .vc_general.vc_btn3:before {
    top:auto !important;
}

.shape.shape-stretch:before {
    background-image:url(./images/dots.png) !important;
    width: calc(100% + 200px);
    margin-inline: -100px;
    height: calc(100% + 100px);
    top: -50px;
    background-size: cover !important;
}

.woocommerce-loop-product__title {
    text-align: left !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    color:#3C3731 !important;
    background-color: #B1AA9A !important;
    padding-left:100px !important;
    padding-right:35px !important;
    padding-top: 20px !important;
    padding-bottom: 10px !important;
}

.products {
  counter-reset: my-sec-counter;
}

.product .woocommerce-loop-product__title:before {
  counter-increment: my-sec-counter;
  content: "0" counter(my-sec-counter);
  font-size:30px;
  position:absolute;
  left:35px;
} 


.zoom-effect > .vc_figure {
    overflow:hidden !important;
}

.zoom-effect > .vc_figure img {
    transition:var(--transition-effect);
}

.zoom-effect:hover > .vc_figure img {
    transform: scale(1.1);
}

.home-about-img > .vc_figure {
    border-radius:45px;
}

#send {
    margin-bottom:0 !important;
}

.row-gap {
    padding-top:var(--row-gap) !important;
    padding-bottom:calc(var(--row-gap) - 35px) !important;
}

.row-gap-equal {
    padding-top:var(--row-gap) !important;
    padding-bottom:var(--row-gap) !important;
}

.row-gap-t {
    padding-top:var(--row-gap) !important;
}

.row-gap-b {
    padding-bottom:calc(var(--row-gap) - 35px) !important;
}

.row-gap-b-equal {
    padding-bottom:var(--row-gap) !important;
}

.text-just {
    text-align:justify !important;
}

@media only screen and (max-width:767.98px) {
    .text-just-m {
        text-align:justify !important;
    }
}

/*@media only screen and (max-width:767.98px) {*/
/*    .home-about-row {*/
/*        padding-bottom:0 !important;*/
/*    }*/
/*}*/

@media only screen and (min-width:1000px) {
    #menu-footer-menu {
        column-count:2;
    }
}

.ig-icon {
    border-radius: 50%;
    overflow: hidden;
    font-size: 20px;
    aspect-ratio: 1 / 1;
    width: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #3C3731;
    line-height: 1;
}

.fb-icon {
    font-size: 30px;
    width: 30px;
    aspect-ratio: 1 / 1;
    display: block;
    line-height: 1;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.bg-parallax {
    background-attachment:fixed !important;
}

.project-img > .vc_figure {
    border-radius:25px;
    overflow:hidden;
}

@media only screen and (min-width:768px) {
    .projects-row {
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        column-gap:20px;
    }
    .project-img {
        margin-bottom:20px !important;
    }
    .projects-row:before {
        position:absolute !important;
    }
    .projects-row > .wpb_column {
        width:100%;
    }
}

@media only screen and (min-width:1000px) {
    .projects-row {
        grid-template-columns:repeat(4, 1fr);
    }
}

.project-img,
.project-img * {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.wpb_raw_code .contact-details:before {
    color:#3C3731;
}

.wpb_raw_code .contact-details:before {
    color: #3C3731;
}

.vc_custom_heading.company-name {
    color: #3C3731;
    font-weight:600 !important;
}

.vc_custom_heading.company-name small {
    color: #313131;
    font-weight:400 !important;
}

.about-paragraph {
    margin-bottom:0 !important;
}

@media only screen and (min-width:768px) {
    .home-about-img {
        margin-bottom:0 !important;
    }
}

.product-title {
    font-size:18px;
    font-weight:600 !important;
    color:#3C3731;
    margin-bottom:15px !important;
}

.product-image {
    text-align: right !important;
    background-color: transparent !important;
}

.product-image .vc_figure{
    border-radius:25px !important;
    overflow:hidden !important;
    max-width:90% !important;
    aspect-ratio:3 / 2;
}

@media only screen and (max-width:767.98px) {
    .product-image .vc_figure{
        max-width:100% !important;
    }
}

.product-image img {
    height:100% !important;
    width:100% !important;
}

.iksm-terms-tree--level-2 > .iksm-terms-tree__inner > .iksm-term__link {
    font-weight:600 !important;
}

.about-img .vc_figure {
    border-radius:40px !important;
    overflow:hidden;
}

#footer .ct-widget.widget_media_image img {
    max-height: 85px !important;
    width: auto !important;
}

.woocommerce ul.products li.product > a {
    height:100% !important;
}

@media only screen and (max-width:768.98px) {
    .woocommerce ul.products li.product .ct-image-container {
        margin-bottom:0 !important;
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        padding-top:5px !important;
    }
}

@media only screen and (max-width:689.98px) {
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        padding-top:15px !important;
    }
}

.product-info-row .wpb_text_column {
    text-align:justify;
}

.ig-icon:hover {
    background-color:#B1AA9A;
    color:#3C3731;
}

@media only screen and (max-width:767.98px) {
    [data-sidebar] {
        grid-row-gap: 35px;
    }
    .woocommerce div.product div.woocommerce-tabs div.woocommerce-Tabs-panel.panel {
        padding-top:35px !important;
    }
}

@media only screen and (min-width:768px) {
    .woocommerce div.product div.woocommerce-tabs div.woocommerce-Tabs-panel.panel {
        padding-top:50px !important;
    }
}

@media only screen and (min-width:1000px) {
    .iksm-terms {
        padding-top:0 !important;
    }
    .woocommerce div.product div.woocommerce-tabs div.woocommerce-Tabs-panel.panel {
        padding-top:0 !important;
    }
    .iksm-term__link {
        padding-top:0 !important;
    }
}

.contact-details-row  .wpb_raw_code h4 {
    color: #3C3731;
}

.contact-details-row .contact {
    color:#313131;
}

[data-products] .woocommerce-loop-product__title, [data-products] .woocommerce-loop-category__title {
    font-weight:500 !important;
}

#footer #menu-footer-menu > li {
    margin-bottom:8px;
}


.page-id-548 .shape.left:before {
    top:65px;
    width:35%;
    height:auto;
    left:0;
}

.contact-details-row.shape.left:before {
    top:65px;
}

.post-title {
    font-size:18px;
}

.single-post #main > .ct-container,
.archive.category #main > .ct-container{
    margin-top: var(--gap);
    margin-bottom: calc(var(--gap) - 35px);
}

.post-img-row {
    margin-inline:-17.5px !important;
}

.post-img-row > .wpb_column {
    padding-inline:17.5px !important;
}

.ct-breadcrumbs {
    position:relative;
    margin-bottom:35px;
}

.ct-breadcrumbs:before {
    content:'';
    background-color:#3C3731;
    width:100px;
    height:1px;
    display:inline-block;
    position:relative;
    vertical-align: middle;
    margin-right: 15px;
}

@media only screen and (max-width:767.98px) {
    .ct-breadcrumbs:before {
        content:'';
        width:25px;
    }
}


.post-img-row .wpb_single_image > .vc_figure {
    border-radius:25px;
    overflow:hidden;
}

.post-img-row .wpb_single_image * {
    width: 100% !important;
    height: auto !important;
}

.post-img-row .wpb_single_image > .vc_figure img {
    aspect-ratio:16/9;
    width:100%;
    height:auto;
    object-fit: cover;
}

.content-wrapper {
    margin-top: -70px !important;
    z-index: 9;
    background-color: #ffffff;
    margin-inline: 10%;
    border-radius: 25px;
    padding: 25px 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    transition:var(--transition-effect);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex:1;
}

.content-wrapper a {
    transition:var(--transition-effect);
}

.entry-card:hover .content-wrapper {
    background-color: var(--theme-color);
}

.entry-card:hover .content-wrapper a {
    color:#ffffff;
}

.content-wrapper .entry-title,
.content-wrapper .entry-meta{
    margin-bottom:5px !important;
}

.content-wrapper .entry-button {
    font-size:14px !important;
    margin-top:0 !important;
}

.content-wrapper .entry-button svg {
    transform:rotate(0deg);
    transition:var(--transition-effect);
}

.entry-card:hover .content-wrapper .entry-button svg {
    transform:rotate(-45deg);
}

.post-title {
    margin-top: 15px !important;
}

.archive.category #main > .ct-container {
    width: 100% !important;
    padding-inline: var(--side-gap) !important;
}

[data-prefix="categories"] .entries {
    row-gap:0 !important
}

[data-archive=default][data-cards=simple] .entry-card {
    padding-bottom:0 !important;
    margin-bottom:35px !important;
}

.current-menu-parent > a,
.current-menu-item > a,
.current-page-ancestor > a,
.current_page_parent > a,
.current-product_cat-ancestor > a,
.current-product-ancestor > a,
.current-category-ancestor > a,
.current-post-ancestor > a {
    color:var(--theme-color) !important;
}

.archive.category #main > .ct-container,
.single-post #main > .ct-container {
    position:relative;
}

.archive.category #main > .ct-container:before,
.single-post #main > .ct-container:before {
    content: '';
    position: absolute !important;
    background-image: url(./images/shape-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    height: auto;
    aspect-ratio: 64 / 27;
    display: block !important;
    z-index: -1;
    background-size: contain !important;
    left: calc(var(--side-gap) * -1);
    top: -35px;
    width: 35%;
}

@media only screen and (max-width:767.98px) {
    .single-post .hero-section {
        width:100%;
        padding-inline:var(--side-gap) !important;
    }
}