* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
body {
  background: var(--body-color, #cbf7ff);
  padding-top: 15px;
  /* padding-bottom: 15px; */
  scroll-behavior: smooth;
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  box-shadow: #000 0px 3px 10px;
  overflow-x: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.section-heading {
  text-align: center;
  font-size: 24px;
  color: #cd1bda;
  margin: 10px 0 20px 0;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.section-heading::before,
.section-heading::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 3px;
  background: #cd1bda;
  margin: 0 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  vertical-align: middle;
}
/* header start here */
header {
  width: 100%;
  background: #fff;
  padding: 2px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: sticky;
  top: -142px;
  left: 0;
  z-index: 9999;
}
.header-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}
header .header-top .header-customer {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.header-top .header-customer span:first-child {
  color: #01abed;
  font-weight: 600;
  font-size: 16px;
}
.header-top .header-customer .header-call {
  color: #1f945a;
  font-weight: 500;
  font-size: 14px;
}
.header-top .header-customer .header-call:last-child {
  color: #7c1c79;
  font-weight: 500;
  font-size: 14px;
}
header img {
  width: 10%;
}
.logo {
  width: 100px;
  height: 100px;
}
header .logo-name {
  width: 70%;
  font-size: 50px;
  color: #01abed;
  text-align: center;
}
header .header-customer {
  width: 15%;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
header .header-customer::before {
  width: 2px;
  height: 100%;
  content: "";
  background: #01abed;
  position: absolute;
  top: 0;
  left: 0;
}

header nav {
  width: 100%;
  background: #3b3994;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul li a {
  font-family: "Salsa", sans-serif;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
nav ul li a:hover {
  background: #35aacd;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
/* header end here */

section {
  margin-top: 30px;
}

/* footer start here */
footer {
  background: #2a257f;
  padding: 30px 0 0 0;
  margin-top: 30px;
  .container {
    width: 100%;
    color: #fff;
    box-shadow: none;
  }
  .footer-wrapper {
    width: 100%;
    background-image: url(/assets/img/map.png);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
  }
  .footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    gap: 20px;
    text-align: center;
    .address {
      h4,
      h5 {
        margin-bottom: 5px;
      }
    }
    .links {
      margin: 5px 0;
      li {
        margin: 5px 0;
      }
      a {
        color: #fff;
        transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
      }
      a:hover {
        color: #35aacd;
      }
    }
    .pay-with {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      background: #fff;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
      margin-top: 10px;
      img {
        height: 40px;
        margin: 5px;
      }
    }
  }
  .footer-bottom {
    background: #28a28e;
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
    .copyright {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .owner {
      color: #3b3994;
      font-weight: 600;
    }
    .dev {
      color: #cacaca;
      transition: all 0.2s ease-in;
      -webkit-transition: all 0.2s ease-in;
      -moz-transition: all 0.2s ease-in;
      -ms-transition: all 0.2s ease-in;
      -o-transition: all 0.2s ease-in;
    }
    .dev:hover {
      color: #fff;
    }
  }
  a {
    color: #53bde3;
  }
}

/* footer end here */

/* go-to-top start here */
.scroll-button {
  transition: opacity 0.3s ease-in-out;
  pointer-events: none; /* Initially disabled pointer events when hidden */
}
.scroll-button.show {
  opacity: 1;
  pointer-events: auto; /* Enable pointer events when visible */
}
.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: #fff;
  background: #3b3994;
  padding: 15px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  animation-duration: 0.3s;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.go-top:hover {
  background: #4745ab;
  box-shadow: #3e3d72 0px 3px 8px;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
/* go-to-top end here */

.service-wrapper,
.business-wrapper,
.about-wrapper,
.contact-wrapper,
.partner-wrapper {
  width: 100%;
  padding: 10px;
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.service-wrapper .service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  gap: 20px;
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}
.service-wrapper .psa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  gap: 20px;
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}
.service-wrapper .service .service-img,
.service-wrapper .psa .psa-img {
  padding: 8px;
  border-radius: 10px;
  background: #013755;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.service .service-img:hover,
.psa .psa-img:hover {
  cursor: pointer;
  box-shadow: #000 0px 3px 8px;
  transform: translateY(-5px);
}

.service-img > img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.psa-img > img {
  width: 100%;
  height: 200px;
  object-fit: fit;
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.service-img,
.psa-img > h4 {
  text-align: center;
  font-size: 16px;
  color: #f562b8;
  margin-bottom: 10px;
}
.service-wrapper .service-more {
  margin: 10px 0 0 0;
  display: block;
  justify-self: center;
  width: 15%;
  padding: 10px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background: #3b3994;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.service-wrapper .service-more:hover {
  box-shadow: #073047 0px 3px 8px;
}
#home-about .about-wrapper .section-heading::before,
#home-about .about-wrapper .section-heading::after {
  display: none;
}
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto 1fr;
  text-align: justify;
  column-gap: 20px;
  padding: 20px 70px;
  position: relative;
}
.about-wrapper > h2 {
  align-items: center;
  padding: 20px 0;
  border: #3b3994 5px dashed;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 0;
  border-left: transparent;
}

.about-wrapper > p {
  font-size: 14px;
  font-weight: 500;
  background: #c0eff1;
  padding: 10px 20px;
  line-height: 1.5;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.about-wrapper > p:hover {
  background: #d3f7f8;
  box-shadow: #82babc 0px 3px 8px;
}
.about-img {
  position: absolute;
  top: 50%;
  left: -110px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  /* z-index: -1; */
}
.business {
  padding: 10px 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.business > a > img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: fill;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.business > a > img:hover {
  cursor: pointer;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}
#contact-partner .container > hr {
  border-color: #89cedf;
}
.contact-wrapper {
  display: flex;
  column-gap: 10px;
  text-align: center;
  justify-content: space-evenly;
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
}
.contact-wrapper .contact {
  max-width: 350px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.contact-wrapper .contact:nth-child(odd) {
  padding: 10px;
  background: #c0eff1;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.contact-wrapper .contact:hover:nth-child(odd) {
  background: #c2f5f8;
  box-shadow: #5db3b6 0px 3px 8px;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}
.contact-wrapper .contact:nth-child(even) {
  padding: 10px;
  background: #d5c0f1;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.contact-wrapper .contact:hover:nth-child(even) {
  background: #e8d6ff;
  box-shadow: #c9a3f1 0px 3px 8px;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

.contact-wrapper .contact > hr {
  width: 65%;
  margin: 10px auto;
  border: 1px dashed #01abed;
}

.contact-wrapper .contact > h4 {
  font-size: 18px;
  font-weight: 600;
}
.contact-wrapper .contact .contact-address {
  font-size: 14px;
  line-height: 1.5;
}
.contact-wrapper .contact .contact-num > span {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #cd1bda;
}
.partner-wrapper {
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}
/* .partner-wrapper .partner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
  column-gap: 5px;

}
 .partner-wrapper .partner > img{
  max-height: 52px;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
    -webkit-transform: translateX(calc(-250px * 7));
    -moz-transform: translateX(calc(-250px * 7));
    -ms-transform: translateX(calc(-250px * 7));
    -o-transform: translateX(calc(-250px * 7));
  }
}

.slider {
  background: white;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slider .slide {
  height: 52px;
  width: 200px;
}
.slider .slide > img {
  height: 52px;
  object-fit: fill;
}
/* about content start here */
#about-page {
  margin-top: 20px;
}
#about-page .about-wrapper {
  padding: 20px;
  background: #fff;
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 0 30px;
}
#about-page .about-content {
  background: #dbfbf2;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
#about-page .about-content > p {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 10px;
}
#about-page .about-content > p > a {
  color: #01abed;
  font-weight: 600;
}
#about-page .about-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#about-page .about-service .about-service-img {
  padding: 5px;
  background: #292b31;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
#about-page .about-service .about-service-img:hover {
  box-shadow: #233131 0px 3px 8px;
}
#about-page .about-service .about-service-img > h4 {
  font-size: 18px;
  font-weight: 600;
  color: #db39e6;
  margin: 5px;
}
#about-page .about-service .about-service-img > img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
/* about content end here */

/* contact content start here */
#contact-page {
  margin-top: 20px;
}
#contact-page .contact-wrapper {
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#contact-page .contact-wrapper .contact-head {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#contact-page .contact-wrapper .contact-head > img {
  max-width: 500px;
  max-height: 130px;
  object-fit: fill;
}
#contact-page .contact-content {
  background: #c2f9df;
  display: flex;
  gap: 20px;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
#contact-page .contact-content > img {
  width: 170px;
  height: 110px;
  padding: 10px;
  background: #fff;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
#contact-page .contact-content .contact-info {
  width: 100%;
  text-align: start;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
/* contact content end here  */

/* all service start here */
#all-service {
  margin-top: 20px;
}
#all-services .service-wrapper {
  width: 100%;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#all-services .service-wrapper .service-content-wrapper {
  background: #c0eff1;
  width: 100%;
  padding: 10px;
  text-align: justify;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
#all-services .service-content-wrapper .service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#all-services .service-list .service-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #292929;
  gap: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
#all-services .service-list .service-content:hover {
  box-shadow: #233131 0px 3px 8px;
}
#all-services .service-list .service-content > img {
  width: 30px;
  height: 25px;
  object-fit: cover;
  border-radius: 25%;
  -webkit-border-radius: 25%;
  -moz-border-radius: 25%;
  -ms-border-radius: 25%;
  -o-border-radius: 25%;
}
#all-services .service-list .service-content > h4 {
  flex-grow: 1;
}
#all-services .service-list .service-content > span {
  color: #ffffff;
  background: #8c2fdd;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

#all-services .service-wrapper .side-content {
  width: 300px;
  text-align: center;
}
#all-services .side-content .side-contact-wrapper {
  margin-bottom: 10px;
  background: #e4f9fe;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
#all-services .side-content .side-contact-wrapper:hover {
  box-shadow: #000000 0px 3px 8px;
}
#all-services .side-contact-wrapper .side-contact {
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
#all-services .side-contact-wrapper .side-contact > a {
  color: #199c33;
  font-size: 16px;
  font-weight: 600;
}
#all-services .side-contact-wrapper .side-contact > a:first-child {
  color: #e46a06;
}
#all-services .side-contact-wrapper .side-contact > a:last-child {
  color: #ee7718;
}

#all-services .side-content .other-service-wrapper {
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
#all-services .side-content .other-service-wrapper > h3 {
  color: #f21d99;
}
#all-services .other-service-wrapper .other-service {
  padding: 5px;
  background: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#all-services .other-service-wrapper .other-service:hover {
  box-shadow: #000 0px 3px 10px;
}
#all-services .other-service-wrapper .other-service > h4 {
  color: #1da0f2;
  margin-bottom: 10px;
}
#all-services .other-service-wrapper .other-service > img {
  max-width: 300px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
#all-services .service-detail {
  width: 100%;
}
#all-services .service-detail > table {
  border-collapse: separate;
  border-spacing: 0;

  border: 2px solid #5a5a5a;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
#all-services .service-detail > table tr td {
  padding: 5px;
  border-left: 1px solid #5a5a5a;
  border-top: 1px solid #5a5a5a;
}
#all-services .service-detail > table tr td:first-child {
  border-left: none;
}
#all-services .service-content-wrapper .section-heading {
  margin: 10px 0;
}
#all-services .service-content-wrapper .package-code {
  color: #fff;
  padding: 5px;
  text-align: center;
  margin-bottom: 10px;
}

/* all service end here */
