@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.banner.service-banner {
  height: 100vh;
  background-position: 0 35%;
  position: relative;
}
.banner.service-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner.service-banner {
  display: flex;
  align-items: center;
}
.banner.service-banner::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 62.02%, rgba(0, 0, 0, 0.95) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 36.96%, rgba(0, 0, 0, 0.6555) 74.21%), linear-gradient(360deg, rgba(0, 0, 0, 0.85) 8.17%, rgba(0, 0, 0, 0) 42.79%);
}
@media only screen and (max-width: 1366px) {
  .banner.service-banner {
    height: 100vh;
  }
}
@media only screen and (max-width: 991px) {
  .banner.service-banner {
    height: 65vh;
  }
}
@media only screen and (max-width: 540px) {
  .banner.service-banner {
    height: auto;
    padding: 7rem 0 15rem;
    background-size: 74%;
  }
}
@media only screen and (max-width: 675px) {
  .banner.service-banner {
    background-position: 0;
    padding: 9rem 0 3rem;
    align-items: flex-end;
    flex-direction: column-reverse;
    background-size: 175% auto;
    height: auto;
  }
}
.banner.service-banner::before {
  z-index: 2;
}
.banner.service-banner .bg {
  height: 100%;
  width: 100%;
}
.banner.service-banner .bg .banner-wrapper {
  bottom: 10%;
}
.banner.service-banner .bg .banner-wrapper .container-fluid h1, .banner.service-banner .bg .banner-wrapper .container-fluid p {
  text-align: center;
  color: var(--white);
}
.banner.service-banner .bg .banner-wrapper .container-fluid h1 {
  font-family: "Optima";
  font-size: 48px;
}
.banner.service-banner .bg .banner-wrapper .container-fluid p {
  font-weight: 500;
}

.banner.service-detail-banner {
  height: 100vh;
  background-position: 0 35%;
  position: relative;
}
.banner.service-detail-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner.service-detail-banner {
  display: flex;
  align-items: center;
}
.banner.service-detail-banner::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 62.02%, rgba(0, 0, 0, 0.95) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 36.96%, rgba(0, 0, 0, 0.6555) 74.21%), linear-gradient(360deg, rgba(0, 0, 0, 0.85) 8.17%, rgba(0, 0, 0, 0) 42.79%);
}
@media only screen and (max-width: 1366px) {
  .banner.service-detail-banner {
    height: 100vh;
  }
}
@media only screen and (max-width: 991px) {
  .banner.service-detail-banner {
    height: 65vh;
  }
}
@media only screen and (max-width: 540px) {
  .banner.service-detail-banner {
    height: auto;
    padding: 7rem 0 15rem;
    background-size: 74%;
  }
}
@media only screen and (max-width: 675px) {
  .banner.service-detail-banner {
    background-position: 0;
    padding: 9rem 0 3rem;
    align-items: flex-end;
    flex-direction: column-reverse;
    background-size: 175% auto;
    height: auto;
  }
}
.banner.service-detail-banner::before {
  z-index: 2;
}
.banner.service-detail-banner .bg {
  height: 100%;
  width: 100%;
}
.banner.service-detail-banner .bg .banner-wrapper {
  top: 50%;
  transform: translateY(-50%);
  bottom: unset;
}
.banner.service-detail-banner .bg .banner-wrapper .container-fluid h1, .banner.service-detail-banner .bg .banner-wrapper .container-fluid p {
  color: var(--white);
}
.banner.service-detail-banner .bg .banner-wrapper .container-fluid h1 {
  font-family: "Optima";
  font-size: 48px;
}
.banner.service-detail-banner .bg .banner-wrapper .container-fluid p {
  font-weight: 500;
  max-width: 398px;
}

.service-secA {
  padding: 70px var(--containerfluid);
}
.service-secA .container .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-secA .container .grid .grid-item {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  position: relative;
}
.service-secA .container .grid .grid-item::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.service-secA .container .grid .grid-item:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.service-secA .container .grid .grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 82.69%);
}
.service-secA .container .grid .grid-item:hover img {
  transform: scale(1.2);
}
.service-secA .container .grid .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.5s ease;
}
.service-secA .container .grid .grid-item figcaption {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}
.service-secA .container .grid .grid-item figcaption h3, .service-secA .container .grid .grid-item figcaption p {
  color: var(--white);
}
.service-secA .container .grid .grid-item figcaption h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 14px;
  position: relative;
}
.service-secA .container .grid .grid-item figcaption h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--secondary);
}
.service-secA .container .grid .grid-item figcaption p {
  font-weight: 400;
  line-height: 1.2;
}

.service-card figure {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  position: relative;
}
.service-card figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.service-card figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.service-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 82.69%);
}
.service-card figure:hover img {
  transform: scale(1.2);
}
.service-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.5s ease;
}
.service-card figure figcaption {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}
.service-card figure figcaption h3, .service-card figure figcaption p {
  color: var(--white);
}
.service-card figure figcaption h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 14px;
  position: relative;
}
.service-card figure figcaption h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--tertiary);
}
.service-card figure figcaption p {
  font-weight: 400;
  line-height: 1.2;
}

.service-detail-secA {
  padding: 60px var(--containerfluid);
}
.service-detail-secA .container .grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}
.service-detail-secA .container .right .connect {
  position: sticky;
  top: calc(var(--headerheight) + 40px);
  border-radius: 10px;
  overflow: hidden;
  background: var(--primary);
  padding: 30px 28px;
}
.service-detail-secA .container .right .connect .heading h3 {
  text-align: center;
  color: var(--white);
  font-size: 24px;
  font-family: "Optima";
  max-width: 244px;
  margin: 0 auto 28px;
}
.service-detail-secA .container .right .connect .form-grid {
  --gaptb: 22px;
}
.service-detail-secA .container .right .connect .form-grid .form-group input, .service-detail-secA .container .right .connect .form-grid .form-group textarea {
  color: white;
}
.service-detail-secA .container .right .connect .form-grid .btn-div {
  margin-top: 12px;
}
.service-detail-secA .container .right .connect .form-grid .btn-div .btn {
  width: 100%;
}
.service-detail-secA .container .right .connect .form {
  --labelbefore: var(--white);
  --labelafter: var(--white);
  --borderbefore: var(--white);
  --borderafter: var(--white);
}

.service-detail-secB {
  padding: 0px var(--containerfluid) 60px;
}
.service-detail-secB .container .heading {
  position: relative;
}
.service-detail-secB .container .heading h2 {
  text-align: center;
}
.service-detail-secB .container .heading .swiper-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.service-detail-secB .container .more-swiper {
  margin-top: 60px;
}/*# sourceMappingURL=service.css.map */