@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #000;
  overflow: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #000;
  line-height: normal;
  text-transform: capitalize;
}
h1 {
  font-size: 30px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 24px;
  text-transform: capitalize;
}
a {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  display: inline-block;
}
a:hover {
  color: #6b6b6b;
}
ul,
li,
ol,
li {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #000;
  list-style-type: none;
  text-transform: capitalize;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
  margin: 0 0 20px 0;
  padding: 12px 24px 15px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: normal;
  width: 100%;
  outline: none;
  border: 0;
  background: #f5f5f5;
  border-radius: 10px;
}
input[type="submit"] {
  margin: 10px 0;
  padding: 15px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  line-height: normal;
  width: 100%;
  border: none;
  outline: none;
  background: #6b6b6b;
  border-radius: 10px;
  transition: 0.5s;
}
input[type="submit"]:hover {
  background: #6b6b6b;
  color: #fff;
}

textarea {
  height: 100px;
}

/*heading*/
.heading,
.headingleft {
  text-align: center;
  color: #000;
  font-size: 35px;
  line-height: 50px;
  font-weight: 800;
  position: relative;
  margin-bottom: 20px;
}
.headingleft {
  text-align: left;
}
.heading small,
.headingleft small {
  display: block;
  font-size: 18px;
  color: #6b6b6b;
  letter-spacing: 1px;
  line-height: normal;
  font-weight: 600;
}

/*btn-primary*/
.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: 0.6s;
  border-radius: 5px;
  z-index: -1;
  visibility: hidden;
}
.btn-primary:hover:before {
  visibility: visible;
  top: 0;
  bottom: auto;
  transform: scaleX(0);
}
.btn-primary i {
  font-size: 13px;
  margin-left: 10px;
}

/*Back-to-top-button*/
#button {
  display: inline-block;
  background-color: #6b6b6b;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #6b6b6b;
  color: #fff;
}
#button:active {
  background-color: #6b6b6b;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
.flex-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*whatsapp-icon*/
a.whatsapp-icon {
  position: fixed !important;
  bottom: 75px;
  right: 27px;
  z-index: 33;
  background: #19a500;
  border-radius: 50px;
  font-size: 22px;
  color: #fff;
  transition: 0.6s;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.whatsapp-icon:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #29e507;
  box-shadow: 0 0 10px #29e507;
  animation: whatsappbtn 5s linear infinite forwards;
  z-index: -3;
}
@keyframes whatsappbtn {
  from {
    transform: scale(1);
    opacity: 1;
    transition: 0.6s;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
    transition: 0.6s;
  }
}
.booking-form,
.about,
.actionbar,
.destinations,
.testimonials,
.choose-taxi {
  overflow: hidden;
}

/*header*/
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 2px 2px 5px #dddddd4f;
  background: #fff;
}
header .logo a {
  width: 100px;
}

header .logo img {
  width: 100%;
}
.menubar ul li {
  position: relative;
}
.menubar ul li a {
  font-size: 18px;
  font-weight: 500;
  margin: 45px 40px 45px 0;
  position: relative;
}

.menubar ul li:last-child a {
  margin: 20px 0 20px 0;
}
.menubar ul li a.active {
  color: #6b6b6b;
}
.menubar ul li .dropdown a.active {
  color: #6b6b6b;
}
.menubar ul li a i {
  font-size: 12px;
  margin-left: 6px;
}
.menubar ul li a .fa-minus {
  display: none;
}
.menubar ul li a:hover .fa-minus,
.menubar ul li a:active .fa-minus {
  display: inline-block;
}
.menubar ul li a:hover .fa-plus,
.menubar ul li a:active .fa-plus {
  display: none;
}
.menubar ul li .dropdown {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  transform: rotateX(-90deg);
  transform-origin: top;
  transition: all 300ms ease;
  width: 350px;
  background: #4c4c4c;
  z-index: 2;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 0 0 12px 12px;
  border-top: none;
}
.menubar ul li:hover .dropdown {
  visibility: visible;
  transform: rotateX(0deg);
}
.menubar ul li .dropdown li a {
  margin: 0;
  padding: 4px 0;
  color: #fff;
}
.menubar ul li .dropdown li a:hover {
  color: #6b6b6b;
}
.menubar ul li:hover .dropdown li a:before {
  width: 0;
}
.head-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4c4c4c;
  padding: 7px 10px;
  border-radius: 50px 0;
  transition: all 0.6s ease;
}
.head-btn:hover {
  border-radius: 0 50px;
}
.head-btn figure {
  padding: 10px 11px;
  background: #fff;
  margin-right: 10px !important;
  border-radius: 50%;
}
.head-btn figure img {
  width: 20px;
}
.head-btn p {
  color: #eee;
}
.head-btn p a {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.header-nav {
  display: none;
}

/*slider*/
.slider {
  margin-bottom: 60px;
}
.slider .slider-carousel {
  position: relative;
  margin: 0 10px;
  width: 900px;
}
.slider .slider-carousel figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.4);
}
.slider .slider-carousel .slider-items {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  padding: 30px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.slider .slider-carousel .slider-items h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  color: #fff;
}
.slider .slider-carousel .slider-items p {
  font-size: 16px;
  color: #eee;
  line-height: 27px;
}
.slider .btn-primary {
  margin-top: 20px;
}
.slider .fa-chevron-left,
.slider .fa-chevron-right {
  position: absolute;
  left: 50px;
  top: 50%;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transform: translateY(-50%);
}
.slider .fa-chevron-right {
  right: 5%;
  left: auto;
}

/* about-us */
.about-us {
  margin-bottom: 60px;
}
.about-us .about-us-img {
  background: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
}
.about-us figure {
  width: 49%;
  margin: 0;
  overflow: hidden;
}
.about-us figure img {
  width: 100%;
  height: 420px;
  transition: all 0.4s linear;
  transform: scale(1.1);
}
.about-us figure:hover img {
  transform: scale(1);
}
.about-us figure.about-us-image img {
  height: 400px;
  object-fit: cover;
}
.about-us .about-us-content {
  margin-left: 20px;
}
.about-us .about-us-content h2 span {
  color: #6b6b6b;
}
.about-us .about-us-content .btn-primary {
  margin-top: 20px;
}
/*service new*/
.service {
  margin-bottom: 80px;
}
.service .services-content {
  padding: 40px 30px;
  border-radius: 0px;
  height: 100%;
  transition: 0.5s;
  border: 1px solid #f2f2f2;
}
.service .services-heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.service .services-heading p {
  margin: 0 20px 0 0;
}
.service .services-content:hover {
  transform: translate(-10px, -10px);
  background: #f2f2f234;
}
.service figure {
  width: 100px;
  height: 100px;
  margin: 0 0 30px 0;
  outline: 1px dashed #6b6b6b;
  outline-offset: 10px;
  border-radius: 50px;
  transition: 0.5s;
}
.service .services-content:hover figure {
  transform: rotate(360deg);
}
.service figure img {
  width: 100%;
  border-radius: 50px;
  border: 1px solid #6b6b6b;
}
.service h3 {
  font-weight: 700;
}
.service p {
  margin-bottom: 30px;
}

/* testimonial new */
.testimonial {
  margin-bottom: 60px;
}
.testimonial .testimonial-items {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  height: 300px;
  margin: 10px;
}
.testimonial .testimonial-items ul li figure {
  width: 50px;
  height: 50px;
  margin: 0 20px 0 0;
}
.testimonial .testimonial-items ul li figure.google-icon {
  width: 24px;
  height: 24px;
  margin: 0;
}
.testimonial .testimonial-items ul li figure.google-icon img {
  border: 0;
}
.testimonial .testimonial-items ul li figure img {
  width: 100%;
  border-radius: 50px;
  border: 1px solid #6b6b6b;
}
.testimonial .testimonial-items ul li i {
  color: #ec4134;
  font-size: 25px;
}
.testimonial .testimonial-items p {
  margin-bottom: 25px;
}
.testimonial .testimonial-items h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 25px;
}
.testimonial .testimonial-items h3 small {
  display: block;
  font-size: 12px;
  color: #555;
}
.testimonial .testimonial-items span {
  margin-bottom: 15px;
}
.testimonial .testimonial-items span i {
  font-size: 15px;
  color: #4c4c4c;
  margin: 0 6px 0 0;
}
.testimonial .fa-arrow-left,
.testimonial .fa-arrow-right {
  position: absolute;
  left: -30px;
  top: 50%;
  cursor: pointer;
  font-size: 15px;
  color: #000;
  border: 1px solid #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transform: translateY(-50%);
}
.testimonial .fa-arrow-right {
  right: -30px;
  left: auto;
}
/* partner*/
.partner {
  /* border: 1px solid #dbdada;
  border-radius: 12px 10% 10% 12px / 12px 100% 100% 12px;
  padding: 30px; */
  margin-bottom: 60px;
}
/* .partner .heading {
  border-right: 5px solid #d1242a;
  padding: 6px 20px 6px 0;
} */

.partner ul li {
  margin: 10px;
}
.partner figure {
  margin: 0 30px 0 0;
  box-shadow: 1px 2px 5px #ddd;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.partner figure img {
  width: 100%;
}

/*footer*/
footer {
  background: #f2f2f2;
  padding: 50px 0 0 0;
}
footer .footer-logo img {
  width: 100px;
}
footer .footer-logo p {
  margin: 20px 0;
}
footer .smoicons ul li a {
  font-size: 20px;
  color: #000;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
}
footer .smoicons ul li a:hover {
  color: #6b6b6b;
}
footer ul.footer-info li i {
  font-size: 20px;
  margin: 0 10px 0 0;
}
footer ul.footer-info li:first-child i {
  margin: 6px 18px 0 0;
}

footer h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  border-bottom: 1px dashed #6b6b6b;
  width: fit-content;
  padding-bottom: 8px;
  margin-bottom: 30px;
}
footer ul.footer-menu li a {
  color: #333;
  margin-bottom: 10px;
}
footer ul.footer-menu li a:hover {
  color: #6b6b6b;
}
footer ul.service-hours li {
  margin-bottom: 10px;
}
footer ul.service-hours li:last-child {
  font-size: 20px;
  font-weight: 600;
  color: #6b6b6b;
}
footer iframe {
  width: 100%;
}
.copyright {
  padding: 25px 0;
  background: #e9e9e9;
  margin-top: 50px;
}
.copyright p {
  color: #555;
  text-align: center;
  margin: 0;
}

/*inner-page-header*/
.inner-page-header {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url(../images/slider-1.jpg) no-repeat left center / cover;
  margin-bottom: 80px;
  padding: 60px 0;
}
.gst-registration .inner-page-header {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url(../images/slider-2.jpg) no-repeat center center/cover;
}
.trademark-registration .inner-page-header {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url(../images/slider-3.jpg) no-repeat center center/cover;
}
.digital-signature .inner-page-header {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url(../images/slider-4.jpg) no-repeat center center/cover;
}
.llp-registration .inner-page-header {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url(../images/slider-5.jpg) no-repeat center center/cover;
}
.inner-page-header .mot-breadcrumb {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.inner-page-header h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.inner-page-header ul li {
  font-size: 16px;
  color: #fff;
  margin: 0 10px;
  font-weight: 600;
}
.inner-page-header ul li a {
  color: #fff;
}

/*mot-service*/
.mot-service {
  margin-bottom: 80px;
}
.mot-service .heading span {
  font-weight: 400;
}
.mot-service .heading-content {
  width: 50%;
  margin: 0 auto 70px;
  text-align: center;
}
.mot-service .mot-service-items {
  padding: 20px 20px 10px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 100%;
}
.mot-service .mot-service-items:hover {
  box-shadow: 0 20px 30px rgba(35, 38, 41, 0.08);
}
.mot-service .mot-service-items:hover figure {
  background: #6b6b6b;
}
.mot-service .mot-service-items figure {
  width: 70px;
  height: 70px;
  box-shadow: 1px 1px 6px 1px #eee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transform: rotate(45deg);
  margin: -56px 0 30px 10px;
  transition: all 0.3s ease;
}
.mot-service .mot-service-items figure img {
  width: 50px;
  transform: rotate(-45deg);
}
.mot-service .mot-service-items h3 {
  font-size: 18px;
}
.mot-service .mot-service-items p {
  font-size: 14px;
  line-height: 23px;
}

/* contact-us page */
.contact-us .contact-wraper {
  margin-bottom: 60px;
}
.contact-us .contact-form {
  background: #fff;
  padding: 30px;
  margin-right: 10px;
  box-shadow: 1px 2px 5px 5px #eee;
}
.contact-us .contact-form h3 {
  font-size: 25px;
  margin-bottom: 16px;
}
.contact-us .contact-form input[type="text"],
.contact-us .contact-form input[type="email"],
.contact-us .contact-form input[type="number"],
.contact-us .contact-form select,
.contact-us .contact-form textarea {
  border: 0;
  background: #f7f9fc;
  border-radius: 0;
  padding: 12px 16px;
  margin-bottom: 20px;
  height: 50px;
}
.contact-us .contact-form input[type="submit"] {
  position: relative;
}
.contact-us .contact-form input[type="submit"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  font-size: 15px;
  color: #000;
}
.contact-us .contact-form label {
  font-size: 14px;
  font-weight: 400;
  color: #181514;
  margin: 0 0 10px 0;
}
.contact-us .contact-details {
  background: #6666660d;
  border: 1px solid #0000001a;
  padding: 40px 40px 30px 40px;
  margin-right: 30px;
}
.contact-us .contact-details h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}
.contact-us .contact-details ul li {
  margin: 15px 0;
}
.contact-us .contact-details ul li figure {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #d1242a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px 0 0;
}
.contact-us .contact-details ul li figure img {
  width: 20px;
}
.contact-us .contact-details ul li p {
  font-size: 16px;
  color: #464443;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}
.contact-us .contact-details ul li p a {
  color: #464443;
  display: block;
}
.contact-us .contact-details ul li:last-child p {
  width: 70%;
}
.contact-us iframe {
  width: 100%;
  height: 300px;
}

@media only screen and (max-width: 1199px) {
  .heading,
  .headingleft {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .inner-page-header h1 {
    font-size: 30px;
  }
  .inner-page-header {
    margin-bottom: 40px;
  }
  /*header*/
  .menubar ul li a {
    font-size: 14px;
    margin: 0 14px 0 0;
  }
  .menubar ul li a i {
    margin-left: 0px;
  }
  .head-btn figure {
    padding: 7px 7px;
    margin-right: 9px !important;
  }
  .head-btn figure img {
    width: 22px;
  }
  .head-btn p {
    font-size: 13px;
    line-height: 20px;
  }
  .head-btn p a {
    font-size: 12px;
  }

  /*slider*/
  .slider .main-carousel-content h1 {
    font-size: 26px;
    line-height: 36px;
  }

  /*contact*/
  .contact .form-field {
    padding: 20px;
  }

  .offer .offer-content .headingleft small,
  .offer .offer-content p {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .inner-mots .row:nth-child(1) .col-lg-6 figure {
    height: 550px;
  }

  footer ul.service-hours li {
    font-size: 12px;
  }

  /* mot-service */
  .mot-service .mot-service-items {
    padding: 15px 15px 5px 15px;
    text-align: center;
  }
  .mot-test .mot-test-item h3 {
    margin: 6px 0 10px 0;
    font-size: 16px;
  }
  .mot-service .mot-service-items figure {
    margin: -56px auto 30px auto;
  }
  .mot-service .mot-service-items p {
    text-align: center;
  }
  /* new-and-part-wornp */
  .new-and-part-wornp .mot-test .mot-test-item {
    height: 550px;
  }

  .wheel-alignment .mot-test-item {
    height: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .offset-1,
  .offset-2 {
    margin-left: 0;
  }
  p {
    font-size: 14px;
  }
  .row {
    row-gap: 10px;
  }

  /*btn-primary*/
  .btn-primary {
    padding: 8px 22px;
  }
  .btn-primary:before,
  .btn-primary:after {
    width: 10px;
    height: 10px;
  }

  /*back-to-top*/
  #button {
    bottom: 55px;
    right: 9px;
  }

  /*whatsapp-icon*/
  a.whatsapp-icon {
    bottom: 96px;
    right: 6px;
    font-size: 16px;
  }

  .header-nav {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  .header-nav a i {
    font-size: 25px;
    color: #000;
  }
  input[type="text"],
  input[type="email"],
  input[type="number"],
  select,
  textarea {
    margin: 0 0 10px 0;
    padding: 10px 20px;
  }

  /*heading*/
  .heading,
  .headingleft {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 14px 0px;
    text-align: center;
  }
  .headingleft {
    text-align: left;
  }

  .offcanvas-body ul li a {
    border-bottom: 1px solid #ddd;
    display: block;
    margin-bottom: 6px;
    padding-bottom: 6px;
  }
  .offcanvas-body ul li:nth-child(3) a {
    border-bottom: 0;
    padding-bottom: 0px;
  }
  .offcanvas-body ul .dropdown {
    padding: 0 0 0 16px;
  }
  .offcanvas-body ul .dropdown li a {
    border-bottom: 0;
    padding-bottom: 0px;
  }
  .offcanvas h5 img {
    width: 50px;
  }

  /*header*/
  header {
    padding: 10px 0;
  }
  .page-header {
    padding: 10px 0;
    position: relative;
  }
  header .logo img {
    width: 50px;
  }
  header .row {
    row-gap: 0px;
  }
  header .menubar {
    display: none;
  }
  header .head-btn {
    display: none;
  }

  /*slider*/
  .slider {
    margin-bottom: 25px;
  }
  /* .slider .slider-carousel figure img {
    height: 200px;
    object-fit: cover;
  } */
  .slider .slider-carousel {
    margin: 0;
    width: fit-content;
  }
  .slider .slider-carousel .slider-items {
    width: 35%;
    padding: 15px;
  }
  .slider .slider-carousel .slider-items h1 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 35px;
  }
  .slider .btn-primary {
    margin-top: 8px;
  }
  .slider .fa-chevron-left,
  .slider .fa-chevron-right {
    left: 40%;
    top: 90%;
    width: 30px;
    height: 30px;
  }
  .slider .fa-chevron-right {
    right: 40%;
    left: auto;
  }
  /*about-us*/
  .about-us .about-us-img {
    margin-right: 0;
  }
  .about-us figure {
    width: 100%;
  }
  .about-us figure img {
    height: fit-content;
  }
  .about-us figure.about-us-image {
    display: none;
  }
  .about-us .about-us-content {
    margin-left: 0;
    text-align: center;
  }
  .about-us .about-us-content .headingleft {
    text-align: center;
  }

  /*services*/
  .service {
    margin-bottom: 30px;
  }
  .service .headingleft {
    text-align: center;
  }
  .service .services-heading p {
    margin: 0 0 10px 0;
    text-align: center;
  }
  .service .services-content {
    padding: 20px 15px;
    text-align: center;
  }
  .service figure {
    margin: 15px auto 30px;
  }
  .service h3 {
    margin-bottom: 10px;
  }
  .service p {
    margin-bottom: 20px;
    text-align: center;
  }

  /* testimonial */
  .testimonial {
    margin-bottom: 30px;
  }
  .testimonial .testimonial-items {
    padding: 20px 20px 10px 20px;
    text-align: center;
  }
  .testimonial .testimonial-items ul {
    justify-content: center !important;
  }
  .testimonial .testimonial-items ul li {
    margin: 0 10px;
  }
  .testimonial .testimonial-items span {
    margin: 15px 0;
    justify-content: center;
  }
  .testimonial .fa-arrow-left {
    left: -10px;
  }
  .testimonial .fa-arrow-right {
    right: -10px;
  }
  /* partner */
  .partner {
    flex-direction: column;
    margin-bottom: 16px;
    border: 0;
    padding: 0;
  }
  .partner .headingleft {
    width: 96%;
    border-right: 0;
    padding-right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .partner ul {
    width: 100%;
  }
  .partner figure {
    margin: 0;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /*footer*/
  footer {
    padding: 35px 0 0 0;
  }
  footer .footer-logo p {
    margin: 20px 0 10px 0;
  }
  footer .smoicons ul {
    margin: 14px 0 20px 0;
  }
  footer form.mt-4 {
    margin-top: 10px !important;
  }
  footer h3 {
    margin-bottom: 15px;
  }
  footer ul.footer-info li {
    margin-bottom: 7px !important;
    align-items: start !important;
  }
  footer ul.footer-info li:first-child i {
    margin-top: 6px !important;
  }
  footer ul.footer-menu li a {
    margin-bottom: 5px;
  }

  /*copyright*/
  .copyright {
    padding: 14px 0;
    margin: 12px 0 0 0;
  }

  /*inner-page-header*/
  .inner-page-header {
    margin-bottom: 30px;
    padding: 30px 0;
  }
  .inner-page-header h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .inner-page-header .mot-breadcrumb {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .inner-page-header ul li {
    font-size: 16px;
    margin: 0 6px;
    font-weight: 700;
  }

  /*mot-service*/
  .mot-service {
    margin-bottom: 30px;
  }
  .mot-service .row {
    row-gap: 70px;
  }
  .mot-service .heading {
    margin: 0 0 8px 0px;
  }
  .mot-service .heading-content {
    width: 100%;
  }
  /* mot-test */
  .mot-test {
    margin-bottom: 10px;
  }
  .mot-test .row {
    margin-bottom: 20px;
  }
  .mot-test .mot-test-item {
    padding: 15px;
  }

  .mot-test .row:nth-child(3) .mot-test-item,
  .mot-test .row:nth-child(4) .mot-test-item {
    padding: 20px 10px;
  }
  .mot-test .row:nth-child(3) .mot-test-item .headingleft,
  .mot-test .row:nth-child(4) .mot-test-item .headingleft {
    margin-bottom: 10px;
  }
  .mot-test figure img {
    height: auto;
  }
  /* contact-us */
  .contact-us .contact-wraper {
    margin-bottom: 20px;
  }
  .contact-us .contact-details {
    padding: 20px 20px 10px 20px;
    margin-bottom: 0px;
  }
}
