/* Reset box model */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Reset body defaults */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: sans-serif;
}

h1, h2, h3 {
  color: #6B7050;
  text-align: center;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.3rem;
}

p {
  max-width: 60ch;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #363828;
}
a:hover {
  text-decoration: underline;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

button, input, textarea {
  border: none;
  background: none;
}

.button {
  background-color: #6B7050;
  color: #F7F6EF;
  border-radius: 6px;
  padding: 8px 12px;
}
.button:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.button.single-button {
  margin-top: 64px;
  margin-bottom: 32px;
}

.inverted-background {
  color: white;
  background-color: #6B7050;
}
.inverted-background h1, .inverted-background h2 {
  color: white;
}
.inverted-background .button {
  background-color: #F7F6EF;
  color: #363828;
  border: thin solid #6B7050;
}

.social-sticky {
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 4px 4px 10px rgba(107, 112, 80, 0.5);
}
@media (min-width: 992px) {
  .social-sticky {
    display: flex;
  }
}
.social-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.social-sticky a:hover {
  background-color: #555;
  transform: scale(1.05);
}
.social-sticky a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-sticky a.facebook {
  border-bottom-right-radius: 6px;
  background-color: #1877F2;
}
.social-sticky a.facebook svg {
  margin-top: 6px;
}
.social-sticky a.whatsapp {
  border-top-right-radius: 6px;
  background-color: #25D366;
}
.social-sticky svg {
  width: 24px;
  height: 24px;
}

.sidebar {
  border: thin solid #6B7050;
  box-shadow: 1px 0 21px rgba(107, 112, 80, 0.5);
  position: fixed;
  left: -300px;
  top: 0;
  width: 250px;
  height: 100%;
  background: #F7F6EF;
  color: #3A3A3A;
  transition: left 0.3s ease;
  z-index: 20;
}
.sidebar.active {
  left: 0;
}
.sidebar #close-sidebar svg {
  float: right;
  margin-right: 10px;
  margin-top: 10px;
  width: 26px;
}
.sidebar nav {
  margin-top: 40vh;
  display: flex;
  flex-direction: column;
}
.sidebar nav a {
  border-bottom: thin solid #6B7050;
  text-align: center;
  text-decoration: none;
  padding: 12px;
}
.sidebar nav a:first-child {
  border-top: thin solid #6B7050;
}

.leaf {
  position: absolute;
  width: 24px;
  animation: fall 8s linear 1, pendulum 3s ease-in-out infinite;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

@keyframes fall {
  0% {
    top: -10%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}
@keyframes pendulum {
  0% {
    transform: translateX(-10px) rotate(-15deg);
  }
  50% {
    transform: translateX(10px) rotate(15deg);
  }
  100% {
    transform: translateX(-10px) rotate(-15deg);
  }
}
#overlay-cover {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#overlay-cover.active {
  display: block;
}

.glide {
  border-bottom: thin solid #6B7050;
}
.glide .glide__arrows {
  display: none;
}
@media (min-width: 992px) {
  .glide .glide__arrows {
    display: block;
  }
}
.glide .glide__arrows .glide__arrow {
  background-color: rgba(107, 112, 80, 0.7);
}
.glide img {
  width: 100%;
  height: 200px;
}
@media (min-width: 992px) {
  .glide img {
    height: 500px;
  }
}

header {
  background-color: #F7F6EF;
  border-bottom: 1px solid #6B7050;
  box-shadow: 0 4px 10px rgba(107, 112, 80, 0.3);
  padding: 10px 0;
  min-height: 64px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
header .container #hamburger-menu {
  width: 30px;
  height: 30px;
  color: #6B7050;
}
@media (min-width: 992px) {
  header .container #hamburger-menu {
    display: none;
  }
}
header .container #logo img {
  width: 120px;
  align-self: center;
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  header .container #logo img {
    position: static;
    transform: translateX(0);
  }
}
header .container .nav-lg {
  display: none;
}
@media (min-width: 992px) {
  header .container .nav-lg {
    display: flex;
    gap: 12px;
  }
}
header .container .nav-lg a:hover {
  text-decoration: underline;
}

#find-us {
  align-items: center;
  flex-flow: column;
}
#find-us .container {
  align-items: center;
  flex-flow: column;
}
#find-us .container h1 {
  margin-bottom: 32px;
}
#find-us .container .content {
  align-items: center;
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media (min-width: 992px) {
  #find-us .container .content {
    flex-direction: row;
    gap: 64px;
  }
}
#find-us .container .content .text-container h2 {
  font-size: 1.6rem;
  margin-bottom: 32px;
}
#find-us .container .content .text-container p {
  max-width: 40ch;
  text-align: justify;
}
#find-us .container .content .maps-container {
  border: thin solid #6B7050;
  border-radius: 10px;
}
@media (min-width: 992px) {
  #find-us .container .content .maps-container {
    width: 450px;
    height: 450px;
  }
}
#find-us .container .content .maps-container iframe {
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

footer {
  background-color: #6B7050;
  border-top: thin solid #363828;
  color: white;
  padding: 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
@media (min-width: 992px) {
  footer .container {
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
  }
}
footer h1 {
  color: white;
  text-align: left;
}
@media (min-width: 992px) {
  footer h1 {
    font-size: 1.5rem;
  }
}
footer ul {
  list-style: none;
  padding: 24px;
  margin: 0;
}
footer ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 16px;
  gap: 4px;
}
footer ul li a {
  color: white;
}
footer ul li svg {
  width: 24px;
  margin-right: 8px;
}

#services .card .title {
  margin-bottom: 0;
}
#services .card .description {
  height: 170px;
}

body {
  background-color: #F7F6EF;
  margin: 0;
}
body section .container {
  display: flex;
  padding: 0 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 992px) {
  body section .container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
body section .container h1 {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  body section .container h1 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
body section .container .content {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  gap: 64px;
  padding: 20px 0;
  align-items: baseline;
}
@media (min-width: 768px) {
  body section .container .content {
    flex-flow: row;
    flex-wrap: wrap;
    row-gap: 64px;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  body section .container .content {
    flex-flow: row;
    flex-wrap: wrap;
    row-gap: 128px;
    justify-content: space-around;
  }
}
body section .container .content article {
  display: flex;
  flex: 1 0 24%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  body section .container .content article {
    flex: 1 0 30%;
  }
}
@media (min-width: 992px) {
  body section .container .content article {
    max-width: 282px;
  }
}
body section .container .content article.card {
  border: thin solid #6B7050;
  border-radius: 20px;
  padding: 24px;
}
body section .container .content article .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #ccc;
}
@media (min-width: 992px) {
  body section .container .content article .image-container {
    width: 200px;
    height: 200px;
  }
}
body section .container .content article .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body section .container .content article .title {
  text-align: center;
}
@media (min-width: 992px) {
  body section .container .content article .title {
    display: flex;
    align-items: center;
    height: 64px;
  }
}
body section .container .content article p.description {
  height: 144px;
  max-width: 60ch;
  text-align: justify;
}
@media (min-width: 992px) {
  body section .container .content article p.description {
    height: 142px;
  }
}
body section .container .content article ul.description {
  text-align: center;
  list-style: disc;
  list-style-position: inside;
  width: 280px;
}
@media (min-width: 992px) {
  body section .container .content article ul.description {
    text-align: left;
    list-style-position: outside;
    height: 150px;
  }
}
body section .container .content article .button {
  margin-top: 24px;
}
body section.carousel .container {
  padding: 0;
}
@media (min-width: 992px) {
  body section.intro .container h1 {
    margin-bottom: 32px;
    margin-top: 32px;
  }
}
body section.intro .container .intro-text {
  max-width: 60ch;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 992px) {
  body section.intro .container .intro-text {
    margin-bottom: 64px;
  }
}
body section.intro .container h2 {
  margin-bottom: 32px;
}
body #services h1 {
  margin-bottom: 0;
}
body #services span {
  color: #6B7050;
  font-size: 1.3rem;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  body #services span {
    margin-bottom: 64px;
  }
}
body #services p {
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 70px;
}
body .copy-rights {
  background-color: #F7F6EF;
  color: #3A3A3A;
  text-align: center;
}
body .copy-rights p {
  max-width: none;
}
body #authorized p {
  text-align: justify;
}/*# sourceMappingURL=main.css.map */