* {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ul {
  padding: 0;
}

.service-modal.active {
  opacity: 1;
  pointer-events: all;
}
.service-modal.active .service-modal-content {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: all;
}
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 52, 60, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
.service-modal .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: 0 0;
  outline: 0;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.service-modal .service-modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  pointer-events: none;
  margin: 20px;
}
.service-modal .service-modal-content .text-content-wrapper {
  background: #fff;
  border-radius: 20px;
  max-height: 750px;
  max-width: 1050px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.service-modal .service-modal-content .text-content-wrapper .text-content {
  padding: 50px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #18c4be rgba(24, 196, 190, 0);
  height: 100%;
}
.service-modal
  .service-modal-content
  .text-content-wrapper
  .text-content::-webkit-scrollbar {
  height: 0;
}
.service-modal .service-modal-content .text-content-wrapper .text-content h4 {
  color: #2d343c;
  font-family: Onest, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 35px;
  text-transform: uppercase;
}
.service-modal .service-modal-content .text-content-wrapper .text-content p {
  color: #00c4be;
  font-family: Onest, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 20px;
}
.service-modal .service-modal-content .text-content-wrapper .text-content ul {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.service-modal
  .service-modal-content
  .text-content-wrapper
  .text-content
  ul
  li {
  list-style: none;
  color: #2d343c;
  font-family: Onest, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  position: relative;
  padding-left: 22px;
}
.service-modal
  .service-modal-content
  .text-content-wrapper
  .text-content
  ul
  li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #00c4be;
  border-radius: 999px;
}
.service-modal .service-modal-content .image-content {
  border-radius: 20px;
  overflow: hidden;
  max-height: 500px;
  min-width: 350px;
}
.service-modal .service-modal-content .image-content .image-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-height: 800px) {
  .service-modal .service-modal-content .text-content-wrapper {
    max-height: 500px;
    max-width: 800px;
  }
}
@media (max-width: 1024px) {
  .service-modal .close-btn svg path {
    stroke: #676e7e;
  }
  .sw-app {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
  h3 {
    font-size: 30px;
    line-height: 105%;
  }
  .service-modal .service-modal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    overflow: auto;
    gap: 0;
    margin: 0;
    height: 100%;
  }
  .service-modal .service-modal-content .text-content-wrapper {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    border-radius: 0;
  }
  .service-modal .service-modal-content .text-content-wrapper .text-content {
    overflow: visible;
  }
  .service-modal .service-modal-content .text-content-wrapper .text-content h4 {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .service-modal .service-modal-content .text-content-wrapper .text-content p {
    font-size: 20px;
    line-height: 25px;
  }
  .service-modal .service-modal-content .text-content-wrapper .text-content ul {
    gap: 5px;
    margin-bottom: 25px;
  }
  .service-modal .service-modal-content .image-content {
    border-radius: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    overflow: visible;
    padding: 20px;
    background: #fff;
    min-width: 100%;
  }
  .service-modal .service-modal-content .image-content .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    height: 500px;
  }
  .service-modal .service-modal-content .image-content .image-wrapper img {
    -o-object-position: 0 -25px;
    object-position: 0 -25px;
  }
}
@media (max-width: 767px) {
  .service-modal .close-btn {
    top: 15px;
    right: 15px;
  }
  .service-modal .service-modal-content .text-content-wrapper .text-content {
    padding: 20px;
  }
  .service-modal .service-modal-content .image-content .image-wrapper {
    min-height: 250px;
    height: 250px;
  }
}
