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

@font-face {
  font-family: "Graphik";
  font-weight: 100;
  src: url("./fonts/Graphik-Thin-iF66fbb18097323.ttf") format("truetype");
}

@font-face {
  font-family: "Graphik";
  font-weight: 200;
  src: url("./fonts/Graphik-ExtraLight-iF66fbb1800c0f5.ttf") format("truetype");
}

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

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

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

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

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

@font-face {
  font-family: "Graphik";
  font-weight: 800;
  src: url("./fonts/Graphik-Black-iF66fbb17fd5407.ttf") format("truetype");
}

@font-face {
  font-family: "Graphik";
  font-weight: 900;
  src: url("./fonts/Graphik-Super-iF66fbb18082de8.ttf") format("truetype");
}


/*Customized widget - Floating Buttons (HTML)*/
.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; */
  width: auto;
  min-width:50px;
}

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

.floating-button.float-btn-trigger .icon-trigger{
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  animation: 2.5s wiggle ease infinite;
  animation-delay: 1s;
  position: relative;
}

.floating-button.float-btn-trigger .chat-with-us {
  padding-inline: 0 0;
  font-size: 16px;
  text-transform: capitalize;
  overflow: hidden;
  text-indent:-100px;
  transform: scale(0);
  transform-origin: 100% 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.floating-button.float-btn-trigger .chat-with-us.pop {
  padding-inline: 15px 0;
  text-indent:0;
  transform: scale(1);
}

.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 .icon-trigger{
  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 trigger*/
@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: 767.98px) {
  .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;
  }

  .floating-button.float-btn-trigger .chat-with-us.pop {
      padding-inline: 15px 0;
      text-indent:0;
      transform: scale(1);
      animation: none;
  }

  .floating-button.float-btn-trigger.toogle .chat-with-us.pop {
      padding-inline: 0 0;
      text-indent:-100px;
      transform: scale(0);
  }
}

:root {
  --black: #000;
  --white: #fff;
  --fontAwesome: "Font Awesome 6 Free" !important;
  --allTransition: all 0.3s ease-in-out;
  --gap: 100px;
  --mobile-gap: 70px;
  --theme-line-height: 1.3;
  --h1: 45px;
  --h2: 30px;
  --h3: 30px;
  --h4: 25px;
  --h5: 20px;
  --h6: 18px;
  --mobile-h1: 35px;
  --mobile-h2: 27px;
  --mobile-h3: 27px;
  --mobile-h4: 23px;
  --mobile-h5: 20px;
  --mobile-h6: 18px;
  --p: 16px;
  --max-height: min(60vh, 450px);
  --theme-font-family: 'Graphik' !important;
}

* {
  margin: 0;
  box-sizing: border-box;
}

/* container width */
@media only screen and (min-width: 768px) {
  #header [data-row] > .ct-container,
  #footer [data-row] > .ct-container {
    width: auto;
    margin-left: var(--gap) !important;
    margin-right: var(--gap) !important;
    /* padding-left: 15px;
      padding-right: 15px; */
  }

  #main > .ct-container,
  body.single #main > [class*='ct-container'],
  body.archive #main > [class*='ct-container'] {
    width: calc(100% - (var(--gap) * 2));
  }
}

body {
  line-height: 1.3 !important;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
.entry-content :is(h1,h2,h3,h4,h5,h6) {
  line-height:1.3 !important;
  text-align: left;
  color:#010517;
  font-weight: 600;
}

.wpb_text_column h1 {
  font-size: var(--h1);
}

.wpb_text_column h2 {
  font-size: var(--h2);
}

.wpb_text_column h3 {
  font-size: var(--h3);
}

.wpb_text_column h4 {
  font-size: var(--h4);
}

.wpb_text_column h5 {
  font-size: var(--h5);
}

.wpb_text_column h6 {
  font-size: var(--h6);
}

.text-justify,
.text-justify :is(h1, h2, h3, h4, h5, h6) {
  text-align: justify;
}

.text-left,
.text-left :is(h1, h2, h3, h4, h5, h6) {
  text-align: left !important;
}

.text-center,
.text-center :is(h1, h2, h3, h4, h5, h6) {
  text-align: center !important;
}

.text-right,
.text-right :is(h1, h2, h3, h4, h5, h6) {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-white,
.text-white :is(h1,h2,h3,h4,h5,h6,a,p,li) {
  color: #fff !important;
}

.text-black,
.text-black :is(h1,h2,h3,h4,h5,h6,a,p,li) {
  color: #000 !important;
}

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

.font-20{
  font-size: 20px !important;
}

.font-22{
  font-size: 22px !important;
}

.font-24{
  font-size: 24px !important;
}

.text-64,
.text-64 :is(h1,h2,h3,h4,h5,h6,a,p,li){
  color:#646464 !important;
}

.text-05,
.text-05 :is(h1,h2,h3,h4,h5,h6,a,p,li){
  color:#F4571D !important;
}

.text-87,
.text-87 :is(h1,h2,h3,h4,h5,h6,a,p,li){
  color:#878787 !important;
}

.gold,
.gold :is(h1,h2,h3,h4,h5,h6,a,p,li){
  color:#F4571D !important;
}

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

.full-image-column.wpb_column{
  height:auto;
}

.full-image-column.wpb_column > .vc_column-inner, 
.full-image-column.wpb_column > .vc_column-inner > .wpb_wrapper,
.full-image-column.wpb_column > .vc_column-inner > .wpb_wrapper > .wpb_single_image,
.full-image-column.wpb_column > .vc_column-inner > .wpb_wrapper > .wpb_single_image > figure,
.full-image-column.wpb_column > .vc_column-inner > .wpb_wrapper > .wpb_single_image > figure > div,
.full-image-column.wpb_column > .vc_column-inner > .wpb_wrapper > .wpb_single_image > figure > div > img{
  height:100%;
}

.background-layer{
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

.white-layer-10.background-layer:before{
  background-color: rgba(255,255,255, 0.1);
}

.white-layer-30.background-layer:before{
  background-color: rgba(255,255,255, 0.2);
}

.white-layer-30.background-layer:before{
  background-color: rgba(255,255,255, 0.3);
}

.white-layer-40.background-layer:before{
  background-color: rgba(255,255,255, 0.4);
}

.white-layer-50.background-layer:before{
  background-color: rgba(255,255,255, 0.5);
}

.white-layer-60.background-layer:before{
  background-color: rgba(255,255,255, 0.6);
}

.white-layer-70.background-layer:before{
  background-color: rgba(255,255,255, 0.7);
}

.white-layer-80.background-layer:before{
  background-color: rgba(255,255,255, 0.8);
}

.white-layer-90.background-layer:before{
  background-color: rgba(255,255,255, 0.9);
}

.custom-button .vc_general.vc_btn3{
  padding:15px 25px;
  background-image: none !important;
  border-radius: 10px;
  background-color: #F4571D !important;
  border:1px solid #F4571D !important;
  color:#fff !important;
  font-weight: 500;
  line-height:1 !important;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
/* 
.custom-button .vc_general.vc_btn3:hover{
  background-color: #F4571D !important;
} */

.custom-button .vc_general.vc_btn3:before{
  content:'';
  position: absolute;
  width: 0;
  height:100%;
  border-radius: inherit;
  top:0;
  left:0;
  display: block !important;
  background-color: #C93D00;
  opacity: 0.5;
  transition:0.4s all;
  z-index: -1;
  overflow: hidden;
}

.custom-button .vc_general.vc_btn3:hover:before{
  width: 100%;
}

.image-hover-scale,
ul.products li.product .ct-image-container {
  overflow: hidden;
}

.image-hover-scale img,
.image-hover-scale,
ul.products li.product .ct-image-container img {
  transition: transform 500ms ease-out;
}

.image-hover-scale:hover img,
ul.products li.product:hover .ct-image-container img {
  transform: scale(1.05);
}

.image-border-radius {
  border-radius: 15px;
  overflow: hidden;
}

.image-mh img {
  max-height: var(--max-height);
}

.image-maxh-100 img {
  max-height: 150px;
}

.image-maxh-150 img {
  max-height: 150px;
}

.image-maxh-200 img {
  max-height: 200px;
}

.image-maxh-250 img {
  max-height: 250px;
}

.image-maxh-300 img {
  max-height: 300px;
}

.image-maxh-350 img {
  max-height: 350px;
}

.image-maxh-400 img {
  max-height: 400px;
}

.image-maxh-450 img {
  max-height: 450px;
}

.image-maxh-500 img {
  max-height: 500px;
}

.image-maxh-550 img {
  max-height: 550px;
}

.image-maxh-600 img {
  max-height: 600px;
}

.image-maxh-650 img {
  max-height: 650px;
}

.image-maxh-700 img {
  max-height: 700px;
}

.image-maxh-750 img {
  max-height: 750px;
}

.image-maxh-800 img {
  max-height: 800;
}

.icons img{
  max-height: 45px;
  width: auto;
}

.logo img{
  max-width: 120px !important;

}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.custom-table table {
  width: auto;
}

.custom-table table,
.custom-table table td {
  border: none;
}

.custom-table table td {
  padding: 2.5px 5px;
  vertical-align: top;
}

.custom-table table td:first-child {
  padding-left: 0 !important;
}

.custom-table table td:last-child {
  padding-right: 0 !important;
}

.custom-table table tr:first-child td {
  padding-top: 0 !important;
}

.custom-table table tr:last-child td {
  padding-bottom: 0 !important;
}

.wpcf7 p::after {
  display: none;
}

.wpb_text_column ul,
.wpb_text_column ol,
.woocommerce-product-details__short-description ul{
  padding-left: 20px;
}

.mobile_view {
  display: none !important;
}

.w-auto,
.w-auto img{
  width: auto;
}

@media only screen and (min-width:768px){
  .m-auto{
    margin-left: auto;
    margin-right:auto;
  }
  
  .ml-auto{
    margin-left: auto;
  }
  
  .mr-auto{
    margin-right: auto;
  }
  
  .width-90{
    width:90%;
  }
  
  .width-85{
    width:85%;
  }
  
  .width-80{
    width:80%;
  }
  
  .width-75{
    width:75%;
  }
  
  .width-70{
    width:70%;
  }
  
  .width-65{
    width:65%;
  }
  
  .width-60{
    width:60%;
  }
  
  .width-55{
    width:55%;
  }
  
  .width-50{
    width:50%;
  }
  
  .width-45{
    width:45%;
  }
  
  .width-40{
    width:40%;
  }
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

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

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

.fw-600 {
  font-weight: 600 !important;
}

.fw-700,
.fw-700 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 700 !important;
}

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

.fw-900 {
  font-weight: 900 !important;
}

.wpb_text_column.strong-100 strong{
  font-weight:100 !important;
}

.wpb_text_column.strong-200 strong{
  font-weight:200 !important;
}

.wpb_text_column.strong-300 strong{
  font-weight:300 !important;
}

.wpb_text_column.strong-400 strong{
  font-weight:400 !important;
}

.wpb_text_column.strong-500 strong{
  font-weight:500 !important;
}

.wpb_text_column.strong-600 strong{
  font-weight:600 !important;
}

.wpb_text_column.strong-700 strong{
  font-weight:700 !important;
}

.wpb_text_column.strong-800 strong{
  font-weight:800 !important;
}

.wpb_text_column.strong-900 strong{
  font-weight:900 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

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

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

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

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

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35{
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45{
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

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

.ml-0 {
  margin-left: 0 !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-75{
  padding-top: 75px !important;
}

.pt-80{
  padding-top: 80px !important;
}

.pt-85{
  padding-top: 85px !important;
}

.pt-90{
  padding-top: 90px !important;
}

.pt-95{
  padding-top: 95px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

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

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

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

.pl-0 {
  padding-left: 0 !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.grid {
  display: grid !important;
}

.grid::before,
.grid::after {
  display: none !important;
}

.grid > div {
  width: 100% !important;
}

.grid-column-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-column-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-column-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-column-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-column-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-column-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-column-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gap-5{
  gap:5px;
}

.gap-10{
  gap:10px;
}

.gap-15{
  gap:15px;
}

.gap-20{
  gap:20px;
}

.gap-25{
  gap:25px;
}

.gap-30{
  gap:30px;
}

.gap-35{
  gap:35px;
}

.gap-40{
  gap:40px;
}

.gap-45{
  gap:45px;
}

.gap-50{
  gap:50px;
}

.row-gap-5{
  row-gap:5px;
}

.row-gap-10{
  row-gap:10px;
}

.row-gap-15{
  row-gap:15px;
}

.row-gap-20{
  row-gap:20px;
}

.row-gap-25{
  row-gap:25px;
}

.row-gap-30{
  row-gap:30px;
}

.row-gap-35{
  row-gap:35px;
}

.row-gap-40{
  row-gap:40px;
}

.row-gap-45{
  row-gap:45px;
}

.row-gap-50{
  row-gap:50px;
}

.column-gap-5{
  column-gap:5px;
}

.column-gap-10{
  column-gap:10px;
}

.column-gap-15{
  column-gap:15px;
}

.column-gap-20{
  column-gap:20px;
}

.column-gap-25{
  column-gap:25px;
}

.column-gap-30{
  column-gap:30px;
}

.column-gap-35{
  column-gap:35px;
}

.column-gap-40{
  column-gap:40px;
}

.column-gap-45{
  column-gap:45px;
}

.column-gap-50{
  column-gap:50px;
}

@media screen and (max-width: 1000px) {
  :root {
    --gap: var(--mobile-gap);
    --h1: var(--mobile-h1);
    --h2: var(--mobile-h2);
    --h3: var(--mobile-h3);
    --h4: var(--mobile-h4);
    --h5: var(--mobile-h5);
    --h6: var(--mobile-h6);
  }
}

@media screen and (min-width: 768px) {
  .desktop-text-center,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .desktop-text-left,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .desktop-text-right,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }
}

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

  .mobile-text-center,
  .mobile-text-center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .mobile-text-left,
  .mobile-text-left :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .mobile-text-right,
  .mobile-text-right :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }

  .mobile-text-justify,
  .mobile-text-justify :is(h1, h2, h3, h4, h5, h6) {
    text-align: justify !important;
  }

  .mobile-pt-0 {
    padding-top: 0px !important;
  }

  .mobile-pt-5 {
    padding-top: 5px !important;
  }

  .mobile-pt-10 {
    padding-top: 10px !important;
  }

  .mobile-pt-15 {
    padding-top: 15px !important;
  }

  .mobile-pt-20 {
    padding-top: 20px !important;
  }

  .mobile-pt-25 {
    padding-top: 25px !important;
  }

  .mobile-pt-30 {
    padding-top: 30px !important;
  }

  .mobile-pt-35 {
    padding-top: 35px !important;
  }
  .mobile-pt-40 {
    padding-top: 40px !important;
  }
  .mobile-pt-45 {
    padding-top: 45px !important;
  }
  .mobile-pt-50 {
    padding-top: 50px !important;
  }
  .mobile-pt-55 {
    padding-top: 55px !important;
  }
  .mobile-pt-60 {
    padding-top: 60px !important;
  }
  .mobile-pt-65 {
    padding-top: 65px !important;
  }
  .mobile-pt-70 {
    padding-top: 70px !important;
  }
  .mobile-pt-75 {
    padding-top: 75px !important;
  }
  .mobile-pt-80 {
    padding-top: 80px !important;
  }

  .mobile-pt-85 {
    padding-top: 85px !important;
  }

  .mobile-pt-90 {
    padding-top: 90px !important;
  }

  .mobile-pt-95 {
    padding-top: 95px !important;
  }

  .mobile-pt-100 {
    padding-top: 100px !important;
  }

  .mobile-pb-0 {
    padding-bottom: 0px !important;
  }
  .mobile-pb-5 {
    padding-bottom: 5px !important;
  }
  .mobile-pb-10 {
    padding-bottom: 10px !important;
  }
  .mobile-pb-15 {
    padding-bottom: 15px !important;
  }
  .mobile-pb-20 {
    padding-bottom: 20px !important;
  }
  .mobile-pb-25 {
    padding-bottom: 25px !important;
  }
  .mobile-pb-30 {
    padding-bottom: 30px !important;
  }
  .mobile-pb-35 {
    padding-bottom: 35px !important;
  }
  .mobile-pb-40 {
    padding-bottom: 40px !important;
  }
  .mobile-pb-45 {
    padding-bottom: 45px !important;
  }
  .mobile-pb-50 {
    padding-bottom: 50px !important;
  }
  .mobile-pb-55 {
    padding-bottom: 55px !important;
  }
  .mobile-pb-60 {
    padding-bottom: 60px !important;
  }
  .mobile-pb-65 {
    padding-bottom: 65px !important;
  }
  .mobile-pb-70 {
    padding-bottom: 70px !important;
  }
  .mobile-pb-75 {
    padding-bottom: 75px !important;
  }
  .mobile-pb-80 {
    padding-bottom: 80px !important;
  }
  .mobile-pb-85 {
    padding-bottom: 85px !important;
  }
  .mobile-pb-90 {
    padding-bottom: 90px !important;
  }
  .mobile-pb-95 {
    padding-bottom: 95px !important;
  }
  .mobile-pb-100 {
    padding-bottom: 100px !important;
  }

  .mobile-mb-0 {
    margin-bottom: 0px !important;
  }
  .mobile-mb-5 {
    margin-bottom: 5px !important;
  }
  .mobile-mb-10 {
    margin-bottom: 10px !important;
  }
  .mobile-mb-15 {
    margin-bottom: 15px !important;
  }
  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }
  .mobile-mb-25 {
    margin-bottom: 25px !important;
  }
  .mobile-mb-30 {
    margin-bottom: 30px !important;
  }
  .mobile-mb-35 {
    margin-bottom: 35px !important;
  }
  .mobile-mb-40 {
    margin-bottom: 40px !important;
  }
  .mobile-mb-45 {
    margin-bottom: 45px !important;
  }
  .mobile-mb-50 {
    margin-bottom: 50px !important;
  }
  .mobile-mb-55 {
    margin-bottom: 55px !important;
  }
  .mobile-mb-60 {
    margin-bottom: 60px !important;
  }
  .mobile-mb-65 {
    margin-bottom: 65px !important;
  }
  .mobile-mb-70 {
    margin-bottom: 70px !important;
  }
  .mobile-mb-75 {
    margin-bottom: 75px !important;
  }
  .mobile-mb-80 {
    margin-bottom: 80px !important;
  }
  .mobile-mb-85 {
    margin-bottom: 85px !important;
  }

  .mobile-mb-90 {
    margin-bottom: 90px !important;
  }

  .mobile-mb-95 {
    margin-bottom: 95px !important;
  }

  .mobile-mb-100 {
    margin-bottom: 100px !important;
  }

  .mobile-mt-0 {
    margin-top: 0px !important;
  }
  .mobile-mt-5 {
    margin-top: 5px !important;
  }
  .mobile-mt-10 {
    margin-top: 10px !important;
  }
  .mobile-mt-15 {
    margin-top: 15px !important;
  }
  .mobile-mt-20 {
    margin-top: 20px !important;
  }
  .mobile-mt-25 {
    margin-top: 25px !important;
  }
  .mobile-mt-30 {
    margin-top: 30px !important;
  }
  .mobile-mt-35 {
    margin-top: 35px !important;
  }
  .mobile-mt-40 {
    margin-top: 40px !important;
  }
  .mobile-mt-45 {
    margin-top: 45px !important;
  }
  .mobile-mt-50 {
    margin-top: 50px !important;
  }
  .mobile-mt-55 {
    margin-top: 55px !important;
  }
  .mobile-mt-60 {
    margin-top: 60px !important;
  }
  .mobile-mt-65 {
    margin-top: 65px !important;
  }
  .mobile-mt-70 {
    margin-top: 70px !important;
  }
  .mobile-mt-75 {
    margin-top: 75px !important;
  }
  .mobile-mt-80 {
    margin-top: 80px !important;
  }
  .mobile-mt-85 {
    margin-top: 85px !important;
  }
  .mobile-mt-90 {
    margin-top: 90px !important;
  }
  .mobile-mt-95 {
    margin-top: 95px !important;
  }
  .mobile-mt-100 {
    margin-top: 100px !important;
  }

  .mobile-image-maxh-100 img {
    max-height: 100px;
  }

  .mobile-image-maxh-150 img {
    max-height: 150px;
  }

  .mobile-image-maxh-200 img {
    max-height: 200px;
  }

  .mobile-image-maxh-250 img {
    max-height: 250px;
  }

  .mobile-image-maxh-300 img {
    max-height: 300px;
  }

  .mobile-image-maxh-350 img {
    max-height: 350px;
  }

  .mobile-image-maxh-400 img {
    max-height: 400px;
  }

  .mobile-image-maxh-450 img {
    max-height: 450px;
  }

  .mobile-image-maxh-500 img {
    max-height: 500px;
  }
  .mobile-image-maxh-550 img {
    max-height: 550px;
  }
  .mobile-image-maxh-600 img {
    max-height: 600px;
  }

  .mobile-image-border-radius {
    border-radius: 15px;
    overflow: hidden;
  }

  .desktop_view {
    display: none !important;
  }

  .mobile_view {
    display: block !important;
  }
}

@media only screen and (max-width:767.98px){
  .pt-100{
    padding-top:70px !important;
  }

  .pt-70,
  .pt-65,
  .pt-50{
    padding-top:35px !important;
  }

  .pb-100{
    padding-bottom:70px !important;
  }

  .pb-70,
  .pb-65,
  .pb-50{
    padding-bottom:35px !important;
  }
}

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

/*open search form when you need*/
.error404 .ct-search-form{display:none !important;}
.error404 .ct-no-results .search-form{display: none !important;}

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

/******************
******blocksy******
******************/

@media only screen and (min-width:768px){
  .col-gap-25 > div:first-child > div{
    padding-right:25px !important;
  }
  
  .col-gap-25 > div:last-child > div{
    padding-left:25px !important;
  }
  
  .col-gap-30 > div:first-child > div{
    padding-right:30px !important;
  }
  
  .col-gap-30 > div:last-child > div{
    padding-left:30px !important;
  }
  
  .col-gap-35 > div:first-child > div{
    padding-right:35px !important;
  }
  
  .col-gap-35 > div:last-child > div{
    padding-left:35px !important;
  }
  
  .col-gap-40 > div:first-child > div{
    padding-right:40px !important;
  }
  
  .col-gap-40 > div:last-child > div{
    padding-left:40px !important;
  }
  
  .col-gap-45 > div:first-child > div{
    padding-right:45px !important;
  }
  
  .col-gap-45 > div:last-child > div{
    padding-left:45px !important;
  }
  
  .col-gap-50 > div:first-child > div{
    padding-right:50px !important;
  }
  
  .col-gap-50 > div:last-child > div{
    padding-left:50px !important;
  }
}

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

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

.vc_btn3-container {
  margin-bottom: 35px;
}


.ct-menu-link:not(:empty) {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .ct-container {
    width: calc(100% - 30px) !important;
  }

  .form textarea {
    height: 100px;
  }

  .wpb_gmaps_widget .wpb_map_wraper iframe {
    height: 300px;
  }
}

@media screen and (max-width: 999.98px) {
  #footer ul.widget-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

  }

  #footer ul.widget-menu > li:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 15px;
    margin-right: 15px;
  }
}

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

@supports not (-webkit-touch-callout: none) {
  .parallax,
  .full-bg-row > div > div {
    background-attachment: fixed !important;
  }
}

/***Animation Delay***/
.delay1 {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

.delay3 {
  animation-delay: 0.6s;
}

.delay4 {
  animation-delay: 0.8s;
}

.delay5 {
  animation-delay: 1s;
}

.delay6 {
  animation-delay: 1.8s;
}

/***Placeholder customization***/

::-webkit-input-placeholder{
  color:#878787 !important;
} 

::placeholder {
  color: #878787 !important;
  opacity: 1 !important;
}

.skip-link.show-on-focus{
  display: none;
}
/*** Woocommerce ***/

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

.ct-breadcrumbs span {
  text-transform: capitalize;
  color:#555553;
  font-weight: 400;
}

.ct-breadcrumbs span.last-item span{
  color: #F4571D;
  font-weight: 600;
}

.woocommerce section.related.products .woocommerce section.up-sells.upsells.products {
  margin-top: var(--gap);
}

.woocommerce section.related.products>h2,
.woocommerce section.up-sells.upsells.products>h2 {
  font-size: 25px;
  text-transform: capitalize;
}

@media only screen and (max-width:999.98px){
  .woocommerce .ct-sidebar > .ct-widget:first-child > .iksm-container.display {
    opacity: 1;
    height: auto;
    visibility: visible;
    border-top: 0;
    border-bottom: 0;
    animation: iks-zoom-in 400ms !important;
    animation-fill-mode: forwards !important;
  }

  .woocommerce .ct-sidebar .ct-widget .widget-title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--grey);
    margin-bottom: 0;
  }

  .woocommerce .ct-sidebar .ct-widget .widget-title:after,
  .iksm-term.iksm-term--parent.iksm-term--has-children > div span.iksm-term__toggle__inner i.iks-icon-chevron-4:before {
    content: "\f078" !important;
    font-family: var(--fontAwesome);
    font-size: 15px;
    font-weight: 900;
    transition: 500ms ease;
  }

  .woocommerce .ct-sidebar .widget_products .widget-title.minus:after {
    transform: rotate(180deg);
  }

  .woocommerce #main > .ct-container > aside{
    display: block !important;
    order:-1;
  }
}

.vc_row-has-fill>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner{
  padding-top: 0 !important;
}

.slick-arrow {
  position: absolute;
  font-size: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  bottom: 35px;
  z-index: 2;
  left: 35px;
  background-color: transparent;
  border: 1px solid #fff;
}

.slick-arrow.slick-next {
  left: calc(35px + 75px);
}

.slick-arrow:before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  font-size: 25px;
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  display: flex !important;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  cursor: pointer;
}

.slick-arrow.slick-prev:before {
  content: "\f060";
}

.slick-arrow.slick-next:before {
  content: "\f061";
}

.slick-arrow {
  transition: 0.3s all;
}

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

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

/***slider nav style***/

.hermes .sr7-bullet{
  box-shadow: unset !important;
  background-color:rgba(35, 35, 35, 0.5) !important;
}

.hermes .sr7-bullet:after{
  background-color: rgba(35, 35, 35, 0.5) !important;
}

.hermes .sr7-bullet.selected:after{
  background-color:#F4571D !important;
}

sr7-content > sr7-slide:nth-child(2).hermes.sr7-bullet{
  background-color: rgba(255, 255, 255, 0.5) !important;
}

/***header***/

#header [data-row*=top] > .ct-container .ct-header-text{
  width: 100%;
  margin: 0 !important;
}

.header-top{
  display: flex;
  justify-content: space-between;
  align-items:center;
}

.header-top p{
  margin-bottom: 0 !important;
}

.header-top .header-contact p{
  color:#3B3B3B;
}

.header-top p strong{
  color:#F4571D;
  font-weight: 500;
}

.header-top .header-contact p i{
  color:#F4571D;
  padding:0 15px;
}

.header-top .header-contact{
  display: flex;
}

.header-top .header-contact p:first-child{
  border-right:1px solid #fff;
  padding-right: 15px;
  margin-right: 15px;
}

.header-social {
  position: relative;
}

.header-social:before{
  content:'';
  position: absolute;
  width: 16px;
  height:2px;
  top:50%;
  left:0;
  transform:translate(0,-50%);
  background-color: #050E35;
  display: block !important;
}

.header-social p{
  padding-left: 30px;
  display: flex;
  align-items: center;
  gap:15px;
}

.header-social img{
  width: 25px;
  height: 25px;
  position: relative;
}

.header-social img:before {
  background-color: #050E35;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  z-index: -1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  border-radius: 50%;
}

.text-stroke,
.text-stroke :is(h1, h2, h3, h4, h5, h6, p, strong) {
  -webkit-text-stroke-width: 0.75px;
  -webkit-text-stroke-color: #F4571D !important;
  color: transparent !important;
  margin-bottom: 20px !important;
  font-weight: 600 !important;
  font-size: 20px;
  letter-spacing: 2px;
}

.banner-row,
.banner-wrapper{
  border-radius: 35px;
  overflow: hidden;
}

.banner-button i{
  right:-15px;
}

.mask-img {
  -webkit-mask-image: url(./images/Mask-group.svg);
  mask-image: url(./images/Mask-group.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  position: relative;
}

.background-design{
  position: relative;
}

.background-design:before{
  content:'';
  position: absolute;
  width: 35%;
  height:35%;
  top:0;
  left:0;
  display: block !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./images/background-design.png);
}

/*.home-about-row > div:last-child .wpb_single_image{*/
/*  aspect-ratio: 718/604;*/
/*}*/

.home-about-row > div:last-child > div > div{
  position: relative;
}

.home-about-row.about > div:first-child > div > div{
  position: relative;
}

.home-about-row .move-box {
  position: absolute;
  right: 0;
  bottom: 35px;
  width: 38%;
  height: 34%;
  background: #F4571D;
  margin: 0;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  aspect-ratio: 718/604;
  padding:15px;
}

.home-about-row .main-counter{
  font-size: 50px !important; 
  position: relative;
}

.home-about-row .counter-after{
  position: relative;
}

.home-about-row .counter-after:before{
  content:'%';
  position: absolute;
  width: 100%;
  height:100%;
  top:50%;
  right:0;
  transform: translate(0,-50%);
  font-size: 0.6em;
}

.home-about-row .mega_count_img{
  position: relative;
}

.home-about-row .mega_count_img::before{
  content:'';
  position: absolute;
  width: 65px;
  height:65px;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background-color:rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.home-about-row  .messive-wrapper-counter{
  display: flex;
  align-items: center;
  gap:35px;
}

.home-about-row .vc_inner.vc_row h5{
  padding-top: 10px;
  font-size: 18px;
}

.home-about-row:before{
  background: #F6F5F0;
  opacity: 0.8;
}

.vc_tta-container{
  margin-bottom: 0 !important;
}

.vc_tta-panels-container .vc_tta-panels{
  border:0 !important;
}

.vc_tta-tabs-container{
  margin:0 !important;
}

.vc_tta-tabs-container .vc_tta-tabs-list{
  background-color: #fff;
  border-radius: 2px;
}

.vc_tta-tabs-container .vc_tta-tabs-list > li{
  width: 33%;
  text-align: center;
}

.vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab > a{
  background-color: transparent !important;
  border:0 !important;
}

.vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab > a span{
  position: relative;
  color:#616161;
}

.vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active{
  border-bottom: 2px solid #F4571D;
}

.vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active > a span{
  color:#F4571D;
  font-weight: 600;
}

.vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab{
  position: relative;
}

.vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab:not(:last-child):before{
  content:'';
  position: absolute;
  width: 1px;
  height:60%;
  top:50%;
  right:0;
  transform:translate(50%, -50%);
  background-color: #dddde0;
}

.vc_tta-panels-container .vc_tta-panels{
  background-color: transparent !important;
}

.vc_tta-panels-container .vc_tta-panel > .vc_tta-panel-body{
  padding:25px 0 !important;
}

/*.vc_tta-panels-container .vc_tta-panel > .vc_tta-panel-body .wpb_text_column strong{*/
/*  color:#050E35*/
/*}*/

.home-about-row > div:first-child .home-about-check .vc_column-inner > div{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap:10px;
}

.home-about-row > div:first-child .home-about-check .vc_column-inner > div .wpb_text_column p{
  display: flex;
  align-items: center;
  gap:10px;
}

.moving-wrapper h1{
    font-size: clamp(3rem, 6vw, 8rem);
    width: max-content;
    line-height: 1.2 !important;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #F4571D !important;
    color: transparent !important;
    font-weight: 700;
    margin-bottom: 0 !important;
}

.home-moving > div > div{
  padding-top:0 !important;
}

.home-choose-row {
  border-top-left-radius: 50px;
}

.home-choose-row > div:first-child > div > div{
  padding:100px 0 100px 100px;
}

.home-choose-row .icons img{
  max-width: 50px !important;
  max-height: unset;
}

.home-choose-row .vc_row:last-child .icons img {
    max-width: 45px !Important;
}

.home-choose-row:before{
  content:'';
  position: absolute;
  width: 60px;
  height:60%;
  bottom:0;
  left:0;
  display: block !important;
  background-color: #fff;
  border-radius: 0 40px 0 0;
  animation: scaleUpDown 5s ease-in-out infinite;
}

@keyframes scaleUpDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

.home-client-row .wpb_single_image {
  position: relative;
}

.home-client-row .wpb_single_image > figure > div{
  transition:0.4s all;
}

.home-client-row .wpb_single_image:hover > figure > div{
  transform:scale(1.08);
}

.home-client-row .wpb_single_image:before{
  content:'';
  position: absolute;
  width: 100%;
  height:170px;
  z-index: -1;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="219" height="247" viewBox="0 0 219 247" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M218.844 221.11V210.295V193.118V47.9916V37.1766V20C218.844 8.9543 209.89 0 198.844 0H99.5216C89.4342 0 81.0911 7.46791 79.7193 17.1766H20C8.9543 17.1766 0 26.1309 0 37.1766V210.295C0 210.364 0.000351414 210.433 0.00105255 210.502V230.295C0.00105255 239.43 7.40643 246.835 16.5414 246.835C25.6764 246.835 33.0818 239.43 33.0818 230.295L154.912 230.295C158.239 236.719 164.948 241.11 172.683 241.11H198.844C209.89 241.11 218.844 232.156 218.844 221.11Z" fill="%23F7F7F7"/></svg>') no-repeat center / contain;
}

.home-client-row .logo img{
  min-height: 80px;
  max-height: 80px;
  object-fit: contain;
}

.home-client-row .vc_inner.vc_row {
  row-gap: 135px;
}

.home-client-row{
  padding-bottom: 145px !important;
}

.cta-row {
  background-color: #F6F5F0;
  padding:50px;
  border-radius: 2rem;
  display: flex;
  flex-direction: row;
  position: relative;
  z-index: 1;
  margin:100px 100px 0;
}

.woocommerce .cta-row > .cta-column > .cta-wrapper > p{
  margin-bottom: 20px !important;
}

.cta-row:before{
  content:'';
  position: absolute;
  width:auto;
  height:80px;
  aspect-ratio: 272/124;
  bottom:0;
  left:40%;
  transform:translateX(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./images/cta-icon1.png);
  opacity:0.4;
}

.cta-row:after{
  content:'';
  position: absolute;
  width: 20%;
  height:100%;
  top:0;
  left:60%;
  transform:translateX(-50%);
  background-color: rgba(255, 255,255, 0.1);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);

}

.cta-row .custom-button .vc_general.vc_btn3{
  background-color: #00BE00 !important;
  border-color: #00BE00 !important;
}

.cta-row .custom-button .vc_general.vc_btn3:before{
  background-color: #008800;
  opacity:0.5;
}

.cta-row .cta-column{
  width: 50%;
}

.cta-row > .cta-column:last-child{
  position: absolute;
  right:50px;
  bottom:0;
}

.cta-row > .cta-column:last-child .cta-wrapper{
  text-align: right;
}

.cta-row img{
  max-height: 400px;
}

/*.home-about-row.about .move-box{*/
/*  position: absolute;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  width: 38%;*/
/*  height: 40%;*/
/*  background: #050E35;*/
/*  margin: 0;*/
/*  border-radius: 2rem;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  aspect-ratio: 718/604;*/
/*  padding: 10px;*/
/*}*/

.home-about-row.about > div > div > div > .vc_inner.vc_row:nth-child(3){
  position: absolute;
  bottom:-50px;
  width:100%;
  margin:0;
}


.home-about-row .move-box:hover,
.home-about-row.about .move-box:hover{
  background: #121413;
  transition: 0.3s ease-in-out;
}

.home-about-row > div:last-child .move-box:hover .main-counter,
.home-about-row > div:last-child .move-box:hover h5,
.home-about-row .move-box:hover .counter-after::before,
.home-about-row.about .move-box:hover .main-counter,
.home-about-row.about .move-box:hover h5,
.home-about-row.about .move-box:hover .counter-after::before{
  color:#F4571D !important;
}

.home-about-row > div:last-child .move-box:hover .mega_count_img img,
.home-about-row > div:first-child .move-box:hover .mega_count_img img{
filter: brightness(0) saturate(100%) invert(49%) sepia(96%) saturate(748%) hue-rotate(344deg) brightness(97%) contrast(96%);
}


.about-vision-row > div > div > div{
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.about-vision-row > div > div > div:before{
  content:'';
  position: absolute;
  width: 30%;
  height: 50%;
  left:75%;
  top:50%;
  transform: translate(-50%, -50%) rotateY(0deg); 
  display: block !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transition:0.5s ease;
}

.spin-animation:before {
  transform: translate(-50%, -50%) rotateY(-180deg) !important; /* Rotate the icon */
}

.about-vision-row > div:first-child > div > div:before{
  background-image: url(./images/telescope.png);
}

.about-vision-row > div:last-child > div > div:before{
  background-image: url(./images/target.png);
}

.about-vision-row .vc_inner.vc_row {
  margin-top:-125px;
  position: relative;
  right:25%;
  transform:translateX(50%);
  flex:1;
}

.about-vision-row .vc_inner.vc_row > div{
  height:100%;
}

.about-vision-row .vc_inner.vc_row > div > div{
  height:100%
}

.about-vision-row .vc_inner.vc_row > div > div > div{
  background-color:#F7F7F7;
  padding:35px;
  border-radius: 50px;
  max-width: 73%;
  height:100%;
  position: relative;
  overflow: hidden;
  transition:0.5s all;
}

.about-vision-row .vc_inner.vc_row > div > div > div:hover *{
  color:#fff !important;
}

.about-vision-row .vc_inner.vc_row > div > div > div:hover{
  background-color: #121413;
}

.about-vision-row .vc_inner.vc_row > div > div > div:before{
  content:'';
  position: absolute;
  width: 100%;
  height:5px;
  bottom:0;
  left:0;
  display: block !important;
  background-color: #F4571D;
}

.about-vision-row .wpb_single_image > figure{
  border-radius: 50px;
  overflow: hidden;
}

.about-vision-row:before{
  background:linear-gradient(180deg, rgba(255,255,255,1)35%, rgba(255,255,255,0.9)100%);
}

.about.home-client-row > div > div > div{
  display: flex;
  justify-content: space-between;
}

.about.home-client-row .vc_inner.vc_row{
  column-gap: 50px;
}

.home-client-row.about .wpb_single_image:before{
  width: 200px;
}

.home-client-row.about{
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

/***woocommerce***/
.acf-custom-text p{
  margin-bottom: 10px !important;
   color:#797979;
}

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

.woocommerce-product-details__short-description h4,
.woocommerce-product-details__short-description h6{
    color:#050E35;
}

.woocommerce-product-details__short-description h6{
    font-weight:600;
}

.woocommerce-product-details__short-description p{
    color:#2b2b2b;
}

.woocommerce .ct-woo-card-actions .button{
  min-height: unset !important;
  background-color: transparent;
  padding:0;
  position: relative;
  padding-right:25px;
  color:#F4571D;
  font-weight: 600;
}

.woocommerce .ct-woo-card-actions .button:after{
  content:'\f061';
  position: absolute;
  width: 20px;
  height:20px;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-family:'Font Awesome 6 Free';
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-wrapper{
  padding:20px;
  background-color: #F7F7F7;
  position: absolute;
  bottom:0;
  right:0;
  max-width: 80%;
  border-radius: 20px;
  min-width: 250px;
}

.woocommerce ul.products li.product{
  transition: 0.5s all;
}

.woocommerce ul.products li.product .ct-media-container{
  -webkit-mask-image: url(./images/product-shape.svg);
  mask-image: url(./images/product-shape.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  position: relative;
  border-radius: 20px;
}

.woocommerce .count{
  display: none;
}

.woocommerce.single-product .product-entry-wrapper {
  flex-direction: column;
}

.woocommerce.single-product .woocommerce-product-gallery{
  width: 100%;

}

.woocommerce.single-product .ct-product-gallery-container{
  overflow: hidden;
  margin-bottom: 50px;
}

.woocommerce.single-product .summary.entry-summary{
  margin-left: 0 !important;
  width: 100%;
}

.woocommerce-product-details__short-description p:last-child{
  margin-bottom: 0 !important;
}

.woocommerce ul li.product:hover .shop-wrapper{
  background-color: #121413;
  transition: 0.5s all;
}

.woocommerce ul li.product:hover .shop-wrapper .woocommerce-loop-product__title a,
.woocommerce ul li.product:hover .shop-wrapper .woocommerce-loop-category__title a,
.woocommerce ul li.product:hover .shop-wrapper .acf-custom-text p{
  color:#fff;
}


/***iks menu***/
.ct-sidebar > .ct-widget.iksm-widget{
  padding:35px;
  background-color: #F7F7F7;
  border-radius: 30px;
}

.iksm > div .iksm-terms-tree--level-1 > .iksm-terms-tree__inner > div > div{
  margin-bottom: 20px;
}

.iksm > div .iksm-terms-tree--level-1 > .iksm-terms-tree__inner > div > div:nth-child(1){
  padding-right: 20px;
}

.iksm > div  .iksm-terms-tree--level-2 > .iksm-terms-tree__inner{
  overflow:hidden;
}

.iksm .iksm-term__toggle{
  width: 30px !important;
  height:30px !important;
  border-radius: 50%;
}

.news-row article .ct-media-container {
  border-radius: 40px !important;
  overflow: hidden;
}

.search #main,
.search-no-results #main{
  padding-top:var(--gap);
  padding-bottom: var(--gap);
}

.search h1.page-title,
.search-no-results h1.page-title{
    text-align:center;
}

.is-form-style input.is-search-input,
.is-search-submit .is-search-icon{
  min-height: 50px !important;
}

#is-search-input-363,
#is-search-input-364{
  border:0 !important;
}

.is-form-style input.is-search-input::placeholder{
  color:#A6A6A6 !important;
  opacity: 1 !important;
}

.is-search-form{
  border:1px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
}

.rpwwt-post-date{
  color:#797979;
}

.is-search-submit .is-search-icon{
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding-top:0 !important;
  border:0 !important;
  background-color:transparent !important;
}


/***post***/

.blog .entry-title{
  font-family: 'arimo';
}


#rpwwt-recent-posts-widget-with-thumbnails-2 {
  padding:35px;
  background-color: #F7F7F7;
  border-radius: 30px;
}

#rpwwt-recent-posts-widget-with-thumbnails-2 .widget-title{
  color:#050E35;
  font-weight: 600;
}

#rpwwt-recent-posts-widget-with-thumbnails-2 .rpwwt-post-title{
  color:#3f3f3f;
  font-size: 14px;
  font-weight: 500;
}

#rpwwt-recent-posts-widget-with-thumbnails-2 img{
  border-radius: 15px;
  width: 100px !important;
  height:100px !important;
  margin-right:1.75em !important;
  aspect-ratio: 1/1;
}

.rpwwt-widget ul li{
    margin-bottom:5px !important; 
}

.single-post .site-main > .ct-container,
.blog .site-main > .ct-container{
  padding-top: var(--gap);
  padding-bottom:calc(var(--gap) - 35px);
}

.meta-date{
  position: relative;
  padding-left:15px;
}

.meta-date:before{
  content:'';
  position: absolute;
  width: 6px;
  height:6px;
  top:50%;
  left:0;
  transform:translate(0,-50%);
  display: block !important;
  background-color: #797979;
  border-radius: 50%;
}

.popmake .contact-form-row {
  border-top: 0 !important;
}

.contact-row > div > div > div > .icons img{
  max-height: 120px;
}

.contact-row small{
  color:#000;
  font-weight: 400;
  font-size: 14px;
}

.contact-row .vc_inner.vc_row .icons img{
  max-height: 60px;
}

.contact-row .vc_inner.vc_row .icons {
  width: fit-content;
  margin-left:auto;
  margin-right:auto;
  transition:0.5s all;
}

.contact-row > div .vc_inner.vc_row .icons:before{
  background-color: #F6F5F0;
  border-radius: 20px;
  z-index: -1;
  transition:0.5s all;
}

.contact-row > div .vc_inner.vc_row .icons {
    width: 75px;
    height:75px;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
}

.contact-row .vc_inner.vc_row > div > div > div{
  padding:20px;
  border:1px solid #d4d4d4;
  border-radius: 30px;
}

.contact-row .vc_inner.vc_row > div{
  height:auto;
}

.contact-row .vc_inner.vc_row > div > div,
.contact-row .vc_inner.vc_row > div > div > div{
  height:100%;
}

.contact-row .vc_inner.vc_row > div:hover  .icons:before{
  background-color: #F4571D;
}

.contact-row .vc_inner.vc_row > div:hover .icons img{
  filter: brightness(0) saturate(100%) invert(93%) sepia(20%) saturate(27%) hue-rotate(53deg) brightness(106%) contrast(106%);
}

.contact-form-row {
  margin:0 !important;
  border-radius: 10px;
  position: relative;
  border-top:10px solid #050E35;
}


.page-id-388 .cta-row,
.page-id-388 #footer [data-row*=middle],
.page-id-388 .ct-footer:before{
  display: none !important;
}

.page-id-388 .ct-footer{
  background-image: none !important;
  background-color: #fff !important;
}

.page-id-388 [data-row*=bottom] .ct-footer-copyright p{
  color:#878787 !important;
}
/***contact form***/
.form {
  display: grid;
  gap:15px;
}

.form {
    margin-bottom:15px;
}

.form input,
.form textarea{
  background-color: #fff !important;
  border:1px solid #e2e2e2 !important;
}

#send {
  margin-top: 15px;
  position: relative;
  width: fit-content;
  margin-left:auto;
  margin-right:auto;
}

#send button{
    background-color:#00BE00;
    border:1px solid #00BE00;
    position:relative;
    padding:12px 40px 12px 25px;
    border-radius:10px;
    transition:0.4s all;
}

#send button input{
    background-color:transparent;
    border:0;
    padding:0;
    min-height:unset;
}

#send  button:before{
    content:'\f061';
    position:absolute;
    width:30px;
    height:30px;
    top:50%;
    transform:translateY(-50%);
    right:5px;
    display:flex;
    font-family:'Font Awesome 6 Free';
    font-size:16px;
    font-weight:700;
    align-items:center;
    justify-content:center;
    z-index:1;
    color:#fff;
}

#send  button:hover:before{
    color:#00BE00;
}

#send button:hover{
    background-color:transparent;
}

#send button:hover input{
    color:#00BE00;
}

.wpcf7-spinner{
  position: absolute !important;
  top:8px;
}

.wpcf7 form.invalid .wpcf7-response-output{
  margin-top: 5em !important;
}
/***footer***/

.font-arimo{
  font-family: 'arimo' !important;
}

.ct-footer{
  position: relative;
}

.ct-footer:before{
  content:'';
  position: absolute;
  width: 100%;
  height:calc(100% + 100px);
  bottom: 0;
  left:0;
  background-color: #000000;
  z-index: 0;
}

.ct-footer > [data-row="bottom"] {
    border-top: 1px solid #F6F5F04D !important;
    position:relative;
}

#footer [data-row*=middle] .ct-container > div:nth-child(1) img{
    max-height: 50px !important;
    object-fit: contain;
    object-position: left;
}

#footer [data-row*=middle] .ct-container > div:nth-child(1) h5{
  color:#fff;
  font-weight:600;
}

#footer [data-row*=middle] .ct-container > div:nth-child(1) h5 small{
  font-size: 14px;
  font-weight: 400;
}

#footer h3.widget-title{
  font-size: 20px;
  color:#fff;
  font-weight: 700;
}

#footer ul.widget-menu li.menu-item:not(:last-child) {
  margin-bottom: 15px;
}

#footer ul.widget-menu li.current-menu-item > a{
  font-weight:500;
  color:#F4571D;
  position: relative;
}

#header ul.menu li.current-menu-item > a,
#header ul.menu li.current_page_parent > a
{
  color:#F4571D;
  font-weight: 600;
  position: relative;
}

#footer ul.widget-menu li.current_page_parent > a{
    font-weight:600;
    color:#F4571D !important;
}

#header ul.menu li.current-menu-item > a:before{
  content:'';
  position: absolute;
  width:100%;
  height:3px;
  left:0;
  top:0;
  background-color: #F4571D;
  display: block  !important;
  opacity: 1 !important;
}

#menu-primary-menu-1 > li.current-menu-item > a,
#menu-primary-menu-1 > li.current_page_parent > a{
  color:#050E35;
  font-weight: 600;
}


.ct-header-cta .ct-button{
  position: relative;
  z-index: 9;
}

.ct-header-cta .ct-button:after{
  content:'\f061';
  position: absolute;
  width: 30px;
  height:30px;
  top:50%;
  right:5px;
  font-family: var(--fontAwesome);
  transform:translateY(-50%);
  font-weight: 700;
  font-size: 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#header .header-top a {
  text-decoration: none;
}

.ct-header-cta .ct-button:before{
  content:'';
  position: absolute;
  width: 0;
  height:100%;
  overflow: hidden;
  top:0;
  left:0;
  border-radius: inherit;
  background: #008800 !important;
  z-index: -1;
  display: block !important;
  opacity: 0.5 !important;
  filter:none !important;
  transition:0.4s all !important;
}

.ct-header-cta .ct-button {
    overflow: hidden;
}

.ct-header-cta .ct-button:hover:before{
  width: 100%;
}

.ct-header-cta .ct-button:hover{
  background-color: #00BE00;
}


#header ul.menu li > a:before{
  content:'';
  position: absolute;
  width:0;
  height:3px;
  left:2px;
  top:0;
  background-color: #F4571D;
  display: block  !important;
  opacity: 1 !important;
}

#header ul.menu li:hover > a:before{
  width: 100%;
}

.break{
  display: inline-block;
}

#footer p{
  color:#fff;
  text-align: left;
}

 .footer-social{
  display: flex;
  gap:15px;
    align-items: center;
    color:#F4571D;

}

.footer-social img{
  width: 30px;
  height:30px;

}

.footer-social img::before{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #F4571D;
  border-radius: 50%;
}

@media only screen and (min-width:1000px){
  #footer [data-row*="middle"] > .ct-container{
    grid-template-columns: 1.5fr 1fr 2fr 1fr !important;
  }

  .home-client-row.home .grid > div:nth-child(13){
    grid-area: 3/2/4/3;
  }
  
  .home-client-row.home .grid > div:nth-child(14){
    grid-area: 3/3/4/4;
  }
  
  .home-client-row.home .grid > div:nth-child(15){
    grid-area: 3/4/4/5;
  }
  
  .home-client-row.home .grid > div:nth-child(16){
    grid-area: 3/5/4/6;
  }
}

.product-info-img{
    display:grid;
    padding-bottom:35px;
    gap:15px;
    grid-template-columns:repeat(5,1fr);
}

@media only screen and (max-width:768px){
    .product-info-img{
    grid-template-columns:repeat(3,1fr);
}
}

/*.product-info-img img{*/
/*    width:100px;*/
/*    height:120px;*/
/*}*/

@media only screen and (min-width:768px){
  .about.home-client-row h2{
    width: 65%;
  }

  .contact-form-row > div > div > div{
    width: 80%;
    margin:auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap:15px;
  }

  #msg{
    grid-column: span 3;
  }
}


@media only screen and (min-width:1000px){
  .home-choose-row > div:first-child .vc_inner.vc_row > div:nth-child(1){
    width: 75px;
  }
  .home-choose-row > div:first-child .vc_inner.vc_row > div:nth-child(2){
    width: calc(100% - 75px);
  }
}

@media only screen and (min-width:1150px) and (max-width:1349.98px){
  .home-about-row > div:last-child .move-box{
    width: 43%;
    /*height:41%;*/
  }

  .home-about-row .mask-img{
    width: 90%;
  }

  .home-about-row .main-counter{
    font-size: 40px !important;
  }

  .home-about-row .mega_count_img img{
    height: 30px;
    width: 30px;
  }

  .home-about-row .mega_count_img::before{
    height: 50px;
    width: 50px;
  }

}

@media only screen and (max-width:1449.98px){
  .home-about-row.about > div:first-child .move-box{
    bottom:15px;

  }
}

@media only screen and (max-width:1349.98px){
  .home-about-row.about > div:first-child .move-box{
    height:30%;
    bottom:10%;
    right:7%;

  }
}

@media only screen and (max-width:1149.98px){
  .home-about-row > div{
    width: 100%;
  }

  .home-about-row{
    flex-direction: column-reverse;
  }

  .home-about-row.about > div:first-child .move-box{
    height:36%;
    bottom:0;
    right:0;
    width: 39%;
  }
}



@media only screen and (max-width:999.98px){
  .about-vision-row > div{
    width: 100%;
  }

  .about-vision-row > div:first-child{
    padding-bottom: 50px;
  }

  .home-product-row{
    grid-template-columns: 1fr 1fr;
  }

  .home-product-row ul.products{
    grid-template-columns: 1fr !important;
  }

  .home-client-row .vc_inner.vc_row{
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ct-footer::before{
    height:calc(100% + 70px);
  }

  .ct-footer > div{
    position: relative;
    z-index: 1;
  }

  .iksm-widget .iksm-container {
    display: none;
  }
  .iksm-widget .iksm-container.display {
      display: block;
  }

}

@media only screen and (max-width:767.98px){
    
    
    .home-about-row .vc_inner.vc_row h5 br {
        display:none;
    }
    
    
  .home-about-row .messive-wrapper-counter{
    gap:15px;
  }

  .home-about-row > div:last-child .move-box,
  .home-about-row.about > div:first-child .move-box {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    height: unset;
    background: #121413;
    margin: 0;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    aspect-ratio: unset;
    padding:20px 15px;
    margin-bottom: 35px;
    margin-top:-35px !important;
    z-index: 1;
  }

  .home-about-row > div:last-child .wpb_single_image,
  .home-about-row.about > div:first-child .wpb_single_image{
    margin-bottom: 0 !important;
  }

  .home-about-row.about > div > div > div > .vc_inner.vc_row:nth-child(3){
    position: unset;
  }

  .home-choose-row > div:first-child > div > div{
    padding:70px 15px;
  }

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

  .banner-row {
    border-radius: 2rem;
  }

  .banner-button i{
    right:-5px;
  }

  .vc_tta-panel-heading{
    display: none !important;
  }

  .vc_tta-tabs-container{
    display: block !important;
  }

  .vc_tta-tabs-list{
    display: flex !important;
    flex-direction: column;
  }

  .vc_tta-tabs-list > li{
    width: 100% !important;
  }

  .vc_tta-panel-body{
    background-color: transparent !important;
    border:0 !important;
  }

  .home-about-row > div:first-child .home-about-check .vc_column-inner > div{
    gap:15px;
  }

  .home-product-row{
    grid-template-columns: 1fr;
  }

  .home-choose-row:before{
    display: none !important;
  }

  .home-client-row .vc_inner.vc_row{
    grid-template-columns: 1fr 1fr;
  }

  .cta-row {
    margin:70px 15px 0;
    padding:50px 15px;
    flex-direction: column-reverse;
  }

  .cta-row > .cta-column:last-child{
    position: unset;
    margin-bottom: 35px;
    margin-top:-100px;
  }
  .cta-row > div{
    width: 100% !important;
  }
  .cta-row:before{
    left: 85%;
  }

  .home-client-row{
    padding-bottom: 45px !important;
  }

  .about-vision-row .vc_inner.vc_row > div > div > div{
    padding:20px;
    border-radius: 2rem;
    max-width: 85%;
  }

  .about-vision-row .vc_inner.vc_row{
    right: 0;
    transform:unset;
  }

  .about.home-client-row > div > div > div{
    flex-direction: column;
  }

  .home-client-row.about{
    padding-bottom: 45px !important;
    padding-top: 70px !important;
  }

  .about.home-client-row .vc_inner.vc_row:nth-child(2){
    column-gap: 0;
    padding-top:85px;
  }

  .woocommerce .cta-row{
    margin-top: 0 !important;
  }

  aside[data-type=type-4] .ct-sidebar{
    padding:0 !important;
  }

  .ct-sidebar > .ct-widget.iksm-widget{
    padding:15px 15px;
  }

  div.woocommerce-product-gallery{
    margin-bottom: 0 !important;
  }

  .woocommerce.single-product .ct-product-gallery-container{
    margin-bottom: 35px !important;
    border-radius: 2rem;
  }

  .product-entry-wrapper{
    margin:0 !important;
    width: 100% !important;
  }

  .woocommerce-product-details__short-description{
    text-align: justify;
  }

  .blog .site-main > .ct-container > aside{
    display: block !important;
    order:-1;

  }

  #rpwwt-recent-posts-widget-with-thumbnails-2{
    padding:35px 15px;
  }

  .blog .entry-card .ct-media-container,
  .single-post .ct-media-container{
    border-radius: 2rem;
  }

  .blog .entry-card .entry-button{
    margin-bottom: 35px !important;
  }
  
  .blog .entry-card{
    margin-bottom: 17.5px !important;
    padding-bottom: 17.5px !important;
  }

  .single .cta-row,
  .blog .cta-row{
    margin-top: 0 !important;
  }


  .single-post .hero-section{
    margin:0 !important;
    padding-bottom: 20px;
  }

  .contact-row .vc_inner.vc_row > div:not(:last-child){
    margin-bottom: 35px;
  }
  
  .ct-footer-copyright p{
      text-align:center !important;
  }
}


@media only screen and (max-width:479.98px){
  .home-about-row .main-counter{
    font-size: 35px !important;
  }

  .home-about-row .mega_count_img::before{
    width: 50px;
    height:50px;
  }
  .home-about-row .mega_count_img img{
    width: 30px;
    height:30px;
  }


  .home-about-row .vc_inner.vc_row h5{
    font-size: 16px;
  }


}

/*Amendment*/

/*Remove product card description*/
.archive.woocommerce ul.products li.product .acf-custom-text {
    display: none;
}

.whatsapp-btn.custom-button .vc_general.vc_btn3 {
    background-color: rgba(37, 211, 102, 1) !important;
    border-color: rgba(37, 211, 102, 1) !important;
}

.whatsapp-btn.custom-button .vc_general.vc_btn3:before {
    background-color: rgb(46 183 98);
}

/*.archive.woocommerce #main .ct-breadcrumbs span {*/
/*    color: #555553;*/
/*}*/

/*.archive.woocommerce #main .ct-breadcrumbs span.last-item span {*/
/*    color: #F4571D;*/
/*}*/

.archive.woocommerce [data-products] .woocommerce-loop-category__title,
.archive.woocommerce .ct-sidebar .widget-title,
.woocommerce.archive h2.woocommerce-loop-product__title{
    font-size: 16px;
}

.shop-wrapper {
    padding: 15px;
}

.home-choose-row {
    margin-bottom: var(--gap);
}

@media only screen and (min-width:1350px) {
    .ct-footer .widget-menu {
        column-count: 2;
    }
}

#header .footer-social:before {
    content: '';
    display: block;
    position: relative;
    background-color: #F4571D;
    width: 50px;
    height: 3px;
}

.single-post .ct-breadcrumbs span {
    color: #555553;
}

.blog-img-row img {
    aspect-ratio: 1 / 1;
    border-radius: 30px;
}

.archive.category #main > .ct-container {
    padding-block: var(--gap);
}

.home-product-row .products {
    display: block;
}

.project-wrapper {
    position: absolute;
    background-color: #121413;
    left: 0;
    bottom: 0;
    border-radius: 0 30px 0 0;
    padding: 35px 50px;
    width: 50%;
    transform: translateY(75px);
    transition: 0.3s ease-in-out;
}

.archive.category .entries > .entry-card:hover .project-wrapper {
    transform: translateY(0);
}

.archive.category .entries {
    counter-reset: counter;
}

.archive.category .entries > .entry-card {
    counter-increment: counter;
}

.archive.category .entries > .entry-card .project-wrapper::before {
    content: counter(counter, decimal-leading-zero);
    -webkit-text-stroke-width: 0.75px;
    -webkit-text-stroke-color: var(--f-6-f-5-f-0, #F6F5F0);
    font-family: Graphik;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    padding-bottom: 10px !important;
    display: block;
}

.archive.category .entries > .entry-card {
    position:relative;
    padding-bottom:0;
    border-radius: 50px;
    overflow:hidden;
}

.archive.category .entries > .entry-card > .ct-media-container {
    margin-bottom:0;
}

.archive.category .entries > .entry-card .entry-title a {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 25px !important;
}

.archive.category .entries > .entry-card .entry-button {
    color: #fff !important;
    display: flex;
    justify-content: space-between;
    margin-top: 40px !important;
    position: relative;
}

.archive.category .entries > .entry-card .entry-button:before {
    content: '';
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.archive.category .entries > .entry-card .entry-button svg {
    background-color: #F4571D;
    border-radius: 5px;
    padding: 2px;
    width: 20px !important;
    height: 20px !important;
}

.service-main-img {
    border-radius: 50px;
    overflow: hidden;
}

@media only screen and (max-width:767.98px) {
    .service-main-title * {
        text-align: left !important;
    }
}

.service-rows.left > .wpb_column:first-child,
.service-rows.right > .wpb_column:last-child {
    padding-inline: var(--gap);
}

.service-rows.left {
    background-color: #F6F5F0;
}

.service-rows {
    margin-bottom: var(--gap);
}

@media only screen and (min-width:768px) {
    .service-rows > .wpb_column > div > div > *:last-child {
        margin-bottom: 0 !important;
    }
    .service-rows.left .service-rows-img {
        border-radius: 50px 0 0 50px;
        overflow: hidden;
    }
    .service-rows.right .service-rows-img {
        border-radius: 0 50px 50px 0;
        overflow: hidden;
    }
}

@media only screen and (max-width:767.98px) {
    .service-rows.left > .wpb_column:first-child,
    .service-rows.right > .wpb_column:last-child {
        padding-inline: 15px;
        padding-top: var(--gap);
    }

    .service-rows.right {
        display:flex;
        flex-direction: column-reverse;
    }
    
    .service-rows .service-rows-img {
        border-radius: 50px 50px 0 0;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .service-rows {
        margin-bottom: 0;
    }
}

.service-rows-title {
    font-size: 20px;
    font-weight: 500;
}

.service-rows-icon {
    margin-bottom:15px !important;
}

.service-rows-icon img {
    width: 45px;
}

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

.single-product .woocommerce-tabs.wc-tabs-wrapper {
    padding-top: 0 !important;
}

.product-row h2 {
    font-size: 20px;
    font-weight: 600;
}

@media (min-width: 690px) {
    .thumbs-left .flexy {
        margin-right: calc(var(--thumbs-width) + var(--thumbs-spacing, 25px)) !important;
        margin-left: 0 !important;
    }
    
    .thumbs-left .flexy-pills {
        left: auto !important;
        right: 0 !important;
    }
    
    .thumbs-left {
        --thumbs-width: max(100px, 15vw) !important;
    }
    
    .flexy-pills img {
        aspect-ratio: 350 / 200 !important;
    }
    .flexy-pills li {
        flex: 1 !important;
    }
    .flexy-pills {
        overflow-Y:auto !important;
        scrollbar-width: thin;
    }
}

.iksm-term--has-children > .iksm-term__inner {
    display: none !important;
}

.iksm > div  .iksm-terms-tree--level-2 > .iksm-terms-tree__inner > .iksm-term:not(:last-child) {
    margin-bottom:20px !important;
}

.iksm > div  .iksm-terms-tree--level-2 > .iksm-terms-tree__inner > .iksm-term {
    border-radius: 20px !important;
}

.iksm-term__shifts {
    display: none !important;
}

.iksm > div  .iksm-terms-tree--level-2 > .iksm-terms-tree__inner > .iksm-term .iksm-term__link {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.iksm > div  .iksm-terms-tree--level-2 > .iksm-terms-tree__inner > .iksm-term .iksm-term__link:after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    display: flex;
    position: relative;
    font-weight: 900;
    font-size: 60%;
    width: auto;
    height: 20px;
    width: 20px;
    background-color: #F4571D;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner-1-show,
.banner-2-show {
    opacity: 0 !important;
    transition: 0.5s ease-out;
}

.banner-1-show.clicked,
.banner-2-show.clicked{
    opacity: 1 !important;
}

.banner-3-show {
    transition: 0.5s ease-out;
}

.banner-3-show.clicked{
    transform: translateX(-100%) !important;
}

.banner-clicker:before {
    content:'';
    display: block;
    position:absolute;
    width:100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.2;
    background-color: #EE5D1E;
    border-radius:50%;
    animation: pulseScale 3s ease-in-out infinite;
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.banner-clicker > * {
    cursor: pointer !important;
    border-radius: 50% !important;
}

@media only screen and (max-width:999.98px) and (min-width:690px) {
    [data-products] {
        grid-template-columns: 1fr 1fr;
    }
}

#menu-item-1024 .sub-menu {
    column-count: 2;
    width: 700px;
    border-radius: 30px !important;
    background: #F6F5F0 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15) !important;
    padding:10px;
    gap: 10px;
}

#menu-item-1024 .sub-menu > li {
    border-radius: 20px;
    background: #FFF;
    margin-bottom: 10px;
}

#menu-item-1024 .sub-menu > li > a {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#menu-item-1024 .sub-menu > li > a:after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    display: flex;
    position: relative;
    font-weight: 900;
    font-size: 60%;
    width: auto;
    height: 20px;
    width: 20px;
    background-color: #F4571D;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.gradiant-title > span {
    background: linear-gradient(270deg, #FF983D -25.82%, #EE5D1E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-img-text {
    font-size:20px;
}

@media only screen and (min-width:1150px) {
    .about-main-row .mask-img img {
        max-height: 400px;
    }
    .about-main-text-custom {
        margin-bottom:0;
    }
}

.service-main-row {
    margin-inline: -25px;
}

.service-main-row > .wpb_column > .vc_column-inner {
    padding-inline: 25px;
}

@media only screen and (max-width:767.98px) {
    .home-choose-row .icons {
        margin-bottom:10px !important;
    }
    
    .project-wrapper {
        position: relative;
        width: 100%;
        transform: translateY(0);
        border-radius: 0;
}
}

.home-about-row .mega_count_content > h3 {
    display: none !important;
}

/*Code for SEO FAQ*/

.faq {
    border-bottom: 1px solid #000000;
    border-radius: 0;
    padding: 0 0 10px 0;
}

.faq .vc_toggle_title {
    padding-left:0 !important;
    padding-right:25px !Important;
    
}

.faq .vc_toggle_title > * {
    font-size: 25px !important;
    line-height: 1.3;
    font-weight: 600 !important;
}

.faq .vc_toggle_icon {
    left: auto !important;
    right: 0;
}

.faq .vc_toggle_icon,
.faq .vc_toggle_icon::after{
    height: 1px !important;
    background-color: #000000 !important;
    border: 0 !important;
}

.faq .vc_toggle_icon::before {
    width:1px !important;
    background-color: #000000 !important;
    border: 0 !important;
}

.faq .vc_toggle_content {
    padding-left:0 !important;
}

.faq .vc_toggle_content p:last-child {
    margin-bottom:0 !important;
}