*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: inherit;
  transition: all 0.3s;
}

html {
  font-size: 62.5%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 62.5em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 54%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 51%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "Product Sans";
  src: url("../../../textfonts/ProductSans-Bold.woff2") format("woff2"), url("../../../textfonts/ProductSans-Bold.woff") format("woff"), url("../../../textfonts/ProductSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Product Sans";
  src: url("../../../textfonts/ProductSans-Regular.woff2") format("woff2"), url("../../../textfonts/ProductSans-Regular.woff") format("woff"), url("../../../textfonts/ProductSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Product Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #000000;
  line-height: 2.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h1 {
  font-size: 5rem;
  line-height: 5.8rem;
}
@media only screen and (max-width: 800px) {
  h1 {
    font-size: 3.8rem;
    line-height: 4.5rem;
  }
}

h2 {
  font-size: 4rem;
  line-height: 4.8rem;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 800px) {
  h2 {
    line-height: 4.3rem;
    font-size: 3.2rem;
  }
}

.btn {
  height: 5.5rem;
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-family: inherit;
  letter-spacing: 0.4px;
  background: transparent;
  cursor: pointer;
}

.btn--orange {
  background: linear-gradient(90deg, #F46F0D 0%, #F5C320 103%);
  color: #FFFFFF;
}
.btn--orange svg {
  margin-left: 2rem;
}

.btn--transparent {
  color: #B40053;
}
.btn--transparent svg {
  margin-left: 2rem;
  transition: transform 0.3s ease-in-out;
}

.btn--orange:hover svg,
.btn--transparent:hover svg {
  transform: translateX(-0.5rem);
}

.modal-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.modal-wrapper.open {
  opacity: 1;
  z-index: 999;
}

.modal {
  background-color: #FFFFFF;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 4vh 4rem;
  width: 50rem;
  max-width: 95%;
  border-radius: 1rem;
}
@media only screen and (max-width: 400px) {
  .modal {
    padding: 4rem 2rem;
  }
}
.modal h3 {
  color: #B40053;
  text-align: center;
  letter-spacing: 0.3px;
  margin-bottom: 3rem;
}
.modal p {
  text-align: center;
}
.modal__body .input__groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3vh 4rem;
  margin-bottom: 3rem;
  width: 100%;
}
@media only screen and (max-width: 400px) {
  .modal__body .input__groups {
    gap: 3rem;
  }
}
.modal__body .input__group label {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.2rem;
}
.modal__body .input__group input,
.modal__body .input__group textarea {
  outline: none;
  border: 0.5px solid #B40053;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .modal__body .input__group input,
.modal__body .input__group textarea {
    border-color: #FDB0A0;
  }
}
.modal__body .input__group input {
  height: 4.5rem;
  font-size: 1.4rem;
}
.modal__body .input__group textarea {
  resize: none;
  height: 15rem;
}
.modal__body .input__group input[type=number] {
  -moz-appearance: textfield;
}
.modal__body .input__group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.modal__body .submit-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
  position: relative;
}
.modal__body .submit-box .btn {
  width: 30%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.modal__body .submit-box::before {
  content: "";
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991298/harmonycare/light-green-circle_vigzld.svg");
  background-size: cover;
}

.closeModalWrapper {
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-size: 1.7rem;
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  top: -3rem;
}

.pace {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 2;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: none;
  height: 1px;
  overflow: hidden;
  background: transparent;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  .pace {
    width: 200px;
  }
}

.pace .pace-progress {
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  max-width: 400px;
  position: absolute;
  z-index: 2;
  display: block;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #B40053;
}

.pace.pace-inactive {
  display: none;
}

#preloader {
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow: hidden;
  position: fixed;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 999;
}
#preloader div {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #B40053;
  font-size: 2.5rem;
  font-family: inherit;
}

.container,
.container-md {
  max-width: 125rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.container-md {
  max-width: 90rem;
}

.nav {
  padding: 0 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.5rem;
  transition: all 0.6s ease;
  background: transparent;
  z-index: 5;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav .menu-btn {
  display: none;
  border: none;
  outline: none;
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(180, 0, 83, 0.2);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  color: #B40053;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: fixed;
  bottom: 1.3rem;
  right: 2rem;
  z-index: 10;
}
.nav .menu-btn svg {
  margin-right: 1rem;
}
@media only screen and (max-width: 900px) {
  .nav .menu-btn {
    display: block;
  }
}
.nav.sticky {
  background: #FFFFFF;
}
.nav__inner {
  max-width: 125rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 8.5rem;
  font-size: 1.5rem;
}
.nav__links {
  margin-right: auto;
  margin-left: 5rem;
  display: flex;
}
@media only screen and (max-width: 900px) {
  .nav__links {
    display: none;
  }
}
.nav__item {
  margin-left: 4rem;
}
.nav__link {
  color: #000000;
  font-weight: 400;
  font-size: 1.6rem;
}
.nav__link:hover {
  opacity: 0.5;
}
.nav__link--active {
  color: #B40053;
}
.nav__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.35rem;
}
@media only screen and (max-width: 900px) {
  .nav__contact {
    display: none;
  }
}
.nav__contact li:first-child {
  margin-right: 2.5rem;
}
.nav__contact li:last-child {
  color: #685E68;
}
.nav__contact a {
  color: #B40053;
  margin-left: 0.7rem;
  font-weight: 500;
}
.nav__mobile {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  transform: translateX(-100%);
  display: none;
}
@media only screen and (max-width: 900px) {
  .nav__mobile {
    display: block;
  }
}
.nav__mobile.active {
  transform: translateX(0);
}
.nav__mobile--link {
  font-size: 3rem;
  font-weight: 500;
  color: #F46F0D;
}
.nav__mobile--contact {
  margin-top: 5vh;
}
@media only screen and (max-height: 620px) {
  .nav__mobile--contact {
    margin-top: 3vh;
  }
}
.nav__mobile--contact div {
  margin-top: 4vh;
}
@media only screen and (max-height: 620px) {
  .nav__mobile--contact div {
    margin-top: 2vh;
  }
}
.nav__mobile--contact h5 {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7D7D7D;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.nav__mobile--contact p {
  display: flex;
  align-items: center;
  font-size: 1.55rem;
}
.nav__mobile--contact p svg {
  margin-right: 1.7rem;
}
.nav__mobile--contact p a {
  color: inherit;
}
.nav__mobile--btn-box {
  position: relative;
}
.nav__mobile--btn-box::before {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: 0;
  width: 4rem;
  height: 4rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991314/harmonycare/small-blue-circle_ogg4vk.svg");
  background-size: cover;
}
.nav__mobile--top {
  background: #FFFFFF;
  height: 90vh;
  padding: 10vh 10vw 0;
  position: relative;
  overflow-y: scroll;
}
@media only screen and (max-height: 620px) {
  .nav__mobile--top {
    padding-top: 8vh;
  }
}
.nav__mobile--top::before {
  content: "";
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 4rem;
  height: 4rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991314/harmonycare/small-green-circle_vv7otz.svg");
  background-size: cover;
}
.nav__mobile--top::after {
  content: "";
  position: absolute;
  top: 3rem;
  left: -0.5rem;
  width: 4rem;
  height: 7rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991314/harmonycare/small-light-blue-curve_ui6cwz.svg");
  background-size: cover;
}
.nav__mobile--top li {
  margin-bottom: 4vh;
}
@media only screen and (max-height: 620px) {
  .nav__mobile--top li {
    margin-bottom: 3vh;
  }
}
.nav__mobile--top .-active {
  color: #B40053;
}
.nav__mobile--top ul + p {
  margin: 4vh 0;
}
.nav__mobile--top button {
  width: 20rem;
  height: 6rem;
  justify-content: space-between;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
}
.nav__mobile--bottom {
  background: #FFFFFF;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav__mobile--bottom::before {
  content: "";
  position: absolute;
  top: -9rem;
  right: 2rem;
  width: 8rem;
  height: 6rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991316/harmonycare/yellow-curve-rotated_pioi9h.svg");
  background-size: cover;
}
.nav__mobile--bottom .closeModalWrapper {
  position: static;
  top: 0;
  right: 0;
  color: #000000;
  font-weight: 700;
}

.footer {
  padding: 5rem 0 2rem;
}
.footer__top {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 3rem;
}
.footer p {
  color: #6F6E6E;
  margin-bottom: 4rem;
  font-size: 1.45rem;
  line-height: 2.2rem;
  letter-spacing: 0.5px;
}
.footer__nav {
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.footer__nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
.footer__nav a {
  color: #B40053;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6rem 0;
}
@media only screen and (max-width: 1200px) {
  .footer__bottom {
    flex-direction: column;
  }
}
@media only screen and (max-width: 800px) {
  .footer__bottom {
    align-items: flex-start;
    margin: 8rem 0;
    padding: 4rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 203, 227, 0.6);
    border-bottom: 1px solid rgba(255, 203, 227, 0.6);
  }
}
.footer__bottom--contact {
  display: flex;
}
@media only screen and (max-width: 800px) {
  .footer__bottom--contact {
    flex-direction: column;
  }
}
.footer__bottom--contact li {
  display: flex;
  align-items: center;
}
.footer__bottom--contact li svg {
  margin-right: 1.7rem;
}
@media only screen and (max-width: 800px) {
  .footer__bottom--contact li svg {
    margin-right: 3rem;
  }
}
.footer__bottom--contact li:not(:last-child) {
  margin-right: 10rem;
}
@media only screen and (max-width: 900px) {
  .footer__bottom--contact li:not(:last-child) {
    margin-right: 5rem;
  }
}
@media only screen and (max-width: 800px) {
  .footer__bottom--contact li:not(:last-child) {
    margin-bottom: 3.5rem;
  }
}
.footer__bottom--contact a {
  color: inherit;
}
.footer__bottom--social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .footer__bottom--social {
    margin-top: 5rem;
    gap: 4rem;
  }
}
.footer__bottom--social a {
  display: inline-block;
  transition: 0.3s ease;
}
.footer__bottom--social a:hover {
  transform: translateY(0.4rem);
}
.footer__attr {
  text-align: center;
}

.headerHome {
  background: linear-gradient(to bottom, rgba(240, 206, 221, 0.6), rgba(216, 199, 207, 0));
}
.headerHome .hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 15rem;
}
@media only screen and (max-width: 1200px) {
  .headerHome .hero {
    align-items: center;
  }
}
@media only screen and (max-width: 800px) {
  .headerHome .hero {
    flex-direction: column;
    padding-top: 12rem;
  }
}
.headerHome .hero__text, .headerHome .hero__image {
  flex: 1;
}
.headerHome .hero__text {
  padding-right: 6rem;
}
@media only screen and (max-width: 800px) {
  .headerHome .hero__text {
    padding-right: 0;
    padding-bottom: 6rem;
  }
}
.headerHome .hero__text--inner {
  max-width: 40rem;
}
@media only screen and (max-width: 800px) {
  .headerHome .hero__text--inner {
    max-width: 100%;
  }
}
.headerHome .hero__text h1 {
  margin-top: 3rem;
  margin-bottom: 6rem;
  max-width: 40rem;
  font-weight: 700;
}
@media only screen and (max-width: 800px) {
  .headerHome .hero__text h1 {
    margin-bottom: 4rem;
  }
}
.headerHome .hero__text h1 span {
  width: 15rem;
  position: relative;
  padding-left: 1rem;
}
.headerHome .hero__text h1 span::before {
  content: "comfort";
  position: absolute;
  -webkit-animation: animate infinite 8s;
          animation: animate infinite 8s;
  display: inline-block;
}
@-webkit-keyframes animate {
  0% {
    content: "comfort";
    color: #B40053;
  }
  50% {
    content: "support";
    color: #F5C320;
  }
  100% {
    content: "care";
    color: #77A504;
  }
}
@keyframes animate {
  0% {
    content: "comfort";
    color: #B40053;
  }
  50% {
    content: "support";
    color: #F5C320;
  }
  100% {
    content: "care";
    color: #77A504;
  }
}
.headerHome .hero__text p {
  margin-bottom: 4rem;
}
.headerHome .hero__btns {
  display: flex;
}
@media only screen and (max-width: 360px) {
  .headerHome .hero__btns {
    flex-direction: column;
  }
  .headerHome .hero__btns .btn {
    justify-content: space-between;
  }
}
.headerHome .hero__btns .btn--transparent {
  margin-left: 2rem;
}
@media only screen and (max-width: 360px) {
  .headerHome .hero__btns .btn--transparent {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.headerHome .hero__image--grid {
  display: flex;
}
.headerHome .hero__image--box img {
  width: 100%;
}
.headerHome .hero__image--box-2 {
  margin-top: 6rem;
  margin-left: 3rem;
}
@media only screen and (max-width: 1200px) {
  .headerHome .hero__image--box-2 {
    margin-left: 1.5rem;
  }
}
.headerHome .hero__image--box-3 {
  margin-left: -3rem;
}
@media only screen and (max-width: 400px) {
  .headerHome .hero__image--box-3 {
    margin-left: -1.5rem;
  }
}

section {
  padding: 8.5rem 0 10rem;
}

.showcase {
  padding: 22rem 0 10rem;
}
.showcase__inner {
  max-width: 100rem;
  margin-left: auto;
  position: relative;
}
.showcase__inner::before {
  content: "";
  position: absolute;
  top: -7rem;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991298/harmonycare/light-green-circle_vigzld.svg");
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .showcase__inner::before {
    bottom: -8rem;
    width: 5rem;
    height: 5rem;
  }
}
.showcase__text {
  max-width: 65rem;
  margin-bottom: 3rem;
  position: relative;
}
.showcase__text::before {
  content: "";
  position: absolute;
  top: -17rem;
  left: -30rem;
  width: 40rem;
  height: 80rem;
  z-index: -1;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991244/harmonycare/big-left-curve_xenju2.svg");
  background-size: cover;
}
.showcase__text h2 {
  line-height: 1.3;
  margin-bottom: 4rem;
  font-weight: 700;
}
.showcase__text span {
  color: #B40053;
}
.showcase__text p {
  color: #7D7D7D;
}
.showcase__images {
  display: grid;
  grid-template-areas: "box1 box2 box3 box4 box5";
  gap: 2rem;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .showcase__images {
    grid-template-areas: "box1 box2 box3" "box4 box5 box5";
    gap: 1rem;
  }
  .showcase__images .v-pc {
    display: none;
  }
  .showcase__images div:nth-child(5) .v-mobile {
    display: block !important;
  }
}
.showcase__images div:nth-child(1) {
  grid-area: box1;
}
.showcase__images div:nth-child(2) {
  grid-area: box2;
}
.showcase__images div:nth-child(3) {
  grid-area: box3;
}
.showcase__images div:nth-child(4) {
  grid-area: box4;
}
.showcase__images div:nth-child(5) {
  grid-area: box5;
}
.showcase__images div:nth-child(5) .v-mobile {
  display: none;
}
@media only screen and (max-width: 800px) {
  .showcase__images div:nth-child(5) .v-mobile {
    display: block;
  }
}
.showcase__images::before, .showcase__images::after {
  content: "";
  position: absolute;
  background-size: cover;
}
.showcase__images::before {
  bottom: -18rem;
  left: 5rem;
  width: 8rem;
  height: 8rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991247/harmonycare/dark-green-circle_oyifvt.svg");
}
@media only screen and (max-width: 800px) {
  .showcase__images::before {
    bottom: -8rem;
    width: 5rem;
    height: 5rem;
  }
}
.showcase__images::after {
  bottom: -25rem;
  right: 5rem;
  width: 14rem;
  height: 8rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991316/harmonycare/yellow-curve_ah2gb5.svg");
}
@media only screen and (max-width: 800px) {
  .showcase__images::after {
    bottom: -5rem;
    right: -2rem;
    width: 10rem;
    height: 6rem;
  }
}
.showcase__images img {
  width: 100%;
}

.values {
  padding: 23rem 0 0;
}
.values h2 {
  text-align: center;
  color: #B40053;
  margin-bottom: 5rem;
  font-weight: 700;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  padding: 0 6rem;
}
@media only screen and (max-width: 800px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .values__grid {
    padding: 0;
  }
}
.values__box {
  box-shadow: 0px 4px 30px rgba(126, 138, 97, 0.1);
  background: #FFFFFF;
  border-radius: 10px;
  border: 0.4px solid transparent;
  padding: 3rem 5rem;
}
.values__box:hover {
  background: #EEFEFF;
  border-color: #0071AC;
}
.values__box--heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.values__box--heading h3 {
  font-size: 2.2rem;
  letter-spacing: 0.8px;
  font-weight: 700;
}
.values__box--heading div {
  width: 4.5rem;
  height: 4.5rem;
}
.values__box--heading img {
  width: 100%;
}
.values__box--body h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: #0071AC;
}
.values__box--body ul {
  list-style-type: disc;
}
.values__box--body li {
  font-size: 1.6rem;
}
.values__box--body li:not(:last-child) {
  margin-bottom: 0.4rem;
}
.values__box--love h3 {
  color: #B40053;
}
.values__box--respect h3 {
  color: #77A504;
}
.values__box--innovate h3 {
  color: #FF4C4C;
}
.values__box--demonstrate {
  position: relative;
}
.values__box--demonstrate::after {
  content: "";
  position: absolute;
  bottom: -7rem;
  right: -5rem;
  width: 9rem;
  height: 7rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991313/harmonycare/red-curve_vxtije.svg");
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .values__box--demonstrate::after {
    bottom: -4rem;
    right: -1rem;
    z-index: -1;
  }
}
.values__box--demonstrate h3 {
  color: #17A7B5;
}
.values__image {
  margin-top: 12rem;
  position: relative;
}
.values__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991294/harmonycare/light-blue-circle_mfuhby.svg");
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .values__image::before {
    width: 5rem;
    height: 5rem;
  }
}
.values__image div {
  max-width: 34rem;
  height: 43rem;
  margin: 0 auto;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991253/harmonycare/img9_aomuag.png");
  background-size: cover;
}
.values__image img {
  width: 100%;
}

.control {
  background: #FFF9FC;
  padding: 15rem 0;
}
.control__inner {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 800px) {
  .control__inner {
    flex-direction: column-reverse;
  }
}
.control__images {
  flex-basis: 40%;
  padding-right: 5rem;
}
@media only screen and (max-width: 800px) {
  .control__images {
    padding-right: 0;
    padding: 0 3rem;
  }
}
.control__images div:nth-child(1),
.control__images div:nth-child(2) {
  width: 60%;
}
.control__images div:nth-child(2) {
  margin-left: 10rem;
  margin-top: -6rem;
}
.control__images div:nth-child(3) {
  width: 47%;
  margin-top: -6rem;
}
.control__images img {
  width: 100%;
}
.control__text {
  padding-left: 5rem;
  flex: 1;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .control__text {
    padding-left: 0;
    padding-bottom: 12rem;
  }
}
.control__text h2 {
  font-weight: 700;
}
@media only screen and (max-width: 800px) {
  .control__text h2 {
    text-align: center;
  }
}
.control__text h5 {
  font-weight: 700;
}
.control__text::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: 5rem;
  width: 12rem;
  height: 13rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991244/harmonycare/double-circle_mvd3qd.svg");
  background-size: cover;
}
@media only screen and (max-width: 900px) {
  .control__text::before {
    display: none;
  }
}
.control__text::after {
  content: "";
  position: absolute;
  bottom: -12rem;
  right: -1rem;
  width: 7rem;
  height: 7rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991304/harmonycare/orange-circle_uot0lg.svg");
  background-size: cover;
}
@media only screen and (max-width: 900px) {
  .control__text::after {
    display: none;
  }
}
.control__showcase {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem 5rem;
}
@media only screen and (max-width: 500px) {
  .control__showcase {
    grid-template-columns: 1fr;
  }
}
.control__showcase h5 {
  color: #B40053;
  font-size: 1.5rem;
  margin: 1.5rem 0;
}
.control__showcase p {
  font-size: 1.55rem;
}

.home {
  padding-top: 15rem;
}
.home__top {
  max-width: 90rem;
  margin: 0 auto;
}
.home__top h2 {
  font-size: 9rem;
  line-height: 8rem;
  font-weight: 700;
  margin-bottom: 5rem;
  color: #B40053;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .home__top h2 {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 8rem;
    line-height: 7rem;
  }
}
.home__top h2 span {
  color: #F46F0D;
}
.home__top h2::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991246/harmonycare/blue-circle_fypk4z.svg");
  background-size: cover;
  z-index: -1;
}
.home__top p {
  color: #7D7D7D;
  margin-bottom: 5rem;
  max-width: 70%;
}
@media only screen and (max-width: 800px) {
  .home__top p {
    max-width: 100%;
  }
}
.home__top .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}
@media only screen and (max-width: 800px) {
  .home__top .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 370px) {
  .home__top .features {
    grid-template-columns: 1fr;
  }
}
.home__top .features__box {
  display: flex;
  align-items: center;
}
.home__top .features__box--img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(252, 229, 239, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.8rem;
}
.home__top .features__box--img img {
  max-width: 100%;
}
.home__top .features__box h5 {
  font-weight: 400;
  font-size: 1.6rem;
}
.home__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 13rem;
}
@media only screen and (max-width: 900px) {
  .home__images {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media only screen and (max-width: 500px) {
  .home__images {
    grid-template-columns: 1fr;
  }
}
.home__images img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.home__images img:hover {
  transform: scale(1.05);
}
.home__bottom {
  border-radius: 10px;
  margin: 7rem 0;
  position: relative;
}
.home__bottom--inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 800px) {
  .home__bottom--inner {
    grid-template-columns: 1fr;
    gap: 10rem;
  }
}
.home__bottom .image-box {
  position: relative;
  display: flex;
}
@media only screen and (max-width: 800px) {
  .home__bottom .image-box {
    justify-content: center;
  }
}
.home__bottom .image-box div {
  position: absolute;
  bottom: -0.5rem;
}
@media only screen and (max-width: 800px) {
  .home__bottom .image-box div {
    position: relative;
    bottom: -0.5rem;
  }
}
.home__bottom .image-box div img {
  width: 40rem;
}
@media only screen and (max-width: 400px) {
  .home__bottom .image-box div img {
    width: 30rem;
  }
}
.home__bottom .text-box {
  padding: 5rem;
}
.home__bottom .text-box h3 {
  color: #B40053;
  font-size: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 800px) {
  .home__bottom .text-box h3 {
    margin-bottom: 5rem;
  }
}
.home__bottom .text-box ul {
  margin-top: 3rem;
  margin-left: 4.5rem;
}
@media only screen and (max-width: 800px) {
  .home__bottom .text-box ul {
    margin-left: 0;
    padding-left: 3rem;
  }
}
.home__bottom .text-box ul li {
  position: relative;
}
.home__bottom .text-box ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4rem;
  height: 2rem;
  width: 2rem;
  background: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991246/harmonycare/check_xl0plp.svg");
  background-size: cover;
}
.home__bottom .text-box ul li:not(:last-child) {
  margin-bottom: 1.3rem;
}
@media only screen and (max-width: 800px) {
  .home__bottom .text-box ul li:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.home__bottom--community {
  background: #EEFEFF;
}
.home__bottom--community::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 4rem;
  width: 10rem;
  height: 7rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991294/harmonycare/light-blue-curve_r7kpis.svg");
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .home__bottom--community::before {
    display: none;
  }
}
.home__bottom--living {
  background: #FCEFE5;
}
.home__bottom--living .image-box {
  justify-content: center;
}
.home__bottom--living .image-box div img {
  width: 35rem;
}
@media only screen and (max-width: 400px) {
  .home__bottom--living .image-box div img {
    width: 30rem;
  }
}
@media only screen and (max-width: 800px) {
  .home__bottom--living .image-box {
    order: 1;
  }
}
.home__bottom--living::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: 2rem;
  width: 10rem;
  height: 7rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991305/harmonycare/orange-curve_cwymbn.svg");
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .home__bottom--living::after {
    display: none;
  }
}

.contact {
  padding: 16rem 0 12rem;
}
.contact__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 900px) {
  .contact__top {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}
.contact__top--left h2 {
  font-size: 4rem;
  max-width: 35rem;
  line-height: 5.2rem;
  margin-bottom: 4.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .contact__top--left h2 {
    line-height: 5rem;
  }
}
.contact__top--left h2 span {
  color: #B40053;
}
.contact__top--left p {
  color: #7D7D7D;
  max-width: 45rem;
}
.contact__top--right {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 4rem 5%;
}
@media only screen and (max-width: 900px) {
  .contact__top--right {
    gap: 2rem;
  }
}
@media only screen and (max-width: 700px) {
  .contact__top--right {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact__top--right h5 {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7D7D7D;
  font-weight: 400;
  font-size: 1.4rem;
}
.contact__top--right p {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 1.55rem;
}
.contact__top--right p svg {
  margin-right: 1.7rem;
}
.contact__top--right p a {
  color: inherit;
}
.contact__bottom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 11rem;
  max-width: 100rem;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .contact__bottom {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 3rem;
    justify-content: center;
  }
}
.contact__bottom::before, .contact__bottom::after {
  content: "";
  position: absolute;
  background-size: cover;
}
.contact__bottom::before {
  top: 3rem;
  right: -14rem;
  width: 10rem;
  height: 8rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991313/harmonycare/red-curve_vxtije.svg");
}
@media only screen and (max-width: 1200px) {
  .contact__bottom::before {
    top: -9rem;
    right: 0;
    width: 8rem;
    height: 6rem;
  }
}
.contact__bottom::after {
  bottom: -8rem;
  left: 2rem;
  width: 6rem;
  height: 6rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991294/harmonycare/light-blue-circle_mfuhby.svg");
}
.contact__bottom img {
  width: 100%;
}

.headerAbout {
  padding-top: 15rem;
}
.headerAbout h1 {
  color: #B40053;
  max-width: 65rem;
  margin: 0 auto 7rem;
  text-align: center;
  font-size: 4.8rem;
  line-height: 5.3rem;
  font-weight: 700;
}
@media only screen and (max-width: 800px) {
  .headerAbout h1 {
    font-size: 3.8rem;
    line-height: 4.5rem;
  }
}
.headerAbout h1 span::before {
  content: "";
  -webkit-animation: animateAbout infinite 4s;
          animation: animateAbout infinite 4s;
}
@-webkit-keyframes animateAbout {
  from {
    content: "fulfilled";
    color: #0071AC;
  }
  to {
    content: "great";
    color: #77A504;
  }
}
@keyframes animateAbout {
  from {
    content: "fulfilled";
    color: #0071AC;
  }
  to {
    content: "great";
    color: #77A504;
  }
}
.headerAbout__images {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8rem;
  margin-bottom: 13rem;
}
@media only screen and (max-width: 800px) {
  .headerAbout__images {
    padding: 0;
  }
}
.headerAbout__images > div:not(:last-child) {
  margin-right: 1.5rem;
}
@media only screen and (max-width: 600px) {
  .headerAbout__images > div:not(:last-child) {
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 800px) {
  .headerAbout__images div:last-child {
    display: none;
  }
}
.headerAbout__images img {
  width: 100%;
}
.headerAbout p {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  line-height: 2.7rem;
}

.valuesAbout {
  padding-top: 14rem;
  position: relative;
}
.valuesAbout .values__grid {
  position: relative;
}
.valuesAbout .values__grid::before {
  content: "";
  position: absolute;
  top: -13rem;
  right: -3rem;
  width: 40rem;
  height: 20rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991244/harmonycare/big-yellow-curve_xpcpbc.svg");
  background-size: cover;
  z-index: -1;
}
@media only screen and (max-width: 1200px) {
  .valuesAbout .values__grid::before {
    display: none;
  }
}

.engagement {
  padding-top: 18rem;
  background: #EEFEFF;
  margin-top: 8rem;
}
.engagement img {
  width: 100%;
}
.engagement__top {
  margin-bottom: 10rem;
  position: relative;
}
.engagement__top::before {
  content: "";
  position: absolute;
  top: -13rem;
  left: -5rem;
  width: 8rem;
  height: 8rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991294/harmonycare/light-blue-circle_mfuhby.svg");
  background-size: cover;
}
@media only screen and (max-width: 850px) {
  .engagement__top::before {
    width: 6rem;
    height: 6rem;
    left: 5rem;
  }
}
.engagement__top h2 {
  color: #B40053;
  font-weight: 700;
}
.engagement__image {
  display: grid;
  grid-template-areas: "box1 box2 box3 box4";
  gap: 2rem;
}
@media only screen and (max-width: 800px) {
  .engagement__image {
    gap: 1rem;
  }
}
.engagement__image div:nth-child(1) {
  grid-area: box1;
}
.engagement__image div:nth-child(2) {
  grid-area: box2;
}
.engagement__image div:nth-child(3) {
  grid-area: box3;
}
.engagement__image div:nth-child(4) {
  grid-area: box4;
}
@media only screen and (max-width: 800px) {
  .engagement__image div:nth-child(4) {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .engagement__image {
    display: none;
  }
}
.engagement__mobile {
  display: none;
}
.engagement__mobile div:first-child {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 600px) {
  .engagement__mobile {
    display: flex;
    align-items: flex-start;
  }
}

.good {
  padding: 13rem 0;
}
.good__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}
@media only screen and (max-width: 800px) {
  .good__inner {
    grid-template-columns: 1fr;
  }
}
.good__images {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .good__images {
    padding: 0 10rem;
  }
}
@media only screen and (max-width: 800px) {
  .good__images {
    padding: 0;
  }
}
.good__images img {
  width: 100%;
}
.good__images .imagebox-1 {
  margin-right: 2rem;
  position: relative;
}
.good__images .imagebox-1::after {
  content: "";
  position: absolute;
  bottom: -15rem;
  left: 3rem;
  width: 10rem;
  height: 10rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991246/harmonycare/curve-and-circle_cb8mlr.svg");
  background-size: cover;
}
.good__images .imagebox-2 {
  margin-bottom: 2rem;
}
.good__images .imagebox-2 img {
  width: 70%;
}
.good__images .imagebox-3 img {
  width: 85%;
}
.good__text h2 {
  margin-bottom: 5rem;
}
.good__text h2 span {
  color: #F46F0D;
  text-transform: uppercase;
}
.good__text h2, .good__text h3 {
  color: #B40053;
  font-weight: 700;
}
.good__text p {
  font-size: 1.5rem;
}
.good__text div {
  padding: 0 5rem;
}
.good__text div:not(:last-child) {
  margin-bottom: 6rem;
}
.good__text h3 {
  margin-bottom: 2rem;
  position: relative;
}
.good__text h3::before {
  content: "";
  position: absolute;
  left: -5rem;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991246/harmonycare/check_xl0plp.svg");
  background-size: cover;
}

.headerServices {
  padding-top: 15rem;
}
.headerServices .hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .headerServices .hero {
    flex-direction: column;
  }
}
.headerServices .hero__text, .headerServices .hero__image {
  flex: 1;
}
.headerServices .hero__text {
  padding-right: 6rem;
}
@media only screen and (max-width: 800px) {
  .headerServices .hero__text {
    padding-right: 0;
    padding-bottom: 10rem;
  }
}
.headerServices .hero__text--inner {
  max-width: 40rem;
}
@media only screen and (max-width: 800px) {
  .headerServices .hero__text--inner {
    max-width: 100%;
  }
}
.headerServices .hero__text h1 {
  margin-top: 3rem;
  margin-bottom: 6rem;
  max-width: 40rem;
  font-weight: 700;
}
@media only screen and (max-width: 800px) {
  .headerServices .hero__text h1 {
    max-width: 100%;
  }
}
.headerServices .hero__text h1 span {
  width: 15rem;
  position: relative;
  padding-left: 1rem;
}
.headerServices .hero__text h1 span::before {
  content: "comfort";
  position: absolute;
  -webkit-animation: animate infinite 8s;
          animation: animate infinite 8s;
  display: inline-block;
}
@keyframes animate {
  0% {
    content: "comfort";
    color: #B40053;
  }
  50% {
    content: "support";
    color: #F5C320;
  }
  100% {
    content: "care";
    color: #77A504;
  }
}
.headerServices .hero__text p {
  margin-bottom: 4rem;
}
.headerServices .hero__btns {
  display: flex;
}
@media only screen and (max-width: 360px) {
  .headerServices .hero__btns {
    flex-direction: column;
  }
  .headerServices .hero__btns .btn {
    justify-content: space-between;
  }
}
.headerServices .hero__btns .btn--transparent {
  margin-left: 2rem;
}
@media only screen and (max-width: 360px) {
  .headerServices .hero__btns .btn--transparent {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.headerServices .hero__btns .btn--transparent:hover svg {
  transform: translateY(0.3rem);
}
.headerServices .hero__image {
  display: grid;
  grid-template-areas: "box1 box1" "box2 box3";
  gap: 1rem 1.5rem;
}
@media only screen and (max-width: 800px) {
  .headerServices .hero__image {
    padding: 0 5rem;
  }
}
@media only screen and (max-width: 500px) {
  .headerServices .hero__image {
    padding: 0;
  }
}
.headerServices .hero__image div:nth-child(1) {
  grid-area: box1;
  padding-left: 5rem;
}
@media only screen and (max-width: 800px) {
  .headerServices .hero__image div:nth-child(1) {
    padding-left: 0;
  }
}
.headerServices .hero__image div:nth-child(2) {
  grid-area: box2;
}
.headerServices .hero__image div:nth-child(3) {
  grid-area: box3;
}
.headerServices .hero__image img {
  width: 100%;
}

.showcaseServices h2 {
  font-size: 4rem;
  color: #B40053;
  line-height: 4.6rem;
  font-weight: 700;
}
.showcaseServices img {
  width: 75%;
}
@media only screen and (max-width: 1000px) {
  .showcaseServices img {
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .showcaseServices img {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .showcaseServices img {
    width: 100%;
  }
}
.showcaseServices p {
  font-size: 1.6rem;
}
.showcaseServices__top, .showcaseServices__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  padding: 6rem 5rem;
  height: 65rem;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .showcaseServices__top, .showcaseServices__bottom {
    height: 70rem;
  }
}
@media only screen and (max-width: 900px) {
  .showcaseServices__top, .showcaseServices__bottom {
    height: 75rem;
  }
}
@media only screen and (max-width: 800px) {
  .showcaseServices__top, .showcaseServices__bottom {
    grid-template-columns: 1fr;
    height: auto;
    padding: 6rem 3rem;
    gap: 10rem;
  }
}
.showcaseServices__top::before, .showcaseServices__top::after, .showcaseServices__bottom::before, .showcaseServices__bottom::after {
  content: "";
  position: absolute;
  background-size: cover;
}
.showcaseServices__top {
  background: #FFF9FC;
}
.showcaseServices__top::before {
  top: -4rem;
  left: 4rem;
  width: 15rem;
  height: 8.5rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991316/harmonycare/yellow-curve_ah2gb5.svg");
}
@media only screen and (max-width: 800px) {
  .showcaseServices__top::before {
    display: none;
  }
}
.showcaseServices__top::after {
  top: -6rem;
  right: 4rem;
  width: 10rem;
  height: 10rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991294/harmonycare/light-blue-circle_mfuhby.svg");
}
@media only screen and (max-width: 800px) {
  .showcaseServices__top::after {
    display: none;
  }
}
.showcaseServices__top--left {
  padding-left: 4rem;
}
@media only screen and (max-width: 800px) {
  .showcaseServices__top--left {
    padding-left: 0;
  }
}
.showcaseServices__top--left p {
  margin: 4rem 0;
}
.showcaseServices__top--left ul {
  padding-left: 4.5rem;
}
.showcaseServices__top--left li {
  position: relative;
  font-size: 1.6rem;
}
.showcaseServices__top--left li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4rem;
  height: 2rem;
  width: 2rem;
  background: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991246/harmonycare/check_xl0plp.svg");
  background-size: cover;
}
.showcaseServices__top--left li:not(:last-child) {
  margin-bottom: 1.3rem;
}
.showcaseServices__top--right {
  text-align: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 800px) {
  .showcaseServices__top--right {
    margin-top: 0;
  }
}
.showcaseServices__bottom {
  background: #EEFEFF;
  margin-top: 13rem;
}
.showcaseServices__bottom::before {
  top: -9rem;
  left: 4rem;
  width: 10rem;
  height: 8rem;
  transform: rotate(180deg);
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991313/harmonycare/red-curve_vxtije.svg");
}
.showcaseServices__bottom::after {
  bottom: -15rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991304/harmonycare/orange-circle_uot0lg.svg");
}
@media only screen and (max-width: 1200px) {
  .showcaseServices__bottom::after {
    display: none;
  }
}
.showcaseServices__bottom p {
  margin-top: 3rem;
}
.showcaseServices__bottom p:first-of-type {
  margin-top: 5rem;
}
.showcaseServices__bottom--left {
  text-align: center;
  margin-top: 11rem;
}
@media only screen and (max-width: 800px) {
  .showcaseServices__bottom--left {
    order: 2;
    margin-top: 0;
  }
}
.showcaseServices__bottom--right {
  padding-right: 4rem;
}
@media only screen and (max-width: 800px) {
  .showcaseServices__bottom--right {
    padding-right: 0;
  }
}

.development {
  padding-bottom: 0;
}
.development__top {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}
.development__top h2 {
  margin-bottom: 2rem;
  font-weight: 700;
  color: #B40053;
}
.development__top p {
  font-size: 1.6rem;
}
.development__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 800px) {
  .development__grid {
    gap: 3rem;
  }
}
@media only screen and (max-width: 700px) {
  .development__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.development__grid img {
  width: 100%;
}
.development__grid--box {
  padding: 3rem;
  border-radius: 10px;
}
.development__grid--box h5 {
  color: #B40053;
  margin: 3rem 0 2.8rem;
}
.development__grid--box ul {
  list-style-type: disc;
  padding: 0 1.5rem;
}
.development__grid--box li {
  font-size: 1.5rem;
}
.development__grid--box li:not(:last-child) {
  margin-bottom: 1rem;
}
.development__grid--box-1 {
  background: #FAFAFA;
}
.development__grid--box-2 {
  background: #EEFEFF;
}
.development__grid--box-3 {
  background: #FFF9FC;
}
.development__image {
  margin-top: 12rem;
  position: relative;
}
.development__image::before {
  content: "";
  position: absolute;
  top: 15rem;
  left: 5rem;
  height: 9rem;
  width: 9rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991294/harmonycare/light-blue-circle_mfuhby.svg");
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .development__image::before {
    width: 5rem;
    height: 5rem;
    top: 8rem;
    left: 2rem;
  }
}
.development__image div {
  max-width: 34rem;
  height: 43rem;
  margin: 0 auto;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1629991254/harmonycare/img20_eyjhlv.png");
  background-size: cover;
}
.development__image img {
  width: 100%;
}

.controlServices {
  margin-bottom: 7rem;
}

.houses__top {
  padding-top: 9rem;
  background: linear-gradient(to bottom, rgba(240, 206, 221, 0.6), rgba(216, 199, 207, 0));
}
@media (max-width: 1000px) {
  .houses__top {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.houses__top > div {
  max-width: 78rem;
  margin: 0 auto 13rem;
}
.houses__top h1 {
  font-size: 6.7rem;
  line-height: 8rem;
  margin-bottom: 3rem;
  color: #B40053;
  position: relative;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .houses__top h1 {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 8rem;
    line-height: 7rem;
  }
}
@media only screen and (max-width: 640px) {
  .houses__top h1 {
    line-height: 8rem;
  }
}
.houses__top h1 span {
  color: #F46F0D;
}
.houses__top p {
  color: #000000;
  max-width: 70%;
  margin: 0 auto 7rem;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .houses__top p {
    max-width: 100%;
  }
}
.houses__top .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 800px) {
  .houses__top .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 370px) {
  .houses__top .features {
    grid-template-columns: 1fr;
  }
}
.houses__top .features__box {
  display: flex;
  align-items: center;
}
.houses__top .features__box--img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(252, 229, 239, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.8rem;
}
.houses__top .features__box--img img {
  max-width: 100%;
}
.houses__top .features__box h5 {
  font-weight: 400;
  font-size: 1.6rem;
}
.houses__images {
  position: relative;
}
.houses__images::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  z-index: -1;
}
.houses__images--first {
  margin-bottom: 10rem;
}
.houses__images--first::before {
  top: 1rem;
  right: -1.5rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1664590809/harmonycare/big-orange-circle_iqea0i.svg");
}
.houses__images--second::before {
  bottom: -5rem;
  left: 1.5rem;
  background-image: url("https://res.cloudinary.com/dljsalifp/image/upload/v1664590809/harmonycare/big-green-circle_gtxhue.svg");
}
.houses__images h2 {
  font-size: calc(2rem + 1px);
  font-weight: 400;
  margin: 0;
  line-height: 1.35;
  color: #000000;
}
.houses__images p {
  color: #B40053;
  font-weight: 700;
  font-size: calc(2rem - 1px);
}
.houses__images .images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 900px) {
  .houses__images .images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media only screen and (max-width: 500px) {
  .houses__images .images-grid {
    grid-template-columns: 1fr;
  }
}
.houses__images .images-grid img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.houses__images .images-grid img:hover {
  transform: scale(1.05);
}