@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
.none {
  display: none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

a.anchor {
  display: block;
  position: relative;
  top: -70px;
  visibility: hidden;
}

.btn {
  border: 1px solid transparent;
  background: #87ff93;
  padding: 1em;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}

.btn:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
  border: 1px solid #39c381;
  background-color: transparent;
  color: white;
}

.selected-nav {
  position: relative;
  overflow: hidden;
}

.selected-nav::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 10000px;
  height: 3px;
  right: 0;
  background: white;
  z-index: -1;
}

.selected-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -0.4em;
  width: 130%;
  height: 24px;
  background: white;
  z-index: -1;
  border-radius: 7px 7px 0 0;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  color: black;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  scroll-behavior: smooth;
}

@media screen and (min-width: 374px) {
  html,
  body {
    font-size: 16px;
  }
}

@media screen and (min-width: 1299px) {
  html,
  body {
    font-size: 18px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-weight: 400;
}

p {
  font-size: 1rem;
}

ul {
  list-style: none;
}

body {
  background: #f1f1f1;
}

body main {
  position: relative;
}

body main #mobile-nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  width: 100%;
  opacity: 100%;
}

body main #mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
  overflow-x: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  width: 0;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

@media screen and (min-width: 849px) {
  body main #mobile-nav {
    display: none;
  }
}

body main #mobile-nav .close-btn {
  position: absolute;
  top: 0;
  right: 0.6em;
  font-size: 60px;
  color: white;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (min-width: 374px) {
  body main #mobile-nav .close-btn {
    right: 0.7em;
  }
}

@media screen and (min-width: 849px) {
  body main #mobile-nav .close-btn {
    right: 1.32em;
  }
}

body main #mobile-nav nav {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 2.5rem;
}

body main #mobile-nav nav ul li {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

body main #mobile-nav nav ul li a {
  color: white;
}

body main #mobile-nav nav ul li a:hover {
  color: #19e266;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body main #header-wrapper {
  width: 100%;
  height: 5em;
  background: #39c381;
  border-bottom: 2px solid white;
  position: -webkit-sticky;
  position: sticky;
  z-index: 50;
}

@media screen and (min-width: 849px) {
  body main #header-wrapper {
    border-bottom: 2px solid transparent;
  }
}

body main #header-wrapper #header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 85%;
  height: 100%;
  margin: 0 auto;
}

body main #header-wrapper #header .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #header-wrapper #header .header-left a {
  width: 125px;
  height: auto;
  position: relative;
  top: 0.65em;
}

body main #header-wrapper #header .header-left a #logo {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body main #header-wrapper #header .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media screen and (min-width: 849px) {
  body main #header-wrapper #header .header-right {
    top: 0.45em;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

body main #header-wrapper #header .header-right #main-nav {
  display: none;
}

@media screen and (min-width: 849px) {
  body main #header-wrapper #header .header-right #main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

body main #header-wrapper #header .header-right #main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

body main #header-wrapper #header .header-right #main-nav ul li {
  padding: 5px;
  margin-left: 0.6em;
  position: relative;
}

body main #header-wrapper #header .header-right #main-nav ul li a {
  color: black;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}

body main #header-wrapper #header .header-right #main-nav ul li a:not(.selected-nav):hover {
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body main #header-wrapper #header .header-right #hamburger {
  position: relative;
  top: 0.2em;
  cursor: pointer;
}

@media screen and (min-width: 849px) {
  body main #header-wrapper #header .header-right #hamburger {
    display: none !important;
  }
}

body main #about {
  min-height: 80vh;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 2em;
}

body main #about #hero-wrapper {
  background-image: url("../images/hero-image.jpg");
  width: 100%;
  height: 85vh;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 849px) {
  body main #about #hero-wrapper {
    height: 70vh;
  }
}

@media screen and (min-width: 1299px) {
  body main #about #hero-wrapper {
    background-attachment: fixed;
  }
}

body main #about #hero-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  pointer-events: none;
  left: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.6) 100%);
}

body main #about #hero-wrapper #hero {
  width: 85%;
  margin: 0 auto;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2em;
  padding-bottom: 2em;
  padding-top: 2em;
  max-height: 100%;
  max-width: 650px;
}

@media screen and (min-width: 1299px) {
  body main #about #hero-wrapper #hero {
    max-width: 750px;
  }
}

body main #about #hero-wrapper #hero a {
  display: block;
  margin: 0 auto;
  padding-left: 1.7em;
  padding-right: 1.7em;
  margin-top: 2em;
  margin-bottom: 2em;
}

body main #about #hero-wrapper #hero a button {
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  text-transform: uppercase;
}

body main #about #hero-wrapper #hero p {
  margin-top: 2em;
  line-height: 24px;
}

body main #about #hero-wrapper #hero h1 {
  font-weight: 400;
  font-size: 1.7rem;
}

body main #about #about-cards {
  width: 85%;
  margin: 0 auto;
}

body main #about #about-cards .cards-wrapper {
  margin: 0 auto;
  margin-top: 3em;
  display: -ms-grid;
  display: grid;
  max-width: 746px;
}

@media screen and (min-width: 849px) {
  body main #about #about-cards .cards-wrapper {
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
  }
}

@media screen and (min-width: 1299px) {
  body main #about #about-cards .cards-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1100px;
  }
}

body main #about #about-cards .cards-wrapper .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  margin: 0 auto;
  margin-bottom: 1.5em;
  max-width: 350px;
  position: relative;
}

body main #about #about-cards .cards-wrapper .card::after {
  content: '';
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: 0;
}

body main #about #about-cards .cards-wrapper .card:nth-child(1)::after {
  background: #87ff93;
}

body main #about #about-cards .cards-wrapper .card:nth-child(2)::after {
  background: #13aa86;
}

body main #about #about-cards .cards-wrapper .card:nth-child(3)::after {
  background: #19e266;
}

body main #about #about-cards .cards-wrapper .card:nth-child(1) > .card-upper {
  background: url("../images/image-1.jpg");
}

body main #about #about-cards .cards-wrapper .card:nth-child(2) > .card-upper {
  background: url("../images/image-2.jpg");
}

body main #about #about-cards .cards-wrapper .card:nth-child(3) > .card-upper {
  background: url("../images/image-3.jpg");
}

body main #about #about-cards .cards-wrapper .card .card-upper {
  width: 100%;
  min-height: 35%;
  height: 10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

body main #about #about-cards .cards-wrapper .card .card-upper::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  pointer-events: none;
  left: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 0;
}

body main #about #about-cards .cards-wrapper .card .card-upper h3 {
  color: white;
  text-align: center;
  margin-bottom: 0.5em;
  z-index: 5;
}

body main #about #about-cards .cards-wrapper .card .card-lower {
  width: 100%;
  min-height: 65%;
}

body main #about #about-cards .cards-wrapper .card .card-lower p {
  padding: 1.5em;
  padding-bottom: 2.5em;
}

body main #about #about-cards h2 {
  margin-top: 2em;
}

body main #services {
  background: url("../images/nature.svg");
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body main #services #services-heading h2 {
  width: 85%;
  margin: 0 auto;
  padding-top: 2em;
  text-align: end;
}

body main #services #services-container {
  background: rgba(0, 0, 0, 0.4);
  height: 60vh;
  max-height: 400px;
  max-width: 650px;
  width: 85%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}

body main #services #services-container .service-container:nth-child(1) {
  position: relative;
  margin-left: 2em;
}

body main #services #services-container .service-container:nth-child(1)::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  left: 1em;
  top: 0;
  background: #87ff93;
}

body main #services #services-container .service-container:nth-child(2) {
  position: relative;
  margin-top: 2em;
  margin-right: 2em;
}

body main #services #services-container .service-container:nth-child(2)::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  right: 1em;
  top: 0;
  background: #58d297;
}

body main #services #services-container .service-container:nth-child(2) li {
  text-align: end;
}

body main #services #services-container .service-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

body main #services #services-container .service-container ul li {
  width: 80%;
  margin: 0 auto;
  color: white;
  font-weight: bold;
  margin-bottom: 0.1em;
  font-size: 1rem;
}

@media screen and (min-width: 849px) {
  body main #services #services-container .service-container ul li {
    width: 90%;
  }
}

body main #contact {
  position: relative;
}

@media screen and (min-width: 1299px) {
  body main #contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

body main #contact #contact-form {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form {
    width: 60%;
  }
}

body main #contact #contact-form #landscape {
  position: absolute;
  bottom: -1.7em;
  max-width: 563px;
  left: 0;
  right: 0;
  margin: auto;
}

body main #contact #contact-form #contact-wrapper {
  width: 85%;
  margin: 0 auto;
}

body main #contact #contact-form #contact-wrapper h2 {
  padding-top: 2em;
}

body main #contact #contact-form #contact-wrapper h3 {
  margin-top: 2em;
  margin-left: 0.5em;
  margin-bottom: 3em;
}

body main #contact #contact-form form {
  display: -ms-grid;
  display: grid;
  width: 85%;
  margin: 0 auto;
  padding-bottom: 13em;
      grid-template-areas: none;
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form form {
    gap: 10px;
    font-size: 0.8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: (50%)[2];
        grid-template-columns: repeat(2, 50%);
    -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-template-areas: 'name email' 'date phone' 'services services' 'description description' 'submit submit';
  }
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form form #name {
    grid-area: name;
  }
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form form #email {
    grid-area: email;
  }
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form form #date {
    grid-area: date;
  }
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form form #phone {
    grid-area: phone;
  }
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form form #description-label {
    grid-area: description;
    width: 100%;
  }
}

body main #contact #contact-form form #submit-btn:hover {
  color: black;
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form form #submit-btn {
    grid-area: submit;
  }
}

body main #contact #contact-form form #services-checkboxes {
  padding-bottom: 2em;
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form form #services-checkboxes {
    grid-area: services;
  }
}

body main #contact #contact-form form label {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1em;
  width: 100%;
}

body main #contact #contact-form form label input,
body main #contact #contact-form form label textarea {
  margin-top: 0.5em;
  margin-bottom: 1em;
  height: 3em;
  border-radius: 5px;
  border: 1px solid #cdcdcd;
  padding: 1em;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}

body main #contact #contact-form form label textarea {
  height: 7em;
  resize: none;
}

body main #contact #contact-form form label input:focus,
body main #contact #contact-form form label textarea:focus {
  outline-color: #13aa86;
}

body main #contact #contact-form form #services-checkboxes label {
  cursor: pointer;
  height: 100%;
}

body main #contact #contact-form form #services-checkboxes ul {
  margin-top: 1em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media screen and (min-width: 849px) {
  body main #contact #contact-form form #services-checkboxes ul {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

body main #contact #contact-form form #services-checkboxes ul li.container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  border-radius: 5px;
  padding-left: 1em;
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 0.7rem;
  border: 1px solid #cdcdcd;
  height: 4em;
}

body main #contact #contact-form form #services-checkboxes ul li.container .checkbox {
  height: 15px;
  width: 15px;
  margin-bottom: 0;
}

body main #contact #contact-form form #services-checkboxes ul li.container input {
  margin-top: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

body main #contact #contact-form form #services-checkboxes ul li.container label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 0.75em;
  margin-left: 0.75em;
}

body main #contact #contact-form form .btn {
  font-weight: bold;
  font-size: 1.1rem;
}

body main #contact #contact-form #landscape {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-form #landscape {
    left: 35vw;
    bottom: -2.5em;
  }
}

body main #contact #contact-info {
  background: url("../images/contact.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 60vh;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (min-width: 1299px) {
  body main #contact #contact-info {
    height: 110vh;
    width: 40%;
  }
}

body main #contact #contact-info::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

body main #contact #contact-info nav {
  width: 85%;
  margin: 0 auto;
  z-index: 10;
}

body main #contact #contact-info nav ul li {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}

body main #contact #contact-info nav ul li img {
  width: 20px;
  height: 20px;
  margin-top: 0.7em;
  margin-right: 0.7em;
}

body main #contact #contact-info nav ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.75rem;
  color: #13aa86;
  font-weight: bold;
}

@media screen and (min-width: 374px) {
  body main #contact #contact-info nav ul li label {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 849px) {
  body main #contact #contact-info nav ul li label {
    font-size: 1rem;
  }
}

body main #contact #contact-info nav ul li label span {
  color: white;
  font-size: 0.8rem;
  font-weight: 400;
}

body main #contact #contact-info nav ul li label span a:hover {
  color: #87ff93;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 374px) {
  body main #contact #contact-info nav ul li label span {
    font-size: 1rem;
  }
}

@media screen and (min-width: 849px) {
  body main #contact #contact-info nav ul li label span {
    font-size: 1.25rem;
  }
}

body main #contact #contact-info nav ul li a {
  color: white;
}

body main #testimonials {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1.5em;
  background: #1e8066;
  position: relative;
  padding-top: 1px;
}

body main #testimonials h2 {
  margin-top: 2em;
  text-align: end;
  margin-right: 3em;
  color: white;
  position: relative;
  top: 1em;
}

body main #testimonials #customer-cards {
  display: -ms-grid;
  display: grid;
  margin: 0 auto;
  margin-top: 4em;
  width: 100%;
  gap: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 750px;
}

@media screen and (min-width: 849px) {
  body main #testimonials #customer-cards {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1299px) {
  body main #testimonials #customer-cards {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    max-width: 1260px;
  }
}

body main #testimonials #customer-cards .card {
  background: white;
  border-radius: 15px 15px 0px 0px;
  margin-bottom: 2em;
  position: relative;
  max-width: 300px;
}

body main #testimonials #customer-cards .card .card-wrapper {
  padding: 2em;
  height: 250px;
}

@media screen and (min-width: 1299px) {
  body main #testimonials #customer-cards .card .card-wrapper {
    padding: 3em;
    padding-top: 2em;
    height: 300px;
  }
}

body main #testimonials #customer-cards .card .card-wrapper .quote {
  font-size: 3rem;
  font-weight: bold;
  margin-left: 0;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body main #testimonials #customer-cards .card .card-wrapper p {
  margin-left: 5px;
}

@media screen and (min-width: 849px) {
  body main #testimonials #customer-cards .card .card-wrapper p {
    font-size: 0.9rem;
  }
}

body main #testimonials #customer-cards .card .card-bottom {
  width: 100%;
  height: 6em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body main #testimonials #customer-cards .card .card-bottom::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  background: url("../images/wave.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

body main #testimonials #customer-cards .card .card-bottom h4 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: white;
  margin-top: 0.5em;
}

body main #testimonials #customer-cards .card .card-bottom p {
  position: relative;
  z-index: 1;
}

body main #testimonials #customer-cards .card:nth-child(1) .card-bottom::after {
  -webkit-filter: invert(92%) sepia(96%) saturate(477%) hue-rotate(52deg) brightness(101%) contrast(106%);
          filter: invert(92%) sepia(96%) saturate(477%) hue-rotate(52deg) brightness(101%) contrast(106%);
}

body main #testimonials #customer-cards .card:nth-child(2) .card-bottom::after {
  -webkit-filter: invert(38%) sepia(77%) saturate(1968%) hue-rotate(141deg) brightness(102%) contrast(85%);
          filter: invert(38%) sepia(77%) saturate(1968%) hue-rotate(141deg) brightness(102%) contrast(85%);
}

body main #testimonials #customer-cards .card:nth-child(3) .card-bottom::after {
  -webkit-filter: invert(62%) sepia(48%) saturate(538%) hue-rotate(99deg) brightness(94%) contrast(92%);
          filter: invert(62%) sepia(48%) saturate(538%) hue-rotate(99deg) brightness(94%) contrast(92%);
}

body main #testimonials #customer-cards .card:nth-child(4) .card-bottom::after {
  -webkit-filter: invert(28%) sepia(61%) saturate(536%) hue-rotate(124deg) brightness(92%) contrast(100%);
          filter: invert(28%) sepia(61%) saturate(536%) hue-rotate(124deg) brightness(92%) contrast(100%);
}

body main #footer-wrapper {
  background: #352a25;
  color: white;
  height: 6em;
}

body main #footer-wrapper #footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

body main #footer-wrapper #footer p {
  font-size: 0.5rem;
}

body main #footer-wrapper #footer h4 {
  margin-bottom: 5px;
}

body main #footer-wrapper #footer .footer-right {
  margin-left: 0.5em;
  font-weight: bold;
}

body main #footer-wrapper #footer .footer-right p {
  padding-top: 5px;
  padding-bottom: 5px;
}

body main #footer-wrapper #footer .footer-right p:last-child {
  padding-top: 0;
}

body main #footer-wrapper #footer .footer-right p a {
  color: #87ff93;
}

body main #footer-wrapper #footer .footer-right p a:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/*# sourceMappingURL=styles.css.map */