/**
 * 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: #ED1B24;
    --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;
    
}

@media only screen and (max-width: 768px){
   :root {
        --row-spacing: 15px;
        --gap: 70px;
        --padd: 35px;
    }
}

/*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;}
    .woocommerce .custom-icon-container,
    .vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-round.vc_btn3-style-custom{
        margin-left:15px;
    }
      
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: bold !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;
    font-weight: 700;
}

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 {
    color: #ED1C24 !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;
}

#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 {
    color: #000000;
}

#footer .company-name small {
    color: #000000;
    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: #000000;
    display: block !important;
}

#footer ul li.current_page_parent > a,
#footer ul li:hover > a {
    font-weight: 400;
    color: #ED1B24;
}


/*default font syle*/
.all-title {font-weight: bold !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:300px ;
    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: 5px 15px;
    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: #5b3907;
    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;
}


/*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: #000;
    display: block;
}

.company-logo img {
    max-height: 65px;
    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: #ED1B24;
    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: #000;
    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: 7px 35px;
    border-radius: 25px;
}

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

    

::-webkit-input-placeholder {
    color: #000 !important;
    font-size:16px;
    font-weight: 400;
}

.form .enquiry::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000 !important;
    font-size:16px;
    font-weight:400;
    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: 180px;
    display: block !important;
    z-index: -1;
}

.woocommerce #main > .ct-container:before {
    left: -65%;
    top: 25px;
    width: 100%;
    height: 250px;

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

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

.shape.left-middle:before {
    left:0;
    bottom:40%;
    z-index: -1 !important;
}

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

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

.shape.full:before {
    content:' ';
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    left:0;
    z-index:-1;
    opacity:0.5;
}

.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 figure{
    border-radius:25px;
    overflow:hidden;
}
    
.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: #333333;
}

.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: -15%;
}

/*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: #ED1B24;
    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% + 35px);
    height: calc(100% + 70px);
    top: 52%;
    transform: translateY(-50%);
    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: 300px;
    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: #ED1B24;
    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);
}

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

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

.woocommerce ul.products li.product .ct-media-container img {
    transform:scale(1.01);
    aspect-ratio: 226/203 !important;
    object-fit: contain;
    mix-blend-mode: multiply;
}

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

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__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 25px 0px;
    transition: 300ms ease;
     color: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title {
    text-align: center;
    font-weight:500 !important;
    margin-bottom:0 !important;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-category__title {
    text-align: center;
    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: #ED1B24;
    text-align: center;
    transform: translateY(25px);
}

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


.woocommerce ul.products li.product > a {
    position: relative;
}

/*.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,
.woocommerce ul.products li.product:hover .woocommerce-loop-category__title {
   /* color: #fff;*/
    text-align: center;
    transform: translate(-50%, 0);
}


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

.woocommerce .hero-section > header,
.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: #333333;
    position: relative;
}



.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: #ED1B24;
    padding-left: 15px;
}

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

.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-media-container {
    background-color: #fff;
    margin-bottom: 0;
}

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



.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: #ED1B24;
    margin-bottom: 0 !important;
    /*padding-top: 15px;
    padding-bottom: 15px;*/
    color: #fff;
    font-weight: 400 !important;
    width: 100%;
    border-radius: 0;
}

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

.home-product-row .woocommerce ul.products li.product:hover img {
}

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

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

.about-section.shape:before {
    z-index: 1;
}

/*@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 #000000;
        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;}


    .home-product-row .woocommerce ul{
        column-gap:70px;
    }

}

/*[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{
}

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

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


.visionmsion {
    font-color:#333333 !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.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: block !important;
    
}


.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: 2px 2px;
    transition:500ms ease;
}

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

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

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


.about-us {margin-bottom: 10px !important;}

.about-us .whatsapp-btn {
    position: relative;
    font-family: var(--font) !important;
    font-weight: 400;
    font-size: 14px;
    min-width:130px;
    text-align:center;
    background-image: none !important;
    border-radius: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
    display: block;
}

.about-us.lower-line .whatsapp-btn,
.ct-load-more-helper button.ct-load-more,
.banner-btn {
    position: relative;
    padding: 10px 15px;
    border-radius: 10000px;
    font-size: 14px;
    transition: 500ms ease;
}


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

.banner-btn:before,
.banner-btn:after,
.about-us.lower-line .whatsapp-btn:before,
.about-us.lower-line .whatsapp-btn: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;
}

.about-us.lower-line .whatsapp-btn:before,
.banner-btn:before,
.ct-load-more-helper button.ct-load-more:before {
    
    background-color: #5b3907;
    width: 0px;
    height: 3px;
    left: 0px;
    bottom: 0px;
}

.about-us.lower-line .whatsapp-btn: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: 0px;
    opacity: 1;
}

.about-us.lower-line .whatsapp-btn:hover:before,
.banner-btn:hover:before {
    bottom:0px;
    left: 0;
    width: 100%;
} 

.about-us.lower-line .whatsapp-btn:hover:after,
.banner-btn:hover:after {
    
    left: 70px;
    opacity: 0 !important;
}



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

.about-us.outline .whatsapp-btn:hover,
.ct-load-more-helper button.ct-load-more:hover {
    padding-bottom: 10px;
    padding-right: 25px;
}

.about-us.lower-line.outline .whatsapp-btn:hover,
.ct-load-more-helper button.ct-load-more:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.about-us.lower-line.outline .whatsapp-btn:before,
.ct-load-more-helper button.ct-load-more:before {
    width: calc(100% - 60px);
    left: 25px;
    top: auto;
    right: auto;
    bottom: 10px;
}
.about-us.lower-line.outline .whatsapp-btn: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;
}

.about-us.lower-line.outline .whatsapp-btn:hover:before,
.ct-load-more-helper button.ct-load-more:hover:before {
    
    width: 0;
}

.about-us.lower-line.outline .whatsapp-btn:hover:after,
.ct-load-more-helper button.ct-load-more:hover:after {
    font-size: 0;
}





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

 .home-icon-row {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    } 

}

    .iksm-terms .iksm-term--parent > .iksm-term__inner > a.iksm-term__link span:before {
        content: '>';
        position: absolute;
        top: 50%;
        transform:translateY(-50%);
        left: 0;
        color: #333333;
        font-size:15px;
        display: block !important;
        z-index: 0;
    }
      .iksm-terms .iksm-term--parent > .iksm-term__inner > a.iksm-term__link span{
          padding-left:25px;
      }
      
      .iksm-terms .iksm-term--parent.iksm-term--current span.iksm-term__text,
    .iksm-terms .iksm-term--parent.iksm-term--current > .iksm-term__inner > a.iksm-term__link span:before {
          color:#ED1B24 !important;
      }
      
.fit-content > .wpb_column:nth-child(1) {
    width:fit-content;
}
     
  .pdf-btn .vc_general.vc_btn3 {
      padding: 12px 15px !important;
  }
  
  
.ct-menu-link{
    color:#000000 !important;
}

.sub-menu{
    background-color:#FFFFFF !important;
}