html {
  box-sizing: border-box;
  font-size: 18px;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "Fraunces", serif;
}

a, a:active, a:link {
  text-decoration: none;
}

body, p, ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "Barlow", sans-serif;
}

ol,
ul {
  list-style: none;
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .hide-toggle-menu {
    opacity: 0 !important;
  }
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none !important;
  }
}

.flex {
  display: flex;
}

.jc-sb {
  justify-content: space-between;
}

.jc-c {
  justify-content: center;
}

.ai-c {
  align-items: center;
}

.active {
  display: flex !important;
}

.disactive {
  display: none !important;
}

.hamburger-active {
  opacity: 0.6 !important;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}

body {
  min-height: 100vh;
  min-width: 100%;
  overflow-x: hidden;
  position: relative;
}
body .header-img {
  width: 100%;
}
body header {
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 0;
}
body header nav {
  padding-top: 8%;
  vertical-align: middle;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 40em) {
  body header nav {
    padding-top: 3%;
  }
}
body header nav .logo {
  width: 100%;
  margin-top: 0.5%;
}
body header nav .hamburger-menu {
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
body header nav .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header nav .menu li a {
  color: hsl(0deg, 0%, 100%);
  font-size: 0.9rem;
  margin-right: 2rem;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 64em) {
  body header nav .menu li a {
    padding-top: 3%;
  }
}
@media (min-width: 64em) {
  body header nav .menu li a:hover {
    color: hsl(212deg, 27%, 19%);
  }
}
body header nav .menu-btn {
  color: hsl(212deg, 27%, 19%);
  padding: 0.8rem 1.9rem;
  font-weight: 700;
  vertical-align: middle;
  font-size: 0.7rem;
  font-family: "Fraunces", serif;
  text-transform: uppercase;
  background-color: hsl(0deg, 0%, 100%);
  border-radius: 2rem;
  transition: all 0.3s ease-in-out;
}
body header nav .menu-btn:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.215);
}
body header .toggle-menu {
  transition: all 1s ease-in-out;
  position: relative;
  width: 90%;
  height: 40vh;
  padding: 3rem;
  z-index: 200;
  margin: 3rem auto;
  background-color: #fff;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body header .toggle-menu ul li {
  margin-bottom: 2rem;
  text-align: center;
}
body header .toggle-menu ul li a {
  color: hsl(210deg, 4%, 67%);
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
body header .toggle-menu ul li a:hover {
  color: hsl(212deg, 27%, 19%);
}
body header .toggle-menu .toggle-menu-btn {
  color: hsl(212deg, 27%, 19%);
  padding: 1.3rem 2.3rem;
  font-weight: 700;
  vertical-align: middle;
  font-size: 0.7rem;
  font-family: "Fraunces", serif;
  text-transform: uppercase;
  background-color: hsl(51deg, 100%, 49%);
  border-radius: 2rem;
  vertical-align: middle;
}
body header .toggle-menu::after {
  content: "";
  position: absolute;
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  border-width: 15px;
  border-style: solid;
  border-color: transparent #fff #fff transparent;
  display: block;
}
body .hero {
  display: flex;
  text-align: center;
  position: absolute;
  top: 2.7%;
  left: 50%;
  transform: translateX(-50%);
}
body .hero .hero__heading {
  font-size: 2.2rem;
  color: hsl(0deg, 0%, 100%);
  text-transform: uppercase;
}
body .hero .hero__heading span {
  font-size: 2.7rem;
}
@media (min-width: 40em) {
  body .hero .hero__heading span {
    font-size: 2.9rem;
  }
}
@media (min-width: 64em) {
  body .hero .hero__heading span {
    font-size: 3.5rem;
  }
}
@media (min-width: 87.5em) {
  body .hero .hero__heading span {
    font-size: 3.5rem;
  }
}
@media (min-width: 40em) {
  body .hero .hero__heading {
    font-size: 2.9rem;
    width: 30ch;
    letter-spacing: 5px;
  }
}
@media (min-width: 64em) {
  body .hero .hero__heading {
    font-size: 3.5rem;
    width: 30ch;
    letter-spacing: 5px;
  }
}
@media (min-width: 87.5em) {
  body .hero .hero__heading {
    font-size: 3.5rem;
    width: 30ch;
    letter-spacing: 5px;
  }
}
body .hero img {
  position: absolute;
  top: 132%;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 40em) {
  body .hero img {
    top: 261% !important;
  }
}
@media (min-width: 64em) {
  body .hero img {
    height: 65px;
    top: 280% !important;
  }
}
@media (min-width: 87.5em) {
  body .hero img {
    height: 99px;
    top: 288% !important;
  }
}
@media (min-width: 40em) {
  body .hero {
    top: 6%;
  }
}
@media (min-width: 64em) {
  body .hero {
    top: 5%;
  }
}
@media (min-width: 87.5em) {
  body .hero {
    top: 5%;
  }
}
body .feature {
  margin-top: -4px;
  display: flex;
  flex-direction: column;
}
body .feature__one {
  display: flex;
  flex-direction: column;
}
@media (min-width: 64em) {
  body .feature__one {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media (min-width: 40em) {
  body .feature__one__img {
    min-width: 50%;
  }
}
body .feature__one__img img {
  max-width: 100%;
}
@media (min-width: 40em) {
  body .feature__one__img img {
    min-width: 100%;
  }
}
@media (min-width: 64em) {
  body .feature__one__img img {
    min-width: 100%;
  }
}
@media (min-width: 87.5em) {
  body .feature__one__img img {
    max-width: 100%;
  }
}
body .feature__one__content {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 64em) {
  body .feature__one__content {
    padding-left: 4rem;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
@media (min-width: 87.5em) {
  body .feature__one__content {
    padding-left: 7rem;
    max-width: 50%;
  }
}
body .feature__one__content__heading {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1.3rem;
}
@media (min-width: 64em) {
  body .feature__one__content__heading {
    font-size: 1.5rem;
    width: 15ch;
    text-align: left;
  }
}
body .feature__one__content__body {
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  width: 32ch;
  display: inline-block;
  margin-bottom: 1.3rem;
  color: hsl(232deg, 10%, 55%);
}
@media (min-width: 64em) {
  body .feature__one__content__body {
    font-size: 0.8rem;
    text-align: left;
    line-height: 1.3;
    font-weight: 600;
    width: 44ch;
    margin-bottom: 1.3rem;
  }
}
body .feature__one__content__link {
  text-transform: uppercase;
  font-size: 1.1rem;
  position: relative;
  z-index: 10;
  color: hsl(212deg, 27%, 19%);
  font-family: "Fraunces", serif;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
body .feature__one__content__link::after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 112%;
  left: -8px;
  top: 16px;
  height: 10px;
  border-radius: 2rem;
  z-index: -1;
  background-color: rgba(250, 212, 0, 0.473);
  transition: transform 0.4s ease-in-out;
}
body .feature__one__content__link:hover::after {
  background-color: hsl(51deg, 100%, 49%);
}
body .feature__two {
  display: flex;
  flex-direction: column;
}
@media (min-width: 64em) {
  body .feature__two {
    display: flex;
    flex-direction: row;
    margin-top: -4px;
  }
}
@media (min-width: 64em) {
  body .feature__two__img {
    min-width: 50%;
  }
}
body .feature__two__img img {
  max-width: 100%;
}
@media (min-width: 40em) {
  body .feature__two__img img {
    min-width: 100%;
  }
}
body .feature__two__content {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 64em) {
  body .feature__two__content {
    padding-left: 4rem;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
@media (min-width: 87.5em) {
  body .feature__two__content {
    padding-left: 7rem;
  }
}
body .feature__two__content__heading {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1.3rem;
}
@media (min-width: 64em) {
  body .feature__two__content__heading {
    font-size: 1.5rem;
    width: 15ch;
    text-align: left;
  }
}
body .feature__two__content__body {
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  width: 32ch;
  display: inline-block;
  margin-bottom: 1.3rem;
  color: hsl(232deg, 10%, 55%);
}
@media (min-width: 64em) {
  body .feature__two__content__body {
    font-size: 0.8rem;
    text-align: left;
    line-height: 1.3;
    font-weight: 600;
    width: 44ch;
    margin-bottom: 1.3rem;
  }
}
body .feature__two__content__link {
  text-transform: uppercase;
  font-size: 1.1rem;
  position: relative;
  z-index: 10;
  color: hsl(212deg, 27%, 19%);
  font-family: "Fraunces", serif;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
body .feature__two__content__link::after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 112%;
  left: -8px;
  top: 16px;
  height: 10px;
  border-radius: 2rem;
  z-index: -1;
  background-color: hsla(7deg, 99%, 70%, 0.473);
  transition: transform 0.4s ease-in-out;
}
body .feature__two__content__link:hover::after {
  background-color: hsl(7deg, 99%, 70%);
}
body .showcase {
  display: flex;
  margin-top: -4px;
  flex-direction: column;
  position: relative;
}
@media (min-width: 64em) {
  body .showcase {
    display: flex;
    flex-direction: row;
  }
}
body .showcase__one {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 64em) {
  body .showcase__one {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
}
body .showcase__one img {
  max-width: 100%;
}
@media (min-width: 40em) {
  body .showcase__one img {
    min-width: 100%;
  }
}
body .showcase__one__heading {
  position: absolute;
  font-size: 1.7rem;
  top: 33%;
  left: 19%;
  color: hsl(167deg, 40%, 24%);
}
@media (min-width: 40em) {
  body .showcase__one__heading {
    left: 32%;
  }
}
@media (min-width: 64em) {
  body .showcase__one__heading {
    left: 15%;
    font-size: 1.4rem;
    top: 59%;
  }
}
@media (min-width: 87.5em) {
  body .showcase__one__heading {
    left: 17%;
    font-size: 1.4rem;
    top: 59%;
  }
}
body .showcase__one__body {
  position: absolute;
  top: 38%;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  width: 37ch;
  display: inline-block;
  margin-bottom: 1.3rem;
  color: hsl(213deg, 9%, 39%);
}
@media (min-width: 40em) {
  body .showcase__one__body {
    left: 9%;
    font-size: 1.4rem;
    top: 38%;
  }
}
@media (min-width: 64em) {
  body .showcase__one__body {
    left: 6%;
    font-size: 1rem;
    top: 72%;
  }
}
@media (min-width: 87.5em) {
  body .showcase__one__body {
    left: 11%;
    font-size: 1rem;
    top: 72%;
  }
}
body .showcase__two {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 64em) {
  body .showcase__two {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
}
body .showcase__two img {
  max-width: 100%;
}
@media (min-width: 40em) {
  body .showcase__two img {
    min-width: 100%;
  }
}
body .showcase__two__heading {
  position: absolute;
  font-size: 1.7rem;
  top: 83%;
  left: 23%;
  color: hsl(167deg, 40%, 24%);
}
@media (min-width: 40em) {
  body .showcase__two__heading {
    left: 35%;
  }
}
@media (min-width: 64em) {
  body .showcase__two__heading {
    left: 66%;
    font-size: 1.4rem;
    top: 59%;
  }
}
@media (min-width: 87.5em) {
  body .showcase__two__heading {
    left: 71%;
    font-size: 1.4rem;
    top: 59%;
  }
}
body .showcase__two__body {
  position: absolute;
  top: 88%;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  width: 37ch;
  display: inline-block;
  margin-bottom: 1.3rem;
  color: hsl(198deg, 62%, 26%);
}
@media (min-width: 40em) {
  body .showcase__two__body {
    left: 9%;
    font-size: 1.4rem;
    top: 87%;
  }
}
@media (min-width: 64em) {
  body .showcase__two__body {
    left: 56%;
    font-size: 1rem;
    top: 72%;
  }
}
@media (min-width: 87.5em) {
  body .showcase__two__body {
    left: 65%;
    font-size: 1rem;
    top: 72%;
  }
}
body .testimonials {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 64em) {
  body .testimonials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}
@media (min-width: 87.5em) {
  body .testimonials {
    gap: 10rem;
  }
}
body .testimonials__heading {
  font-size: 1rem;
  letter-spacing: 3px;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 2rem;
  margin-top: 2.6rem;
  text-transform: uppercase;
  color: hsl(210deg, 4%, 67%);
}
@media (min-width: 64em) {
  body .testimonials__heading {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 4rem;
  }
}
body .testimonials__one {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 64em) {
  body .testimonials__one {
    margin-top: 9rem;
  }
}
body .testimonials__one img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  body .testimonials__one img {
    width: 70px;
    height: 70px;
  }
}
body .testimonials__one__body {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
  width: 32ch;
  display: inline-block;
  margin-bottom: 1.3rem;
  color: hsl(232deg, 10%, 55%);
}
@media (min-width: 64em) {
  body .testimonials__one__body {
    font-size: 0.8rem;
    width: 30ch;
  }
}
body .testimonials__one__author {
  text-align: center;
  display: flex;
  margin-bottom: 4.3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .testimonials__one__author h3 {
  margin-bottom: 0.8rem;
}
body .testimonials__one__author p {
  color: rgba(129, 132, 152, 0.511);
  font-weight: 600;
  font-size: 0.9rem;
}
body .testimonials__two {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 64em) {
  body .testimonials__two {
    margin-top: 9rem;
    margin-left: 2rem;
  }
}
body .testimonials__two img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  body .testimonials__two img {
    width: 70px;
    height: 70px;
  }
}
body .testimonials__two__body {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
  width: 32ch;
  display: inline-block;
  margin-bottom: 1.3rem;
  color: hsl(232deg, 10%, 55%);
}
@media (min-width: 64em) {
  body .testimonials__two__body {
    font-size: 0.8rem;
    width: 34ch;
  }
}
body .testimonials__two__author {
  text-align: center;
  display: flex;
  margin-bottom: 4.3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .testimonials__two__author h3 {
  margin-bottom: 0.8rem;
}
body .testimonials__two__author p {
  color: rgba(129, 132, 152, 0.511);
  font-weight: 600;
  font-size: 0.9rem;
}
body .testimonials__three {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 64em) {
  body .testimonials__three {
    margin-top: 9rem;
    margin-left: 2rem;
  }
}
body .testimonials__three img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  body .testimonials__three img {
    width: 70px;
    height: 70px;
  }
}
body .testimonials__three__body {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
  width: 32ch;
  display: inline-block;
  margin-bottom: 1.3rem;
  color: hsl(232deg, 10%, 55%);
}
@media (min-width: 64em) {
  body .testimonials__three__body {
    font-size: 0.8rem;
    width: 30ch;
  }
}
body .testimonials__three__author {
  text-align: center;
  display: flex;
  margin-bottom: 4.3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .testimonials__three__author h3 {
  margin-bottom: 0.8rem;
}
body .testimonials__three__author p {
  color: rgba(129, 132, 152, 0.511);
  font-weight: 600;
  font-size: 0.9rem;
}
body .gallery {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 40em) {
  body .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 64em) {
  body .gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
body .gallery__grid img {
  height: 100%;
  width: 100%;
}
body .footer {
  background-color: rgb(157, 210, 197);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 40em) {
  body .footer {
    padding: 5rem;
  }
}
body .footer__logo img {
  width: 48vw;
  margin-bottom: 1.5rem;
}
@media (min-width: 40em) {
  body .footer__logo img {
    width: 20vw;
    margin-bottom: 1.2rem;
  }
}
@media (min-width: 64em) {
  body .footer__logo img {
    width: 20vw;
    margin-bottom: 1.7rem;
  }
}
@media (min-width: 87.5em) {
  body .footer__logo img {
    width: 15vw;
    margin-bottom: 1.7rem;
  }
}
body .footer__links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5rem;
}
@media (min-width: 40em) {
  body .footer__links {
    width: 50%;
    margin-bottom: 3rem;
  }
}
@media (min-width: 64em) {
  body .footer__links {
    width: 30%;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 87.5em) {
  body .footer__links {
    width: 30%;
    margin-bottom: 3rem;
  }
}
body .footer__links a {
  color: hsl(168deg, 34%, 41%);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 64em) {
  body .footer__links a:hover {
    color: #fff;
  }
}
body .footer__social__links {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 40em) {
  body .footer__social__links {
    width: 40%;
  }
}
@media (min-width: 64em) {
  body .footer__social__links {
    width: 20%;
  }
}
@media (min-width: 87.5em) {
  body .footer__social__links {
    width: 20%;
  }
}/*# sourceMappingURL=main.css.map */