/* [project]/src/components/serviceslider/serviceslider.css [client] (css) */
.service-slider-container {
  background: #030617;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-card {
  position: relative;
}

.service-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s;
}

.service-card-hover-panel {
  color: #fff;
  scrollbar-width: none;
  background: #111827;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  transition: all .35s;
  display: flex;
  position: absolute;
  bottom: -83%;
  left: 0;
  right: 0;
  overflow: auto;
}

.service-card-hover-panel ul {
  opacity: 0;
  flex-direction: column;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.service-card-hover-panel h1 {
  margin: 0;
  padding: 40px 0;
  font-size: 40px;
}

.service-card-hover-panel li {
  justify-content: space-between;
  align-items: left;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  margin-top: 7%;
  padding: 0 30px;
  font-size: 22px;
  transition: all .3s ease-out;
  display: flex;
}

.service-card-hover-panel p {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 22px;
  overflow: hidden;
}

.service-card-hover-panel p:hover {
  border-bottom: 1px solid #fff;
}

.service-card-hover-panel li:hover {
  cursor: pointer;
}

.service-card:hover .service-card-hover-panel {
  opacity: 1;
  animation: .6s ease-out forwards bounceUp;
  bottom: 0;
}

.service-card:hover .service-card-hover-panel h1 {
  border-bottom: 2px solid #fff;
}

.service-card:hover .service-card-hover-panel ul {
  opacity: 1;
}

.service-card {
  text-align: center;
  color: #fff;
  background: #0b1025 0 0 / cover no-repeat;
  width: 500px;
  height: 500px;
  transition: all .3s;
  display: flex;
}

.service-card:hover {
  border-color: #8b5cf6;
}

.service-card img {
  object-fit: cover;
  height: 100%;
}

.service-card h3 {
  font-size: 30px;
}

.service-card-heading {
  color: #fff;
  background-color: #0b1025;
  width: 100%;
  height: fit-content;
  margin-top: auto;
}

.service-div {
  width: 75%;
  margin-bottom: 30px;
}

.service-div h2 {
  color: #fff;
  margin-top: 82px;
  margin-bottom: 0;
  font-size: 40px;
}

.service-div p {
  color: #fff;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 2;
}

.service-nav-btn {
  background-color: #0000;
  border: none;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  font-size: 19px;
  font-weight: 600;
}

.service-nav-btn img {
  width: 30px;
  height: 30px;
}

.left-right-btn {
  gap: 20px;
  margin-left: 100px;
}

.left-right-btn button:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.left-right-btn button:hover:not(:disabled) {
  opacity: .5;
}

.service-nav-btn.left {
  left: 40px;
}

.service-nav-btn.right {
  right: 40px;
}

.service-slider-div {
  width: 75%;
  height: 800px;
  margin: 60px auto;
  position: relative;
  overflow: hidden;
}

.service-slider-track {
  height: 100%;
  transition: transform .6s ease-in-out;
  display: flex;
}

.service-slide {
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
}

.service-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px #00000026;
}

.buttons {
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  display: flex;
}

.buttons button {
  color: #fff;
  cursor: pointer;
  background: #222;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  transition: all .3s;
}

.buttons button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.buttons button:hover:not(:disabled) {
  background: #444;
}

@media (min-width: 250px) {
  .service-div h2 {
    font-size: 25px;
  }

  .service-div p {
    font-size: 12px;
    line-height: 1.3;
  }

  .left-right-btn {
    margin-left: 30px;
  }

  .service-slider-div {
    height: 400px;
    margin: 13px auto;
  }

  .service-card-hover-panel h1 {
    padding: 16px 0;
    font-size: 24px;
  }

  .service-card-hover-panel li {
    margin-top: 3%;
  }

  .service-card-hover-panel p {
    font-size: 12px;
  }
}

@media (min-width: 350px) {
  .service-div h2 {
    font-size: 25px;
  }

  .service-div p {
    font-size: 14px;
    line-height: 1.3;
  }

  .left-right-btn {
    margin-left: 30px;
  }

  .service-slider-div {
    height: 400px;
    margin: 13px auto;
  }

  .service-card-hover-panel h1 {
    padding: 16px 0;
    font-size: 24px;
  }

  .service-card-hover-panel li {
    margin-top: 3%;
  }

  .service-card-hover-panel p {
    font-size: 14px;
  }
}

@media (min-width: 900px) {
  .service-slider-div {
    height: 600px;
  }

  .service-card-hover-panel {
    bottom: -88%;
  }

  .service-card-hover-panel li {
    margin-top: 9%;
  }

  .service-div h2 {
    font-size: 30px;
  }

  .service-div p {
    font-size: 18px;
    line-height: 1.3;
  }

  .service-card-hover-panel p {
    font-size: 18px;
  }

  .service-card-hover-panel h1 {
    padding: 22px 0;
  }
}

@media (min-width: 1200px) {
  .service-div h2 {
    font-size: 27px;
  }

  .service-card-hover-panel p {
    font-size: 16px;
  }

  .service-div p {
    font-size: 18px;
    line-height: 1.3;
  }

  .service-slider-div {
    height: 600px;
  }
}

@media (min-width: 1500px) {
  .service-slider-div {
    height: 650px;
  }
}

@media (min-width: 1800px) {
  .service-card-hover-panel li {
    margin-top: 10%;
  }

  .service-slider-div {
    height: 800px;
  }

  .service-card-hover-panel {
    bottom: -85%;
  }

  .service-div h2 {
    font-size: 40px;
  }

  .service-card-hover-panel p {
    font-size: 22px;
  }

  .service-div p {
    font-size: 20px;
    line-height: 1.3;
  }

  .service-card-hover-panel h1 {
    padding: 40px 0;
  }
}

/* [project]/src/pages/services/services.css [client] (css) */
.services-section {
  background-color: #030617;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

/*# sourceMappingURL=src_81c71704._.css.map*/