@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
:root {
  --lh_primary-color: #000000;
  --lh_secondary-color: #b40f0d; 
  --lh_heading-font: 'Rubik', sans-serif;/*'Jost', sans-serif*/
  --lh_body-font: 'Rubik', sans-serif;/*'Poppins', sans-serif*/
  --blue: #0279c2;/*2e2b86*/
  --blue-grey: #626c7b;/*#8d99ab  626c7b*/
  --black: #000;
  --white: #fff;
  --grey: #f7f7f7;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */ 
}
body {
  color: var(--black);
  font-weight: 400;
  font-style: normal;
  font-size: 19px;  /*18px*/
  font-family: var(--lh_body-font);
  line-height: 1.7;
  margin: 0 auto; 
}
h1, .h1 {
  font-size: 42px;
  line-height: 1.2; }

h2, .h2 {
  font-size: 36px; }

h3, .h3 {
  font-size: 30px; }

h4, .h4 {
  font-size: 24px; }

h5, .h5 {
  font-size: 24px;/*20px*/ }

h6, .h6 {
  font-size: 16px; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--blue);
  clear: both;
  font-family: var(--lh_heading-font);
  font-weight: 600; 
  line-height: 1.3;
  margin-bottom: 5px;  
}
p {
  color: var(--black);
  margin-bottom: 0.5em;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; 
}
.blue-bg {
  background-color: var(--blue);
}
.black-bg {
  background-color: var(--black);
}
.white-bg {
  background-color: var(--white);
}
.grey-bg {
  background-color: var(--grey);
}
.text-blue {
  color: var(--blue);
} 
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}
.btn-wrap {
  margin-top: 1.5rem;
  display: inline-block;
}
section {
  scroll-margin-top: 95px;
}
.eus-btn {
  font-size: 16px; /*18*/
  color: #ffffff;
  padding: 17px 20px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--blue);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}
.eus-btn:hover {
  background: var(--blue-grey);
  color: #fff;
  text-decoration: none;
}
.eus-btn i {
  margin-left: 5px;
}
.section-title {
  margin-bottom: 15px;
}
.section-title h2 {
  font-size: 45px;
  line-height: 52px;
  color: var(--blue-grey);
} 
.section-title h2 span{
  color: var(--blue);
}
.section-title p {
  font-size: 21px;
}
.pad-tb {
  padding: 45px 0;
}
.top_bar {
  background: var(--blue);
  padding: 5px 0; /*8px 0*/
  overflow: hidden;
}
.top_bar ul {
  margin-bottom: 0;
  list-style: none;
  float: right;
  position: relative;
  color: var(--white);
  z-index: 999;
  margin-left: 0;
}
.top_bar ul > li {
  margin-left: 15px;
  float: left;
}
.top_bar ul > li a {
  color: #fff;
  font-size: 17px;
  position: relative;
  padding-right: 15px;
}
.top_bar ul > li a:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  border-right: 1px solid #eee;
  width: 100%;
  height: 100%;
  margin-left: 15px;
}
.top_bar ul > li:last-child a:after {
  display: none;
}
.top_bar ul > li a i {
  margin-right: 8px;
}
.top_bar ul > li a:hover {
  text-decoration: underline;
}
.top_bar ul > li:last-child a {
  padding-right: 0px;
}
header .header-logo {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header {
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 5px 0;/*1px 0*/
  height: 95px;
}
header .main-menu > li {
  position: relative;
}
header .main-menu > li > a {
  color: var(--black);
  font-size: 17px; 
  padding: 12px 1.8vw;/*25px 1vw*/
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  /*text-transform: uppercase;*/
}
header .main-menu > li.active > a {
  color: var(--blue);
}
header .main-menu > li:hover > a {
  color: var(--blue);
  text-decoration: none;
}
header .main-menu > li > a > i {
  color: var(--blue);
}
header .main-menu > li > a:hover > i {
  color: #fff;
}
header .main-menu > li:hover > a i {
  color: #fff;
}
header .main-menu > li:last-child > a { 
  color: var(--white);
  background: var(--blue-grey);
  border-radius: 5px;
}
header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 220px; /*180px*/
  overflow: hidden;
  border-top: 2px solid var(--blue);
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  z-index: 5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
header .main-menu .sub-menu a {
  padding: 11px 10px;
  display: block;
  color: var(--black);
  font-size: 17px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu .sub-menu a i {
  color: var(--black);
}
header .main-menu .sub-menu a:hover {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
}
header .main-menu > li:hover .sub-menu {
  display: block;
}
header .header-logo figure img {
  max-width: 200px;
}
header .demo-link {
  margin-left: 1vw;
}
header .side-menu-close {
  background: transparent;
}
header .side-menu-close span {
  background: var(--blue);
  width: 28px;
}
/* side menu */
.side-menu-wrap {
  width: 300px;
  position: fixed;
  right: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 15000;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-wrap.opened {
  right: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.side-menu-logo {
  border-bottom: 2px solid var(--grey-bg);
  padding-left: 0.5rem;
}
.side-menu-nav .main-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu > li > a > i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--blue);
  background: #fff;
  display: none;
}
.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;    
  font-size: 15px;
  text-transform: uppercase;
}
.side-menu-nav .main-menu .sub-menu a i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu ~ i {
  font-size: 0.8em;
  position: absolute;
  padding: 21px 11px;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a:hover {
  background: #f5f5f5;
}
.side-menu-nav .main-menu > li > a {
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 20px 15px 20px;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-nav .main-menu > li > a:hover {
  text-decoration: none;
}
.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.side-menu-close {
  height: 40px;
  width: 40px;
  background: var(--blue); 
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.side-menu-close span {
  height: 2px;
  width: 20px;
  background: #fff;
  position: relative;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-close span:nth-child(1) {
  top: -5px;
}
.side-menu-close span:nth-child(3) {
  bottom: -5px;
}
.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}
.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}
.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}
/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
/**/

.banner-section{
  position: relative;
}
.banner-carousel .slide-item {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}
.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
}
.banner-carousel .active .slide-item .image-layer {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.slider-content.style-two {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%; /*30*/
}
.slider-main-title {
  text-align: center;
}
.slider-main-title h1 {
  font-size: 60px;
  color: #FFF;
  font-weight: 700;
  line-height: 58px;
  text-transform: uppercase;
  margin-block-start: 0;
  margin-block-end: 0;
}
.banner-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.footer {
  position: relative;
  background-color: #626c7b;
  z-index: 3;
}
.footer-bg {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  /*background: url(../images/footer_bg_white.png);*/
}
.footer-top {
  padding: 50px 0 30px;
  position: relative;
}
.footer-top .footer-short-info p {
  margin-top: 1rem;
  margin-bottom: 0;
}
.footer-widget {
  margin-bottom: 15px;
}
.footer-widget h3 {
  color: var(--white);
  padding-bottom: 12px;
  margin-bottom: 22px;
  position: relative;
  font-weight: 500;
}
.footer-widget h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--white);
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul.widget-links > li {
  margin-bottom: 12px;
}
.footer-widget ul.widget-links > li:hover {
  padding-left: 10px;
}
.footer-widget ul.widget-links > li a {
  color: var(--white);
  position: relative;
  padding-left: 25px;
} 
.footer-widget ul.widget-links > li a:hover {
  color: var(--white);
  text-decoration: none;
} 
.footer-widget ul.widget-links > li a:before {
  font-family: "Font Awesome 6 Free";
  content:"\f0da";/*f105*/
  position: absolute;
  left: 0;
  font-weight: 600;
}
.icn_txt {
  position: relative;
  display: block;
  margin-bottom: 6px;
}
.icn {
  position: absolute;
  left: 0;
  color: #fff;
}
.txt {
  padding-left: 30px;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #8d99ab;   /*var(--blue-grey)*/ 
  padding: 25px 0;position: relative;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #828d9e;
  color: var(--white);
  display: inline-block;
  font-size: 19px;
  border-radius: 50%;
}
ul.social-links > li a:hover {
  background: #fff;  
  color: #828d9e;
}
.about-section {
  position: relative;
}
.about-section p {
  text-align: justify;
}    
.eus-mt-60 {
  margin-top: 60px;
}
@media (min-width: 1200px) {
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .mt-md-0 {
    margin-top: 0!important;
  }
}
.about-content {
  margin-right: 30px;
}
.service-section {
  position: relative;
  padding: 100px 0 30px;
}  
.service-section .section-title {
  margin-bottom: 35px;
}
.service-single-box {
  margin-bottom: 112px;
}
.service-thumb {
  position: relative;
}
.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 65%; /*464px*/
  height: 90px; /*110px*/
  border-radius: 3px;
  background: #FFF;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.10);
  padding: 0 37px 0;
  position: absolute;
  bottom: -45px; /*-60px*/
}
.service-text h4 {
  margin-bottom: 0px;
}
.service-text h4 a {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0px;
  transition: .5s;
}
.service-content:hover .service-text h4 a { 
  color:var(--blue);
}
.service-icon a i {
  background: var(--blue);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.service-content:hover .service-icon a i {
  background: var(--blue-grey);
}
.service-icon a i::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--blue-grey);
  border-radius: 100%;
  margin: auto;
  z-index: -1;
  transition: .5s;
}
.service-section .mt-50 {
  margin-top: 50px;
}
.service-single-box.three {
  margin-top: -45px;
}
.service-shape {
  position: absolute;
  top: 0;
  right: 0;
}
.single-client {
  margin-top: 1rem;    
}
.single-client img {
  padding: 5px 0;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
} 
.client-section .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
}
.client-section .owl-carousel .owl-nav button:hover, 
.client-section .owl-carousel .owl-nav button:focus, 
.banner-section .owl-carousel .owl-nav button:hover, 
.banner-section .owl-carousel .owl-nav button:focus {
  outline: 0;
}
.client-section .owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}
.client-section .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: -20px;
}
.banner-section .owl-carousel .owl-nav button.owl-prev {
  left: 50px;
}
.banner-section .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 50px;
}
.client-section .owl-carousel .owl-nav button.owl-prev span, 
.client-section .owl-carousel .owl-nav button.owl-next span {
  font-size: 30px;
  color: #999;
}
.banner-section .owl-carousel .owl-nav button.owl-prev span, 
.banner-section .owl-carousel .owl-nav button.owl-next span {
  font-size: 45px;
  color: #999;
}
.banner-section .owl-carousel .owl-nav button {
  position: absolute;
  top: 48%;
}
.breadcrumb_wrap {
  padding: 110px 0;
  background-color: #eee;
  background-size: cover!important;
  background-position: center center!important;
  position: relative;
}
.breadcrumb_title h1 {
  text-transform: uppercase;
  font-size: 54px;
  color: var(--white);
  position: relative;
}
.breadcrumb_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
} 
.call-action {
  background-image: url(../images/callarea-bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-attachment: fixed;
}
.call-content {
  padding: 40px;
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}
.call-content span {
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 500;
}
.call-content h2 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.emergency-call {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.emergency-call-icon {
  width: 80px;
  height: 80px;
  background: var(--blue);
  color: #ffffff;
  font-size: 45px;
  text-align: center;
  border-radius: 50%;
}
.emergency-call-icon img {
  width: 55px;
  height: 55px;
}
.emergency-call-info h5 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--blue);
}
.emergency-call-info h3 a { 
  color: var(--black);
}
.call-content::before {
  content: "";
  position: absolute;
  border: 5px solid var(--blue);
  border-radius: 20px;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  z-index: -1;
}
.call-content::after {
  content: "";
  position: absolute;
  left: 50px;
  top: 10px;
  width: 80px;
  height: 10px;
  background: #ffffff;
  z-index: -1;
}
.footer-shape {
  position: absolute;
  bottom: 0;
  left: 170px;
  z-index: -1;
  opacity: 0.05;
  animation: eustranslateX2 4s infinite alternate;
}
@keyframes eustranslateX2 {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
  }
}
.map-section {
  padding: 10px 0 45px;
}
.contact-content {
  margin-bottom: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 25px 15px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
  min-height: 270px;
}
.contact-info-icon {
  font-size: 35px;
  color: #ffffff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  background: var(--blue);
}
.contact-info::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -8px;
  background: var(--blue-grey);
  border-radius: 10px;
  height: 20px;
  z-index: -1;
}
.contact-info h4 {
  color: #000;
}
.contact-info p {
  margin-bottom: 0;
}
.contact-wrapper {
  background: #ffffff;
  border-radius: 20px;
  border-right: 8px solid var(--blue);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.contact-img img {
  border-radius: 10px 0 0 10px;
}
.contact-form {
  padding: 25px;
}
.contact-form-header {
  margin-bottom: 10px;
}
.contact-form-header h2 {
  margin-bottom: 10px;
}
.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-group {
    margin-bottom: 15px;
}
.form-control {
  height: 52px; border: 1px solid #bbb;
}
textarea.form-control {
  height: 90px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--blue);
} 
.vm-section .vm-block {
  -webkit-transition: all 0.4s linear 0s;
  -ms-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
} 
.vm-section .pic-box  {
  box-shadow: 14px 14px 0 0 rgba(141, 153, 171, 0.6);/*rgba(0, 0, 0, 0.19)*/ margin-top: 0px;/*15*/ width: 25%;
}
.vm-section .pic-box.fl {
  float: left;
}
.vm-section .pic-box.fr {
  float: right;
  box-shadow: -14px 14px 0 0 rgba(141, 153, 171, 0.6);
}
.vm-section .text-box {
  float: left;  padding-bottom: 15px;  width: 75%; padding-left: 70px; padding-top: 5px;
}
.vm-section .text-box.fl {
  padding-right: 70px;
  padding-left: 0;    
  float: left;
}
.vm-section {
  padding: 45px 0 60px;
}
.chart-wrap {
  padding: 20px 5% 10px;
}
ul.eus-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
ul.eus-list > li {
  margin-bottom: 8px;  
  position: relative;
  padding-left: 30px;
}
ul.eus-list > li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";/*f560 f14a f058*/
  position: absolute;
  left: 0;
  font-weight: 400;
  color: var(--blue);
}
ul.eus-list-white, ul.eus-list-white > li:before, .quality-policy .section-title h2  {
  color: #fff;
}
.quality-policy  {
  background-color: #626c7b;    
  position: relative;
  padding-bottom: 45px;    
  padding-top: 45px;
}
.tp-choose-3-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45.5%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tp-choose-3-shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tp-choose-3-shape img {
  animation: tpupdown 0.8s infinite alternate;
}
@keyframes tpupdown {
  0% {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@media (min-width: 1200px)
  .offset-xl-6 {
      margin-left: 50%;
  }
}
.z-index {
    position: relative;
    z-index: 1;
}
.tp-choose-text p {
  color: #fff;
  text-align: justify;
}
.services-detail .section-title, .career-section .section-title, 
.clients-section .section-title, .gallery-section .section-title {
  margin-bottom: 30px;
}
.services-detail.mb-40 {
  /*margin-bottom: 40px;*/
  padding-top: 20px;
  padding-bottom: 20px;
}
.services-detail h3 {
  text-transform: uppercase;
  font-size: 35px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}
.services-detail h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--blue-grey);
}
.services-detail ul.eus-list > li {
  margin-bottom: 10px;
}
.servicedetail-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.servicedetail-img img {
  border-radius: 15px;    
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.servicedetail-img:hover img {
  transform: scale(1.1);
}
.services-detail .col-md-push-6 {
  position: relative;
  left: 50%;
}
.services-detail .col-md-pull-6 {
  position: relative;
  right: 50%;
}
.servicedetail-content {
  padding: 15px;
}
.sclient:hover img{
  filter: grayscale(1);
}
label {
  display: block;
}
.gallery-section {
  position: relative;
}
.sclient {
  padding: 5px 0;
  border: 1px solid #d6d6d6;
  border-radius: 5px;    
  margin-bottom: 30px;
}
.gallery-section .masonry-gallery {
  margin: 0 -7.5px;
}
.gallery-section .masonry-gallery .grid {
  width: 25%;
  float: left;
  padding: 0 7.5px 15px;
}
.gallery-section .grid img {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.services-detail.services-detail-first  {
  padding-bottom: 0;
}

.services-detail.services-detail-last  { 
  padding-top: 20px;
  padding-bottom: 45px;
}