/* ---------  Mayuresh Custom Scrollbar ---------  */
/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
  /*border-radius: 10px;*/
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0b8677;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}
/* ---------  Mayuresh Custom Scrollbar End ---------  */
.pt0{
  padding-top: 0!important;
}
.pt1{
  padding-top: 1rem!important;
}
.pt2{
  padding-top: 2rem!important;
}
.pt3{
  padding-top: 3rem!important;
}
.pt4{
  padding-top: 4rem!important;
}
.pt5{
  padding-top: 5rem!important;
}
.pb0{
  padding-bottom: 0!important;
}
.pb1{
  padding-bottom: 1rem!important;
}
.pb2{
  padding-bottom: 2rem!important;
}
.pb3{
  padding-bottom: 3rem!important;
}
.pb4{
  padding-bottom: 4rem!important;
}
.pb5{
  padding-bottom: 5rem!important;
}
.mb0{
  margin-bottom: 0rem !important;
}
.mb1 {
  margin-bottom: 1rem !important;
}
.mb2 {
  margin-bottom: 2rem !important;
}
.mb3 {
  margin-bottom: 3rem !important;
}
.mb4 {
  margin-bottom: 4rem !important;
}
.mb5 {
  margin-bottom: 5rem !important;
}
.mt0{
  margin-top: 0rem !important;
}
.mt1 {
  margin-top: 1rem !important;
}
.mt2 {
  margin-top: 2rem !important;
}
.mt3 {
  margin-top: 3rem !important;
}
.mt4 {
  margin-top: 4rem !important;
}
.mt5 {
  margin-top: 5rem !important;
}
/*------------------------------------not responsive start---------------------*/
#pageloader {
   background-color: #ffffffe6;
   height: 100%;
   position: fixed;
   top: 95px;
   width: 100%;
   z-index: 9999999;
}
.pageloader.fixed {
   top: 60px !important;
}

/* Center the loader */

#loader {
   position: absolute;
   left: 50%;
   top: 20%;
   z-index: 9999999999;
   width: 65px;
   height: 65px;
   margin: -75px 0 0 -75px;
   border: 10px solid #f3f3f3;
   border-radius: 50%;
   border-top: 10px solid #0061f2;
   -webkit-animation: spin 2s linear infinite;
   animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
   0% {
      -webkit-transform: rotate(0deg);
   }

   100% {
      -webkit-transform: rotate(360deg);
   }
}

@keyframes spin {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}
.formloader_line {
   background-color: #111;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   display: flex;
   align-items: center;
   align-content: center;
   justify-content: flex-start;
   z-index: 100000;
}
.formloader_line__element {
   height: 3px;
   width: 100%;
   background: #0d6efd61;
}
.formloader_line__element:before {
   content: "";
   display: block;
   background-color: #0d6efd;
   height: 3px;
   width: 0;
   animation: getWidth 3s ease-in infinite;
}
.loader_line {
   background-color: #ffffffe6;
   width: 100%;
   /* height: 100%; */
   top: 0px;
   left: 0;
   display: flex;
   align-items: center;
   align-content: center;
   justify-content: flex-start;
   z-index: 99999999;
   position: fixed;
}
.loader_line__element {
   height: 5px;
   width: 100%;
   background: #0b8677;
}
.loader_line__element:before {
   content: "";
   display: block;
   background-color: #419f94;
   height: 5px;
   width: 0;
   animation: getWidth 3s ease-in infinite;
}

@keyframes getWidth {
   100% {
      width: 100%;
   }
}
.blinker {
   color: #00943d;
   text-align: left;
}
.blinker i {
   display: inline-block;
   vertical-align: middle;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   padding: 5px;
   position: relative;
   margin: -2px 10px 0 0;
   box-sizing: border-box;
}
.blinker i:before {
   box-sizing: border-box;
   width: 12px;
   height: 12px;
   content: '';
   -webkit-border-radius: 100px;
   -moz-border-radius: 100px;
   border-radius: 100px;
   -webkit-background-clip: padding-box;
   -moz-background-clip: padding;
   background-clip: padding-box;
   background: #28a745;
   position: absolute;
   top: 0px;
   left: 0px;
   z-index: 3;
}
.blinker i:after {
   opacity: 0;
   box-sizing: border-box;
   content: ' ';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(40, 167, 69, 0.5);
   -webkit-border-radius: 100px;
   -moz-border-radius: 100px;
   border-radius: 100px;
   -webkit-background-clip: padding-box;
   -moz-background-clip: padding;
   background-clip: padding-box;
   z-index: 1;
   -webkit-animation: gogoloader 2s infinite 1s;
   -moz-animation: gogoloader 2s infinite 1s;
   -ms-animation: gogoloader 2s infinite 1s;
   -o-animation: gogoloader 2s infinite 1s;
   animation: gogoloader 2s infinite 1s;
}

@keyframes gogoloader {
   0% {
      -webkit-transform: scale(1);
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      -webkit-transform: scale(2);
      opacity: 0;
   }
}

@-webkit-keyframes gogoloader {
   0% {
      -webkit-transform: scale(1);
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      -webkit-transform: scale(2);
      opacity: 0;
   }
}

@-moz-keyframes gogoloader {
   0% {
      -webkit-transform: scale(1);
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      -webkit-transform: scale(2);
      opacity: 0;
   }
}
.blinker-action i:before {
   background: rgba(220, 53, 69, 0.4);
}
.blinker-action i:after {
   background: rgba(220, 53, 69, 0.4);
}
.blinker-primary i:before {
   background: rgba(31, 92, 162, 0.4);
}
.blinker-primary i:after {
   background: rgba(31, 92, 162, 0.4);
}

/* CSS Multiple Whatsapp Chat */
#whatsapp-chat {
   box-sizing: border-box !important;
   outline: none !important;
   position: fixed;
   width: 350px;
   border-radius: 10px;
   box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
   bottom: 90px;
   right: 30px;
   overflow: hidden;
   z-index: 99;
   animation-name: showchat;
   animation-duration: 1s;
   transform: scale(1);
}

a.blantershow-chat {
   /*   background: #009688; */
   background: #fff;
   color: #404040;
   position: fixed;
   display: flex;
   font-weight: 400;
   justify-content: space-between;
   z-index: 98;
   bottom: 39px;
   right: 6rem;
   font-size: 15px;
   padding: 10px 20px;
   border-radius: 30px;
   box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

a.blantershow-chat svg {
   transform: scale(1.2);
   margin: 0 10px 0 0;
}
.whatsapp-chat-header {
   background: #009688;
   background: #095e54;
   color: #fff;
   padding: 20px;
}
.whatsapp-chat-header h3 {
   margin: 0 0 10px;
}
.whatsapp-chat-header p {
   font-size: 14px;
   line-height: 1.7;
   margin: -10px;
}
.whatsapp-chat-header .whatsapp-chat-name {
   font-size: 16px;
   font-weight: 600;
   padding-bottom: 0;
   margin-bottom: 0;
   line-height: 0.5;
}
.whatsapp-chat-avatar {
   position: relative;
}
.whatsapp-chat-avatar::after {
   content: "";
   bottom: 0px;
   right: 0px;
   width: 12px;
   height: 12px;
   box-sizing: border-box;
   background-color: #4ad504;
   display: block;
   position: relative;
   z-index: 1;
   border-radius: 50%;
   border: 2px solid #095e54;
   left: 40px;
   top: 38px;
}
.whatsapp-chat-avatar img {
   border-radius: 100%;
   width: 50px;
   float: left;
   margin: 0 10px 0 0;
}
.info-chat span {
   display: block;
}

#get-label,
span.chat-label {
   font-size: 12px;
   color: #888;
}

#get-nama,
span.chat-nama {
   margin: 5px 0 0;
   font-size: 15px;
   font-weight: 700;
   color: #222;
}

#get-label,
#get-nama {
   color: #fff;
}

span.my-number {
   display: none;
}

/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
   border: none;
   width: 100%;
   height: 45px;
   outline: none;
   resize: none;
   padding: 10px;
   font-size: 14px;
}

a#send-it {
   width: 30px;
   font-weight: 700;
   padding: 10px 10px 0;
   background: #eee;
   border-radius: 10px;
}

a#send-it svg {
   fill: #a6a6a6;
   height: 24px;
   width: 24px;
}
.first-msg {
   background: transparent;
   padding: 30px;
   text-align: center;
}
.first-msg span {
   background: #e2e2e2;
   color: #333;
   font-size: 14.2px;
   line-height: 1.7;
   border-radius: 10px;
   padding: 15px 20px;
   display: inline-block;
}
.start-chat .blanter-msg {
   display: flex;
}

#get-number {
   display: none;
}

a.close-chat {
   position: absolute;
   top: 5px;
   right: 15px;
   color: #fff;
   font-size: 30px;
}

@keyframes ZpjSY {
   0% {
      background-color: #b6b5ba;
   }

   15% {
      background-color: #111111;
   }

   25% {
      background-color: #b6b5ba;
   }
}

@keyframes hPhMsj {
   15% {
      background-color: #b6b5ba;
   }

   25% {
      background-color: #111111;
   }

   35% {
      background-color: #b6b5ba;
   }
}

@keyframes iUMejp {
   25% {
      background-color: #b6b5ba;
   }

   35% {
      background-color: #111111;
   }

   45% {
      background-color: #b6b5ba;
   }
}

@keyframes showhide {
   from {
      transform: scale(0.5);
      opacity: 0;
   }
}

@keyframes showchat {
   from {
      transform: scale(0);
      opacity: 0;
   }
}

@media screen and (max-width: 480px) {
   #whatsapp-chat {
      width: auto;
      left: 5%;
      right: 5%;
      font-size: 80%;
   }
}
.w_hide {
   display: none;
   animation-name: showhide;
   animation-duration: 0.5s;
   transform: scale(1);
   opacity: 1;
}
.w_show {
   display: block;
   animation-name: showhide;
   animation-duration: 0.5s;
   transform: scale(1);
   opacity: 1;
}
.whatsapp-message-container {
   display: flex;
   z-index: 1;
}
.whatsapp-message {
   padding: 7px 14px 6px;
   background-color: white;
   border-radius: 0px 8px 8px;
   position: relative;
   transition: all 0.3s ease 0s;
   opacity: 0;
   transform-origin: center top 0px;
   z-index: 2;
   box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
   margin-top: 4px;
   margin-left: -54px;
   max-width: calc(100% - 66px);
}
.whatsapp-chat-body {
   padding: 20px 20px 20px 10px;
   background-color: #e6ddd4;
   position: relative;
}
.whatsapp-chat-body::before {
   display: block;
   position: absolute;
   content: "";
   left: 0px;
   top: 0px;
   height: 100%;
   width: 100%;
   z-index: 0;
   opacity: 0.08;
   background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}
.dAbFpq {
   display: flex;
   z-index: 1;
}
.eJJEeC {
   background-color: white;
   width: 52.5px;
   height: 32px;
   border-radius: 16px;
   display: flex;
   -moz-box-pack: center;
   justify-content: center;
   -moz-box-align: center;
   align-items: center;
   margin-left: 10px;
   opacity: 0;
   transition: all 0.1s ease 0s;
   z-index: 1;
   box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}
.hFENyl {
   position: relative;
   display: flex;
}
.ixsrax {
   height: 5px;
   width: 5px;
   margin: 0px 2px;
   border-radius: 50%;
   display: inline-block;
   position: relative;
   animation-duration: 1.2s;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
   top: 0px;
   background-color: #9e9da2;
   animation-name: ZpjSY;
}
.dRvxoz {
   height: 5px;
   width: 5px;
   margin: 0px 2px;
   background-color: #b6b5ba;
   border-radius: 50%;
   display: inline-block;
   position: relative;
   animation-duration: 1.2s;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
   top: 0px;
   animation-name: hPhMsj;
}
.kAZgZq {
   padding: 7px 14px 6px;
   background-color: white;
   border-radius: 0px 8px 8px;
   position: relative;
   transition: all 0.3s ease 0s;
   opacity: 0;
   transform-origin: center top 0px;
   z-index: 2;
   box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
   margin-top: 4px;
   margin-left: -54px;
   max-width: calc(100% - 66px);
}
.kAZgZq::before {
   position: absolute;
   background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
   background-position: 50% 50%;
   background-repeat: no-repeat;
   background-size: contain;
   content: "";
   top: 0px;
   left: -12px;
   width: 12px;
   height: 19px;
}
.bMIBDo {
   font-size: 13px;
   font-weight: 700;
   line-height: 18px;
   color: rgba(0, 0, 0, 0.4);
}
.iSpIQi {
   font-size: 14px;
   line-height: 19px;
   margin-top: 4px;
   color: #111111;
}
.iSpIQi {
   font-size: 14px;
   line-height: 19px;
   margin-top: 4px;
   color: #111111;
}
.cqCDVm {
   text-align: right;
   margin-top: 4px;
   font-size: 12px;
   line-height: 16px;
   color: rgba(17, 17, 17, 0.5);
   margin-right: -8px;
   margin-bottom: -4px;
}

/* -------- eOf CSS Multiple Whatsapp Chat ------------ */ 
.navbar-area .desktop-nav .navbar .navbar-brand { 
   width: 23%;
}
.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a {
   font-size: 17px; 
   padding: 35px 10px; 
   margin: 0;
}
.default-btn, .go-top { 
   background-color: #0b8677; 
}
.navbar-area .desktop-nav .navbar .navbar-nav .nav-item a.active {
   color: #0b8677;
   border-bottom: 3px solid #0b8677;
}
.top-header ul.header-right-content {
   line-height: 1;
   text-align: right;
   position: relative;
   top: unset;
   line-height: 1;
   list-style: none;
   padding: 0;
   margin: 0;
}
.top-header ul.header-right-content li span {
   color: #2042e3;
   font-weight: 600;
   font-size: 16px;
   display: inline-block;
   margin-right: 5px;
}
.top-header ul.header-right-content li a {
   font-weight: 600;
   font-size: 15px;
   color: #454545;
}
footer.footer-area {
   background: #000;
}
.single-footer-widget h3 { 
   color: #fff;
}
.single-footer-widget .address li span, .single-footer-widget p {
   color: #ffffff; 
} 
.single-footer-widget .address li a, .single-footer-widget .import-link a { 
   color: #fff;
} 
.single-footer-widget .import-link li:hover a { 
   color:#0b8677!important;
} 
.single-footer-widget .address li a:hover, .single-footer-widget .import-link a:hover { 
   color: #0b8677!important;
   text-decoration: none;
}
.single-footer-widget .social-icon li a:hover i {
   background-color: #0b8677;
   border-color: #0b8677;
   color: #ffffff;
}
.footerBtn { 
   color: #0b8677;
   background-color: #000;
   border-color: #0b8677;
   font-size: 20px;
   padding: 10px 25px;
   text-transform: uppercase;
}
.footerBtn:hover {
   color: #ffffff!important;
   background-color: #0b8677!important;
   border-color: #0b8677!important; 
}
.single-footer-widget .social-icon li a i { 
   border: 1px solid #ffffff;
   color: #ffffff; 
}
.hot-jobs-list .hot-jobs-img {
   background-color: #ffffff;
   box-shadow: 0px 5px 20px 3px rgba(230, 233, 249, 0.9);
   width: 120px;
   height: 120px;
   display: inline-block;
   text-align: center;
   line-height: 120px;
   border-radius: 20px 0 20px 0;
}
/*.our-clients-img img {
   padding: 30px;
   background-color: #ffffff;
   box-shadow: 0px 5px 20px 3px rgba(230, 233, 249, 0.9);
   transition: all ease 0.5s;
   border-radius: 30px 0 30px 0;
   margin-bottom: 30px;
   position: relative;
   overflow: hidden;
}*/
.our-clients-img img {
   height: 185px;
   width: 100%;
   padding: 2px;
   background-color: #ffffff;
   box-shadow: 0px 5px 20px 3px rgba(230, 233, 249, 0.9);
   transition: all ease 0.5s;
   border-radius: 100%;
   margin-bottom: 30px;
   position: relative;
   overflow: hidden;
}
.top-header .header-left-content li span, .top-header ul.header-right-content li span, .banner-content .total-job-count .job-count h3, .section-title span, .single-working i, .global-talent-content span, .khr-site-status .site-status .single-counter i, .testimonials-item i, .faq-accordion .accordion .accordion-title.active, .faq-accordion .accordion .accordion-title i, .single-footer-widget .address li i, .page-title-area .page-title-content ul li.active, .who-we-are-page .who-we-are-content span, .global-talent-content ul li span, .navbar-area .desktop-nav .navbar .navbar-nav .nav-item a:hover, .copy-right-area p a, .main-contact-area .contact-info .address li i, .main-contact-area .contact-info .address .location i {
   color: #0b8677; 
}
.global-talent-content ul li span, .main-contact-area .contact-info .address li i, .main-contact-area .contact-info .address .location i {
   border: 1px dashed #0b8677; 
}
.testiS img {
   width: 55%;
}
.testiM img {
   width: 65%;
}
.testiL img {
   width: 75%;
}
.testiXL img {
   width: 85%;
}
.testimonials { 
   max-width: unset; 
}
.testimonialsImgDiv img {
   text-align: center;
   border-radius: 50%;
   border: 4px solid #ffffff; 
   width: 10%!important; 
}
.single-working { 
   margin-bottom: unset;  
}
.working-area-normal .single-working { 
   margin-bottom: 1rem;  
}
.main-contact-area .php-email-form {
   background-color: #ffffff;
   box-shadow: 0px 5px 20px 3px rgba(230, 233, 249, 0.9);
   padding: 30px;
   border-radius: 0 0 30px 0;
}
.has-error {
   color: #dc3545!important;
   font-size: 12px;
}
.btn-website {
   color: #ffffff;
   background-color: #0b8677;
   border-color: #0b8677; 
}
.btn-website:hover {
   color: #ffffff;
   background-color: #0b8677;
   border-color: #0b8677; 
}
.form-control { 
   color: #0b8677;
}
.single-working h3 {
   font-size: 20px; 
   margin-bottom: 5px;
}
.industries-img img {
   width: 35%;
   margin-bottom: 1rem;
}
section.testimonials-area-three.testimonials-area-about-page.bg-color {
   background-image: linear-gradient(to bottom, #f7f7fb, #f7f7fb);
}
.section-page-title { 
   margin: -6px auto 50px;
   text-align: center;
   position: relative;
}
.section-page-title span {
   font-size: 16px;
   color: #2042e3;
   display: block;
   margin-bottom: 10px;
} 
.section-page-title p { 
   margin: auto;
}
.banner-content p.descriptionSlide {
   margin-bottom: 40px;
   font-size: 18px;
   color: #676767;
   font-weight: unset;
} 
.theme-btn, .theme-btn-s2 {
   background-color: #0b8677;
   font-size: 12px;
   font-size: 0.8rem;
   font-weight: 600;
   color: #fff;
   display: inline-block;
   padding: 15px 45px 15px 25px;
   border: 0;
   -webkit-border-radius: 60px;
   -moz-border-radius: 60px;
   -o-border-radius: 60px;
   -ms-border-radius: 60px;
   border-radius: 60px;
   text-transform: uppercase;
   position: relative;
   margin-bottom: 10px;
}
.theme-btn-s2 {
   background-color: #fff;
   color: #0b8677;
   border: 1px solid #0b8677;
   margin-left: 10px;
}
.theme-btn:after, .theme-btn-s2:after {
   content: "";
   background: #fff;
   width: 1px;
   height: 100%;
   position: absolute;
   right: 35px;
   top: 0;
   -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   -o-transition: all 0.3s;
   -ms-transition: all 0.3s;
   transition: all 0.3s;
}
.theme-btn-s2:after { 
   background: #0b8677; 
}
.theme-btn:before, .theme-btn-s2:before {
   font-family: "FontAwesome";
   content: "\f061";
   font-size: 12px;
   font-size: 0.8rem;
   position: absolute;
   right: 15px;
   top: 50%;
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   -o-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
}
a.theme-btn {
   background-color: #0b8677;
   font-size: 12px;
   font-size: 0.8rem;
   font-weight: 600;
   color: #fff;
   display: inline-block;
   padding: 15px 45px 15px 25px;
   border: 0;
   -webkit-border-radius: 60px;
   -moz-border-radius: 60px;
   -o-border-radius: 60px;
   -ms-border-radius: 60px;
   border-radius: 60px;
   text-transform: uppercase;
   position: relative;
} 
.homebanner-slider.owl-carousel {
   position: relative;
} 
.homebanner-slider.owl-theme .owl-nav [class*=owl-]:hover {
   background: #fff;
   color: #0b8677;
   text-decoration: none;
}
.homebanner-slider .owl-prev, .homebanner-slider .owl-next {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   font-size: 20px!important;
   color: #0b8677;
} 
.homebanner-slider .owl-prev {
   left: 0;
} 
.homebanner-slider .owl-next {
   right: 0;
}
.bSsmImg {
   width:80%;
}
.services-img {  
   margin-bottom: 1rem;
}
.careers-img {  
   margin-bottom: 1rem;
}
.careers-img img {  
   width : 27%;
}
.contact-img {  
   margin-bottom: 1rem;
}
.contact-img img {  
   width : 27%;
} 
.khr-site-status .site-status .single-counter h2 {
   color: #0b8677;
   font-family: "Helvetica Neue",sans-serif;
}
.khr-site-status .site-status .single-counter h2 span {
   color: #0b8677;
   font-size: 30px;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer { 
   vertical-align: sub; 
}
/*------------------------------------ eOf not responsive---------------------*/

/*------------------------------------responsive start-----------------------*/

   /* mayuresh media queries for all devices*/

   /*mayuresh css responsive main for all pages */

   /* 
   ##Device = Desktops
   ##Screen = 1281px to higher resolution desktops
   */

@media (min-width: 1281px) {

   .banner-content h1 {
     font-size: 50px; 
   } 
  
  /*//CSS*/
  
}/*//eOF min-width: 1281px*/

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  /*//CSS*/
     
  
}/*//eOF min-width: 1025px*/

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  /*//CSS*/

  
}/*//eOF min-width: 768px*/

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
  
  /*//CSS*/
}/*//eOF min-width: 768px*/

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  /*//CSS*/

}/*//eOF min-width: 481px*/

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
 /* //CSS*/
   #pageloader { 
      top: 70px; 
   }
   .top-header {
      display: none;
   }
   .khr-site-status .site-status .col-lg-6:nth-child(3) .single-counter {
      margin-top: 0;
   }
   .our-clients-img {
      display: flex;
      align-items: center;
      justify-content: center;
   } 
   .our-clients-img img {
      height: 190px;
      width: 190px; 
   }
   .single-footer-widget.btnFTDiv{
      text-align: center;
   }
   .mobile-nav .logo { 
      max-width: 170px;
   }
   .single-working {
       margin-bottom: 2rem;
   }
 
}/*//eOF min-width: 320px*/

/*------------------------------------ eOf responsive start-----------------------*/