.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: 0;
  border-radius: 0.25rem;
  display: none;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
}

.dropdown-menu.show {
  display: block;
}

.bodys {
  margin-top: 20px;
  background: #e7ecf2;
}

.cd-horizontal-timeline ol,
.cd-horizontal-timeline ul {
  list-style: none;
}

.cd-timeline-navigation a:hover,
.cd-timeline-navigation a:focus {
  border-color: #313740;

}

.cd-horizontal-timeline a,
.cd-horizontal-timeline a:hover,
.cd-horizontal-timeline a:focus {
  color: #313740;
}

.cd-horizontal-timeline blockquote,
.cd-horizontal-timeline q {
  quotes: none;
}

.cd-horizontal-timeline blockquote:before,
.cd-horizontal-timeline blockquote:after,
.cd-horizontal-timeline q:before,
.cd-horizontal-timeline q:after {
  content: '';
  content: none;
}

.cd-horizontal-timeline table {
  border-collapse: collapse;
  border-spacing: 0;
}

.cd-horizontal-timeline {
  opacity: 0;
  margin: 2em auto;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.cd-horizontal-timeline::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}

.cd-horizontal-timeline.loaded {
  /* show the timeline after events position has been set (using JavaScript) */
  opacity: 1;
}

.cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}

.cd-horizontal-timeline .events-wrapper::after,
.cd-horizontal-timeline .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the timeline */
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px;
}

.cd-horizontal-timeline .events-wrapper::before {
  left: 0;

}

.cd-horizontal-timeline .events-wrapper::after {
  right: 0;

}

.cd-horizontal-timeline .events {
  /* this is the grey line/timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50px;
  height: 2px;
  /* width will be set using JavaScript */
  background: #dfdfdf;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}

.cd-horizontal-timeline .filling-line {
  /* this is used to create the green line filling the timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #313740;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1rem;
  padding-bottom: 15px;

  /* fix bug on Safari - text flickering while timeline translates */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.cd-horizontal-timeline .events a::after {
  /* this is used to create the event spot */
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  background-color: #f8f8f8;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #313740;
  border-color: #313740;
}

.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}

.cd-horizontal-timeline .events a.selected::after {
  background-color: #313740;
  border-color: #313740;
}

.cd-horizontal-timeline .events a.older-event::after {
  border-color: #313740;
}

@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}

.cd-timeline-navigation a {
  /* these are the left/right arrows to navigate the timeline */
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  /* replace text with an icon */
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.cd-timeline-navigation a::after {
  /* arrow icon */
  content: '>';
  position: absolute;
  height: 30px;
  width: 30px;
  left: -30%;
  top: 3%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 35px;
  font-weight: bold
}

.cd-timeline-navigation a.prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.cd-timeline-navigation a.next {
  right: 0;
  border: 2px solid #000;
}

.no-touch .cd-timeline-navigation a:hover {
  border-color: #7b9d6f;
}

.cd-timeline-navigation a.inactive {
  /* cursor: not-allowed; */
  border: 2px solid #000;
}

.cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px;
}

.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;

}

.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 2em 0;
  overflow: hidden;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s;
}

.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0 5%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.cd-horizontal-timeline .events-content li.enter-right,
.cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}

.cd-horizontal-timeline .events-content li.enter-left,
.cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}

.cd-horizontal-timeline .events-content li.leave-right,
.cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
}

.cd-horizontal-timeline .events-content li>* {
  max-width: 800px;
  margin: 0 auto;
}

.cd-horizontal-timeline .events-content h4 {
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 20px;
  margin-bottom: 15px;
}

.cd-horizontal-timeline .events-content h4 small {
  font-weight: 400;
  line-height: normal;
  font-size: 15px;
}

.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;
}

.cd-horizontal-timeline .events-content em::before {
  content: '- ';
}

.cd-horizontal-timeline .events-content p {
  font-size: 16px;
  margin-top: 15px;

}

@media only screen and (min-width: 768px) {

  .cd-horizontal-timeline .events-content em {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {

  .cd-horizontal-timeline.loaded {
    margin: 0;
  }

  .cd-horizontal-timeline .timeline {
    width: 100%;
  }

  .cd-horizontal-timeline ol,
  .cd-horizontal-timeline ul {
    padding: 0;
    margin: 0;
  }

  .cd-horizontal-timeline .events-content h4 {
    font-size: 16px;
  }

  .cd-horizontal-timeline .events-content {
    margin: 0;
  }

}

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}

@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}

@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.timeline:before {
  content: " ";
  display: none;
  bottom: 0;
  left: 0%;
  width: 0px;
  margin-left: -1.5px;
  background-color: #eeeeee;
}


/* Start custom css */
.social-icons p {
  font-size: 15px;
  font-size: 15px;
  text-align: center;
  border-bottom: solid 2px #fff;
  padding: 21px 10px 25px 10px;
  margin: 16px;
}



/* start fancybox */


.custom_container {
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 68rem;
  width: 100%;
}

.main .custom_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
}

.main .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}

.main .card-image {
  background: #ffffff;
  display: block;
  padding-top: 60%;
  position: relative;
  width: 100%;
}

.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .main .custom_container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

/* end fancybox */


.footer-contact {
  position: absolute;
  top: 0;
  width: 100%;
}

.footer-media {
  border-right: 1px dashed rgba(255, 255, 255, 0.5);
  height: 100%;
  background-color: #121628;
}

.footer-media i {
  background: var(--new-primary-color);
  color: #ffffff;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  margin-bottom: 20px;
  margin-top: 35px;
}

.footer-media {
  border-right: 1px dashed rgba(255, 255, 255, 0.5);
  height: 100%;
  /* background-color: #121628; */
  background-color: #134884;
}

.footer-media a,
.footer-media p {
  color: #ffffff;
}

.footer-media span {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.footer_tel {
  font-size: 14px !important;
}

.footer_email {
  font-size: 14px !important;
}

.about_us_content {
  text-align: justify;
}


/* start recent post css */

h3 {
  color: #2996bd;
  margin: 10px 0px 15px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-left: 5px solid #32aae1;
}

.sidebar.widget {
  background: #f2f2f2;
  border: 1px solid #ddd;
  padding: 10px 20px;
}

.sidebar.widget ul {
  margin: 0px;
  padding: 0;
  overflow: hidden;
}

.sidebar.widget ul li {
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}

.sidebar-thumb {
  float: left;
  overflow: hidden;
  margin-right: 15px;
}

.sidebar-thumb img {
  background: #fff;
  border: 1px dashed #e0e0e0;
  padding: 6px;
  height: 75px;
  width: 75px;

  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.sidebar-content h5 {
  font-size: 16px;
  cursor: pointer;
  line-height: 24px;
}

.sidebar-content h5 a:hover {
  color: #2996bd;
}

.sidebar-content h5 a {
  color: #202020;
  outline: 0 none;
  text-decoration: none;
  font-weight: bold;
}

.sidebar-meta {
  margin-top: 10px;
}

.sidebar-meta span {
  color: #2e2e2e;
}

.sidebar-meta span.time {
  margin-right: 10px;
}

.sidebar-meta span i {
  color: #2996bd;
}



/* start search bar  */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
  padding: 0px 0px 0px 80px;

}


input[type=search] {
  -webkit-appearance: none !important;
  background-clip: padding-box;
  background-color: white;
  vertical-align: middle;
  border-radius: 0.25rem;
  border: 1px solid #e0e0e5;
  font-size: 1rem;
  width: 100%;
  line-height: 2;
  padding: 0.375rem 1.25rem;
  transition: border-color 0.2s;
}

input[type=search]:focus {
  transition: all 0.5s;
  box-shadow: 0 0 40px #f9d442b9;
  border-color: #f9d342;
  outline: none;
}

form.search-form {
  display: flex;
  justify-content: center;
}

label {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: center;
  margin-bottom: 0;
}

input.search-field {
  margin-bottom: 0;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: center;
  height: 51px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

input.search-submit {
  height: 51px;
  margin: 0;
  padding: 1rem 1.3rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.button {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.15;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  /* background: #f9d342; */
  background: #134884;
  /* color: #292826; */
  color: #ffffff;
  border: 1px solid transparent;
  vertical-align: middle;
  text-shadow: none;
  transition: all 0.2s;
}

.button:hover,
.button:active,
.button:focus {
  cursor: pointer;
  /* background: #d4b743; */
  background: #134884;
  color: #ffffff;
  outline: 0;
}

/* end search bar  */

/* end recent post css */



/* .testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.bg-light {
  background-color: #EEF9FF !important;
} */

.team-card .social-icons {
  backdrop-filter: blur(25px) !important;
  padding: 80px;
  border-radius: 8px;
  /* background: rgba(255, 255, 255, 0.2);  */
  background: rgb(19 72 132 / 63%);
  border-bottom: solid #fff 2px;
}



.support_contact {
  margin-top: 215px;
  text-align: center;
  margin-right: -40px !important;
}

.tc-contact-st2 {
  padding: 0px 0px !important;
}

.para_support {
  color: #ffffff !important;
}

.certificate_row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
}

.certificate_image {
  position: relative;
  align-content: center;
  text-align: center;
  box-shadow: #134884 0px 0px 0px 3px, #134884 0px 0px 0px 3px, #134884 0px 0px 0px 5px, #134884 0px 0px 0px 9px, #134884 0px 0px 0px 10px, #134884 0px 0px 1px 14px;
  padding: 10px 15px;
}

.certificate_row p {
  font-weight: bold;
  font-size: 16px;
}

.work_mail a {
  color: #134884 !important;
  font-weight: bold;
}

.work_call a {
  color: #134884 !important;
  font-weight: bold;
}


/* start coming soon */

.hero-head header {
  height: 75px;
}

.hero-head header .navbar-item img {
  height: 75px;
  max-height: none;
}

.hero-head header .navbar-item .is-primary {
  border-color: #134884 !important;
  color: #134884 !important;
}

.hero-head header .navbar-item .is-primary:hover {
  background: rgba(0, 0, 0, 0) !important;
  border-color: #134884 !important;
  color: #134884 !important;
  transition: all 0.2s ease-in-out;
}

.hero-body .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 300 !important;
  font-size: 4rem !important;
  letter-spacing: 15px;
  color: #134884 !important;
}

.hero-body .subtitle .countdown {
  color: #134884;
  font-family: "Roboto Mono", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  padding-top: 15px;
  letter-spacing: 2px;
  font-size: 2.5rem;
}

.hero-foot {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-foot ul li {
  display: inline;
  padding: 25px;
}

.hero-foot a {
  color: #134884;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.7rem;
}

/* -------------------- */
/* -- Animations CSS -- */
/* -------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    opacity: 1\9;
  }

  to {
    opacity: 1;
  }
}

.fade {
  opacity: 0;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 2s;
}

.fade.fadeOne {
  animation-delay: 1.7s;
}

.fade.fadeTwo {
  animation-delay: 2.2s;
}

.fade.fadeThree {
  animation-delay: 4.2s;
}

.fade.fadeThree span {
  font-size: 0.8rem;
}

/* start coming soon */

/* start custom sidebar  */


.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* .clearfix {
  *zoom: 1;
} */


@media only screen and (min-width: 1200px) {
  .container {
    width: 1210px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .container {
    width: 1030px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .container {
    width: 682px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 428px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 479px) {
  .container {
    /* width: 320px; */
    width: 100%;
    margin: 0 auto;
  }
}

.mcd-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  /*height: 100px;*/
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;

  /* == */
  width: 250px;
  /* == */
}

.mcd-menu li {
  position: relative;
  /*float:left;*/
}

.mcd-menu li a {
  display: block;
  text-decoration: none;
  /* padding: 12px 20px; */
  padding: 10px 20px 50px 30px;
  color: #777;
  /*text-align: center;
  border-right: 1px solid #E7E7E7;*/

  /* == */
  text-align: left;
  height: 36px;
  position: relative;
  border-bottom: 1px solid #eee;
  /* == */
}

.mcd-menu li a i {
  /*display: block;
  font-size: 30px;
  margin-bottom: 10px;*/

  /* == */
  float: left;
  font-size: 20px;
  margin: 0 10px 0 0;
  /* == */
}

/* == */
.mcd-menu li a p {
  float: left;
  margin: 0;
}

/* == */

.mcd-menu li a strong {
  display: block;
  text-transform: uppercase;
}

.mcd-menu li a small {
  display: block;
  font-size: 10px;
}

.mcd-menu li a i,
.mcd-menu li a strong,
.mcd-menu li a small {
  position: relative;

  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
}

.mcd-menu li:hover>a i {
  opacity: 1;
  -webkit-animation: moveFromTop 300ms ease-in-out;
  -moz-animation: moveFromTop 300ms ease-in-out;
  -ms-animation: moveFromTop 300ms ease-in-out;
  -o-animation: moveFromTop 300ms ease-in-out;
  animation: moveFromTop 300ms ease-in-out;
}

.mcd-menu li:hover a strong {
  opacity: 1;
  -webkit-animation: moveFromLeft 300ms ease-in-out;
  -moz-animation: moveFromLeft 300ms ease-in-out;
  -ms-animation: moveFromLeft 300ms ease-in-out;
  -o-animation: moveFromLeft 300ms ease-in-out;
  animation: moveFromLeft 300ms ease-in-out;
}

.mcd-menu li:hover a small {
  opacity: 1;
  -webkit-animation: moveFromRight 300ms ease-in-out;
  -moz-animation: moveFromRight 300ms ease-in-out;
  -ms-animation: moveFromRight 300ms ease-in-out;
  -o-animation: moveFromRight 300ms ease-in-out;
  animation: moveFromRight 300ms ease-in-out;
}

.mcd-menu li:hover>a {
  color: #134884;
}

.mcd-menu li a.active {
  position: relative;
  color: #134884;
  border: 0;
  /*border-top: 4px solid #e67e22;
  border-bottom: 4px solid #e67e22;
  margin-top: -4px;*/
  box-shadow: 0 0 5px #ddd;
  -moz-box-shadow: 0 0 5px #ddd;
  -webkit-box-shadow: 0 0 5px #ddd;

  /* == */
  border-left: 4px solid #134884;
  border-right: 4px solid #134884;
  margin: 0 -4px;
  /* == */
}

.mcd-menu li a.active:before {
  content: "";
  position: absolute;
  /*top: 0;
  left: 45%;
  border-top: 5px solid #e67e22;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/

  /* == */
  top: 42%;
  left: 0;
  border-left: 5px solid #134884;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  /* == */
}

/* == */
.mcd-menu li a.active:after {
  content: "";
  position: absolute;
  top: 42%;
  right: 0;
  border-right: 5px solid #134884;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* == */

@-webkit-keyframes moveFromTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(200%);
    -moz-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes moveFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
    transform: translateX(200%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes moveFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.mcd-menu li ul,
.mcd-menu li ul li ul {
  position: absolute;
  height: auto;
  min-width: 200px;
  padding: 0;
  margin: 0;
  background: #fff;
  /*border-top: 4px solid #e67e22;*/
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  /*top: 130px;*/
  z-index: 1000;

  /* == */
  left: 280px;
  top: 0px;
  border-left: 4px solid #e67e22;
  /* == */
}

.mcd-menu li ul:before {
  content: "";
  position: absolute;
  /*top: -8px;
  left: 23%;
  border-bottom: 5px solid #e67e22;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/

  /* == */
  top: 25px;
  left: -9px;
  border-right: 5px solid #e67e22;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  /* == */
}

.mcd-menu li:hover>ul,
.mcd-menu li ul li:hover>ul {
  display: block;
  opacity: 1;
  visibility: visible;
  /*top: 100px;*/

  /* == */
  left: 250px;
  /* == */
}

/*.mcd-menu li ul li {
  float: none;
}*/
.mcd-menu li ul li a {
  padding: 10px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #eee;

  /* == */
  height: auto;
  /* == */
}

.mcd-menu li ul li a i {
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
}

.mcd-menu li ul li ul {
  left: 230px;
  top: 0;
  border: 0;
  border-left: 4px solid #e67e22;
}

.mcd-menu li ul li ul:before {
  content: "";
  position: absolute;
  top: 15px;
  /*left: -14px;*/
  /* == */
  left: -9px;
  /* == */
  border-right: 5px solid #e67e22;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
}

.mcd-menu li ul li:hover>ul {
  top: 0px;
  left: 200px;
}

/*.mcd-menu li.float {
  float: right;
}*/
.mcd-menu li a.search {
  /*padding: 29px 20px 30px 10px;*/
  padding: 10px 10px 15px 10px;
  clear: both;
}

.mcd-menu li a.search i {
  margin: 0;
  display: inline-block;
  font-size: 18px;
}

.mcd-menu li a.search input {
  border: 1px solid #eee;
  padding: 10px;
  background: #fff;
  outline: none;
  color: #777;

  /* == */
  width: 170px;
  float: left;
  /* == */
}

.mcd-menu li a.search button {
  border: 1px solid #e67e22;
  /*padding: 10px;*/
  background: #e67e22;
  outline: none;
  color: #fff;
  margin-left: -4px;

  /* == */
  float: left;
  padding: 10px 10px 11px 10px;
  /* == */
}

.mcd-menu li a.search input:focus {
  border: 1px solid #e67e22;
}

.search-mobile {
  display: none !important;
  background: #e67e22;
  border-left: 1px solid #e67e22;
  border-radius: 0 3px 3px 0;
}

.search-mobile i {
  color: #fff;
  margin: 0 !important;
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .mcd-menu {
    margin-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .mcd-menu {
    width: 200px;
  }

  .mcd-menu li a {
    height: 30px;
  }

  .mcd-menu li a i {
    font-size: 22px;
  }

  .mcd-menu li a strong {
    font-size: 12px;
  }

  .mcd-menu li a small {
    font-size: 10px;
  }

  .mcd-menu li a.search input {
    width: 120px;
    font-size: 12px;
  }

  .mcd-menu li a.search buton {
    padding: 8px 10px 9px 10px;
  }

  .mcd-menu li>ul {
    min-width: 180px;
  }

  .mcd-menu li:hover>ul {
    min-width: 180px;
    left: 200px;
  }

  .mcd-menu li ul li>ul,
  .mcd-menu li ul li ul li>ul {
    min-width: 150px;
  }

  .mcd-menu li ul li:hover>ul {
    left: 180px;
    min-width: 150px;
  }

  .mcd-menu li ul li ul li:hover>ul {
    left: 150px;
    min-width: 150px;
  }

  .mcd-menu li ul a {
    font-size: 12px;
  }

  .mcd-menu li ul a i {
    font-size: 14px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .mcd-menu {
    width: 50px;
  }

  .mcd-menu li a {
    position: relative;
    padding: 12px 16px;
    height: 20px;
  }

  .mcd-menu li a small {
    display: none;
  }

  .mcd-menu li a strong {
    display: none;
  }

  .mcd-menu li a:hover strong,
  .mcd-menu li a.active strong {
    display: block;
    font-size: 10px;
    padding: 3px 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    background: #e67e22;
    color: #fff;
    min-width: 100%;
    text-transform: lowercase;
    font-weight: normal;
    text-align: center;
  }

  .mcd-menu li .search {
    display: none;
  }

  .mcd-menu li>ul {
    min-width: 180px;
    left: 70px;
  }

  .mcd-menu li:hover>ul {
    min-width: 180px;
    left: 50px;
  }

  .mcd-menu li ul li>ul,
  .mcd-menu li ul li ul li>ul {
    min-width: 150px;
  }

  .mcd-menu li ul li:hover>ul {
    left: 180px;
    min-width: 150px;
  }

  .mcd-menu li ul li ul li>ul {
    left: 35px;
    top: 45px;
    border: 0;
    border-top: 4px solid #e67e22;
  }

  .mcd-menu li ul li ul li>ul:before {
    left: 30px;
    top: -9px;
    border: 0;
    border-bottom: 5px solid #e67e22;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }

  .mcd-menu li ul li ul li:hover>ul {
    left: 30px;
    min-width: 150px;
    top: 35px;
  }

  .mcd-menu li ul a {
    font-size: 12px;
  }

  .mcd-menu li ul a i {
    font-size: 14px;
  }
}

@media only screen and (max-width: 479px) {
  .mcd-menu {
    width: 50px;
  }

  .mcd-menu li a {
    position: relative;
    padding: 10px 10px;
    height: 29px;
  }

  .mcd-menu li a small {
    display: none;
  }

  .mcd-menu li a strong {
    display: none;
  }

  .mcd-menu li a strong {
    display: block;
    font-size: 15px;
    padding: 3px 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    background: #ffffff;
    color: #134884;
    min-width: 100%;
    /* text-transform: lowercase; */
    text-transform: capitalize;
    font-weight: normal;
    text-align: center;
  }

  /* .mcd-menu li a:hover strong,
  .mcd-menu li a.active strong {
    display: block;
    font-size: 10px;
    padding: 3px 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    background: #ffffff;
    color: #134884;
    min-width: 100%;
    text-transform: lowercase;
    font-weight: normal;
    text-align: center;
  } */
  .mcd-menu li .search {
    display: none;
  }

  .mcd-menu li>ul {
    min-width: 180px;
    left: 70px;
  }

  .mcd-menu li:hover>ul {
    min-width: 180px;
    left: 50px;
  }

  .mcd-menu li ul li>ul,
  .mcd-menu li ul li ul li>ul {
    min-width: 150px;
  }

  .mcd-menu li ul li:hover>ul {
    left: 180px;
    min-width: 150px;
  }

  .mcd-menu li ul li ul li>ul {
    left: 35px;
    top: 45px;
    border: 0;
    border-top: 4px solid #e67e22;
  }

  .mcd-menu li ul li ul li>ul:before {
    left: 30px;
    top: -9px;
    border: 0;
    border-bottom: 5px solid #e67e22;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }

  .mcd-menu li ul li ul li:hover>ul {
    left: 30px;
    min-width: 150px;
    top: 35px;
  }

  .mcd-menu li ul a {
    font-size: 12px;
  }

  .mcd-menu li ul a i {
    font-size: 14px;
  }
}

.rockwell_title {
  font-size: 18px;
  font-weight: bold;
}

.custom_card_fluke {
  text-align: center;
  justify-content: center;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  padding: 15px;
  margin-top: 20px;
  min-height: 420px;
  border-radius: 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.custom_image_size_fluke {
  height: 250px !important;
}

.custom_card_fluke img {
  border-radius: 10px;
}

/* end custom sidebar  */


.custom_product p {
  font-size: 18px !important;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.custom_prduct_card {
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; */
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 10px;
  margin-top: 30px;
  padding: 15px;
  min-height: 545px;
}

.three_phase_button {
  font-size: 14px !important;
}

.custom_product_img img {
  /* border: 2px solid #000; */
  border-radius: 10px;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}



/* start cliental  */


.tabs-container {
  width: 100%;
  max-width: 700px;
  height: auto;
  /* Make the height flexible */
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

/* .tabs {
  padding: 10px 20px 15px 20px; 
} */

.tab-links {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}

.tab-link {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  color: #7a7b7c;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-link.active,
.tab-link:hover {
  color: #134884;
  /* Gradient purple */
}

.tab-link i {
  margin-right: 10px;
}

.tab-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -1px;
  left: 50%;
  background: linear-gradient(45deg, #134884, #134884);
  /* Purple gradient */
  transition: all 0.4s ease;
}

.tab-link.active::after {
  width: 100%;
  left: 0;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
  /* padding: 5px 10px 15px 10px; */
}

.tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  /* More padding */
  background: linear-gradient(45deg, #134884, #134884);
  /* Purple gradient */
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.4s ease;
  font-weight: 500;
  margin-top: 20px;
}

.cta-btn:hover {
  background: linear-gradient(45deg,
      #134884,
      #134884);
  /* Darker gradient on hover */
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  /* Increased padding for inputs */
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #134884;
  outline: none;
}

/* FAQ List */
.faq-list {
  padding: 0;
  list-style: none;
}

.faq-list li {
  margin-bottom: 10px;
}

.faq-list li strong {
  font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .tab-links {
    flex-direction: column;
    align-items: center;
  }

  .tab-link {
    text-align: center;
    width: 100%;
    padding: 15px 0;
  }
}

/* end cliental  */


.career_img {
  height: 588px !important;
}

/* .custom_navbar {
    margin-right: -75px;
 } */

.inner_card {
  min-height: 580px;
}

.dropdown-item:active {
  background-color: #134884 !important;
}


/* start custom cliental */

/* .client_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  grid-gap: 2rem;
}
.client_container img {
  height: 10rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
} */
/* end custom cliental */


/* .client_container {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  margin-bottom: 25px;
  
 } */

.client_container {
  margin-bottom: 25px;
  transition: 0.9s ease-in-out;
  border-radius: 20%;
  /* box-shadow: rgba(17, 12, 46, 0.15) 0px 13px 100px  */
  box-shadow: rgba(17, 12, 46, 0.15) 0px 1px 5px 1px;
}

.client_container:hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px -1px 3px 1px;

}


.custom_solution {
  padding: 20px;

}

.custom_solution p {
  text-align: justify;
}

/* .tc-proccess-st2 .cards { 
  padding: 80px 0 80px !important;
} */

.tc-proccess-st2 .cards {
  padding: 0px 0px 0px !important;
}

.chemical_content {
  text-align: justify;
  margin-bottom: 20px;
}

.tc-choose-st2 .info {
  padding: 0px !important;
}

.tc-testimonials-st2 .info {
  padding: 0px !important;
}

.tc-portfolio-st1 .main-img {
  height: 400px !important;
  margin-top: 50px;
}

/* .tc-portfolio-st1 { 
  padding: 0px !important;
} */


.tc-projects-st3 {
  padding: 0px !important;
}

.fsz-24 {
  font-size: 15px !important;
}

.tc-testimonials-st3 .testi-card::after {
  display: none !important;
}

/* .custom_engineering_img img {
  height: 330px !important;
} */

.tc-services-st2 {
  padding: 10px !important;
}

.tc-services-st2 .cards .item:hover * {
  color: #fff !important;
}

.chemical_plant {
  margin-right: 10px;
}

.custom_btn {
  width: 100% !important;
}

.info-card h6 {
  border-radius: 0px 0px 10px 10px;
  height: 60px;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-top: 1px solid #dddddd;
  background: #fff;
  padding: 10px;
}

.custom_domain_name {
  background-color: #e7ecf2;

}

.tc-blog-st3 {
  padding: 60px 0px !important;
}

.tc-portfolio-st1 {
  padding: 60px 0px !important;
}

.custom_applications_test {
  text-align: center;
  margin-top: 35px;

}

.tc-services-st5 {
  padding: 60px 0 !important;
}

.tc-team-st3 {
  padding: 60px 0px !important;
}


.contact-info img {
  /* border: 2px solid red; */
  border-radius: 10px;
}

.contacts p {
  font-size: 15px;
  text-align: justify;
}

.title h2 {
  color: #ffffff;
  font-family: "Zilla Slab";
}

.tc-testimonials-st3 {
  padding: 60px 0px !important;
}

.sidebar-service .about-inner {
  box-shadow: rgb(0 166 81 / 7%) 0px 7px 4px 0px;
  border-radius: 11px;
  position: sticky;
  z-index: 10;
  top: 0px;
  padding: 5px 5px 10px 5px;
}


.about-inner {
  background: #e7ecf2;
}


.dealer_list {
  margin-left: -10px;
}

.custom_space {
  padding: 10px;

}


.ser-card .content {
  position: relative;
  z-index: 1;
}


.ser-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 30px;
  transition: transform 0.3s ease;
}

.ser-card:hover .content {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}


.ser-card:hover {
  transform: scale(1.05);
  background-image: none !important;
  background-color: #134884 !important;
  color: white;
  transform: translateY(-10px);
}




.ser-card .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px !important;
  z-index: 1;
}

.ser-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent overlay */
  border-radius: 20px;
  /* Match the border radius of the background image */
  z-index: 1;
  transition: background-color 0.3s ease;
}



.custom_icon img {
  position: absolute;
  top: 235px;
}

.content h6 {
  position: absolute;
  top: 325px;

}

.ser-card:hover .custom_icon img {
  position: absolute;
  top: 0;
}

.ser-card:hover .content h6 {
  position: absolute;
  top: 100px;
}

.ser-card:hover .custom_paragraph_color {
  position: absolute;
  top: 185px;
}

.custom_paragraph_color {
  color: #dddddd !important;
}

.ser-card .content .text {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ser-card:hover .content .text {
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease;
}



.footer_content {
  color: #4c4c4c;
}

.custom_title {
  font-size: 19px;
  font-weight: bold;
}

.tc-proccess-st2 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.tc-services-st4 {
  padding: 60px 0 !important;
}

.tc-testimonials-st4 {
  padding-bottom: 60px !important;
}



/* start our partner */

.sec-heading {
  margin-bottom: 60px;
}

.sec-heading h5 {
  text-align: center;
}

.clients {
  padding: 150px 0;
}

.box {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 50%;
  height: auto;
  transition: transform 0.5s ease-in;
  margin: 8px auto;
}

.box img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.box:hover {
  transform: scale(1.2);
}

/* end our partner */

.inner_banner_container {
  height: 260px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.banner_title {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, 160%);

}

.banner1 {
  background-image: url(../img/inner_banner/about_us.png);
}

.banner2 {
  background-image: url(../img/inner_banner/solutions_and_services.png);
}

.banner3 {
  background-image: url(../img/inner_banner/recognised_system_integrator.png);
}

.banner4 {
  background-image: url(../img/inner_banner/fluke.png);
}

.banner5 {
  background-image: url(../img/inner_banner/career.png);
}

.banner6 {
  background-image: url(../img/inner_banner/contact_us.png);
}

.banner7 {
  background-image: url(../img/inner_banner/blogs.png);
}

.banner8 {
  background-image: url(../img/inner_banner/news.png);
}

.about_content {
  text-align: justify;
}

.custom_color {
  background-color: #134884 !important;
}

.miles_stone_bg {
  background-color: #e7ecf2;
  padding: 30px 0px;
  border-radius: 10px;
  overflow: hidden;
  color: #000;
}


.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
  color: #333;
}

.swiper-pagination-bullet {
  background: #333;
}

.milestone_swiper p {
  display: flex;
  text-align: left;
}


.swiper-slide .custom_image_milestone {
  display: flex;
  align-items: center;
  gap: 5px;
}

.swiper-slide p {
  padding: 5px;
}


.number-wrapper {
  display: flex;
  align-items: center;
}

.plus-icon {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}

.custom_counter {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* end custom css */


.custom_about_space {
  /* border: 2px solid red; */
  margin-top: 135px !important;
}

.mission_bg {
  position: relative;
  background-image: url(../img/mission_1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.mission_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  /* Light black overlay */
  z-index: 1;
}


.tc-strategy-st3 {
  padding-bottom: 60px !important;
  padding-top: 60px !important;
}

.our_mission_text {
  color: #fff !important;
}



/* start milestone  */

.swiper-container-milestone {
  width: 100%;
  padding: 1rem 0;
}


.timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-connector .horizontal-line {
  width: 100%;
  height: 2px;
  background-color: #ddd;
  margin: 10px 0;
  animation: lineGrow 1s ease-in-out;
}

.timeline-connector::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #ddd;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: verticalLineGrow 1s ease-in-out;
  z-index: -1;
}

@keyframes lineGrow {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes verticalLineGrow {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}


.subcard {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 15px;
  margin-top: 10px;
  border: solid #e4eef9;
  text-align: center;
  transition: transform 0.9s, box-shadow 0.3s;
  min-height: 255px;
  /* background-color: #134884; */
}

.subcard:hover {
  background: #134884;
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.12);
}

.horizontal-line {
  width: 50%;
  height: 2px;
  background-color: #ddd;
  margin: 10px auto;
  animation: lineGrow 1s ease-in-out;
}

/* Optional Animation */
@keyframes lineGrow {
  0% {
    width: 0;
  }

  100% {
    width: 50%;
  }
}


.section-padding {
  padding: 60px 0 !important;
}


.clock_svg {
  position: absolute;
  top: 7px;
  right: 11px;
}

.circle-custom svg {
  position: absolute;
  top: 0;
  right: 4px;
}

/* end milestone  */

.text_orange {
  color: #ff5c23;
}

.tc-about-st4 {
  background-color: #134884;
}

.text_gray {
  color: #666666;
  font-weight: 400;

}

.swiper_border {
  border: 1px solid #fff;
  background-color: #fff;
}

.custom_prev:after {
  color: #000;
}

.custom_next:after {
  color: #000;
}


.main_title h1 {
  color: #FFFFFF;
  font-weight: bold !important;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3) !important;
  font-size: 42px !important;
  font-family: "Zilla Slab";
}

.about_hr {
  width: 70px;
  border: 1px solid #ffffff;
  opacity: 1;
  margin-bottom: 0px;
}

.title .about_margin {
  margin-bottom: -20px !important;
  font-family: "Zilla Slab";
  margin-top: -20px;
}

.title h1 {
  font-family: "Zilla Slab";
}

.sec-heading h1 {
  font-family: "Zilla Slab";
  text-align: center;
}

/* Show dropdown menu on hover */
.dropdown:hover>.dropdown-menu {
  display: block;
}

/* Handle nested submenus */
.dropdown-submenu:hover>.dropdown-menu {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  /* Ensures it opens to the right */
  margin-top: -1px;
  /* Fine-tune alignment */
}

/* Hide dropdown menus initially */
.dropdown-menu {
  display: none;
}



.about_mipl {
  font-family: "Zilla Slab";
}

.vision {
  font-family: "Zilla Slab";
}

.mission {
  font-family: "Zilla Slab";
}

.milestone {
  font-family: "Zilla Slab";
}

.team {
  font-family: "Zilla Slab";
}

.awards_certificate {
  font-family: "Zilla Slab";
}

.recent_post {
  font-family: "Zilla Slab";
  color: #000000;
}

.banner_title h2 {
  font-family: "Zilla Slab";
}

.about-content h5 {
  font-family: "Zilla Slab";
}

#industry-we-serve h5 {
  font-family: "Zilla Slab";
}

.chemical_fertilizers {
  font-family: "Zilla Slab";
}

.life_science {
  font-family: "Zilla Slab";
}

.oil_gas {
  font-family: "Zilla Slab";
}

.food {
  font-family: "Zilla Slab";
}

.water_mgmt {
  font-family: "Zilla Slab";
}

.captive_power {
  font-family: "Zilla Slab";
}

.applications_main {
  font-family: "Zilla Slab";
}

.domain_expert {
  font-family: "Zilla Slab";
}

.case_study {
  font-family: "Zilla Slab";
}

.solutions {
  font-family: "Zilla Slab";
}

.products {
  font-family: "Zilla Slab";
}

.careers_main {
  font-family: "Zilla Slab";
}

.dealer {
  font-family: "Zilla Slab";
}

.locations_main {
  font-family: "Zilla Slab";
}

.sales_contact {
  font-family: "Zilla Slab";
}

.sales_main {
  font-family: "Zilla Slab";
}

.contact_us {
  font-family: "Zilla Slab";
}

.support {
  font-family: "Zilla Slab";
}

.electrical h2 {
  color: #074684;
  font-family: "Zilla Slab";
}

.product_inner {
  font-family: "Zilla Slab";
}

.rockwell {
  font-family: "Zilla Slab";
}

.fluke {
  font-family: "Zilla Slab";
}

.manufacturing {
  font-family: "Zilla Slab";
}

.applications_inner {
  font-family: "Zilla Slab";
}

.engineering {
  font-family: "Zilla Slab";
}

.three_decades {
  font-family: "Zilla Slab";
}

.application_sub_title h4 {
  font-family: "Zilla Slab";
}


.logo_bg {
  background-color: #134884;
  /* padding: 2px; */
  width: 200px;

}

.logo_bg_img {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;

}

.bottom_padding {
  padding-bottom: 40px;
}

.engineering_services_why_mpl {
  margin-top: 20px;
}

.chemical_content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chemical_content .icon {
  flex-shrink: 0;
  width: 25px;
  height: auto;
}

.chemical_content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.lt_panels_slider {
  overflow: hidden;
}

.lt_panels_btn {
  margin-top: 30px !important;
}

.border_img {

  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  /* box-shadow: #134884 0px 0px 0px 2px, #134884 0px 0px 0px 2px, #134884 0px 0px 0px 2px, #134884 0px 0px 0px 2px, #134884 0px 0px 0px 2px, #134884 0px 0px 2px 2px; */
}


.digitlization_card .testi-card {
  min-height: 705px;
}


.burner_management_mob_view h2 {
  margin-top: 10px;
}



.tc-testimonials-st3 .test_and_measuring_card {
  min-height: 573px;

}


.test_measuring_application_card img {
  width: 324px;
  height: 370px;
  object-fit: cover;
  display: block;

  /* margin: 0 auto;  */
}

.custom_application_card {
  height: 600px;
  width: 406px;
}

.thermal {
  margin-top: -110px;
}

.bg_case_study {
  background-color: #e7ecf2;
}

.custom_case_study {
  width: 275px;
}

.case_stduy_sidebar .case_study_inner {
  padding: 10px 10px 20px 4px;
  width: 285px;
}

.custom_case_study li a {
  padding: 20px 20px 100px 30px;
}

.custom_text {
  line-height: 1.6;
}

/* start header sticky */

/* .tc-navbar-st1 {
  position: absolute; 
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
  background: transparent; 
  padding: 20px 0;
}

.tc-navbar-st1.sticky {
  position: fixed; 
  background: white; 
  padding: 10px 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  transition: all 0.4s ease-in-out; 
} */

/* end header sticky */


/* start responsive css */



/* start early adapters technologies */

/* .container-early {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}


.swiper-container {
  width: 100%;
}
.swiper-slide.early {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  min-height: 302px;
}
.swiper-slide.early h3 {
  font-size: 20px;
  color: #333;
}
.swiper-slide.early img {
  width: 100px;
  height: auto;
  margin-top: 10px;
}
.swiper-slide.early p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}


.swiper-button-next, .swiper-button-prev {
  color: #FF5722;
}
.swiper-pagination-bullet-active {
  background: #FF5722;
}


.early_technology {
  margin-top: 20px !important;
} */







#process {
  margin-bottom: 40px;
  overflow-x: hidden;
}

#process .section-heading {
  margin-bottom: 40px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ff5c23;
}

.early h3 {
  padding-left: 30px;

}

.steps-pane img {
  height: 100px;
  margin-top: 18px;
  -ms-transform: skewX(-15deg);
  /* IE 9 */
  -webkit-transform: skewX(-15deg);
  /* Safari */
  -o-transform: skewX(-15deg);
  /* Standard syntax */
  -moz-transform: skewX(-15deg);
}

.pane-warp {
  height: 165px;
  width: 25px;
  margin-left: 20%;
  margin-top: 20px;
  -ms-transform: skewX(15deg);
  /* IE 9 */
  -webkit-transform: skewX(15deg);
  /* Safari */
  -o-transform: skewX(15deg);
  /* Standard syntax */
  -moz-transform: skewX(15deg);
}

.steps-pane {
  height: 165px;
  width: 140px;
  margin-left: 30px;
  box-shadow: 7px 0px 5px #bcbcbc;
}

.inverted-pane-warp {
  height: 165px;
  width: 25px;
  margin-left: 20%;
  -ms-transform: skewX(-15deg);
  /* IE 9 */
  -webkit-transform: skewX(-15deg);
  /* Safari */
  -o-transform: skewX(-15deg);
  /* Standard syntax */
  -moz-transform: skewX(-15deg);
}

.inverted-steps-pane {
  height: 165px;
  width: 140px;
  background: #bcbcbc;
  margin-left: 30px;
  box-shadow: 7px 0px 5px #bcbcbc;
}

.inverted-steps-pane p {
  -ms-transform: skewX(15deg);
  /* IE 9 */
  -webkit-transform: skewX(15deg);
  /* Safari */
  -o-transform: skewX(15deg);
  /* Standard syntax */
  -moz-transform: skewX(15deg);
  padding: 20px 10px 10px 20px;
}

@media (min-width: 900px) {
  .steps-timeline {
    border-top: 5px double #ff5c23;
    padding-top: 20px;
    margin-top: 40px;
    margin-left: 3%;
    margin-right: 3%;
  }

  .steps-one,
  .steps-two,
  .steps-three,
  .steps-four,
  .steps-five {
    float: left;
    width: 20%;
    margin-top: -105px;
  }

  .step-wrap {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    margin-left: 39%;
    border: 2px solid #ff5c23;
  }

  .verticle-line {
    position: absolute;
    height: 57px;
    width: 5px;
    margin-left: 10px;
    /* marker-top: 10px; */
  }

  .steps-stops {
    height: 25px;
    width: 25px;
    margin: 11px 10.1px;
    border-radius: 50%;
    background: #ff5c23;
  }

  .end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: 19px;
    margin-left: -10px;
  }

  .inverted-end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: 19px;
    margin-left: 18.1%;
  }
}

@media (max-width: 899px) {
  #process .container-fluid {
    width: 50%;
  }

  .steps-timeline {
    border-left: 5px double #ff5c23;
    margin-left: 35px;
  }

  .steps-one,
  .steps-two,
  .steps-three,
  .steps-four,
  .steps-five {
    margin-left: -25px;
  }

  .step-wrap,
  .steps-stops {
    float: left;
  }

  .steps-timeline {
    /* border-left: 2px solid $brand-primary; */
    margin-left: 30px;
  }

  .pane-warp {
    margin-left: 30%;
  }

  .inverted-pane-warp {
    margin-left: 30%;
  }

  .verticle-line {
    position: absolute;
    width: 125px;
    height: 5px;
    margin-left: 5px;
    margin-top: 10px;
  }

  .steps-stops {
    height: 25px;
    width: 25px;
    margin: 11px 10px;
    border-radius: 50%;
    background: #ff5c23;
  }

  .step-wrap {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    margin-top: 125px;
    margin-left: -2px;
    border: 2px solid #ff5c23;
  }

  .end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: -45px;
    margin-left: 15px;
  }

  .inverted-end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: 280px;
    margin-left: 15px;
  }
}

@media (max-width: 600px) {
  #process .container-fluid {
    width: 90%;
  }
}

@media (max-width: 400px) {
  .verticle-line {
    width: 105px;
  }
}

.back-orange {
  background: #ff5c23;
}

.back-blue {
  background: #134884;
}

.custom_team_member {
  padding: 0px 0px !important;
}

/* end  early adapters technologies */


/* start events fancy box  */




.main .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.main .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}

.main .card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

/* end events fancy box  */



@media (min-width: 1280px) {}

@media (min-width: 1366px) {
  .custom_card_fluke {
    width: 274px;
  }

  .inner_banner_container {
    height: 255px;
  }

  .banner_title {
    transform: translate(-50%, 160%);
  }

  .custom_title_fluke {
    transform: translate(-50%, 95%) !important;
  }

}

@media (max-width: 1366px) {

  .custom_bottom h2 {
    margin-bottom: -45px !important;
  }

}


@media (min-width: 1600px) {
  .custom_navbar {
    margin-right: 0px;
  }

  .contacts p {
    font-size: 16px;
    text-align: justify;
  }

  .fsz-18 {
    font-size: 19px;
  }

  .sidebar-service .about-inner {
    padding: 5px 5px 8px 15px;
  }

  .tc-testimonials-st3 .testi-card {
    min-height: 773px;
  }

  .support_contact {
    margin-top: 205px;
    margin-right: -300px;
  }

  .inner_banner_container {
    height: 350px;
  }

  .banner_title {
    transform: translate(-50%, 230%);
  }

  .tc-testimonials-st3 .test_and_measuring_card {
    min-height: 605px;
  }

}


@media (min-width: 1920px) {
  .custom_navbar {
    /* border: 2px solid red; */
    margin-right: 0px;

  }

  .fsz-18 {
    font-size: 19px;
  }

  .contacts p {
    font-size: 16px;
    text-align: justify;
  }

  .sidebar-service .about-inner {
    padding: 5px 5px 8px 15px;
  }

  .tc-testimonials-st3 .testi-card {
    min-height: 773px;
  }

  .support_contact {
    margin-top: 205px;
    margin-right: -300px !important;
  }

  .fsz-18 {
    font-size: 20px !important;
  }

  .fsz-45 {
    font-size: 50px !important;
  }

  .inner_banner_container {
    height: 350px !important;
  }

  .banner_title {
    transform: translate(-50%, 230%) !important;
  }


}


@media (max-width: 480px) {
  .tc-team-st5 .team-card .img .social-icons a {
    width: 41px !important;
    height: 41px !important;
  }

  .wrapper {
    padding: 0px 0px 0px 0px;
  }

  .tc-contact-st2 .form {
    margin-top: 40px !important;
  }

  .tc-contact-st2 .bg {
    height: 100% !important;
  }

  .support_contact {
    margin-top: 0px;
    padding: 20px;
    margin-right: 0px !important;
  }

  .tc-contact-st7 .contact-wrapper {
    margin-top: 1160px !important;
  }

  .mcd-menu {
    width: 100%;
  }

  .custom_navbar {
    margin-right: 0px;
  }

  .custom_height {
    height: 300px !important;
  }

  .mcd-menu li a.active {
    margin: 15px;
  }

  .mcd-menu li a.active strong {
    font-size: 15px;
  }

  .custom_engineering_img {
    margin-top: 20px;
  }

  .mcd-menu li a:hover strong,
  .mcd-menu li a.active strong {

    font-size: 15px;
  }

  .mobile_view {
    transform: translate(-50%, 300%) !important;

  }

  .banner_title {
    transform: translate(-50%, 125%);
  }


  .tc-header-st1 {
    overflow: auto;
    touch-action: pan-y;
  }

  .tc-header-st1 .bg-img {
    position: relative;
    overflow: visible;
    touch-action: auto;
  }

  .client_container img {
    height: auto;
    width: 200px;

  }

  .client-item {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .tc-navbar-st1 {
    padding: 0px !important
  }

  .applications_main {
    font-family: "Zilla Slab";
    margin-bottom: 25px;
  }

  .instrument_mob_view h2 {
    margin-bottom: -43px;
  }

  .work_with_us_mob h2 {
    margin-top: 30px;
  }


}

@media (max-width: 768px) {
  .links li a {
    display: block;
    margin-bottom: 8px;
  }



  .column-1 {
    order: 2;
  }

  .column-2 {
    order: 1;
  }

  .chemical_fertilizers {
    font-size: 20px !important;
  }

  .life_science {
    font-size: 20px !important;
  }

  .oil_gas {
    font-size: 20px !important;
  }

  .food {
    font-size: 20px !important;
  }

  .water_mgmt {
    font-size: 20px !important;
  }

  .captive_power {
    font-size: 20px !important;
  }

  .application_sub_title h4 {
    font-size: 20px !important;
  }

  .custom_application_card {
    height: 550px;
    width: 355px;
  }

  .manufacturing {
    font-size: 20px !important;
  }

  .engineering {
    font-size: 20px !important;
  }

  .title .about_margin {
    text-align: center !important;

  }

  .section-title-st1.about_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .home-st1 .fsz-50.sol {
    font-size: 30px !important;
    margin: auto;
  }


  .case_stduy_sidebar .case_study_inner {
    padding: 10px 10px 20px 0px;
    width: 360px;
  }

  .custom_case_study li a {
    padding: 20px 20px 50px 30px;
  }

  .custom_case_study li a.active {
    margin: 0px;
  }

  .custom_case_study li a strong {
    position: absolute;
    bottom: 5px;
  }


  .swiper-pagination {
    position: relative;
    margin: 0 0px;
    bottom: -3px !important;
}


.section-padding {
  padding: 60px 0 !important;
  overflow: hidden;
}

.swiper-controls {
  padding: 0 5px;
}


}



/* end responsive css */