#main-container > p{
  margin-bottom: 0 !important;
}

.wave-section.blog .about-intro-row {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
@font-face {
  font-family: "plus";
  font-weight: 400;
  src: url("./fonts/PlusJakartaSans-Regular.ttf") format("truetype");
}

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

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

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

@font-face {
  font-family: "plus";
  font-weight: 800;
  src: url("./fonts/PlusJakartaSans-ExtraBold.ttf") format("truetype");
}

.fix-stroke h1 {
   paint-order: stroke fill !important;
}


#header ul.menu li.menu-item.current-menu-item > a{
  font-weight: 700;
}

/*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 {
  /* 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(24, 119, 242,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: 140px;
}

/*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.float-btn-trigger > .chat-with-us.pop {
    display:block;
}

.floating-button.float-btn-trigger.toogle > .chat-with-us.pop {
    display:none;
}
    
  .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: "plus" !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;
  font-family: "plus" !important;
}

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

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

#menu-primary-menu-1 li.current-menu-item > a{
    font-weight:700;
}

#footer li.current-menu-item > a{
    font-weight:700;
    color:#157fc9;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-content :is(h1, h2, h3, h4, h5, h6) {
  line-height: var(--theme-line-height) !important;
  text-align: left;
}

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

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

@media only screen and (min-width:768px){
  .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 {
  margin-bottom: 35px !important;
}

/* .custom-button .vc_general.vc_btn3 {
  padding: 10px 25px;
  background-image: none !important;
  border-radius: 15px;
  background-color: #f66e3b !important;
  color: #fff !important;
  font-weight: 400;
  line-height: 1 !important;
  position: relative;
  z-index: 1;
  transition:0.8s all;
  border:0 !important;
}

.custom-button .vc_general.vc_btn3:before{
  content:'';
  position: absolute;
  width: 50px;
  height: 20px;
  bottom:0;
  left:0;
  border-radius: 0 50% 50% 0;
  z-index: -1;
  display: block !important;
  background-color: #157FC9;
  transition:0.5s all;
  border-radius: inherit;
  opacity: 0;
}


.custom-button .vc_general.vc_btn3:hover:before{
  width: 100%;
  height: 100%;
  opacity: 1;

} */
.button:before,
.ct-button:before {
    all:unset;
}

.ct-button{
  padding:10px 25px !important;
  min-height: 0 !important;
  border-radius: 50px !important;
  background-color: #157FC9 !important;
  overflow: hidden;
}



.custom-button .vc_general.vc_btn3 {
  padding: 12px 25px;
  background-image: none !important;
  border-radius: 2rem;
  background-color: #f66e3b !important;
  color: #fff !important;
  font-weight: 400;
  line-height: 1 !important;
  position: relative;
  z-index: 1;
  transition: 0.6s all ease;
  border: 0 !important;
  overflow: hidden;
}

.custom-button .vc_general.vc_btn3:before{
  content: '';
  position: absolute;
  width: 200px;
  height: 100px;
  background-color: #157FC9 !important;
  border-radius: 50% !important;
  bottom: -50px; /* Start from bottom */
  left: -100px; /* Start from left */
  z-index: -1 !important;
  transition: 0.5s all !important;
  transform: scale(0) !important;
  opacity: 0;
  display: block !important;
  filter: none !important;
}

.ct-button:hover:before{
  background-color: #00d08b !important;
}

.custom-button .vc_general.vc_btn3:hover:before{
  transform: scale(2.0) !important;
  opacity: 1;
}

.custom-button.square {
  width: 100%;
}

.custom-button.square .vc_general.vc_btn3 {
  border-radius: 0;
  min-height: 75px;
  min-width: 90%;
  text-align: left;
  background-color: #fff !important;
  color: #1f1f1f !important;
  border: 0;
  font-weight: 600;
  transition: var(--allTransition);
}

.custom-button.square .vc_general.vc_btn3 i {
  color: #157fc9;
  right: 20px !important;
  transition: var(--allTransition);
}

.custom-button.square .vc_general.vc_btn3:hover {
  background-color: #157fc9 !important;
  color: #fff !important;
}

.custom-button.square .vc_general.vc_btn3:hover i {
  color: #fff;
  right: 20px !important;
}

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

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

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

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

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

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

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

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

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 {
  padding-left: 20px;
}

.mobile_view {
  display: none !important;
}

.m-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

@media only screen and (min-width: 768px) {


  .width-90 {
    width: 90% !important;
  }

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

  .width-35 {
    width: 35%;
  }

  .width-30 {
    width: 30%;
  }

  .width-25 {
    width: 25%;
  }

  .width-20 {
    width: 20%;
  }
}

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

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

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

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

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

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

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

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

.fw-900,
.fw-900 :is(h1,h2,h3,h4,h5,h6) {
  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-5 {
  margin-bottom: 5px !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;
  margin-left: 0;
  margin-right: 0;
}

.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-20 > div:first-child > div {
    padding-right: 20px !important;
  }

  .col-gap-20 > div:last-child > div {
    padding-left: 20px !important;
  }

  .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;
    gap: 10px;
  }

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

/*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: #b7b7b7 !important;
}

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

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

.break {
  display: inline-block;
}
/*** Woocommerce ***/

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

.woocommerce-product-gallery{
  display: none;
}

.woocommerce.single-product .summary{
  margin-left: 0;
  width: 100%;
}
.ct-breadcrumbs span a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color:#7C7C7C;
}

.ct-breadcrumbs > span:last-child {
  color: #157FC9 !important;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
}

.ct-breadcrumbs .ct-separator{
  display: none;
}

.ct-breadcrumbs > span:not(:last-child){
  border-right:1px solid #7C7C7C;
  padding-right:15px;
  margin-right: 15px;
}

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

.woocommerce.single-product .hero-section{
  margin-bottom: 0 !important;
}

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

.is-search-form{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding:20px;
  border:1px solid #9B9B9B;
  border-radius: 50px;
}

.is-form-style.is-form-style-3 input.is-search-input{
  border:0 !important;
  background-color: transparent;
  height: unset;
  padding-left: 20px !important;
}

.is-search-icon{
  background:transparent !important;
  border:0 !important;
  position: relative;
}

.is-search-icon svg{
  display: none !important;
}

.is-search-icon:before{
  content:'';
  position: absolute;
  width: 16px;
  height:16px;
  top:50%;
  right:0;
  transform:translate(0, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  background-image: url(./images/search-icon.png);
}


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

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

  .iksm-widget .widget-title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px 10px 0;
    font-weight: 700 !important;
    border-bottom: 1px solid #9b9b9b;
    font-size: 18px;
    color:#231F20 !important;
  }
  /*.iksm-widget .widget-title:after {*/
  /*  content: '\E815' !important;*/
  /*  font-family: "IksIcons";*/
  /*  font-size: 15px;*/
  /*  font-weight: 900;*/
  /*}*/
  /*.iksm-widget .widget-title.minus:after {*/
  /*  content: '\f068' !important;*/
  /*  font-family: 'Font Awesome 5 Free';*/
  /*  font-size: 14px;*/
  /*  font-weight: 900;*/
  /*}*/

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

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

/*@media only screen and (max-width: 767.98px) {*/
/*  .woocommerce main#main .ct-container {*/
/*    padding-left: 15px;*/
/*    padding-right: 15px;*/
/*  }*/
/*}*/

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.form input,
.form textarea {
  background-color: #fff !important;
  border-radius: 20px !important;
  border: 0 !important;
}

.form textarea {
  height: 100px !important;
}

#send {
  position: relative;
}

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



.slick-arrow {
  position: absolute;
  font-size: 0;
  width: 55px;
  height: 55px;
  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: 20px;
  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: #157FC9;
}
.slick-arrow:hover::before{
  color:#fff !important;
}


.vc_row-has-fill > .vc_column_container > .vc_column-inner,
.vc_col-has-fill > .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;
}

.curve-line,
.short-curve-line {
  position: relative;
  width: fit-content;
}

.big-curve-line {
  position: relative;
}

.big-curve-line:before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 40%;
  height: 30%;
  background-size: contain;
  background-repeat: no-repeat;
  display: block !important;
  background-image: url(./images/bigcurve.png);
  z-index: 2;
}

.curve-line:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0px;
  left: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  display: block !important;
  background-image: url(./images/curveline.png);
}

.short-curve-line:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  display: block !important;
  background-image: url(./images/shortcurve.png);
}

.home-contact-row .short-curve-line:before {
  left: unset;
  right: 0;
  background-position: right;
}

.home-banner.background-layer:before {
  background: linear-gradient(
    180deg,
    rgba(237, 246, 251, 1) 0,
    rgba(255, 255, 255, 1) 100%
  );
}

.icons img {
  object-fit: contain;
  max-height: 45px;
}

.small-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px !important;
  text-transform: capitalize;
  position: relative;
}

.wpb_text_column.text-gradient strong {
  background: -webkit-linear-gradient(#7282f6, #f66e3b);
  background: linear-gradient(to right, #7282f6, #f66e3b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.text-stroke,
.text-stroke :is(h1, h2, h3, h4, h5, h6, p, strong) {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #1962f2 !important;
  color: #fff;
  margin-bottom: 20px !important;
  font-weight: 800;
  font-size: 60px;
  line-height: 1 !important;
}

.wpb_text_column.text-gradient,
.wpb_text_column.text-gradient :is(h1, h2, h3, h4, h5, h6, strong, p) {
  line-height: 1.2 !important;
  z-index: 3;
  position: relative;
}

.home-intro-row {
  overflow: visible !important;
}


.home-intro-row .small-title,
.home-intro-row,
.home-intro-row > div:first-child > div > div,
.home-intro-row .wpb_single_image {
  position: relative;
}

.home-intro-row > div:first-child > div > div {
  z-index: 10;
}

.home-intro-row:before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgb(196, 224, 245);
  background: radial-gradient(
    50% 50% at 50% 50%,
    #c4e0f5 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index:0;
  top: -50px;
  left: -20px;
  border-radius: 50%;
  display: block !important;
  opacity: 0.4;
}

.home-intro-row .small-title:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(50% 50% at 50% 50%, #C4E0F5 0%, rgba(255, 255, 255, 0.00) 100%);
  z-index: 0;
  top: -100px;
  left: -50px;
  border-radius: 50%;
  display: block !important;
  opacity: 0.4;
}

.home-intro-row .wpb_single_image:before,
.table-price > div > div > div:before,
.price-row:after,
.contact-sec:after,
.contact-info-row:before,
.blog-sec:before{
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #fbdbf0;
  top: -150px;
  z-index: 1;
  left: -200px;
  border-radius: 50%;
  display: block !important;
  filter: blur(200px);
}

.home-intro-row .wpb_single_image img {
  position: relative;
  z-index: 5;
}

.price-table,
.table-price > div > div > div,
.price-row{
  position: relative;
}

.home-intro-row > div:first-child > div > div:before,
.about-software-row:before,
.faq-title-row:after,
.faq-row:before,
.price-table:before,
.price-table:after,
.pricing-sec:before,
.price-row:before,
.contact-form-row:before,
.gallery-counter-sec:after,
.blog-sec:after{
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #d9d9ff;
  bottom: 0;
  z-index: 1;
  right: 0;
  border-radius: 50%;
  display: block !important;
  filter: blur(250px);
  opacity: 0.6;
}

.green,
.green :is(h1, h2, h3, h4, h5, h6, p, li, strong) {
  color: #08b299;
}

.orange,
.orange :is(h1, h2, h3, h4, h5, h6, p, li, strong) {
  color: #f66e3b;
}

.home-explore-row .vc_inner.vc_row > div:nth-child(2) .text-stroke h1 {
  -webkit-text-stroke-color: #f66e3b !important;
}

.home-explore-row .vc_inner.vc_row > div:nth-child(3) .text-stroke h1 {
  -webkit-text-stroke-color: #00d08b !important;
}

.home-explore-row .vc_inner.vc_row > div:nth-child(4) .text-stroke h1 {
  -webkit-text-stroke-color: #9747ff !important;
}

.home-explore-row .vc_inner.vc_row > div > div > div {
  padding: 20px;
  transition: 0.5s all;
}

.home-explore-row .vc_inner.vc_row > div:nth-child(2) > div > div {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

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

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

.home-explore-row .vc_inner.vc_row > div:hover > div > div {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.home-explore-row h4 {
  font-size: 22px;
}

.text-36 {
  color: #363636;
}

.text-1f {
  color: #1f1f1f;
}

.home-how-row:after,
.home-template-slider-row:before,
.gallery-counter-sec:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #fbdbf0;
  bottom: 0;
  z-index: 0;
  right: 0;
  border-radius: 50%;
  display: block !important;
  filter: blur(200px);
}

.home-template-slider-row .vc_inner.vc_row > div > div > div {
  position: relative;
}

.home-template-slider-row .custom-button {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 0 !important;
}

.home-template-slider-row .custom-button i:before {
  content: "\f178";
}

.home-template-slider-row .vc_inner.vc_row > div > div {
  padding: 0 !important;
}

.home-template-slider-row .slick-slide {
  margin: 0 15px !important;
}

.home-template-slider-row .slick-list {
  margin: 0 -15px !important;
}

.home-template-slider-row .slick-arrow {
  bottom: -100px;
  transform: translateX(-50%);
  border: 1px solid #157fc9;
}

.client-slider-row .slick-arrow {
  bottom: 0;
  transform: translateX(-50%);
  border: 1px solid #157fc9;
}

.home-template-slider-row .slick-arrow:before,
.client-slider-row .slick-arrow:before {
  color: #157fc9;
}

.home-template-slider-row .slick-prev {
  left: 45%;
}

.client-slider-row .slick-prev {
  left: 47%;
}

.client-slider-row .slick-next {
  left: calc(47% + 80px);
}

.home-template-slider-row .slick-prev:before,
.client-slider-row .slick-prev:before {
  content: "\f177";
}

.home-template-slider-row .slick-next:before,
.client-slider-row .slick-next:before {
  content: "\f178";
}

.home-template-slider-row .slick-next {
  left: calc(45% + 80px);
}

.home-template-sec.background-layer:before {
  background: rgb(248, 250, 251);
  background: linear-gradient(
    0deg,
    rgba(248, 250, 251, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.home-template-sec:after,
.home-client-sec:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #fbdbf0;
  left: 0;
  z-index: 0;
  top: 0;
  border-radius: 50%;
  display: block !important;
  filter: blur(200px);
}

.home-template-slider-row {
  position: relative;
}

.home-how-row .custom-button .vc_general.vc_btn3{
  background-color: #157FC9 !important;
}

.home-how-row .custom-button .vc_general.vc_btn3:before{
  background-color: #08B299 !important;
}

.home-feature-row .vc_inner.vc_row > div > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
  min-height: 100px;
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(3, 72, 120, 0.2);
  margin-bottom: 30px;
}

.home-feature-row .curve-line:before{
  bottom:unset;
  top:50%;
  left:40%;
  transform:translate(-50%,-50%);
  background-position: center;
}

.home-feature-row .vc_inner.vc_row > div:nth-child(odd) > div > div,
.feature-row-1 > div:nth-child(odd) > div > div,
.feature-row-2 > div:nth-child(even) > div > div  {
  background: linear-gradient(
    125deg,
    rgba(236, 245, 251, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.home-feature-row .vc_inner.vc_row > div:nth-child(even) > div > div,
.feature-row-1 > div:nth-child(even) > div > div,
.feature-row-2 > div:nth-child(odd) > div > div {
  background: linear-gradient(
    125deg,
    rgba(130, 195, 244, 1) 0%,
    rgba(165, 230, 233, 1) 100%
  );
}

.home-feature-row .vc_inner.vc_row .icons img,
.feature-row-1 .icons img,
.feature-row-2 .icons img {
  max-width: 55px !important;
  position: relative;
  padding: 5px;
}

.home-feature-row .vc_inner.vc_row .icons,
.feature-row-1 .icons,
.feature-row-2 .icons {
  position: relative;
}

.home-feature-row .vc_inner.vc_row .icons:before,
.feature-row-1 .icons:before,
.feature-row-2 .icons:before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  display: block !important;
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 0 22.3px 0 rgba(0, 58, 39, 0.15);
}

.home-feature-row {
  position: relative;
}

.home-feature-row:before {
  content: "";
  position: absolute;
  width: 380px;
  height: 600px;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  background-image: url(./images/feature-img.png);
}

.home-feature-row .vc_inner.vc_row > div:nth-child(3) > div > div,
.home-feature-row .vc_inner.vc_row > div:nth-child(6) > div > div {
  box-shadow: none;
  background: none;
}

.industry-slider-row .vc_inner.vc_row > div > div > div {
  display: flex;
  align-items: center;
  padding: 15px;
  box-shadow: 0 3px 15px 0 rgba(3, 72, 120, 0.1);
  margin-bottom: 30px;
  border-radius: 20px;
  min-height: 90px;
  gap: 35px;
  background-color: #fff;
}

.industry-slider-row > div:last-child .slick-track .wpb_text_column{
    color:#1f1f1f;
    font-weight:600;
}

.industry-slider-row > div:last-child .wpb_single_image img {
  max-width: 45px !important;
}

.industry-slider-row .slick-slide {
  margin: 0 15px;
}

.industry-slider-row .slick-list {
  margin: 0 -15px !important;
}

.slick-dots {
  display: flex;
  justify-content: center;
  padding-left: 0;
  gap: 10px;
}

.slick-dots > li {
  font-size: 0;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d9d9d9;
  cursor: pointer;
}

.slick-dots > li.slick-active {
  background-color: #157fc9;
}

.home-industry-sec:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: #d9d9ff;
  top: 0;
  z-index: 0;
  right: 0;
  border-radius: 50%;
  display: block !important;
  filter: blur(200px);
}

.client-slider-row .icons img {
  width: auto;
  max-height: 35px;
}

.client-slider-row .slick-arrow {
  bottom: -35px;
}

.client-name {
  margin-bottom: 0 !important;
}

.client-name .wpb_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

.client-slider-row .vc_inner.vc_row > div > div > div {
  padding: 35px 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(3, 72, 120, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}

.client-slider-row .vc_inner.vc_row {
  height: auto;
  margin-bottom: 100px;
}

.client-slider-row .vc_inner.vc_row > div {
  height: 100%;
}

.client-slider-row .vc_inner.vc_row > div > div {
  height: 100%;
}

.client-slider-row .vc_inner.vc_row > div > div > div > div:nth-child(3) {
  flex: 1;
}

.client-slider-row .slick-track {
  display: flex !important;
}

.client-slider-row .vc_inner.vc_row > div > div > div .client-name p {
  margin-bottom: 0 !important;
}

.client-slider-row .vc_inner.vc_row > div > div {
  padding: 0 !important;
}

.client-slider-row .slick-slide {
  margin: 0 15px;
}

.client-slider-row .slick-list {
  margin: 0 -15px !important;
}

.wave-section {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1918' height='1139' viewBox='0 0 1918 1139' fill='none'%3E%3Cpath d='M0 1066.93V0H1918V994C1918 994 1678 1100.96 1553.5 1126.04C1429 1151.12 1230.5 1135.89 1034 1102.4C841.837 1069.64 720.031 1029.8 507.5 1021.61C303 1013.73 98.6667 1044.44 0 1066.93Z' fill='%23EAF9FF'/%3E%3C/svg%3E")
    no-repeat bottom;
  background-size: cover;
  position: relative;
}

.wave-section:before{
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background-color: #FBDBF0;
  top: 0;
  z-index: 0;
  left: 35%;
  transform:translateX(-50%);
  border-radius: 50%;
  display: block !important;
  filter: blur(200px);
  opacity: 1;
}

.wave-section:after{
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #FBDBF0;
  top: 0;
  z-index: 0;
  left: 80%;
  transform:translateX(-50%);
  border-radius: 50%;
  display: block !important;
  filter: blur(200px);
  opacity: 1;
}

.wave-section > .about-intro-row.about > div:nth-child(1) > div > div{
  position: relative;
}

.wave-section > .about-intro-row > div:nth-child(1) > div > div:before{
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #d9d9ff;
  bottom: 30%;
  transform:translateY(50%);
  z-index: -1;
  right: 0;
  border-radius: 50%;
  display: block !important;
  filter: blur(200px);
  opacity: 0.6;
}

.wave-section > div:first-child > div:nth-child(1) > div > div .small-title{
  position: relative;
}

.wave-section > .about-intro-row.about > div:nth-child(1) > div > div .small-title:before{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(50% 50% at 50% 50%, #C4E0F5 0%, rgba(255, 255, 255, 0.00) 100%);
  z-index: -1;
  top: -100px;
  left: -50px;
  border-radius: 50%;
  display: block !important;
  opacity: 0.4;
}


.wave-section.product:before{
  left:15%;
  top:50px;
  opacity: 1;
} 

.about-intro-row.about {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr;
}

.about-intro-row.about > div {
  width: 100%;
}

.about-logo .wpb_single_image img {
  max-height: 80px;
  width: auto;
  vertical-align: middle;
}

.about-logo > div {
  display: flex;
  align-items: center;
}

.about-vision-row {
  border-radius: 35px;
  overflow: visible !important;
  position: relative;
}

.about-vision-row .wpb_single_image {
  border-radius: 35px 0 0 35px;
  overflow: hidden;
}

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

.about-vision-row > div:last-child:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 45px;
  left: 75px;
  background-color: rgba(205, 223, 245, 0.55);
  border-radius: 50%;
}

.about-vision-row > div:last-child:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 45px;
  right: 75px;
  background-color: #f66e3b;
  border-radius: 50%;
}

.about-vision-row > div > div > div {
  position: relative;
  overflow: hidden;
}

.about-vision-row > div:last-child > div > div:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 40px solid rgba(112, 117, 169, 0.1);
  bottom: -200px;
  right: -200px;
  display: block !important;
  overflow: hidden;
}

.about-future-row.background-layer::before {
  background: linear-gradient(
    0deg,
    rgba(255, 250, 244, 1) 0%,
    rgba(249, 249, 249, 1) 100%
  );
}

.about-future-row .curve-line:before{
    top:50%;
    left:40%;
    transform:translate(-50%,-50%);
    background-position:center;
}

.about-future-row:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -100px;
  right: 80px;
  display: block !important;
  border-radius: 50%;
  background-color: #fff4e6;
}

.about-software-row:before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  right: unset;
  bottom: unset;
  width: 450px;
  height: 450px;
}

.about-software-row:after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background-color: #fff7d9;
  top: -50%;
  transform: translateY(50%);
  z-index: 1;
  right: -20%;
  border-radius: 50%;
  display: block !important;
  filter: blur(250px);
  opacity: 0.6;
}

.about-software-row .curve-line:before{
    top:50%;
    left:65%;
    transform:translate(-50%,-50%);
    background-position:center;
}

.product-intro-row > div:last-child .custom-button .vc_general.vc_btn3:hover:before{
  background-color: #00d08b !important;
}

.product-intro-row{
    display:flex;
}

.product-intro-row > div{
    height:auto;
}

.product-intro-row > div > div{
    height:100%;
}

.product-intro-row > div > div > div{
    height:100%;
    display:flex;
    flex-direction:column;
}

.product-intro-row > div > div > div .vc_inner.vc_row{
    flex:1;
}

.product-intro-row > div > div > div .vc_inner.vc_row > div{
    height:100%;
}

.product-intro-row > div > div > div .vc_inner.vc_row > div > div{
    height:100%;
} 

.product-intro-row > div > div > div .vc_inner.vc_row > div > div > div{
    display:flex;
    flex-direction:column;
    height:100%;
}

.product-intro-row > div > div > div .vc_inner.vc_row > div > div > div .wpb_text_column{
    flex:1;
}

.product-intro-row-2 > div:first-child .custom-button .vc_general.vc_btn3:hover{
  color:#fff !important;
}

.product-intro-row .vc_inner.vc_row{
  padding: 20px 35px;
}

.product-intro-row-2 > div:first-child .vc_inner.vc_row{
  padding:0 0 50px 50px;
}

.product-intro-row .vc_inner.vc_row > div > div > div > div:first-child,
.product-intro-row-2 .vc_inner.vc_row > div > div > div > .custom-button {
  margin-bottom: 20px !important;
}

.product-intro-row > div > div > div,
.product-intro-row-2 > div > div > div {
  box-shadow: 0 0 13px 0 rgba(101, 101, 101, 0.15);
  border-radius: 50px;
  overflow: hidden;
}

.product-intro-row .custom-button.right-arrow {
  margin-bottom: 0 !important;
}

.product-intro-row .custom-button.right-arrow .vc_general.vc_btn3 {
  padding: 0 48px 0 0;
  background-color: transparent !important;
  border-radius: 0;
  color: #bcbcbc !important;
  border: 0;
}

.product-intro-row
  > div:first-child
  .vc_inner.vc_row
  > div
  > div
  > div
  > div:first-child
  .vc_general.vc_btn3 {
  background-color: #00d08b !important;
  border-color: currentColor;
  font-weight:500;
}

.product-intro-row
  > div:last-child
  .vc_inner.vc_row
  > div
  > div
  > div
  > div:first-child
  .vc_general.vc_btn3 {
  background-color: #157fc9 !important;
  border-color: currentColor;
  font-weight:500;
}

.product-intro-row-2 > div > div > div {
  position: relative;
}

.product-intro-row-2 > div:first-child .vc_inner.vc_row {
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-intro-row-2 > div:first-child > div > div > div::before{
  background: linear-gradient(
    0deg, rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0) 85%
  );
}

.product-intro-row-2 > div:last-child > div > div{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-intro-row-2 > div:last-child > div > div > .wpb_single_image img{
  max-height: 150px;
  width: auto;
}

.product-intro-row-2 > div:first-child .custom-button .vc_general.vc_btn3{
  background-color: #A7FAFF !important;
  border-color: #A7FAFF;
  color:#000 !important;
  font-weight:500;
}

.custom-button.right-arrow .vc_general.vc_btn3:before{
    display:none !important;
}

.product-intro-row-2 > div:last-child .vc_inner.vc_row > div > div > div > div:first-child .vc_general.vc_btn3{
  background-color: transparent !important;
  color:#000 !important;
  border:1px solid #A5A5A5 !important;
  border-radius:65px;
  font-weight:500;
}

.product-intro-row-2 > div:last-child .vc_inner.vc_row > div > div > div > div:first-child .vc_general.vc_btn3:hover{
    color:#fff !important;
}

.product-intro-row-2 > div:last-child .vc_inner.vc_row > div > div > div > div:last-child .vc_general.vc_btn3{
  background-color: #7347FC !important;
  border-color: #7347FC;
  border-radius:65px;
  font-weight:500;

}

.feature-sec .curve-line:before{
  background-position: right;
  height:8px;
}

.feature-row-1 .vc_inner.vc_row,
.feature-row-2 .vc_inner.vc_row{
  padding-bottom: 20px;
}

.feature-row-1 .vc_inner.vc_row > div > div > div,
.feature-row-2 .vc_inner.vc_row > div > div > div{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:20px;
}

.feature-row-1 > div > div > div,
.feature-row-2 > div > div > div  {
  padding:30px;
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(99, 99, 99, 0.15);
}

.feature-row-2{
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  row-gap:30px;
}

.feature-row-2 > div{
  width: 100%;
}

.feature-row-2 > div > div > div{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-row-2 .vc_inner.vc_row {
  display: flex;
  flex:1;
  align-items: center;
  height:100%;
}

.pricing-sec:before{
  bottom:unset;
  top:0;
  right:unset;
  left:0;
  z-index: 0;
  width: 600px;
  height:600px;
}

.pricing-sec .curve-line:before{
  left:95%;
  transform:translateX(-50%);
}

.price-icon-row > div > div > div{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap:20px;
}

.price-row > div > div > div{
  padding:40px 20px;
  box-shadow: 0 0 13.4px 0 rgba(156, 156, 156, 0.15);
  border-radius: 25px;
  background-color: #fff;
}

.price-row .custom-button .vc_general.vc_btn3:before{
  background-color: #08B299;
}

.price-row:before{
  bottom:unset;
  top:50%;
  transform:translateY(-50%);
  z-index: 0;
  right: -150px;
  width: 450px;
  height:450px;
}

.pricing-sec{
  overflow: visible !important;
}


.price-row:after{
  top:unset;
  left:-150px;
  bottom:0;
  z-index: 0;
  width: 250px;
  height:250px;
}

.price-row > div:nth-child(3) > div > div{
  background-color: #157fc9;
}

.price-row .custom-button{
  margin-bottom: 0 !important;
}

.price-row{
  display: flex;
}

.price-row > div{
  height:auto;
}

.price-row > div > div{
  height:100%;
}

.price-row > div > div > div{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-row .price-text h3{
  margin-bottom: 5px !important;
}

.price-row .price-text h3 small,
.price-row .price-text p{
  font-size: 16px;
  font-weight: 400;
}

.price-table-row .curve-line:before{
  left:0;
  transform: unset;
  filter: brightness(0) saturate(100%) invert(86%) sepia(56%) saturate(1064%) hue-rotate(331deg) brightness(101%) contrast(102%);
  height:13px;
  bottom:-5px;
}

.price-table table tr.cat,
.price-table table tr.type{
    background-color: #08B299 !important;
}

.price-table table tr.cat td{
    color:#fff !important;
    border-top:2px solid #fff;
    border-bottom:2px solid #fff;
    transform:translateX(0) !important;
    border-radius:15px !important;
    text-align:center;
}

.price-table table tr.type td{
    color:#fff !important;
    border-bottom:2px solid #fff;
    transform:translateX(0) !important;
    text-align:center;
}

/*.price-table table tr:is(:nth-child(2), :nth-child(12), :nth-child(22), :nth-child(28), :nth-child(33), :nth-child(45)) td{*/
/*  color:#fff !important;*/
/*}*/

/*.price-table table tr:is(:nth-child(2), :nth-child(12), :nth-child(22), :nth-child(28), :nth-child(33), :nth-child(45)) td{*/
/*  border-top:2px solid #fff;*/
/*  border-bottom:2px solid #fff;*/
/*}*/

.price-table table tr td:first-child,
.price-table table tr:first-child td{
  font-weight: 600;
}

.price-table table tr:first-child td{
  color:#000;
}

.price-table table,
.price-table table tr td{
  border:0;
}

.price-table table tr{
  box-shadow: 0 0 12px 0 rgba(193, 193, 193,0.15);
  border-radius: 15px;
  position: relative;
}

.price-table table tr td:first-child{
  border-radius:15px 0 0 15px;
  color:#000;
}

.price-table table tr td:last-child{
  border-radius:0 15px 15px 0;
}

.price-table table tr:nth-child(even){
  background-color: #FAFAFA;
}

.price-table table tr:nth-child(odd) {
/*.price-table table tr:is(:nth-child(34),:nth-child(36),:nth-child(38),:nth-child(40),:nth-child(42),:nth-child(44),:nth-child(46),:nth-child(48)){*/
  background-color:#EAF2FC;
}

/*.price-table table tr:is(:nth-child(35),:nth-child(37),:nth-child(39),:nth-child(41),:nth-child(43),:nth-child(45),:nth-child(47)){*/
/*  background-color: #FAFAFA;*/
/*}*/

.price-table table tr td{
  padding:20px;
}

.price-table table tr td:not(:last-child){
  border-right:2px solid #fff;
}

.price-table table tr td:not(:first-child){
  text-align: center;
}

.price-table table tr td .fa-check{
  color:#E24654;
}

.price-table table tr td .fa-minus{
  color:#1f1f1f;
}

.price-table table tr:last-child td{
  border-radius: 15px;
}

.price-table table{
  position: relative;
  z-index: 1;
}

.price-table::before{
  right:unset;
  left:-250px;
  bottom:unset;
  top:50%;
  transform:translateY(-50%);
  width:600px;
  height:600px;
  z-index: 0;
}

.price-table::after{
  right:-250px;
  bottom:unset;
  top:0;
  width:600px;
  height:600px;
  z-index: 0;
}

.table-price > div > div > div:before {
  top:unset;
  bottom:200px;
  left:-300px;
}

.faq-row .vc_toggle_title{
  padding:20px;
  border-radius: 15px;
  box-shadow: 0 0 12px 0 rgba(90, 90, 90, 0.15);
  transition: 0.3s all;
  background-color: #fff;
}

.faq-row .vc_toggle_active .vc_toggle_title{
  background-color: #157FC9;
}

.faq-row .vc_toggle_active .vc_toggle_title h4{
  color:#fff;

}
.faq-row .vc_toggle_title h4{
  font-weight: 600;
  font-size: 18px;
  color:#1f1f1f;
  text-transform: capitalize;
}

.faq-row .vc_toggle_icon{
  left:unset !important;
  right:35px !important;
}

.faq-row .vc_toggle_active .vc_toggle_icon:before,
.faq-row .vc_toggle_active .vc_toggle_icon:after{
  background-color: #fff !important;
}

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

.faq-row .vc_toggle_content{
  text-transform: capitalize;
}

.faq-row .vc_toggle_content a{
  color:#5e5e5e;
}

.faq-row,
.faq-title-row{
  overflow: visible !important;
}

.faq-title-row{
  position: relative;
}

.faq-title-row:after{
  bottom:unset;
  top:-200px;
  width: 600px;
  height:600px;
  z-index: 0;
}

.faq-row:before{
  bottom:0;
  width: 600px;
  height:600px;
  right:unset;
  left:0;
  z-index: 0;
  top:unset;
}

.faq-title.curve-line:before{
  bottom:50%;
  transform:translate(-50%, 50%);
  height:13px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(100%) saturate(806%) hue-rotate(210deg) brightness(99%) contrast(95%);

}

.blog-sec .short-curve-line:before{
  height: 9px;
  left: unset;
  right:0;
  filter: brightness(0) saturate(100%) invert(28%) sepia(100%) saturate(1505%) hue-rotate(248deg) brightness(100%) contrast(104%);
  background-position: right;
}

.blog-sec:before{
  left:-50px;
  top:-50px;
}

.blog-sec:after{
  bottom:unset;
  top:50%;
  transform:translateY(-50%);
  width: 250px;
  height:250px;
}

.blog-sec{
  overflow: visible !important;
}
.gallery-sec .short-curve-line:before{
  background-position: right;
}

.gallery-sec .slick-slide {
  margin: 0 10px !important;
}

.gallery-counter-row .curve-line:before{
  background-position: right;
}

.gallery-sec .slick-list {
  margin: 0 -10px !important;
}

.gallery-row .slick-dots{
  padding-top:35px;
}

.gallery-counter-row .main-counter{
  position: relative;
}

.gallery-counter-row .main-counter:before{
  content:'+';
  position: absolute;
  width: 40px;
  height:40px;
  font-size: 40px;
  right:-40px;
  color:#1f1f1f;
  font-weight: inherit;
}

.gallery-counter-sec:before{
  right:unset;
  left:-100px;
  bottom:unset;
  top:-100px;
  width: 200px;
  height:200px;
}

.gallery-counter-sec:after{
  bottom:-100px;
}

.gallery-counter-sec{
  overflow: visible !important;
}

.contact-sec .curve-line:before{
  top:50%;
  transform:translateY(-50%);
  bottom:unset;
  background-position: right;
  height:13px;
}

.contact-info-row > div > div > div {
  padding:35px 15px;
  border-radius: 25px;
  box-shadow: 0 0 12px 0 rgba(147,147, 147, 0.15);
  height:100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.contact-info-row .icons{
  position: relative;
}

.contact-info-row .icons:before{
  content:'';
  position: absolute;
  width: 30px;
  height:30px;
  top:50%;
  left:55%;
  transform:translate(-50%,-50%);
  display: block !important;
  filter:blur(30px);
  opacity: 0.55;
}

.contact-info-row > div:first-child .icons:before{
  background-color: #E24654;
}

.contact-info-row > div:nth-child(2) .icons:before{
  background-color: #FFD428;
}

.contact-info-row > div:nth-child(3) .icons:before{
  background-color: #157FC9;
}

.contact-form-row > div:first-child > div > div{
  position: relative;
}

.contact-form-row > div:first-child > div > div:before{
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 50%;
  height: 35%;
  background-size: contain;
  background-repeat: no-repeat;
  display: block !important;
  background-image: url(./images/bigcurve.png);
  z-index: 2;
  transform:rotate(15deg);
}

.contact-form-row > div:first-child > div > div .wpb_single_image{
  box-shadow: 0 0 12px 0 rgba(106, 106, 106 , 0.1);
}

.contact-form-row > div:first-child > div > div > div:last-child{
  position: absolute;
  bottom:-50px;
  right:-50px;
}

.contact-form-row > div:first-child > div > div > div:last-child img{
  max-width: 300px !important;
}

.contact-sec .contact-form-row .short-curve-line:before{
  left:unset;
  right:0;
  background-position: right;
}

.contact-form-row:before{
  bottom:unset;
  right:unset;
  top:0;
  left:0;
  width: 700px;
  height:700px;
  z-index:0;
}

.contact-sec.background-layer:before{
  background:linear-gradient(0deg, rgba(248,250,251,1) 0, rgba(255,255,255,1)100%);
}

.contact-sec,
.contact-form-row,
.contact-info-row{
  overflow: visible !important;
}

.contact-sec:after{
  left:10%;
  top:0;
  z-index: 0;
  width: 200px;
  height:200px;
}

.contact-info-row:before{
  left: unset;
  right:0;
  top:unset;
  bottom:-100px;
  width: 150px;
  height: 150px;
}

/***contact form***/

.form input,
.form textarea{
  border-radius: 20px;
  background-color:#fff !important;
  height:55px !important;
}

.form textarea{
  height:100px !important;
}

#send input{
  border-radius:50px;
  background-color: #f66e3b;
}

/***post***/


.blog-sec .entries{
  position: relative;
}

.blog-sec .ct-button{
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) !important;
  opacity: 0;
  transition:0.5s all;
  background-color: #157FC9;
  border-radius: 50px;
  min-height: unset !important;
  padding:10px 25px !important;
}

.blog-sec .ct-media-container:hover .ct-button{
  opacity: 1;
}

.blog-sec .ct-media-container .ct-button:hover{
  background-color: #08B299 !important;
}

.blog-sec .ct-media-container,
.blog-sec .ct-media-container img{
  position: relative;
  transition: 0.5s all;
}

.blog-sec .ct-media-container:before{
  content:'';
  position: absolute;
  width: 100%;
  height:100%;
  inset: 0;
  z-index: 0;
  display: block !important;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.5s all;
}

.blog-sec .ct-media-container:hover img{
  filter: blur(2px);
}

.blog-sec .ct-media-container:hover:before{
  opacity: 1;
}

.blog-sec .entries > .entry-card{
  padding-bottom: 0 !important;
}

.blog-sec .entries{
  row-gap: 50px;
}

.single.single-post .site-main > .ct-container{
  padding-top:100px;
  padding-bottom:65px;
}

.single.single-post .entry-meta{
  display: flex;
  gap:30px;
}

.ct-author-name .page-title{
    text-align:center;
}

.single.single-post .entry-meta .meta-date{
  display: flex;
  align-items: center;
}

.single.single-post .entry-header{
  border-bottom: 1px solid #B8B8B8;
  padding-bottom:40px;
}

ul.entry-meta{
  padding-left: 0;
}

ul.entry-meta li:after{
  display: none;
}

.meta-author{
  padding:10px 20px;
  background-color: #08B299;
  border-radius:50px;
}

.meta-author span{
  color:#fff;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
}

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

.entry-meta .meta-date:before{
  content:'';
  position: absolute;
  width: 25px;
  height:25px;
  top:50%;
  left:0;
  transform:translateY(-50%);
  background-image: url(./images/date.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.ct-meta-element-date{
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.blog-sec .entries > .entry-card{
  padding:0;
}

.blog-sec .entries > .entry-card .ct-media-container{
  border-radius: 25px;
}

/***woocommerce***/
.template-button img{
  max-height: 16px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(0%) saturate(665%) hue-rotate(135deg) brightness(91%) contrast(87%);
}

.template-button p{
  margin-bottom: 0 !important;
}

.template-button {
  display: flex;
  gap:35px;
  justify-content:flex-end;
}

.product>.woocommerce-tabs{
  padding-top: 0 !important;
}

.woocommerce.single-product .product-intro-desc-row .custom-button .vc_general.vc_btn3:hover:before{
  background-color: #00d08b !important;
}

.woocommerce-Tabs-panel{
  padding-top: 0 !important;
}

.ct-product-divider{
  margin-bottom: 50px !important;
}

.product>.woocommerce-tabs > ul.tabs{
  display: none !important;
}

.product-intro-desc-row .icons img{
  max-width: 60px;
  max-height: unset;
  border-radius: 50%;
}


.product-intro-desc-row > div:last-child > div {
  display: flex;
  justify-content: flex-end ;
}

.product-intro-desc-row > div:last-child img{
  padding-right: 5px;
}

.product-intro-desc-row .product-tags{
  display: flex;
  padding-left: 0;
  gap:20px; 
}

.product-intro-desc-row .vc_inner.vc_row > div:first-child{
  width: fit-content;
}

.product-intro-desc-row .product-tags li{
  list-style-type: none;
  margin-top: 20px;
}

.product-intro-desc-row .product-tags li a{
  color:#1278e3;
  padding:5px;
  background-color: #f2f2f2;
}

.product-intro-desc-row .custom-button .vc_general.vc_btn3{
  background-color: #1278e3 !important;
  padding:12px 25px;
}

.product-gallery-row > div > div > div{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:15px;
}

.product-gallery-row .wpb_single_image img{
  cursor: zoom-in;
}



/*.product-gallery-row .wpb_single_image {*/
/*    border-radius: 20px;*/
/*    overflow: hidden;*/
/*    background-color: #C9DAF8;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    padding: 5%;*/
/*}*/

.product-gallery-row .wpb_single_image img {
    border: 3px solid #010D27;
    border-radius: 15px;
    object-fit:cover;
    object-position: top left;
    aspect-ratio:2/1;
}

.product-gallery-row .wpb_single_image * {
    height:100%;
    width:100%;
}

/*@media only screen and (min-width:768px) {*/
/*    .product-gallery-row .wpb_single_image:first-child img {*/
/*        border: 5px solid #010D27;*/
/*    }*/
/*}*/

.product-gallery-row {
    margin-bottom:50px;
}

.woocommerce .home-contact-row{
  background-color: #EAF2FC;
  padding-left: 100px !important;
  padding-right:100px !important;
}

.woocommerce .home-contact-row > div:last-child > div{
  padding-right: 0 !important;
}

.woocommerce .home-contact-row > div:first-child > div{
  padding-left: 0 !important;
}

.woocommerce .woocommerce-product-details__short-description{
  color:#1f1f1f;
  margin-bottom: 50px !important;
}

.woocommerce.archive .ct-media-container{
  border-radius:35px;
  background-color: #c9daf8;
  padding:5px;
  box-shadow: 0 0 12px 0 rgba(132, 132, 132, 0.25)
  ;
}

.woocommerce.archive .ct-media-container img{
  object-fit: contain !important;
}

.woocommerce .wave-section{
  padding-left: 100px !important;
  padding-right:100px !important;
} 

.woocommerce .wave-section > div:first-child > div:nth-child(1) > div{
  padding-left: 0 !important;
}

.woocommerce .wave-section > div:first-child > div:nth-child(2) > div{
  padding-right: 0 !important;
}

.woocommerce.archive .products > li:nth-child(3n-1) {
  transform:translateY(25px);
}

.woocommerce.archive .products > li{
  position: relative;
  transition: 0.5s all;
}

.woocommerce.archive .products > li .ct-media-container{
  position: relative;
}

.woocommerce.archive .products > li .ct-media-container:before{
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  inset: 0;
  display: block !important;
  transition:0.5s all;
  z-index: 1;
}

.woocommerce.archive .products > li:hover .ct-media-container:before{
  background-color: #303030;
  opacity: 0.55;
}

.woocommerce.archive .products > li h2 > a:hover{
  color:currentColor;
}

.woocommerce.archive .products > li h2{
  position: absolute;
  bottom:30px;
  color:#fff;
  opacity: 0;
  transition: 0.5s all;
  left:20px;
  padding-bottom: 5px;
}

.woocommerce.archive .products > li .ct-woo-card-actions{
  position: absolute;
  bottom:20px;
  opacity: 0;
  transition: 0.5s all;
  left: 20px;
}

.woocommerce.archive .products > li .ct-woo-card-actions > a{
  padding:0;
  min-height: unset !important;
  background-color: transparent;
}

.woocommerce.archive .products > li:hover h2{
  opacity: 1;
}

.woocommerce.archive .products > li:hover .ct-woo-card-actions{
  opacity: 1;
}

/***iksm***/
.iksm-terms .iksm-terms-tree--level-2 .iksm-terms-tree__inner .iksm-term__inner .iksm-term__link span{
  position: relative;
}

.iksm-terms .iksm-terms-tree--level-1 > .iksm-terms-tree__inner > .iksm-term {
  border-bottom:1px solid #9b9b9b;
}

/*.iksm-terms .iksm-terms-tree--level-1 > .iksm-terms-tree__inner > .iksm-term .iksm-term__link{*/
/*    line-height:1.3 !important;*/
/*}*/

.iksm-terms .iksm-terms-tree--level-2 .iksm-terms-tree__inner .iksm-term__inner .iksm-term__link span:before{
  content:'';
  position: absolute;
  width: 6px;
  height:6px;
  top:50%;
  left:-16px;
  transform:translate(0,-50%);
  border-radius: 50%;
  background-color: #5e5e5e;
}

/***footer***/

#footer [data-row*="middle"] > .ct-container > div:first-child img {
  max-width: 260px !important;
}



#footer [data-row*="middle"] > .ct-container > div:first-child strong{
    font-size:20px;
    color:#1f1f1f;
}

#footer [data-row*="middle"] > .ct-container > div:first-child > div:nth-child(3) > div{
    color:#7d7d7d;
    font-size:14px;
}

#footer [data-row*="middle"] > .ct-container > div:first-child > div:nth-child(2){
  flex:1;
}

#footer [data-row*="middle"] > .ct-container > div:last-child{
    align-items:center;
}

#footer [data-row*="middle"] > .ct-container {
    grid-template-columns:auto 2fr 1fr;
}

#footer .custom-table img {
  max-height: 25px;
}

#footer .custom-table tr:not(:last-child) td{
  padding-bottom: 20px;
}

#footer .custom-table tr td:first-child{
    min-width:50px;
}

/*#footer .custom-table tr td:last-child{*/
/*    width:90%;*/
/*}*/

#footer .widget-title{
  color:#157FC9;
  font-weight: 700;
  margin-bottom:15px !important;
  font-size:18px;
}

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

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

.page-id-494 #footer [data-row*="bottom"]{
    display:block;
}


@media only screen and (min-width: 768px) {
  .home-explore-row .vc_inner.vc_row > div > div {
    padding: 0 !important;
  }

  .client-slider-row {
    padding-bottom: 135px !important;
  }

  .about-vision-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .about-vision-row > div > div {
    padding: 0 !important;
  }

  .about-vision-row > div:last-child > div > div {
    padding: 70px 50px;
    border-radius: 0 35px 35px 0;
  }

  .product-intro-row .vc_inner.vc_row {
    margin: 0 !important;
  }

  .product-intro-row .vc_inner.vc_row > div > div {
    padding: 0 !important;
  }

  .product-intro-row-2 > div:last-child > div ,
  .product-intro-row-2 > div:last-child > div > div{
    height:100%;
  }

  .feature-row-2 > div{
    height:auto;
  }
  
  .feature-row-2 > div > div,
  .feature-row-2 > div > div > div{
    height:100%;
  }

  .price-table table tr td:first-child{
    transform:translateX(10%);
  }

  /*.price-table table tr:last-child td:first-child{*/
  /*  transform:translateX(4%);*/
  /*}*/

  #email {
    grid-column: span 2;
  }
  
  #msg {
    grid-column: span 2;
  }
  
  /*.product-gallery-row > div > div > div > div:nth-child(1){*/
  /*  grid-column: span 3;*/
  /*  }*/
    .form2 #email {
        grid-column: span 1;
    }
    
}


@media only screen and (min-width: 1000px) {
  .home-how-row > div:last-child > div > div {
    padding: 100px 100px 100px 0;
  }

  .price-row .package-desc{
    min-height: 135px;
  }

  .price-row .price-text{
    min-height: 105px;
  }

  .iksm-widget .widget-title{
    display: none;
  }

  #footer .widget-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
  }

  #footer .widget-menu {
    width: fit-content;
  }

}

@media only screen and (min-width: 1200px) {
  .industry-slider-row > div:last-child > div > div {
    padding-top: 150px;
  }

  .industry-title-row {
    position: absolute;
    width: 100%;
    left: 72%;
    transform: translateX(-50%);
    padding: 0 100px;
  }
}

@media only screen and (min-width:1250px){
  .price-row .package-desc{
    min-height: 85px;
  }
}

@media only screen and (min-width:1700px){
  .price-row .package-desc{
    min-height: 80px !important;
  }
}


@media only screen and (max-width:1249.98px){
  .feature-row-2{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 1199.98px) {
  .industry-slider-row > div {
    width: 100% !important;
  }

  .industry-slider-row > div:first-child .wpb_single_image img {
    max-height: 500px;
    width: auto;
  }
}

@media only screen and (max-width: 999.98px){
  .price-row .package-desc{
    min-height: 190px;
  }

  .price-row .price-text{
    min-height: 130px;
  }
  
  #footer [data-row*="middle"] > .ct-container{
      grid-template-columns:1fr;
  }
}

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

  .wave-section,
  .woocommerce.single-product .wave-section{
    padding-top: 115px !important;
    padding-bottom: 70px !important;
  }
  
  .home-intro-row h1 br{
      display:none;
  }
  
  .template-button {
  display: flex;
  gap:35px;
  justify-content:flex-start;
}
  
  .woocommerce.archive .products > li:nth-child(3n-1){
      transform:unset;
  }

  .about-intro-row{
    overflow: visible !important;
  }

  .price-row .package-desc{
    min-height: unset;
  }

  .home-explore-row .vc_inner.vc_row{
    grid-template-columns: 1fr;
    row-gap: 35px;
  }

  .about-intro-row.about{
    grid-template-columns: 1fr 1fr;
    gap:0;
  }

  .about-intro-row.about > div:first-child{
    grid-column: span 2;
  }

  .about-logo{
    grid-template-columns: 1fr 1fr;
  }

  .home-how-row > div:last-child > div > div{
    padding-left:15px;
    padding-right:15px;
  }

  .industry-slider-row .slick-track .vc_inner.vc_row > div > div{
    padding:0 !important;
  }

  .client-slider-row .slick-prev,
  .home-template-slider-row .slick-prev{
    left: 35%;
  }

  .client-slider-row .slick-next,
  .home-template-slider-row .slick-next{
    left: calc(35% + 80px);
  }

  .client-slider-row {
    padding-bottom:105px !important;
  }

  .home-feature-row:before,
  .home-feature-row .vc_inner.vc_row > div:nth-child(3),
  .home-feature-row .vc_inner.vc_row > div:nth-child(6){
    display: none !important;
  }

  .form{
    grid-template-columns: 1fr;
  }

  .about-vision-row .wpb_single_image{
    border-radius: 35px;
    margin-bottom: 35px !important;
  }

  .about-vision-row{
    padding:70px 0 !important;
    margin-bottom: 70px !important;
  }

  .big-curve-line:before{
    bottom:-50px;
    width: 65%;
    height: 10%;
    left:0;
    z-index: 0;
  } 

  .product-intro-row > div:first-child,
  .product-intro-row-2 > div:first-child{
    padding-bottom: 35px;
  }

  .product-intro-row-2 > div:first-child .vc_inner.vc_row{
    padding:0 0 35px 35px;
  }

  .product-intro-row-2 > div:last-child > div > div{
    padding:35px 15px;
  }

  .product-intro-row-2 > div:first-child > div > div .wpb_single_image img{
    min-height: 400px;
  }

  .feature-row-1 > div:not(:last-child){
    padding-bottom: 35px;
  }

  .feature-row-2{
    grid-template-columns: 1fr;
  }

  .price-icon-row > div > div > div{
    grid-template-columns: 1fr 1fr;
  }

  .price-row > div:not(:last-child){
    padding-bottom: 35px;
  }

  .price-table > div{
    overflow-x:scroll;
  }

  .faq-row .vc_toggle_content{
    padding-left: 20px !important;
  }

  .faq-row .vc_toggle_content ul{
    padding-left: 20px;
  }

  .faq-row .vc_toggle_icon{
    right:10px !important;
  }

  .wave-section.blog .about-intro-row{
    padding:0 !important;
  }

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

  .single-post .page-title{
    font-size: 27px;
  }

  .single.single-post .site-main > .ct-container{
    padding:70px 0 35px;
  }

  .single.single-post .entry-header{
    padding-bottom: 35px;
  }

  .contact-info-row {
    grid-template-columns: 1fr;
  }

  .contact-info-row > div:not(:last-child){
    padding-bottom: 35px;
  }

  .contact-form-row > div:last-child{
    padding-top: 50px;
  }
  
  .vc_custom_heading br{
      display:none;
  }
  
  .home-template-row {
      position:relative;
      z-index:3;
  }
  
  #footer [data-row*="middle"] > .ct-container > div:first-child img{
      max-width:200px !important;
  }
  
  #footer [data-row*="middle"] > .ct-container > div:first-child > div:nth-child(3) {
      display:none;
  }
  
  #footer [data-row*="bottom"]{
      display:block;
  }
  
  .woocommerce .about-intro-row{
      padding:0 15px !important;
  }
  
  .woocommerce .wave-section{
      padding:35px 0 70px !important;
  }
  
  .product-intro-desc-row > div:last-child > div{
      justify-content:flex-start;
      margin-bottom:35px;
  }
  
  .product-gallery-row > div > div > div{
      grid-template-columns:1fr;
  }
  
  .woocommerce .home-contact-row{
      padding:70px 15px !important;
  }
  
  .woocommerce .home-contact-row > div:last-child > div{
      padding-left:0 !important;
  }
  
  .woocommerce .home-contact-row > div:first-child > div{
      padding-right:0 !important;
  }
  
  .faq-title-row:after{
      z-index:-1;
  }
  
  .faq-title.curve-line:before{
      bottom:65%;
      height:10px
  }
  
  .single.single-post .entry-meta{
      flex-direction:column;
  }
  
  .meta-author{
      width:fit-content;
  }
  
  .contact-form-row > div:first-child > div > div > div:last-child img{
      max-width:260px !important;
  }
  
  .contact-form-row > div:first-child > div > div > div:last-child{
      right:-15px;
  }
  
  .home-template-slider-row .custom-button .vc_general {
      font-size:16px;
  }
  
  .home-feature-row .vc_inner.vc_row > div:nth-child(4) > div > div{
      background:linear-gradient(
    125deg,
    rgba(236, 245, 251, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  }
  
  .home-feature-row .vc_inner.vc_row > div:nth-child(4) > div > div .wpb_text_column p{
      color:#1f1f1f !important;
  }
  
  .home-feature-row .vc_inner.vc_row > div:nth-child(5) > div > div .wpb_text_column p{
      color:#fff !important;
  }
  
  .home-feature-row .vc_inner.vc_row > div:nth-child(5) > div > div{
    background:linear-gradient(
    125deg,
    rgba(130, 195, 244, 1) 0%,
    rgba(165, 230, 233, 1) 100%
  );  
      
  }
  
  .product-intro-row .vc_inner.vc_row{
    padding: 20px 15px;
  }
  
  .product-intro-row{
      flex-direction:column;
  }
}

.remark-text {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

.home-about-client-row > div > div > .wpb_wrapper {
    display: flex;
    width: 11000px;
    column-gap: 50px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    animation: scrolling-img 100s linear infinite;
}


.home-client-logo {
    margin-bottom:0 !important;
}

@keyframes scrolling-img {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-5525px)
    }
}

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

.home-about-client-row > div:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 200px;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.home-about-client-row > div:after {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 200px;
    height: 100%;
    z-index: 1;
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.price-row > div > div > div > *:last-child {
    flex: 1;
    align-content: flex-end;
}

.home-template-slider-row img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: left;
}

.home-template-slider-row .vc_figure > a:before {
    content:'';
    position:absolute;
    display:block;
    height:100%;
    width:100%;
    background-color:#000;
    opacity:3%;
}

.single-product .woocommerce-Tabs-panel .wpb_text_column li {
    margin-bottom:10px;
}