<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --black: #222222;
  --white: #fafafa;
  --green: #527f76;
  --purple: #8681A4;
  --dark: #234B15;
  --light: #568178;
  --container: 1280px;
  --border-radius: 8px;
  --text-shadow-title: 1px 1px var(--black);
  --breakpoint-wide: var(--container);
  --breakpoint-medium: 1024px;
  --breakpoint-small: 600px;
}

* {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

strong {
  font-weight: 700;
}

p {
  line-height: 1.5;
}

@media (hover: hover) {
  a {
    cursor: pointer;
    transition: all 400ms ease;
  }
  a:hover {
    opacity: 0.8;
    transform: translateY(-4px);
  }
}
.header {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
}
.header__spacer {
  width: 143px;
}
.header__img {
  height: 5rem;
}
.header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--purple);
  margin-bottom: 0.5rem;
}
.header__link span {
  font-weight: 700;
}
.header__hidden-checkbox {
  display: none;
}
.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  width: 100%;
}
.header__nav a {
  font-weight: 700;
  color: var(--purple);
}
.header__mobile-menu {
  display: none;
}
.header__mobile-menu svg {
  display: inline-block;
  width: 2rem;
}
.header__mobile-menu svg path {
  fill: var(--purple);
}

@media (max-width: 860px) {
  .header {
    padding: 0.5rem 1.25rem 0.5rem;
  }
  .header__inner {
    justify-content: space-between;
  }
  .header__nav {
    position: absolute;
    top: 135px;
    left: 0;
    z-index: -1;
    padding: 1.25rem 0;
    width: 100vw;
  }
  .header__nav a {
    color: var(--white);
    opacity: 0;
    transition: all 350ms ease;
  }
  .header__nav:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background-color: var(--purple);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(0) scaleY(0);
    transform-origin: top;
    transition: all 350ms ease;
  }
  .header__spacer {
    order: 2;
    width: 2rem;
  }
  .header__mobile-menu {
    display: block;
    width: 2rem;
    text-align: center;
    order: 4;
  }
  .header__hidden-checkbox {
    display: block;
  }
  .header__hidden-checkbox:checked + .header__nav a {
    opacity: 1;
  }
  .header__hidden-checkbox:checked + .header__nav:after {
    transform: translateY(0) scaleY(1);
  }
  .header__img {
    order: 3;
  }
  .header__link {
    flex-direction: row;
    gap: 0.5rem;
    order: 1;
    width: 100%;
    margin: 0;
    padding: 0.5rem 0.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .header__link {
    padding: 0.5rem 0 1rem;
  }
  .header__spacer {
    display: none;
  }
}
.footer {
  width: 100%;
  background-color: var(--green);
  margin-top: auto;
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 1rem 5rem;
  max-width: var(--container);
  color: var(--white);
  margin: 0 auto;
}
.footer__top {
  width: 100%;
  border-bottom: 1px solid var(--white);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.footer__info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 3rem;
}
.footer__hr {
  width: 100%;
  height: 1px;
  background-color: var(--white);
  margin: 3rem 0;
}
.footer__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.5rem;
}
.footer__info-item strong {
  font-size: 1rem;
}
.footer__text {
  width: 100%;
  color: var(--white);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.footer__socials {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}
.footer__social-icon a {
  display: inline-block;
}
.footer__social-icon svg {
  display: block;
  height: 2.25rem;
}
.footer__social-icon svg path {
  fill: var(--white);
}

@media (max-width: 1280px) and (min-width: 860px) {
  .footer__inner {
    padding-bottom: 3rem;
    gap: 1rem;
    flex-wrap: nowrap;
  }
  .footer__top {
    flex: 1 1 50%;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .footer__info {
    flex-direction: column;
    flex: 1 1 50%;
  }
}
@media (max-width: 860px) {
  .footer__inner {
    padding-bottom: 3rem;
  }
  .footer__info {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer__info {
    gap: 1.5rem;
  }
  .footer__info-item {
    font-size: 1.25rem;
  }
}
.main {
  background-color: var(--white);
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  background-color: var(--purple);
  overflow-y: hidden;
}
.about__img {
  flex: 1 1 50%;
  height: 60vh;
  max-width: 100%;
  background-image: url("/assets/img/jess-temp.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  box-shadow: 2px 0px 10px 0px rgba(34, 34, 34, 0.15);
  overflow-y: hidden;
}
.about__text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}
.about__text p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--white);
  padding: 0 4rem;
}
.about__text a {
  display: block;
  font-weight: 700;
  color: var(--white);
  padding-top: 2rem;
  text-align: right;
}
.about__text i {
  padding-left: 0.5rem;
}
.about__title {
  width: 100%;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: var(--text-shadow-title);
}

@media (max-width: 1280px) {
  .about__img {
    height: 50vh;
  }
  .about__text p {
    padding: 0 2rem;
  }
}
@media (max-width: 1024px) {
  .about__img {
    flex: 1 1 40%;
  }
}
@media (max-width: 860px) {
  .about {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 3rem 3rem;
  }
  .about__img {
    flex: 0 0 25rem;
    width: 27rem;
    height: 27rem;
    margin-bottom: 5rem;
    border-radius: calc(var(--border-radius) * 2);
  }
  .about__text {
    flex: 1 1 100%;
    max-width: 660px;
    padding: 0;
  }
  .about__text p {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 3rem 1rem;
  }
  .about__img {
    max-width: 100%;
  }
}
.hero {
  display: block;
  position: relative;
  width: 100%;
  height: 45vw;
  min-height: 600px;
  max-height: 800px;
  background-image: url("/assets/img/midearth-nikhil-prasad.webp");
  background-position: left 68%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 10rem;
  overflow: hidden;
}
.hero__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: calc((100% - var(--container)) / 2);
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.15);
}
.hero__stuff {
  position: relative;
  max-width: calc(920px + (100% - var(--container)) / 2);
  background-color: rgba(245, 245, 245, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: calc((100% - var(--container)) / 2);
  padding-left: 5rem;
}
.hero__stuff:after {
  content: "";
  position: absolute;
  top: 0;
  left: -10rem;
  width: 10rem;
  height: 100%;
  background: linear-gradient(-90deg, rgba(245, 245, 245, 0.8) 0%, rgba(245, 245, 245, 0) 100%);
}
.hero__list {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.hero__list li {
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 700;
}
.hero__list li:nth-last-child(n+2):after {
  content: "|";
  padding-left: 0.75rem;
}
.hero__text {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}
.hero__link {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  padding-top: 1rem;
}
.hero__link i {
  padding-left: 0.5rem;
}
.hero__link svg {
  display: inline-block;
  height: 1.25rem;
  padding-left: 0.5rem;
  position: relative;
  top: 3px;
}
.hero__link svg path {
  fill: var(--green);
}
.hero:after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 3rem;
  width: 100%;
  background: linear-gradient(0deg, rgb(250, 250, 250) 0%, rgba(250, 250, 250, 0) 100%);
}

@media (max-width: 1280px) {
  .hero__inner {
    padding: 0;
  }
  .hero__stuff {
    padding-right: 3rem;
    padding-left: 3rem;
    max-width: 760px;
  }
  .hero__text {
    font-size: 2.25rem;
  }
  .hero__list li, .hero__link {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .hero {
    margin-bottom: 7rem;
  }
  .hero__stuff {
    max-width: 660px;
  }
}
@media (max-width: 860px) {
  .hero {
    background-position: left bottom;
    background-size: cover;
    min-height: 0;
    height: 27rem;
  }
  .hero__stuff {
    max-width: 100%;
    padding: 3rem 1rem;
    justify-content: flex-end;
  }
  .hero__stuff:after {
    content: none;
  }
  .hero__text {
    text-align: center;
  }
  .hero__list {
    justify-content: center;
  }
  .hero__link {
    text-align: center;
    font-size: 1.25rem;
    padding: 1rem;
    margin-top: 4.5rem;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 24rem;
  }
  .hero__stuff {
    padding: 3rem 1rem;
  }
  .hero__text {
    font-size: 2rem;
  }
  .hero__list {
    justify-content: center;
    gap: 0.5rem;
  }
  .hero__list li {
    font-size: 0.75rem;
  }
  .hero__list li:nth-last-child(n+2):after {
    padding-left: 0.5rem;
  }
  .hero__link {
    margin-top: auto;
  }
}
@media (max-width: 400px) {
  .hero__text {
    font-size: 1.75rem;
  }
  .hero__list li:nth-last-child(2):after {
    content: none;
  }
  .hero__list li:last-child {
    display: none;
  }
}
.motto {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.motto__img {
  width: 4rem;
}
.motto__text {
  text-align: center;
  font-size: 2.5rem;
  color: var(--purple);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .motto {
    gap: 1.5rem;
  }
  .motto__text {
    font-size: 2rem;
  }
  .motto__img {
    width: 3.5rem;
  }
}
.services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  width: 100%;
}
.services__link {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  padding-top: 2rem;
  text-align: right;
}

@media (max-width: 1280px) {
  .services {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .services {
    gap: 4rem 3rem;
  }
}
.section {
  max-width: var(--container);
  margin: 0 auto 10rem;
}
.section__container {
  margin: 0 2rem;
}
.section__title {
  width: 100%;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 3rem;
  text-align: center;
}
.section--no-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 4rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .section {
    margin-bottom: 7rem;
  }
  .section__container {
    margin: 0 1rem;
  }
}
@media (max-width: 860px) {
  .section {
    margin-bottom: 5rem;
  }
}
@media (max-width: 480px) {
  .section {
    margin-bottom: 4rem;
  }
}
.service-card {
  width: 20rem;
  flex: 1 1 20rem;
}
.service-card__img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0px 2px 10px 0px rgba(34, 34, 34, 0.15);
}
.service-card__img img {
  display: block;
  width: 100%;
  transform: scale(1.05);
}
.service-card__name {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.service-card__note {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  color: var(--purple);
}
.service-card__rates {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.service-card__rates li {
  display: flex;
  justify-content: flex-start;
  gap: 0.25rem;
  color: var(--purple);
}
.service-card__rates strong {
  font-weight: 500;
}
.service-card__rates span {
  color: var(--black);
}
.service-card__description {
  color: var(--black);
}

@media (max-width: 736px) and (min-width: 480px) {
  .service-card__name {
    font-size: 2rem;
  }
  .service-card__rates li, .service-card__description, .service-card__note {
    font-size: 1.25rem;
  }
}
@media (max-width: 400px) {
  .service-card__rates {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/*# sourceMappingURL=styles.css.map */</pre></body></html>