@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:wght@200..900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

ul.nav {
  list-style: none;
}
ul.nav li.nav-item {
  padding: 5px;
}
ul.nav li.nav-item a.nav-link {
  padding: 5px;
}

hr {
  margin-block: 40px;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}

.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

header {
  position: sticky;
  top: 0;
  background: #fff;
  width: 100%;
  height: auto;
  padding-block: 1px;
  z-index: 10;
}
header.active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
header nav.container {
  height: 73px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav.container .logo img {
  height: 30px;
}
header nav.container .desktop.nav .nav-item .nav-link {
  font-size: 15px;
  color: #333;
}
@media (max-width: 991.999px) {
  header nav.container .desktop.nav .nav-item .nav-link {
    font-size: 13px;
    padding: 8px 10px;
  }
}
header .call-phone-btn {
  font-weight: 400;
  font-size: 17px;
  color: #000;
  border-radius: 9px;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  gap: 7.5px;
}
header .call-phone-btn svg {
  background: #e2e7fe;
  width: 45px;
  height: 45px;
  color: #7c86ff;
  border-radius: 45px;
  padding: 10px;
  animation: radar-animation 1500ms infinite;
}
@media (max-width: 991.999px) {
  header .call-phone-btn svg {
    width: 40px;
    height: 40px;
  }
}
header .call-phone-btn svg path {
  transform: scale(0.8) translate(3px, 4px);
}
header .call-phone-btn .small {
  font-weight: 300;
  font-size: 13px;
  color: #555;
}
header #hamburger-btn {
  width: 50px;
  height: 50px;
  padding: 0;
}
header #hamburger-btn span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
header #hamburger-btn span svg {
  width: 50%;
  height: 100%;
}
header #hamburger-btn .inactive {
  display: block;
}
header #hamburger-btn .active {
  display: none;
}
header #hamburger-btn.active .inactive {
  display: none;
}
header #hamburger-btn.active .active {
  display: block;
}
header .hamburger-menu {
  background: #eff6ff;
  width: 100%;
  height: 100%;
  max-height: 0px;
  padding: 0 20px;
  margin: 5px auto 25px;
  overflow: hidden;
  transition: all 500ms ease-in-out;
}
@media (max-width: 575.999px) {
  header .hamburger-menu {
    margin-bottom: 0;
  }
}
header .hamburger-menu.active {
  max-height: 500px;
  padding-block: 20px;
}
header .hamburger-menu .menu-head {
  background: #fff;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
}
header .hamburger-menu .mobile.nav {
  display: flex;
  flex-direction: column;
}
header .hamburger-menu .mobile.nav hr.hr {
  background: rgba(0, 0, 10, 0.25);
  height: 1px;
  border: 0;
  margin: 0;
}
header .hamburger-menu .mobile.nav .nav-item .nav-link {
  color: #555;
  display: flex;
  padding-block: 15px;
  gap: 15px;
  border-radius: 10px;
  transition: background 200ms ease-in-out;
}
header .hamburger-menu .mobile.nav .nav-item .nav-link:hover {
  background: #c6d2ff;
}
header .hamburger-menu .menu-btn {
  width: 100%;
  height: 45px;
  font-size: 13px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 0;
  border-radius: 5px;
}
header .hamburger-menu .menu-btn svg {
  width: 30px;
  height: 30px;
}
header .hamburger-menu .menu-btn svg path {
  transform: scale(0.75) translate(25%, 25%);
}
header .hamburger-menu .menu-btn.text-wp {
  background: #25D366;
}
header .hamburger-menu .menu-btn.call-mobile {
  background: #155dfc;
}

@keyframes radar-animation {
  0% {
    box-shadow: 0 0 0 0px #c6d2ff;
  }
  100% {
    box-shadow: 0 0 0 8px transparent;
  }
}
#hero-banner {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
@media (max-width: 767.999px) {
  #hero-banner {
    padding-top: 50px;
  }
}
#hero-banner .go-services {
  position: absolute;
  left: calc(50% - 20px);
  bottom: 25px;
  margin: 0 auto;
}
@media (max-width: 767.999px) {
  #hero-banner .go-services {
    bottom: 0;
  }
}
#hero-banner .go-services svg {
  width: 40px;
  height: 40px;
  color: rgba(22, 36, 86, 0.1254901961);
  animation: go-services 1250ms infinite alternate;
}
#hero-banner .row {
  width: 100%;
  display: flex;
  align-items: center;
}
#hero-banner::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0%;
  background: #a3b3ff;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  filter: blur(200px);
  z-index: -1;
}
#hero-banner::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10%;
  background: #a3b3ff;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  filter: blur(200px);
  z-index: -1;
}
#hero-banner .banner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  #hero-banner .banner-content {
    padding-right: 30px;
  }
}
#hero-banner .top-slogan {
  background: #fff;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  padding: 10px 15px 10px 10px;
  border-radius: 50px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.999px) {
  #hero-banner .top-slogan {
    left: auto;
    top: -30px;
    bottom: auto;
    left: -15px;
  }
}
#hero-banner .top-slogan svg {
  background: #00c950;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 50px;
}
#hero-banner .top-slogan svg path {
  transform: scale(0.65) translate(30%, 25%);
}
#hero-banner h1.head-banner {
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 5rem);
}
#hero-banner h1.head-banner span {
  color: #667eea;
}
#hero-banner .split-line {
  background: #764ba2;
  width: 100px;
  height: 5px;
  border: 0;
  border-radius: 10px;
}
#hero-banner .content-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#hero-banner .content-banner p {
  font-weight: 300;
  font-size: 17px;
  color: #555;
}
@media (max-width: 767.999px) {
  #hero-banner .content-banner p {
    font-size: 15px;
  }
}
#hero-banner .slogan-keys {
  font-weight: 500;
  font-size: 14px;
  display: flex;
  gap: 20px;
}
@media (max-width: 767.999px) {
  #hero-banner .slogan-keys {
    font-size: 11px;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
#hero-banner .slogan-keys .key {
  display: flex;
  gap: 10px;
}
#hero-banner .slogan-keys .key.shield svg {
  color: #22c55e;
}
#hero-banner .slogan-keys .key.award svg {
  color: #eab308;
}
#hero-banner .slogan-keys .key.clock svg {
  color: #3b82f6;
}
@media (max-width: 767.999px) {
  #hero-banner .slogan-keys .key {
    padding-inline: 0;
    gap: 5px;
  }
  #hero-banner .slogan-keys .key svg {
    width: 17px;
    height: 17px;
  }
}
#hero-banner .go-buttons {
  display: flex;
  gap: 15px;
}
#hero-banner .go-buttons a {
  background: red;
  padding: 12.5px 20px;
  font-weight: 300;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  border: 0;
  border-radius: 5px;
  display: flex;
  gap: 7px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.999px) {
  #hero-banner .go-buttons a {
    font-size: 13px;
    padding-inline: 10px;
  }
}
#hero-banner .go-buttons a svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 767.999px) {
  #hero-banner .go-buttons a svg {
    display: none;
  }
}
#hero-banner .go-buttons a svg path {
  transform: scale(0.75) translate(25%, 25%);
}
#hero-banner .go-buttons a.call-us-btn {
  background: #fff;
}
#hero-banner .go-buttons a.visit-us-btn {
  background: #615fff;
  color: #fff;
}
@supports (background-image: url("../img/her-img.webp")) {
  #hero-banner .image-area {
    background-image: url("../img/her-img.webp");
  }
}
#hero-banner .image-area {
  position: relative;
  background: url("../img/hero-img.png");
  background-size: auto 100%;
  width: 90%;
  max-height: calc(80vh - 100px);
  border-radius: 50px 50px 40px 50px;
  transform: translateX(50px);
}
@media (max-width: 767.999px) {
  #hero-banner .image-area {
    transform: translateX(0);
    margin: 50px auto;
  }
}
#hero-banner .image-area img {
  width: 100%;
  height: 100%;
  max-height: calc(80vh - 100px);
  object-fit: contain;
}
#hero-banner .image-area .top-slogan {
  position: absolute;
  inset: -20px auto auto -50px;
  background: #fff;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  padding: 10px 15px 10px 10px;
  border-radius: 50px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.999px) {
  #hero-banner .image-area .top-slogan {
    left: auto;
    top: -30px;
    bottom: auto;
    left: -15px;
  }
}
#hero-banner .image-area .top-slogan svg {
  background: #00c950;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 50px;
}
#hero-banner .image-area .top-slogan svg path {
  transform: scale(0.65) translate(30%, 25%);
}
#hero-banner .image-area .mid-slogan {
  position: absolute;
  inset: 50% auto auto 25px;
  background: #fff;
  background: rgba(238, 242, 255, 0.75);
  backdrop-filter: blur(10px);
  font-size: 15px;
  font-weight: 300;
  color: #1e1a4d;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transform: skew(-7deg, -1deg);
}
@media (max-width: 767.999px) {
  #hero-banner .image-area .mid-slogan {
    left: auto;
    top: auto;
    bottom: -15px;
    right: -15px;
  }
}
#hero-banner .image-area .mid-slogan .rank {
  font-weight: 500;
  font-size: 25px;
}
#hero-banner .image-area .mid-slogan svg {
  width: 30px;
  height: 30px;
  fill: #fdc700;
  color: #fdc700;
  border-radius: 50px;
}
#hero-banner .image-area .mid-slogan svg path {
  transform: scale(0.65) translate(30%, 25%);
}
#hero-banner .image-area .bottom-slogan {
  position: absolute;
  inset: auto auto -50px -50px;
  background: rgba(238, 242, 255, 0.5);
  backdrop-filter: blur(10px);
  font-size: 15px;
  font-weight: 300;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: skew(10deg, 1deg);
}
@media (max-width: 767.999px) {
  #hero-banner .image-area .bottom-slogan {
    left: auto;
    top: -30px;
    bottom: auto;
    left: -15px;
  }
}
#hero-banner .image-area .bottom-slogan p {
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #4f39f6;
  margin: 0;
}
#hero-banner .image-area .bottom-slogan span {
  font-weight: 200;
  text-align: center;
  transform: translateY(-5px);
}
#hero-banner .image-area .bottom-slogan svg {
  background: linear(45deg, rgba(79, 57, 246, 0.5), rgba(97, 95, 255, 0.5));
  backdrop-filter: blur(10px);
  width: 75px;
  height: 75px;
  stroke-width: 1;
  color: #8e51ff;
  border-radius: 15px;
}
#hero-banner .image-area .bottom-slogan svg path {
  transform: scale(0.5) translate(50%, 50%);
}
#hero-banner .image-area .person-card {
  position: absolute;
  bottom: -75px;
  left: 0;
  right: 0;
  background: #fff;
  width: 400px;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.999px) {
  #hero-banner .image-area .person-card {
    width: 90%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
}
#hero-banner .image-area .person-card .info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#hero-banner .image-area .person-card .info p {
  color: #000;
  font-weight: 600;
  margin: 0;
}
#hero-banner .image-area .person-card .info p.light {
  font-weight: 300;
  color: #555;
}
#hero-banner .image-area .person-card .info p.small {
  font-size: 11px;
}
#hero-banner .image-area .person-card .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
#hero-banner .image-area .person-card .contact p {
  margin: 0;
}
#hero-banner .image-area .person-card .contact .tel {
  text-decoration: none;
  font-size: 20px;
  color: #000;
}

@keyframes go-services {
  0% {
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
section#about {
  padding-block: 50px;
}
section#about .top-topic {
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  gap: 10px;
  margin: 0 auto;
}
section#about .top-topic svg {
  color: #00bc7d;
}
section#about .about-head {
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 5rem);
  color: #000;
  text-align: center;
  margin: 0;
}
section#about .about-head span {
  color: #615fff;
}
section#about .about-hr {
  background: #000;
  width: 75px;
  height: 5px;
  border: 0;
  border-radius: 10px;
  opacity: 1;
}
section#about .about-desc {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
}
section#about .about-image {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 767.999px) {
  section#about .about-image {
    border-radius: 20px;
  }
}
section#about .about-image img {
  width: 100%;
  height: 100%;
}
section#about .about-image .image-box {
  position: absolute;
  inset: auto 25px 25px;
  background: #fff;
  text-align: center;
  border-radius: 25px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.999px) {
  section#about .about-image .image-box {
    display: none;
  }
}
section#about .about-image .image-box .big {
  font-size: 30px;
}
section#about .about-image .image-box .small {
  font-weight: 300;
  font-size: 15px;
}
section#about .about-head-small {
  font-weight: 500;
  font-size: 25px;
  color: #000;
}
@media (max-width: 767.999px) {
  section#about .about-head-small {
    font-size: 15px;
  }
}
section#about .about-desc-small {
  font-weight: 200;
  font-size: 17px;
  line-height: 30px;
}
section#about .our-success {
  margin-top: 5px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
}
section#about .our-success li {
  background: #fff;
  font-weight: 300;
  font-size: 15px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
}
section#about .our-success li svg {
  color: #00c950;
}

section#services {
  padding-block: 50px;
}
section#services .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
section#services .top-topic {
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  gap: 10px;
  margin: 0 auto;
}
section#services .top-topic svg {
  color: #7f22fe;
}
section#services .services-head {
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 5rem);
  color: #000;
  text-align: center;
  margin: 0;
}
section#services .services-head span {
  color: #615fff;
}
section#services .services-hr {
  background: #000;
  width: 75px;
  height: 5px;
  border: 0;
  border-radius: 10px;
  opacity: 1;
}
section#services .services-desc {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767.999px) {
  section#services .services-desc {
    font-size: 17px;
  }
}
section#services .top-head {
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}
section#services .top-head svg {
  width: 30px;
  height: 30px;
  color: #ffdf20;
  fill: #ffdf20;
}
section#services .top-desc {
  font-weight: 300;
  font-size: 16px;
  text-align: center;
}
section#services .top-service-box {
  background: #fff;
  width: 100%;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  gap: 25px;
  transition: transform 300ms ease-in-out;
}
section#services .top-service-box:hover {
  transform: scale(1.05);
}
@media (max-width: 767.999px) {
  section#services .top-service-box {
    flex-direction: column;
  }
}
section#services .top-service-box .service-icon {
  position: relative;
  background: linear-gradient(#ec4899, #f43f5e);
  width: 55px;
  height: 55px;
  color: white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#services .top-service-box .service-icon.clean {
  background: linear-gradient(#8b5cf6, #a855f7);
}
section#services .top-service-box .service-icon .premium {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(#facc15, #f97316);
  width: 20px;
  height: 20px;
  border-radius: 20px;
  color: #fff;
  display: grid;
  place-items: center;
}
section#services .top-service-box .service-icon .premium svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}
section#services .top-service-box .box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
section#services .top-service-box .box-content .box-head {
  font-weight: 600;
  font-size: 1.2rem;
}
section#services .top-service-box .box-content .box-desc {
  font-weight: 300;
  font-size: 17px;
}
section#services .top-service-box .box-content .call-box {
  background: #ffedd4;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  padding: 12.5px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
}
section#services .top-service-box .box-content .call-box svg {
  width: 17.5px;
  height: 17.5px;
  transform: translateY(3px);
}
section#services .all-box {
  width: 100%;
}
section#services .all-service-box {
  position: relative;
  background: #fff;
  width: 100%;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: all 300ms ease-in-out;
  overflow: hidden;
}
@media (max-width: 767.999px) {
  section#services .all-service-box {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
section#services .all-service-box::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  background: rgba(0, 0, 0, 0.5);
  width: 100px;
  height: 100px;
  border-radius: 100px;
  filter: blur(100px);
}
section#services .all-service-box::before {
  content: "";
  position: absolute;
  inset: auto 35px 25px;
  background: linear-gradient(#fff, #fff);
  width: calc(100% - 70px);
  height: 5px;
  transition: background 300ms ease-in-out;
}
section#services .all-service-box.one:hover::before {
  background: linear-gradient(#3b82f6, #06b6d4);
}
section#services .all-service-box.two:hover::before {
  background: linear-gradient(#22c55e, #14b8a6);
}
section#services .all-service-box.three:hover::before {
  background: linear-gradient(#a855f7, #6366f1);
}
section#services .all-service-box.four:hover::before {
  background: linear-gradient(#f97316, #ef4444);
}
section#services .all-service-box.five:hover::before {
  background: linear-gradient(#06b6d4, #3b82f6);
}
section#services .all-service-box.six:hover::before {
  background: linear-gradient(#eab308, #f97316);
}
section#services .all-service-box.seven:hover::before {
  background: linear-gradient(#14b8a6, #22c55e);
}
section#services .all-service-box.eight:hover::before {
  background: linear-gradient(#6366f1, #a855f7);
}
section#services .all-service-box.nine:hover::before {
  background: linear-gradient(#64748b, #6b7280);
}
section#services .all-service-box.ten:hover::before {
  background: linear-gradient(#10b981, #14b8a6);
}
section#services .all-service-box:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
section#services .all-service-box .service-icon {
  position: relative;
  background: linear-gradient(#ec4899, #f43f5e);
  width: 55px;
  height: 55px;
  font-size: 23px;
  color: white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#services .all-service-box .service-icon.one {
  background: linear-gradient(#3b82f6, #06b6d4);
}
section#services .all-service-box .service-icon.two {
  background: linear-gradient(#22c55e, #14b8a6);
}
section#services .all-service-box .service-icon.three {
  background: linear-gradient(#a855f7, #6366f1);
}
section#services .all-service-box .service-icon.four {
  background: linear-gradient(#f97316, #ef4444);
}
section#services .all-service-box .service-icon.five {
  background: linear-gradient(#06b6d4, #3b82f6);
}
section#services .all-service-box .service-icon.six {
  background: linear-gradient(#eab308, #f97316);
}
section#services .all-service-box .service-icon.seven {
  background: linear-gradient(#14b8a6, #22c55e);
}
section#services .all-service-box .service-icon.eight {
  background: linear-gradient(#6366f1, #a855f7);
}
section#services .all-service-box .service-icon.nine {
  background: linear-gradient(#64748b, #6b7280);
}
section#services .all-service-box .service-icon.ten {
  background: linear-gradient(#10b981, #14b8a6);
}
section#services .all-service-box .box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 767.999px) {
  section#services .all-service-box .box-content {
    align-items: center;
    text-align: center;
  }
}
section#services .all-service-box .box-content .box-head {
  font-weight: 600;
  font-size: 1rem;
}
section#services .all-service-box .box-content .box-desc {
  font-weight: 300;
  font-size: 15px;
}

section#our-work .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
section#our-work .top-topic {
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  gap: 10px;
  margin: 0 auto;
}
section#our-work .top-topic svg {
  color: #7f22fe;
}
section#our-work .work-head {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  text-align: center;
  margin: 0;
}
section#our-work .work-head span {
  color: #615fff;
}
section#our-work .work-hr {
  background: #000;
  width: 75px;
  height: 5px;
  border: 0;
  border-radius: 10px;
  opacity: 1;
}
section#our-work .work-desc {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767.999px) {
  section#our-work .work-desc {
    font-size: 17px;
  }
}
section#our-work .work-explain {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
section#our-work .work-explain .explain-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
section#our-work .work-explain .explain-item .explain-img {
  position: relative;
  background: #fff;
  width: 100px;
  height: 100px;
  font-size: 30px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#our-work .work-explain .explain-item .explain-img .count {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: 100px;
  color: #dbeafe;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}
section#our-work .work-explain .explain-item .explain-head {
  font-size: 20px;
  margin-top: 15px;
}
section#our-work .work-explain .explain-item .explain-desc {
  font-weight: 300;
  font-size: 15px;
}

section#about {
  padding-block: 50px;
}
section#about .top-topic {
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  gap: 10px;
  margin: 0 auto;
}
section#about .top-topic svg {
  color: #00bc7d;
}
section#about .about-head {
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 5rem);
  color: #000;
  text-align: center;
  margin: 0;
}
section#about .about-head span {
  color: #615fff;
}
section#about .about-hr {
  background: #000;
  width: 75px;
  height: 5px;
  border: 0;
  border-radius: 10px;
  opacity: 1;
}
section#about .about-desc {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
}
section#about .about-image {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 767.999px) {
  section#about .about-image {
    border-radius: 20px;
  }
}
section#about .about-image img {
  width: 100%;
  height: 100%;
}
section#about .about-image .image-box {
  position: absolute;
  inset: auto 25px 25px;
  background: #fff;
  text-align: center;
  border-radius: 25px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.999px) {
  section#about .about-image .image-box {
    display: none;
  }
}
section#about .about-image .image-box .big {
  font-size: 30px;
}
section#about .about-image .image-box .small {
  font-weight: 300;
  font-size: 15px;
}
section#about .about-head-small {
  font-weight: 500;
  font-size: 25px;
  color: #000;
}
@media (max-width: 767.999px) {
  section#about .about-head-small {
    font-size: 15px;
  }
}
section#about .about-desc-small {
  font-weight: 200;
  font-size: 17px;
  line-height: 30px;
}
section#about .our-success {
  margin-top: 5px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
}
section#about .our-success li {
  background: #fff;
  font-weight: 300;
  font-size: 15px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
}
section#about .our-success li svg {
  color: #00c950;
}

section#rate {
  background: linear-gradient(to bottom right, rgba(96, 165, 250, 0.1), rgba(192, 132, 252, 0.1));
  margin-top: 50px;
  padding-block: 50px;
}
section#rate .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
section#rate .top-topic {
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  gap: 10px;
  margin: 0 auto;
}
section#rate .top-topic svg {
  color: #fb2c36;
}
section#rate .rate-head {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  text-align: center;
  margin: 0;
}
section#rate .rate-head span {
  color: #615fff;
}
section#rate .rate-hr {
  background: #000;
  width: 75px;
  height: 5px;
  border: 0;
  border-radius: 10px;
  opacity: 1;
}
section#rate .rate-desc {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767.999px) {
  section#rate .rate-desc {
    font-size: 17px;
  }
}
section#rate .rate-wrap {
  width: 100%;
}
section#rate .global-score {
  width: 100%;
}
section#rate .global-score .score-item {
  background: #fff;
  max-width: 500px;
  width: 100%;
  text-align: center;
  padding: 25px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.999px) {
  section#rate .global-score .score-item {
    flex-direction: column-reverse;
  }
}
section#rate .global-score .score-item span {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
section#rate .global-score .score-item .score-point {
  font-size: 30px;
}
section#rate .global-score .score-item .score-person {
  font-weight: 300;
  font-size: 15px;
}
section#rate .comment-wrap {
  width: 100%;
}
section#rate .comment-wrap .comment-item {
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 0 0 0px #fff;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: box-shadow 300ms ease-in-out;
}
@media (max-width: 767.999px) {
  section#rate .comment-wrap .comment-item {
    gap: 10px;
    border-radius: 15px;
    padding: 25px;
  }
}
section#rate .comment-wrap .comment-item.one:hover {
  box-shadow: 0 0 0 3px #2b7fff;
}
section#rate .comment-wrap .comment-item.one .bi-quote {
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}
section#rate .comment-wrap .comment-item.two:hover {
  box-shadow: 0 0 0 3px #ec4899;
}
section#rate .comment-wrap .comment-item.two .bi-quote {
  background: linear-gradient(to bottom right, #a855f7, #ec4899);
}
section#rate .comment-wrap .comment-item.three:hover {
  box-shadow: 0 0 0 3px #22c55e;
}
section#rate .comment-wrap .comment-item.three .bi-quote {
  background: linear-gradient(to bottom right, #22c55e, #10b981);
}
section#rate .comment-wrap .comment-item.four:hover {
  box-shadow: 0 0 0 3px #eab308;
}
section#rate .comment-wrap .comment-item.four .bi-quote {
  background: linear-gradient(to bottom right, #eab308, #f97316);
}
section#rate .comment-wrap .comment-item.five:hover {
  box-shadow: 0 0 0 3px #14b8a6;
}
section#rate .comment-wrap .comment-item.five .bi-quote {
  background: linear-gradient(to bottom right, #14b8a6, #3b82f6);
}
section#rate .comment-wrap .comment-item.six:hover {
  box-shadow: 0 0 0 3px #8b5cf6;
}
section#rate .comment-wrap .comment-item.six .bi-quote {
  background: linear-gradient(to bottom right, #8b5cf6, #a855f7);
}
section#rate .comment-wrap .comment-item .bi-quote {
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
  width: 55px;
  height: 55px;
  font-size: 30px;
  color: #fff;
  border-radius: 20px;
  display: grid;
  place-items: center;
}
section#rate .comment-wrap .comment-item .stars {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
section#rate .comment-wrap .comment-item .stars svg {
  width: 25px;
  height: 25px;
  color: #fdc700;
  fill: #fdc700;
}
section#rate .comment-wrap .comment-item .quote {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
}
section#rate .comment-wrap .comment-item hr.hr {
  margin-block: 5px;
}
section#rate .comment-wrap .comment-item .profile {
  display: flex;
  align-items: center;
  gap: 15px;
}
section#rate .comment-wrap .comment-item .profile .profile-img {
  background: rgba(0, 0, 0, 0.9);
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 50px;
  display: grid;
  place-items: center;
}
@media (max-width: 767.999px) {
  section#rate .comment-wrap .comment-item .profile .profile-img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
}
section#rate .comment-wrap .comment-item .profile .profile-info .name {
  font-weight: 400;
  font-size: 15px;
}
section#rate .comment-wrap .comment-item .profile .profile-info .who {
  font-weight: 300;
  font-size: 13px;
}

section#galeri {
  margin-top: 50px;
}
section#galeri .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
section#galeri .top-topic {
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  gap: 10px;
  margin: 0 auto;
}
section#galeri .top-topic svg {
  color: #fb2c36;
}
section#galeri .galeri-head {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  text-align: center;
  margin: 0;
}
section#galeri .galeri-head span {
  color: #615fff;
}
section#galeri .galeri-hr {
  background: #000;
  width: 75px;
  height: 5px;
  border: 0;
  border-radius: 10px;
  opacity: 1;
}
section#galeri .galeri-desc {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767.999px) {
  section#galeri .galeri-desc {
    font-size: 17px;
  }
}
section#galeri .galeri-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
section#galeri .galeri-wrap .image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

footer {
  background: #030712;
  color: #ccc;
  padding: 100px 20px;
  margin-top: 80px;
}
footer .footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
}
footer .logo {
  max-width: 90%;
  max-height: 50px;
  object-fit: contain;
  filter: contrast(0) brightness(5);
}
footer .about-desc {
  font-weight: 300;
  font-size: 17px;
}
footer .slogan-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
footer .slogan-item svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 8px;
}
footer .slogan-item svg path {
  width: 10px;
  height: 10px;
}
footer .slogan-item.shield svg {
  background: rgba(34, 197, 94, 0.2);
  color: rgb(74, 222, 128);
}
footer .slogan-item.clock svg {
  background: rgba(239, 68, 68, 0.2);
  color: rgb(248, 113, 113);
}
footer .slogan-item.award svg {
  background: rgba(234, 179, 8, 0.2);
  color: rgb(250, 204, 21);
}
footer .col-name {
  font-size: 25px;
  color: #fff;
  padding-left: 10px;
}
@media (max-width: 767.999px) {
  footer .col-name {
    font-size: 17px;
  }
}
footer ul.nav.liste {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer ul.nav.liste li.nav-item {
  display: flex;
  gap: 10px;
  border-radius: 20px;
  padding: 13px 20px;
  transition: background 200ms ease-in-out;
}
@media (max-width: 767.999px) {
  footer ul.nav.liste li.nav-item {
    padding: 10px 5px;
  }
  footer ul.nav.liste li.nav-item span {
    display: none;
  }
}
footer ul.nav.liste li.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
footer ul.nav.liste li.nav-item a.nav-link {
  color: #ccc;
  padding: 0;
  display: flex;
  gap: 15px;
}
footer .contact {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 20px;
  color: #aaa;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
footer .contact .icon {
  background: linear-gradient(#4ade80, #3b82f6);
  padding: 15px;
  border-radius: 15px;
}
footer .contact svg {
  color: #fff;
  fill: #fff;
}
footer .contact .call-tel {
  color: #fff;
  font-size: 17px;
}
footer .info-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
footer .info-item svg {
  width: 40px;
  height: 40px;
  padding: 7px;
  border-radius: 8px;
}
footer .info-item svg path {
  width: 10px;
  height: 10px;
}
footer .info-item.shield svg {
  background: rgba(34, 197, 94, 0.2);
  color: rgb(74, 222, 128);
}
footer .info-item.clock svg {
  background: rgba(239, 68, 68, 0.2);
  color: rgb(248, 113, 113);
}
footer .info-item .text-name {
  color: #fff;
  margin-bottom: 5px;
}
footer .info-item .text-desc {
  font-size: 13px;
  color: #999;
}

.fix-wp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #00c950;
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 50px;
  display: grid;
  place-items: center;
}

.fix-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #000;
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 50px;
  display: grid;
  place-items: center;
  transform: scale(0);
}
.fix-top.active {
  transform: scale(1);
}

/*# sourceMappingURL=style.css.map */
