@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&display=swap');

:root {
  --e-global-color-primary: #00443B;
  --e-global-color-shadow: #185349;
  --e-global-color-secondary: #FF4800;
  --e-global-color-accent: #9BE042;
  --e-global-color-white: #FFFFFF;
  --e-global-color-41fa304: #FAFAFA;
  --e-global-color-f875600: #F0EACB;
  --e-global-color-1bb7294: #008000;
  --e-global-color-e0fc440: #0E101A;
  --e-global-color-d8fafc1: #F7F3E6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* ============================================================== */
.price-headline {
  font-size: 40px;
  text-align: center;
  margin: 2rem 0;
  line-height: 45px;
  color: #00443B;
  letter-spacing: 1px;
  font-weight: 700;
}

.price-title-headline {
  color: #00443B;
  font-size: 29px;
  text-align: center;
  letter-spacing: 1px;
  margin: 2rem 0;
  font-weight: 600;
}

.pricing-content p {
  color: #00443B;
  font-size: 19px;
  line-height: 30px;
}

/* =======================end of price content=========================== */
.price-menu {
  position: relative;
  max-width: 1200px;
  background: #FFFFFF;
  margin: 1rem auto;
  /* padding: 1rem; */
}


.plan {
  border-radius: 16px;
  box-shadow: 0 30px 30px -25px rgba(0, 38, 255, 0.205);
  padding: 10px;
  background-color: #fff;
  color: #697e91;
  max-width: 100%;
}

.plan strong {
  font-weight: 600;
  color: #185349;
  font-size: 25px;
}

.plan .inner {
  align-items: center;
  padding: 20px;
  padding-top: 40px;
  background-color: #ecf0ff;
  border-radius: 12px;
  position: relative;
}

.plan .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #bed6fb;
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.625em 0.75em;
  font-size: 1.25rem;
  font-weight: 600;
  color: #425475;
}

.plan .pricing small {
  color: #707a91;
  font-size: 0.75em;
  margin-left: 0.25em;
}

.cleaning-title {
  font-weight: 600;
  text-transform: capitalize;
  color: #0E101A;
  font-size: 18px;
}

.cleaning-title small {
  font-weight: 400;
  color: #697e91;
}

.cleaning-price {
  color: #FF4800;
  font-weight: 600;
}

.plan .features {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}

.plan .features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* .plan .features li span {
  color: #00443B;
} */

.plan .action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.plan .button {
  background-color: #6558d3;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  border: 0;
  outline: 0;
  width: 100%;
  padding: 0.625em 0.75em;
  text-decoration: none;
}

.plan .button:hover,
.plan .button:focus {
  background-color: #4133B7;
}

@media screen and (max-width:768px) {
  .price-headline {
    font-size: 26px;
    line-height: 40px
  }

  .price-title-headline {
    font-size: 20px;
    line-height: 30px;
  }

  .plan strong {
    font-size: 19px;
    line-height: 30px;
  }

  .cleaning-title {
    font-size: 16px;
    font-weight: 500;
  }
}