@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.serivce-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .serivce-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .serivce-banner {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .serivce-banner {
    height: 60vh;
  }
}
.serivce-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}
@media only screen and (max-width: 540px) {
  .serivce-banner::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  }
}
.serivce-banner .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  margin-top: var(--headerheight);
}
@media only screen and (max-width: 540px) {
  .serivce-banner .bg .container {
    padding: 0;
  }
}
.serivce-banner .bg .container .bg-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 15%;
  text-align: center;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .serivce-banner .bg .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .serivce-banner .bg .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
.serivce-banner .bg .container .bg-wrapper .btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  margin: auto;
}
.serivce-banner .bg .container .bg-wrapper .btn a {
  font-weight: 700;
}
@media only screen and (max-width: 540px) {
  .serivce-banner .bg .container .bg-wrapper .btn {
    display: flex;
    justify-content: center;
    margin: auto;
  }
}
.serivce-banner .bg .container .bg-wrapper h1 {
  font-weight: 700;
  line-height: 0.99;
  margin-bottom: 18px;
  max-width: 650px;
  margin: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .serivce-banner .bg .container .bg-wrapper h1 {
    max-width: 540px;
  }
}
@media only screen and (max-width: 540px) {
  .serivce-banner .bg .container .bg-wrapper h1 {
    max-width: 90%;
    text-align: center;
    margin: auto;
    font-size: 25px;
    line-height: 1.2;
  }
}
.serivce-banner .bg .container .bg-wrapper p {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  max-width: 595px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  .serivce-banner .bg .container .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 540px) {
  .serivce-banner .bg .container .bg-wrapper p {
    max-width: 80%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
    margin: auto;
    padding-top: 10px;
  }
}

.service-secA {
  padding: 110px 0;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  .service-secA {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 540px) {
  .service-secA {
    padding: 40px 0;
  }
}
.service-secA .grid-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .service-secA .grid-item {
    gap: 150px;
  }
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item {
    gap: 120px;
    gap: 80px;
  }
}
.service-secA .grid-item .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  position: relative;
  gap: 130px;
}
@media only screen and (max-width: 1024px) {
  .service-secA .grid-item .item {
    gap: 55px;
  }
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item .item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.service-secA .grid-item .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.service-secA .grid-item .item .item-img {
  position: relative;
}
.service-secA .grid-item .item .item-img img {
  width: 100%;
}
.service-secA .grid-item .item .item-img .top-left {
  position: absolute;
  top: -7%;
  left: -7%;
  border-left: 7px solid var(--primary);
  border-top: 7px solid var(--primary);
  width: 129px;
  height: 68px;
  display: inline-block;
  transform: translate(-15px, -15px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item .item .item-img .top-left {
    top: 1%;
    left: 1%;
  }
}
.service-secA .grid-item .item .bottom-right {
  position: absolute;
  bottom: -7%;
  right: -7%;
  border-bottom: 7px solid var(--primary);
  border-right: 7px solid var(--primary);
  width: 129px;
  height: 68px;
  display: inline-block;
  transform: translate(15px, 15px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item .item .bottom-right {
    bottom: 3%;
    right: 1%;
  }
}
.service-secA .grid-item .item .item-content ul {
  margin-bottom: 35px;
  padding-left: 0;
}
@media only screen and (max-width: 675px) {
  .service-secA .grid-item .item .item-content ul {
    margin-left: 0;
  }
}
.service-secA .grid-item .item .item-content ul h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
}
.service-secA .grid-item .item .item-content ul li {
  position: relative;
  list-style: none;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #555;
}
.service-secA .grid-item .item .item-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.service-secA .grid-item .item .item-content .btn {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--secondary);
  padding: 10px 20px;
  border-radius: 25px;
  margin-right: auto;
  color: var(--white);
}
.service-secA .grid-item .item .item-content .btn span {
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.service-secA .grid-item .item .item-content .btn svg {
  width: 15px;
  height: 12px;
}
.service-secA .grid-item .item .item-content .btn svg path {
  fill: white;
}
.service-secA .grid-item .item .item-content h2 {
  color: var(--secondary);
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  margin: 15px 0 10px 0;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item .item .item-content h2 {
    font-size: 26px;
  }
}
.service-secA .grid-item .item .item-content p {
  margin: 15px 0 26px;
  font-weight: 500;
  font-size: 16px;
  color: black;
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item .item .item-content p {
    margin: 11px 0 26px;
  }
}
.service-secA .grid-item .item:nth-child(even) .item-img {
  order: 2;
}
.service-secA .grid-item .item:nth-child(even) .item-content {
  order: 1;
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item .item:nth-child(even) .item-content {
    order: 2;
  }
}
.service-secA .grid-item .item:nth-child(even)::before {
  background-position: top left;
  background-image: url(../../images/vector/letter-gray-right.svg);
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item .item:nth-child(even)::before {
    background-image: none;
  }
}
.service-secA .grid-item .item:nth-child(odd) .item-img {
  order: 1;
}
.service-secA .grid-item .item:nth-child(odd) .item-content {
  order: 2;
}
.service-secA .grid-item .item:nth-child(odd)::before {
  background-position: top right;
  background-image: url(../../images/vector/letter-gray.svg);
}
@media only screen and (max-width: 768px) {
  .service-secA .grid-item .item:nth-child(odd)::before {
    background-image: none;
  }
}/*# sourceMappingURL=service.css.map */