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

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

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


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


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


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


@font-face {
  font-family: 'inter';
  font-weight: 800;
  src: url('./fonts/Inter_18pt-ExtraBold.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: 'inter' !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: 'inter' !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;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-content :is(h1,h2,h3,h4,h5,h6) {
  line-height: 1.2 !important;
  text-align: left;
  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-14{
  font-size: 14px !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;
}

.font-hindi{
  font-family: 'hindi';
}

.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-15.background-layer:before{
  background-color: rgba(0, 0, 0, 0.15);
}

.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:10px 25px;
  background-image: none !important;
  border-radius: 100px;
  background-color: transparent !important;
  border:1px solid currentColor !important;
  color:#000 !important;
  font-weight: 500;
  line-height:1 !important;
  position: relative;
}

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

.custom-button .vc_general.vc_btn3 i{
  transform:rotate(45deg) translateY(-50%);
  transition: 0.3s ease;
}

.custom-button .vc_general.vc_btn3:hover i{
  transform:rotate(0) translateY(-50%);
}

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

.border-10{
   border:10px solid #fff;
   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;
}

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

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

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

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

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

  #footer [data-row*="middle"] > .ct-container > div:nth-child(1) > div:nth-child(1) img{
    max-width: 230px !important;
  }
}

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

::placeholder {
  color: #6C6C6C !important;
  opacity: 1 !important;
}

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

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

.ct-breadcrumbs span {
  text-transform: capitalize;
}

.ct-breadcrumbs span.last-item {
  color: orange;
  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;
  }
}

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

.slick-arrow {
  position: absolute;
  font-size: 0;
  width: 60px;
  height: 60px;
  top:50%;
  transform:translateY(-50%);
  z-index: 2;
  left: -65px;
  background-color: transparent;
}

.slick-arrow.slick-next {
  right: -65px;
  left: unset;
}

.slick-arrow:before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  font-size: 55px;
  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: #666666;
  cursor: pointer;
}

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

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

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

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

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

.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{
  padding-top: 0 !important;
}

.hindi-title,
.hindi-title :is(h1,h2,h3,h4,h5,h6){
  font-family: 'hindi';
  font-weight: 400 !important;
  font-size: 30px;
  color:#1e1e1e;
}

.icons img{
  max-width: 50px !important;
}

.logo{
  max-width: 180px !important;
}

#header ul.menu li > a{
  position:relative;
}

#header ul.menu li.current-menu-item > a,
#header ul.menu li.current-page-ancestor > a,
.mobile-menu ul li.current-menu-item > a,
.mobile-menu ul li.current-page-ancestor > a{
  font-weight: 600;
  color:#336995;
}

#header ul.menu li.current-menu-item > a:before,
#header ul.menu li:hover > a:before,
#header ul.menu li.current-page-ancestor > a:before{
  content:'';
  position: absolute;
  width: calc(100% - 40px);
  height:2px;
  bottom:15px;
  left:50%;
  transform:translateX(-50%);
  transition:0.3s all;
  display: block !important;
  background-color: #336995;
  top:unset;
  right:unset;
  opacity: 1;
}

#footer ul.widget-menu li.current-menu-item > a,
#footer ul.widget-menu li.current-page-ancestor > a{
  font-weight: 600;
  color:#336995;
}

.home-about-row > div:first-child > div > div > div:nth-child(1){
  max-width: 70%;
}

.home-about-row > div:first-child > div > div > div:nth-child(2){
  margin-top: -25%; 
}

.home-about-row > div:first-child > div > div > div:nth-child(2) img{
  max-width: 70%;
  border:10px solid #fff;
}


.home-choose-row.background-layer:before{
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}

.home-key-sec.background-layer::before{
  background-image: url('./images/background-key.png');
  width: 60%;
  inset: unset;
  height:65%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top:45%;
  left:50%;
  transform:translate(-50%, -50%);
}

.home-key-sec .custom-button .vc_general.vc_btn3{
  border-color: #266CA8 !important;
  color:#266CA8 !important;
}

.home-key-sec .custom-button .vc_general.vc_btn3:hover{
  color:#fff !important;
}

.home-key-sec .custom-button .vc_general.vc_btn3:before{
  background-color: #266CA8;
}

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

.home-project-section.background-layer::before{
  background-color: rgba(0, 0, 0, 0.3);
  height:50%;
}

.home-project-slider .ct-posts-shortcode > .entries{
  display: block !important;
}

.home-project-section.background-layer::after{
  content:'';
  position: absolute;
  width:100%;
  height:50%;
  bottom:0;
  left:0;
  display: block !important;
  background-color: #fff;
  z-index: 0;
}

.home-project-row {
  position: relative;
  z-index: 1;
}

.home-project-slider .entry-card > .ct-media-container{
  margin-bottom: 0 !important;
}

.home-project-slider .entry-excerpt{
  display: none;
}

.home-project-slider .ct-button{
  background-color: transparent !important;
  color:#fff;
  padding:0 !important;
  margin-top: 0 !important;
  min-height: unset !important;
  transform:translateY(100px);
  height: 0;
  flex-direction: row-reverse;
}

.home-project-slider .ct-button svg{
  width: 22px;
  height:22px;
  transform:rotate(45deg);
  transition:0.3s all;
}

.home-project-slider .ct-button:hover svg{
  transform:rotate(0deg);
}

.home-project-slider .entry-title{
  color:#fff;
  margin-bottom: 0 !important;
  transition:0.5s all;
  font-weight:400;
}

.home-project-slider .entry-title > a:hover{
  color:#fff !important;
}

.home-project-slider  .entry-card{
  position: relative;
  padding-bottom: 0 !important;
}


.home-project-slider .title-button-wrapper{
  position: absolute;
  bottom:0;
  margin-bottom: 0 !important;
  /* background-color: rgba(0, 0, 0, 0.5); */
  width: 100%;
  padding:20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-project-slider .ct-media-container{
  position: relative;
}

.home-project-slider .ct-media-container:before{
  content:'';
  position: absolute;
  width: 100%;
  height:140px;
  bottom:0;
  left:0;
  display: block !important;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  transition:0.5s all;
}

.home-project-slider .entry-card:hover .ct-media-container:before{
  height: 100%;
}

.home-project-slider .entry-card:hover .ct-media-container img{
  filter: blur(4px);
  transform:scale(1.05);
  transition:0.8s all;
  overflow: hidden;
}

.home-project-slider .entry-card:hover .ct-button{
  transform:unset;
  height: auto;
}

.home-project-slider .entry-card:hover .entry-title{
  margin-bottom:20px !important;
}

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

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

.home-project-title .custom-button .vc_general.vc_btn3{
  border:0 !important;
  color:#fff !important;
}

.social-icon{
  display: flex;
  gap:15px;
}

.social-icon img{
  max-height: 30px;
}

.cta-row{
  background-image:url(./images/cta-background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height:350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-row .cta-wrapper{
  position: relative;
  z-index: 1;
}

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

.cta-row .custom-button .vc_general.vc_btn3:hover{
  color:#fff !important; 
}

.cta-row .custom-button .vc_general.vc_btn3:hover:before{
  background-color: #FF0000;
  width: 100%;
}

.page-intro-title.background-layer:before{
  background-color: #E8E8E8;
}

.about.page-intro-title.background-layer:before{
  height:calc(100% + 170px);
}

.about.page-intro-title,
.about-process-section{
  overflow: visible !important;
}

.about-process-section.background-layer:before{
  background:linear-gradient(225deg, rgba(136,136,136,0.3) 0%, rgba(211,211,211,1) 28%, rgba(238,238,238,0.09) 58%, rgba(136,136,136,0.5) 100%);
  inset: unset;
  left:0;
  top:0;
  z-index: -1;
}

.about-process-row .vc_toggle_title > h4{
  font-weight: 500;
  text-transform: uppercase;
  font-size: 20px;
}

.about-process-row .vc_toggle_icon{
  left: unset !important;
  right:35px;
  height: 2px !important;
  background: #1E1E1E !important;
  border:0 !important;
  width: 10px !important;

}

.about-process-row .vc_toggle_icon::before{
  width: 1px !important;
  border-color: #1E1E1E !important;
}

.about-process-row .vc_toggle_icon::after{
  border-color: #1E1E1E !important;
  background:#1e1e1e !important;
  width: 10px !important;
}

.about-process-row .vc_do_toggle{
  box-shadow: 0 4px 4px 0 rgba(167, 167, 167, 0.25);
  border-radius: 8px;
  position: relative;
  margin-bottom:  20px !important;
  background-color:#fff;
}

.about-process-row .vc_do_toggle.vc_toggle_active:before{
  content:'';
  position: absolute;
  width: 100%;
  height:10px;
  bottom:0;
  left:0;
  display: block !important;
  background: linear-gradient(180deg, rgba(123,123,123,1) 0%, rgba(70,70,70,1) 52%, rgba(22,22,22,1) 100%);
  border-radius: 0 0 8px 8px;
  transition:0.5s all;
}

.about-process-row .vc_toggle_content{
  margin-top: 0 !important;
  padding-left: 13px !important;
  padding-right:15px !important;
}

.about-process-row .vc_toggle_title{
  /* padding-left: 60px !important; */
  padding:35px 20px 35px 60px !important;
}

.about-process-row .vc_toggle_title{
  position: relative;
}

.about-process-row > div > div > div > .vc_do_toggle .vc_toggle_title:before{
  content: '01';
  position: absolute;
  width: 50px;
  height:40px;
  font-size: 27px;
  font-weight: 400;
  font-family: 'hindi';
  color:#aaa;
  top:50%;
  left:0;
  transform:translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #aaa;
}
.about-process-row > div > div > div > .vc_do_toggle:nth-child(2) .vc_toggle_title:before{
  content: '02';

}
.about-process-row > div > div > div .vc_do_toggle:nth-child(3) .vc_toggle_title:before{
  content: '03';
}
.about-process-row > div > div > div > .vc_do_toggle:nth-child(4) .vc_toggle_title:before{
  content: '04';

}
.about-process-row > div > div > div > .vc_do_toggle:nth-child(5) .vc_toggle_title:before{
  content: '05';
}

.about-process-row .vc_toggle .vc_toggle_content {
    height: 0;
    overflow: hidden;
    transition: 0.2s all;
    padding: 0; /* Adjust as needed */
    display:block !important;
}
.about-process-row .vc_toggle.vc_toggle_active .vc_toggle_content {
    height: auto; 
    transition: 0.2s all;
}

.service-offer-row.background-layer:before{
  background-color: #F4F4F4;
  height:calc(100% - (var(--gap) + 70px));
}

.service-offer-row .wpb_text_column ul li:not(:last-child){
  padding-bottom: 15px;
}

.service-offer-row > div:last-child > div > div{
  padding-bottom:calc(var(--gap) - 35px);
}

.service-post-row .custom-button .vc_general.vc_btn3{
  border-color: #353535 !important;
  color:#353535 !important;
}

.service-post-row .custom-button .vc_general.vc_btn3:hover{
  color:#fff !important;
}

.service-post-row .custom-button .vc_general.vc_btn3:before{
  background-color: #353535;
}

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

.page-id-217 .cta-row,
.page-id-290 .cta-row {
  display: none;
}

.post-row .entries .ct-button{
  background-color: transparent;
  border-radius: 100px;
  border-color: #353535;
  border:1px solid #353535;
  color:#353535;
}

.post-row .entries .entry-card{
  padding-bottom: 0 !important;
}

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

.post-row .entries .ct-button{
  flex-direction: row-reverse;
}

.post-row .entries .entry-card .ct-button svg{
  width: 22px;
  height:22px;
  transform:rotate(45deg);
  transition:0.5s ease;
}

.post-row .entries .entry-card .ct-button:hover svg {
  transform:rotate(0deg);
}

.post-row .entries .entry-card .ct-button:before{
  content:'';
  position: absolute;
  width: 0;
  height:100%;
  border-radius: inherit;
  left:0;
  top:0;
  display: block !important;
  background-color: #353535;
  opacity: 1;
  filter: none !important;
  transition:0.5s all;
}

.post-row .entries .entry-card .ct-button:hover{
  color:#fff;
}

.post-row .entries .entry-card .ct-button:hover:before{
  width: 100%;
}


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

.contact-row > div:first-child > div  > div{
  background-color: #F0F0F0;
  padding:70px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-row > div:last-child > div  > div{
  background-color: rgba(255, 255, 255, 0.7);
  padding:70px;
}

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

.page-id-290 #footer [data-row*="bottom"] > div{
  border-top:0;
}

/***contact form***/
.form{
  display: flex;
  flex-wrap: wrap;
  gap:15px;
  margin-bottom:15px;
}

.form > div{
  flex-basis: calc(50% - (15px / 2));
}

.form > div:last-child{
  flex-basis: 100%;
}

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

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

#send button input{
  background-color: transparent;
  color:#ff0000;
  transition: 0.5s all;
  min-height: unset;
  line-height: 1 !important;
  padding:10px 25px 10px 48px;
}

#send button:hover input{
  color:#fff;
}

#send button{
  border-radius: 100px;
  border:1px solid #FF0000;
  background-color: transparent;
  position: relative;
}

#send button:before{
  content:'';
  position: absolute;
  width: 0;
  height:100%;
  border-radius: inherit;
  display: block !important;
  left:0;
  top:0;
  background-color: #FF0000;
  transition:0.5s all;
}

#send button:after{
  content:'\f061';
  position: absolute;
  width: 25px;
  height:25px;
  display: flex;
  align-items:center;
  justify-content: center;
  top:50%;
  lefT:15px;
  transform:translateY(-50%) rotate(45deg);
  font-family: var(--fontAwesome);
  font-weight: 700;
  font-size: 16px;
  color:#FF0000;
  transition:0.5s all;
  cursor: pointer;
}

#send button:hover:after{
  color:#fff;
  transform:translateY(-50%) rotate(0deg);
}

#send button:hover:before{
  width: 100%;
}

/***footer***/

#footer h3.widget-title{
  font-size: 18px;
  color:#1e1e1e;
  font-weight: 700;
}

.custom-table tr td:first-child {
  font-weight: 700;
}

.contact-row .custom-table tr td:last-child{
  font-weight: 500;
}

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

.page-id-290 #footer [data-row*="bottom"]{
  background-color: #e8e8e8;
}

@media only screen and (min-width:768px){
  .about-desc-2 > div:last-child > div{
    padding-left: 55px !important;
  }

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

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

@media only screen and (min-width:1000px){
  #footer ul.widget-menu{
    column-count: 2;
  }
  
  #footer ul.widget-menu li{
    padding-bottom: 15px;
  }
  
  #footer ul.widget-menu li > a{
    text-transform: uppercase;
  }
}

@media only screen and (max-width:1249.98px){
    .about-client-row .vc_inner.vc_row {
        grid-template-columns:1fr 1fr 1fr 1fr;
        row-gap:35px
    }
}


@media only screen and (max-width:767.98px){
  .home-about-row{
    flex-direction: column-reverse;
  }

  .home-choose-row .vc_inner.vc_row {
      display:flex;
      flex-wrap:wrap;
      row-gap:30px;
  }
  
  .home-choose-row .vc_inner.vc_row > div{
      flex-basis:50%;
  }

  .home-key-row.right{
    display: flex;
    flex-direction: column-reverse;
  }

  .cta-row{
    height:350px;
  }

  .text-right{
    text-align: left !important;
  }

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

  .about-desc-1{
    flex-direction: column-reverse;
  }
  
  .about-desc-1 > div:last-child {
    padding-bottom: 35px;
  }

  .about-desc-2 > div:not(:last-child){
    padding-bottom: 35px;
  }

  .about-desc-2 .wpb_single_image img{
    max-height: 350px;
  }

  .about-team-section .vc_row.vc_inner:not(:last-child) > div:last-child{
    padding-bottom: 35px;
  }

  .about-team-section > div:nth-child(2) .pb-35{
    padding-bottom: 0 !important;
  }

  .about-process-section.background-layer:before{
    z-index: -1;
  }

  .about-process-row .vc_toggle_title{
    padding:20px 20px 20px 60px !important;
  }

  .about-process-row .vc_do_toggle:last-child{
    margin-bottom: 35px !important;
  }

  .about-client-row .vc_inner.vc_row,
  .about-client-row-2 .vc_inner.vc_row {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
  
  .about-client-row .vc_inner.vc_row .logo,
  .about-client-row-2 .vc_inner.vc_row .logo{
      margin:auto;
  }

  .about-client-row .logo img,
  .about-client-row-2 .logo img{
    max-width: 150px !important;
  }

  .about-process-row > div:nth-child(2) .wpb_single_image img{
    max-height: 350px;
  }

  .service-offer-row{
    flex-direction: column-reverse;
    padding-top:70px;
  }

  .service-post-row {
    grid-template-columns: 1fr;
  }
  
  .post-row .entry-card{
    padding-bottom: 0 !important;
  }

  .contact-row > div:first-child > div > div,
  .contact-row > div:last-child > div > div{
    padding:35px 15px;
  }
  
  .about-process-row > div:last-child > div{
      height:300px;
  }
  
  .about-process-section{
      padding-bottom:0 !important;
  }

 .post-desc-sec .grid.vc_row{
     grid-template-columns:1fr 1fr;
    }

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

}
