@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
::-webkit-scrollbar {
  background-color: #0fc443;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #0a7a2a;
  border-radius: 18px;
}

* {
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  resize: none;
  text-decoration: none;
  list-style: none;
  outline: none;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

img {
  display: flex;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  position: relative;
}

.container {
  width: 80%;
}

.left, .right, .swiper-slide {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .container {
    width: 83%;
  }
}
@media (min-width: 100rem) {
  .container {
    width: 60%;
  }
}
nav {
  width: 100%;
  height: 5.5rem;
  display: grid;
  position: fixed;
  z-index: 9999999999999;
  place-items: center;
  overflow: visible;
  transition: all 0.3s ease;
  background-color: transparent;
}
nav[data-active=true] {
  background: #0a7a2a;
}
nav[data-active=true] .container ul li a {
  color: #fff;
}
nav .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  height: 45px;
}
nav .container .nav_logo {
  width: fit-content;
  height: 60px;
}
nav .container ul {
  display: flex;
  flex-direction: row;
  gap: 0 3rem;
  width: 60%;
  align-items: center;
  justify-content: center;
}
nav .container ul li a {
  font-size: 13px;
  font-weight: 500;
  transition: all 0.5s cubic-bezier(0, 0.92, 0.55, 1);
  position: relative;
  color: #fff;
}
nav .container ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  left: 0;
  background-color: aliceblue;
  position: absolute;
  bottom: -5px;
  transition: all 0.8s cubic-bezier(0, 0.92, 0.55, 1);
}
nav .container ul li a::before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  right: 0;
  background-color: aliceblue;
  position: absolute;
  bottom: -5px;
  transition: all 0.8s cubic-bezier(0, 0.92, 0.55, 1);
}
nav .container ul li a:hover {
  font-weight: 600;
}
nav .container ul li a:hover::after {
  width: 50%;
}
nav .container ul li a:hover::before {
  width: 50%;
}
nav .container .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
nav .container .socials a img {
  width: fit-content;
  height: 20px;
  transition: all 0.3s cubic-bezier(0, 0.92, 0.55, 1);
}
nav .container .socials a img:hover {
  transform: translateY(-3px);
}
nav .container #navbtn {
  display: none;
}
nav .container #sidebar_nav {
  display: none;
}

@media (max-width: 768px) {
  nav {
    transition: all 0.3s ease;
    backdrop-filter: none;
  }
  nav[data-active=true] {
    border-radius: 0;
    backdrop-filter: none;
    background-color: transparent;
  }
  nav[data-active=true] .container {
    padding-top: 0rem;
    transition: all 0.3s ease;
    justify-content: end;
  }
  nav[data-active=true] .container .nav_logo {
    position: absolute;
    bottom: 120%;
  }
  nav[data-active=true] .container #navbtn {
    z-index: 998;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    border-radius: 50%;
    position: relative;
    transition: all 0.45s cubic-bezier(0, 0.92, 0.55, 1);
    background-color: #fff;
    cursor: pointer;
    position: relative;
    overflow: visible;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  }
  nav[data-active=true] .container #navbtn .line {
    width: 7px;
    height: 7px;
    z-index: 999;
    border-radius: 50%;
    background-color: #0fc443;
    transition: all 0.45s cubic-bezier(0, 0.92, 0.55, 1);
  }
  nav[data-active=true] .container #navbtn[data-active=true] {
    z-index: 999;
  }
  nav[data-active=true] .container #navbtn[data-active=true]::after {
    transform: scale(100);
  }
  nav[data-active=true] .container #navbtn[data-active=true] .line:nth-child(1) {
    border-radius: 18px;
    width: 22px;
    height: 5px;
    transform: translateY(6px) rotateZ(225deg);
  }
  nav[data-active=true] .container #navbtn[data-active=true] .line:nth-child(2) {
    transform: translateY(0.5px) rotateZ(405deg);
    display: none;
  }
  nav[data-active=true] .container #navbtn[data-active=true] .line:nth-child(3) {
    transform: translateY(-4px) rotateZ(-225deg);
    height: 5px;
    border-radius: 18px;
    width: 22px;
  }
  nav .container {
    transition: all 0.3s ease;
    justify-content: end;
    gap: 0 7rem;
  }
  nav .container .socials {
    display: none;
  }
  nav .container .nav_logo {
    transition: all 0.3s ease;
    width: fit-content;
    height: 29px;
  }
  nav .container ul {
    display: none;
    flex-direction: row;
    gap: 0 3rem;
  }
  nav .container ul li a {
    display: none;
  }
  nav .container #navbtn {
    z-index: 998;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    border-radius: 50%;
    position: relative;
    transition: all 0.5s cubic-bezier(0, 0.92, 0.55, 1);
    background-color: #0fc443;
    cursor: pointer;
    position: relative;
    overflow: visible;
  }
  nav .container #navbtn::after {
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    background-color: #fff;
    transition: all 0.5s ease-out;
    z-index: 998;
  }
  nav .container #navbtn .line {
    width: 7px;
    height: 9px;
    z-index: 999;
    border-radius: 50%;
    background-color: #0fc443;
    transition: all 0.45s cubic-bezier(0, 0.92, 0.55, 1);
  }
  nav .container #navbtn[data-active=true] {
    z-index: 999;
  }
  nav .container #navbtn[data-active=true]::after {
    transform: scale(100);
    background-color: #0a7a2a;
  }
  nav .container #navbtn[data-active=true] .line {
    background-color: #fff;
  }
  nav .container #navbtn[data-active=true] .line:nth-child(1) {
    border-radius: 18px;
    width: 90%;
    height: 5px;
    transform: translateY(6px) rotateZ(225deg);
  }
  nav .container #navbtn[data-active=true] .line:nth-child(2) {
    transform: translateY(0.5px) rotateZ(405deg);
    display: none;
  }
  nav .container #navbtn[data-active=true] .line:nth-child(3) {
    transform: translateY(-4px) rotateZ(-225deg);
    height: 5px;
    border-radius: 18px;
    width: 90%;
  }
  nav .container #sidebar_nav {
    position: fixed;
    top: 0%;
    bottom: 0;
    right: 0%;
    width: 100%;
    display: grid;
    place-items: center;
    visibility: hidden;
    z-index: 9999999;
  }
  nav .container #sidebar_nav ul {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: start;
    width: 100%;
    gap: 2.5rem;
  }
  nav .container #sidebar_nav ul li {
    width: 199px;
    text-align: start;
    position: relative;
    top: -90rem;
    right: -100%;
    transition: all 0.5s ease;
    transition-delay: 0;
    color: #fff;
  }
  nav .container #sidebar_nav ul li:nth-child(2) {
    transition-delay: 0;
  }
  nav .container #sidebar_nav ul li:nth-child(3) {
    transition-delay: 0;
  }
  nav .container #sidebar_nav ul li:nth-child(4) {
    transition-delay: 0;
  }
  nav .container #sidebar_nav ul li:nth-child(5) {
    transition-delay: 0;
  }
  nav .container #sidebar_nav ul li:nth-child(6) {
    transition-delay: 0;
  }
  nav .container #sidebar_nav ul li a {
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    display: block;
    z-index: 9999999;
  }
  nav .container #sidebar_nav[data-active=true] {
    right: 0;
    top: 10%;
    visibility: visible;
  }
  nav .container #sidebar_nav[data-active=true] ul li {
    transition: all 0 ease;
    top: 0;
    right: 0;
  }
  nav .container #sidebar_nav[data-active=true] ul li:nth-child(2) {
    transition-delay: 0.1s;
  }
  nav .container #sidebar_nav[data-active=true] ul li:nth-child(3) {
    transition-delay: 0.2s;
  }
  nav .container #sidebar_nav[data-active=true] ul li:nth-child(4) {
    transition-delay: 0.3s;
  }
  nav .container #sidebar_nav[data-active=true] ul li:nth-child(5) {
    transition-delay: 0.4s;
  }
  nav .container #sidebar_nav[data-active=true] ul li:nth-child(6) {
    transition-delay: 0.5s;
  }
}
header {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  place-items: end center;
}
@media screen and (max-width: 64rem) {
  header {
    background-image: url("../assets/images/home-mobile.jpg");
  }
}
header::after {
  content: "";
  opacity: 30%;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0fc443;
}
header .flutuante {
  display: block;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999999;
  width: fit-content;
  height: fit-content;
}
header .flutuante a img {
  width: 40px;
  height: 40px;
}
header .socials {
  display: none;
}
header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
  gap: 1rem;
  z-index: 999;
}
header .container h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  width: 35%;
  text-align: center;
}
header .container p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  width: 30%;
}
header .container a button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #0fc443;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 24px;
}
header .container a button:hover {
  transform: translateY(-3px);
  color: #fff;
  border: none;
  background-color: #0fc443;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 768px) {
  header {
    place-items: end center;
  }
  header::after {
    content: "";
    opacity: 30%;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0fc443;
  }
  header .flutuante {
    display: block;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 999999;
    width: fit-content;
    height: fit-content;
  }
  header .flutuante a img {
    width: 40px;
    height: 40px;
  }
  header .socials {
    display: none;
  }
  header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    gap: 1rem;
    z-index: 999;
  }
  header .container h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    width: 100%;
    text-align: center;
  }
  header .container p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 30%;
  }
  header .container a button {
    width: 138px;
    height: 36px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #0fc443;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
  }
  header .container a button:hover {
    transform: translateY(-3px);
    color: #fff;
    border: none;
    background-color: #0fc443;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}
#after-header {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
  background-color: #e9e9e9;
}
@media (max-width: 1024px) {
  #after-header {
    padding: 4.5rem 0;
  }
}
#after-header .container {
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: 1.5fr 1fr;
}
#after-header .container img {
  width: 100%;
  height: 460px;
}
#after-header .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#after-header .container .text h1 {
  color: #0a7a2a;
  font-size: 28px;
  font-weight: 600;
}
#after-header .container .text p {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 400;
  width: 80%;
}
#after-header .container .text a button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #0a7a2a;
  cursor: pointer;
  transition: all 0.3s ease;
}
#after-header .container .text a button:hover {
  transform: translateY(-3px);
  color: #0a7a2a;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1024px) {
  #after-header {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    padding: 0;
    background-color: #e9e9e9;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #after-header {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #after-header .container {
    width: 80%;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #after-header .container img {
    width: 100%;
    height: 360px;
  }
  #after-header .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
  }
  #after-header .container .text h1 {
    color: #0a7a2a;
    font-size: 28px;
    font-weight: 600;
  }
  #after-header .container .text p {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
  }
  #after-header .container .text a button {
    width: 138px;
    height: 36px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    background-color: #0a7a2a;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #after-header .container .text a button:hover {
    transform: translateY(-3px);
    color: #0a7a2a;
    border: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}
#banner {
  width: 100%;
  height: 324px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 64rem) {
  #banner {
    background-image: url("../assets/images/banner-mobile.jpg");
  }
}
#banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#banner .container .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 45%;
}
#banner .container .text h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
#banner .container .text p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
#banner .container .text a button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #0a7a2a;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
#banner .container .text a button:hover {
  transform: translateY(-3px);
  color: #fff;
  border: none;
  background-color: #0a7a2a;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#banner2 {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
  background-color: #e9e9e9;
}
@media (max-width: 1024px) {
  #banner2 {
    padding: 4.5rem 0;
  }
}
#banner2 .container {
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: 1.2fr 1fr;
  background-color: #0a7a2a;
}
#banner2 .container img {
  width: 100%;
  height: 460px;
}
#banner2 .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#banner2 .container .text h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}
#banner2 .container .text p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  width: 80%;
}
#banner2 .container .text a button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #0a7a2a;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  padding: 0 1rem;
}
#banner2 .container .text a button:hover {
  transform: translateY(-3px);
  color: #fff;
  border: none;
  background-color: #0a7a2a;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#banner3 {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  padding: 0;
  background-color: #e9e9e9;
}
@media (max-width: 1024px) {
  #banner3 {
    padding: 4.5rem 0;
  }
}
#banner3 .container {
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: 1.2fr 1fr;
  background-color: #0a7a2a;
}
#banner3 .container img {
  width: 100%;
  height: 460px;
}
#banner3 .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#banner3 .container .text h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}
#banner3 .container .text p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  width: 80%;
}
#banner3 .container .text a button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #0a7a2a;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  padding: 0 1rem;
}
#banner3 .container .text a button:hover {
  transform: translateY(-3px);
  color: #fff;
  border: none;
  background-color: #0a7a2a;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1024px) {
  #banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #banner .container .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
  }
  #banner .container .text h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
  }
  #banner .container .text p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }
  #banner .container .text a button {
    width: 138px;
    height: 36px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #0a7a2a;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #banner .container .text a button:hover {
    transform: translateY(-3px);
    color: #fff;
    border: none;
    background-color: #0a7a2a;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  #banner2 {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    padding: 0;
    background-color: #e9e9e9;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #banner2 {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #banner2 .container {
    width: 80%;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-radius: 12px;
    overflow: hidden;
  }
  #banner2 .container img {
    width: 100%;
    height: 360px;
    order: 1;
  }
  #banner2 .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    order: 2;
    padding: 1rem 2rem 3rem 2rem;
  }
  #banner2 .container .text h1 {
    font-size: 22px;
    font-weight: 600;
    text-align: start;
  }
  #banner2 .container .text p {
    font-size: 14px;
    font-weight: 400;
    width: 100%;
  }
  #banner2 .container .text a button {
    width: fit-content;
    padding: 0 1rem;
  }
  #banner3 {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    padding: 0;
    background-color: #e9e9e9;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #banner3 {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #banner3 .container {
    width: 80%;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-radius: 12px;
    overflow: hidden;
  }
  #banner3 .container img {
    width: 100%;
    height: 360px;
    order: 1;
  }
  #banner3 .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    order: 2;
    padding: 1rem 2rem 3rem 2rem;
  }
  #banner3 .container .text h1 {
    font-size: 22px;
    font-weight: 600;
    text-align: start;
  }
  #banner3 .container .text p {
    font-size: 14px;
    font-weight: 400;
    width: 100%;
  }
  #banner3 .container .text a button {
    width: fit-content;
    padding: 0 1rem;
  }
}
#modal_container {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  z-index: 9999999999;
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  visibility: hidden;
  transition: all 0.3s ease;
}
#modal_container[data-active=true] {
  visibility: visible;
  opacity: 1;
}
#modal_container[data-active=true] .modal {
  margin-top: 0;
}
#modal_container .modal {
  width: 60%;
  height: 55%;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1.5fr;
  background-color: #0a7a2a;
  position: relative;
  margin-top: 3rem;
  border-radius: 26px;
  transition: all 0.3s ease;
}
#modal_container .modal .text {
  padding: 0 15%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  justify-content: center;
}
#modal_container .modal .text h1 {
  color: #fff;
  font-size: 20px;
}
#modal_container .modal .text p {
  color: #fff;
}
#modal_container .modal img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  object-fit: cover;
  border-bottom-left-radius: 26px;
  border-top-left-radius: 26px;
}
#modal_container .modal #fechar {
  position: absolute;
  background-color: transparent;
  right: 25px;
  top: 15px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
#modal_container .modal #fechar img {
  width: 20px;
  height: 20px;
  z-index: 999999;
  object-fit: fill;
  display: flex;
}

@media (max-width: 1024px) {
  #modal_container .modal {
    width: 80%;
    height: fit-content;
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }
  #modal_container .modal img {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    object-fit: cover;
  }
  #modal_container .modal .text {
    padding: 2.5rem;
  }
}
#treatments {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e9e9e9;
}
@media (max-width: 1024px) {
  #treatments {
    padding: 4.5rem 0;
  }
}
#treatments .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  width: 80vw;
  gap: 1rem;
}
#treatments .container .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0;
}
#treatments .container .title h1 {
  font-size: 28px;
  color: #0a7a2a;
}
#treatments .container .title p {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  text-align: center;
  width: 60%;
}
#treatments .container .arrow {
  width: 80vw;
  overflow: visible;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0 2rem;
  padding-top: 2.8rem;
  padding-bottom: 1rem;
  z-index: 999;
  cursor: pointer;
}
#treatments .container .arrow img {
  width: 30px;
  height: fit-content;
}
#treatments .container .arrow .arrow-left {
  transform: rotate(180deg);
}
#treatments .container .swiper__treatments {
  width: 80vw;
  background-color: transparent;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment {
  background-color: #fff;
  width: 100%;
  height: 268px;
  box-shadow: 0px 12px 6px rgba(101, 101, 101, 0.1019607843);
  display: flex;
  padding: 0 1rem;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: start;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
  gap: 1rem 0;
  z-index: 999999;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment h1 {
  font-size: 20px;
  color: #0a7a2a;
  transition: all 0.3s ease;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment p {
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  line-height: 1.7;
  transition: all 0.3s ease;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment .more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment .more h3 {
  color: #0a7a2a;
  right: 25px;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
  justify-self: center;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment:hover {
  background-color: #0fc443;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment:hover h1 {
  color: #fff;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment:hover p {
  color: #fff;
}
#treatments .container .swiper__treatments .swiper-wrapper .treatment:hover .more h3 {
  color: #fff;
}
#treatments .container .swiper__treatments .swiper-button-prev {
  left: auto;
  right: 70px;
}
#treatments .container .swiper__treatments .swiper-button-prev img {
  transform: rotate(180deg);
}
#treatments .container .swiper__treatments .swiper-pagination {
  display: none;
}

@media (max-width: 1024px) {
  #treatments {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #e9e9e9;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #treatments {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #treatments .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    width: 80vw;
    gap: 2rem;
  }
  #treatments .container .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0;
    order: 1;
  }
  #treatments .container .title h1 {
    font-size: 24px;
    color: #0a7a2a;
    text-align: center;
  }
  #treatments .container .title p {
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    color: #636363;
    text-align: center;
    width: 100%;
  }
  #treatments .container .arrow {
    width: 80vw;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2rem;
    padding-top: 2.8rem;
    padding-bottom: 1rem;
    z-index: 999;
    order: 3;
    cursor: pointer;
  }
  #treatments .container .arrow img {
    width: 30px;
    height: fit-content;
  }
  #treatments .container .arrow .arrow-left {
    transform: rotate(180deg);
  }
  #treatments .container .swiper__treatments {
    width: 70vw;
    background-color: transparent;
    order: 2;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment {
    background-color: #fff;
    width: 100%;
    height: 268px;
    box-shadow: 0px 12px 6px rgba(101, 101, 101, 0.1019607843);
    display: flex;
    padding: 0 2rem;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: start;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    gap: 1rem 0;
    z-index: 999999;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment h1 {
    font-size: 20px;
    color: #0a7a2a;
    transition: all 0.3s ease;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment p {
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    line-height: 1.7;
    transition: all 0.3s ease;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment .more {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0;
    margin: 0;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment .more h3 {
    color: #0a7a2a;
    right: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    justify-self: center;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment:hover {
    background-color: #0fc443;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment:hover h1 {
    color: #fff;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment:hover p {
    color: #fff;
  }
  #treatments .container .swiper__treatments .swiper-wrapper .treatment:hover .more h3 {
    color: #fff;
  }
  #treatments .container .swiper__treatments .swiper-button-prev {
    left: auto;
    right: 70px;
  }
  #treatments .container .swiper__treatments .swiper-button-prev img {
    transform: rotate(180deg);
  }
  #treatments .container .swiper__treatments .swiper-pagination {
    display: none;
  }
}
#depoiments {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e9e9e9;
}
@media (max-width: 1024px) {
  #depoiments {
    padding: 4.5rem 0;
  }
}
#depoiments .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  width: 80vw;
  gap: 3rem;
}
#depoiments .container .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0;
  margin-top: 3rem;
}
#depoiments .container .title h1 {
  font-size: 28px;
  color: #0a7a2a;
}
#depoiments .container .title p {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  text-align: center;
  width: 60%;
}
#depoiments .container .arrow {
  width: 80vw;
  overflow: visible;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0 2rem;
  z-index: 999;
  cursor: pointer;
}
#depoiments .container .arrow img {
  width: 30px;
  height: fit-content;
}
#depoiments .container .arrow .arrow-left {
  transform: rotate(180deg);
}
#depoiments .container .swiper__depoiments {
  width: 80vw;
  background-color: transparent;
  overflow: hidden;
}
#depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide {
  background-color: #fff;
  width: 100%;
  height: 268px;
  box-shadow: 0px 12px 6px rgba(101, 101, 101, 0.1019607843);
  display: flex;
  padding: 0 3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  gap: 1rem 0;
  cursor: default;
  z-index: 999999;
}
#depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide h1 {
  font-size: 20px;
  color: #9a9a9a;
  transition: all 0.3s ease;
}
#depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide p {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  line-height: 1.7;
  transition: all 0.3s ease;
}
#depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide .more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}
#depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide .more h3 {
  color: #0a7a2a;
  right: 25px;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
  justify-self: center;
}
#depoiments .container .swiper__depoiments .swiper-button-prev {
  left: auto;
  right: 70px;
}
#depoiments .container .swiper__depoiments .swiper-button-prev img {
  transform: rotate(180deg);
}
#depoiments .container .swiper__depoiments .swiper-pagination {
  display: none;
}
#depoiments .container .button a button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #0a7a2a;
  cursor: pointer;
  transition: all 0.3s ease;
}
#depoiments .container .button a button:hover {
  transform: translateY(-3px);
  color: #0a7a2a;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1024px) {
  #depoiments {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #e9e9e9;
    padding: 0 !important;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #depoiments {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #depoiments .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    width: 80vw;
    gap: 2rem;
  }
  #depoiments .container .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0;
    order: 1;
  }
  #depoiments .container .title h1 {
    font-size: 24px;
    color: #0a7a2a;
    text-align: center;
  }
  #depoiments .container .title p {
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    color: #636363;
    text-align: center;
    width: 100%;
  }
  #depoiments .container .arrow {
    width: 80vw;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2rem;
    padding-top: 2.8rem;
    padding-bottom: 1rem;
    z-index: 999;
    order: 3;
    cursor: pointer;
  }
  #depoiments .container .arrow img {
    width: 30px;
    height: fit-content;
  }
  #depoiments .container .arrow .arrow-left {
    transform: rotate(180deg);
  }
  #depoiments .container .swiper__depoiments {
    width: 70vw;
    background-color: transparent;
    order: 2;
  }
  #depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide {
    background-color: #fff;
    width: 100%;
    height: 268px;
    box-shadow: 0px 12px 6px rgba(101, 101, 101, 0.1019607843);
    display: flex;
    padding: 0 2rem;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: start;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    gap: 1rem 0;
    z-index: 999999;
  }
  #depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide h1 {
    font-size: 20px;
    color: #0a7a2a;
    transition: all 0.3s ease;
  }
  #depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide p {
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    line-height: 1.7;
    transition: all 0.3s ease;
  }
  #depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide .more {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0;
    margin: 0;
  }
  #depoiments .container .swiper__depoiments .swiper-wrapper .swiper-slide .more h3 {
    color: #0a7a2a;
    right: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    justify-self: center;
  }
  #depoiments .container .swiper__depoiments .swiper-button-prev {
    left: auto;
    right: 70px;
  }
  #depoiments .container .swiper__depoiments .swiper-button-prev img {
    transform: rotate(180deg);
  }
  #depoiments .container .swiper__depoiments .swiper-pagination {
    display: none;
  }
}
#doctors {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e9e9e9;
}
@media (max-width: 1024px) {
  #doctors {
    padding: 4.5rem 0;
  }
}
#doctors.support {
  padding-bottom: 0;
}
#doctors .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  width: 80vw;
  gap: 3rem;
}
#doctors .container .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0;
  margin-top: 3rem;
}
#doctors .container .title h1 {
  font-size: 28px;
  color: #0a7a2a;
}
#doctors .container .title p {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  text-align: center;
  width: 60%;
}
#doctors .container .arrow {
  width: 80vw;
  overflow: visible;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0 2rem;
  z-index: 999;
  cursor: pointer;
}
#doctors .container .arrow img {
  width: 30px;
  height: fit-content;
}
#doctors .container .arrow .arrow-left {
  transform: rotate(180deg);
}
#doctors .container .swiper__doctors {
  width: 80vw;
  background-color: transparent;
  overflow: hidden;
}
#doctors .container .swiper__doctors .swiper-wrapper .swiper-slide {
  background-color: #fff;
  width: 100%;
  height: 268px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
  cursor: default;
  gap: 1rem 0;
  z-index: 999999;
  position: relative;
}
#doctors .container .swiper__doctors .swiper-wrapper .swiper-slide:hover .content {
  bottom: 0;
}
#doctors .container .swiper__doctors .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#doctors .container .swiper__doctors .swiper-wrapper .swiper-slide .content {
  width: 100%;
  height: 100px;
  background-color: #0a7a2a;
  position: absolute;
  bottom: -100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.5s ease;
}
#doctors .container .swiper__doctors .swiper-wrapper .swiper-slide .content h1 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
#doctors .container .swiper__doctors .swiper-wrapper .swiper-slide .content p {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  max-width: 80%;
}
#doctors .container .swiper__doctors .swiper-button-prev {
  left: auto;
  right: 70px;
}
#doctors .container .swiper__doctors .swiper-button-prev img {
  transform: rotate(180deg);
}
#doctors .container .swiper__doctors .swiper-pagination {
  display: none;
}
#doctors .container .button a button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #0a7a2a;
  cursor: pointer;
  transition: all 0.3s ease;
}
#doctors .container .button a button:hover {
  transform: translateY(-3px);
  color: #0a7a2a;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1024px) {
  #doctors {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #e9e9e9;
    padding-top: 0 !important;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #doctors {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #doctors .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    width: 80vw;
    gap: 2rem;
  }
  #doctors .container .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0;
    order: 1;
  }
  #doctors .container .title h1 {
    font-size: 24px;
    color: #0a7a2a;
    text-align: center;
  }
  #doctors .container .title p {
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    color: #636363;
    text-align: center;
    width: 100%;
  }
  #doctors .container .arrow {
    width: 80vw;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2rem;
    padding-top: 2.8rem;
    padding-bottom: 1rem;
    z-index: 999;
    order: 3;
    cursor: pointer;
  }
  #doctors .container .arrow img {
    width: 30px;
    height: fit-content;
  }
  #doctors .container .arrow .arrow-left {
    transform: rotate(180deg);
  }
  #doctors .container .swiper__doctors {
    width: 80vw;
    background-color: transparent;
    overflow: hidden;
    order: 2;
  }
  #doctors .container .swiper__doctors .swiper-wrapper .swiper-slide {
    background-color: #fff;
    width: 100%;
    height: 327px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    cursor: default;
    gap: 1rem 0;
    z-index: 999999;
    position: relative;
  }
  #doctors .container .swiper__doctors .swiper-wrapper .swiper-slide:hover .content {
    bottom: 0;
  }
  #doctors .container .swiper__doctors .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
  }
  #doctors .container .swiper__doctors .swiper-wrapper .swiper-slide .content {
    width: 100%;
    height: 100px;
    background-color: #0a7a2a;
    position: absolute;
    bottom: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.5s ease;
  }
  #doctors .container .swiper__doctors .swiper-wrapper .swiper-slide .content h1 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }
  #doctors .container .swiper__doctors .swiper-wrapper .swiper-slide .content p {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    max-width: 80%;
  }
  #doctors .container .swiper__doctors .swiper-button-prev {
    left: auto;
    right: 70px;
  }
  #doctors .container .swiper__doctors .swiper-button-prev img {
    transform: rotate(180deg);
  }
  #doctors .container .swiper__doctors .swiper-pagination {
    display: none;
  }
}
#instagram {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #0a7a2a;
}
@media (max-width: 1024px) {
  #instagram {
    padding: 4.5rem 0;
  }
}
#instagram .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#instagram .container .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}
#instagram .container .title h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
#instagram .container .title h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}
#instagram .container .insta {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  gap: 2rem;
}
#instagram .container .insta .post {
  width: 100%;
  height: 257px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
}
#instagram .container .insta .post img {
  width: 90%;
  height: 208px;
}
#instagram .container .insta .post .icons {
  width: 90%;
  height: fit-content;
  overflow: visible;
}
#instagram .container .insta .post .icons img {
  width: 100%;
  height: 100%;
}
#instagram .container .button a button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #0fc443;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
#instagram .container .button a button:hover {
  transform: translateY(-3px);
  color: #fff;
  border: none;
  background-color: #0fc443;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1024px) {
  #instagram {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #0a7a2a;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #instagram {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #instagram .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 90%;
  }
  #instagram .container .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }
  #instagram .container .title h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
  }
  #instagram .container .title h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
  }
  #instagram .container .insta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 2rem;
  }
  #instagram .container .insta .post {
    width: 100%;
    height: 201px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }
  #instagram .container .insta .post img {
    width: 149px;
    height: 164px;
  }
  #instagram .container .button a button {
    width: 138px;
    height: 36px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #0fc443;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #instagram .container .button a button:hover {
    transform: translateY(-3px);
    color: #fff;
    border: none;
    background-color: #0fc443;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}
#contact {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #e9e9e9;
}
@media (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
}
#contact .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}
#contact .container .form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}
#contact .container .form-wrapper .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#contact .container .form-wrapper .text h1 {
  color: #0fc443;
  font-size: 32px;
}
#contact .container .form-wrapper .text p {
  width: 80%;
  color: #9a9a9a;
  font-size: 16px;
}
#contact .container .form-wrapper form {
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: center;
  width: 80%;
  gap: 1rem;
}
#contact .container .form-wrapper form input, #contact .container .form-wrapper form textarea, #contact .container .form-wrapper form select, #contact .container .form-wrapper form option {
  cursor: pointer;
}
#contact .container .form-wrapper form input {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border-radius: 6px;
  padding-bottom: 0rem;
  padding-left: 0.95rem;
  color: #0fc443;
}
#contact .container .form-wrapper form input::placeholder {
  font-size: 0.75rem;
  color: #0fc443;
}
#contact .container .form-wrapper form select {
  width: 100%;
  height: 40px;
  background: #fff;
  border-radius: 6px;
  padding-bottom: 0rem;
  padding-left: 0.95rem;
  color: #0fc443;
}
#contact .container .form-wrapper form select option {
  color: #0fc443;
}
#contact .container .form-wrapper form textarea {
  width: 100%;
  height: 40px;
  background: #fff;
  border-radius: 6px;
  padding-top: 0.55rem;
  padding-left: 0.95rem;
  color: #0fc443;
}
#contact .container .form-wrapper form textarea::placeholder {
  font-size: 0.75rem;
  color: #0fc443;
}
#contact .container .form-wrapper form button {
  width: 138px;
  height: 36px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #0a7a2a;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 8.125rem;
  height: 2.125rem;
}
#contact .container .form-wrapper form button:hover {
  transform: translateY(-3px);
  color: #0a7a2a;
  border: none;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#contact .container .form-wrapper form button:hover {
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.0705882353);
}
#contact .container .all {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
}
#contact .container .all .address {
  transition: all 0.5s ease;
}
#contact .container .all .address a {
  color: #636363;
}
#contact .container .all .address a strong {
  padding-right: 0.2rem;
  color: #0a7a2a;
}
#contact .container .all .address:hover {
  transform: scale(0.98);
}
#contact .container .all .phone {
  transition: all 0.5s ease;
}
#contact .container .all .phone a {
  color: #636363;
}
#contact .container .all .phone a strong {
  padding-right: 0.2rem;
  color: #0a7a2a;
}
#contact .container .all .phone:hover {
  transform: scale(0.98);
}
#contact .container .all .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#contact .container .all .socials a {
  transition: all 0.5s ease;
}
#contact .container .all .socials a img {
  width: 50px;
  height: 50px;
}
#contact .container .all .socials a:hover {
  transform: scale(0.93);
}

@media (max-width: 768px) {
  #contact {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #e9e9e9;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  #contact {
    padding: 4.5rem 0;
  }
}
@media (max-width: 768px) {
  #contact .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #contact .container .form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 2rem;
  }
  #contact .container .form-wrapper .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
  }
  #contact .container .form-wrapper .text h1 {
    color: #0fc443;
    font-size: 32px;
  }
  #contact .container .form-wrapper .text p {
    width: 100%;
    color: #9a9a9a;
    font-size: 16px;
  }
  #contact .container .form-wrapper form {
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 1rem;
  }
  #contact .container .form-wrapper form input {
    width: 100%;
    height: 40px;
    background-color: #fff;
    border-radius: 6px;
    padding-bottom: 0rem;
    padding-left: 0.95rem;
    color: #0fc443;
  }
  #contact .container .form-wrapper form input::placeholder {
    font-size: 0.75rem;
    color: #0fc443;
  }
  #contact .container .form-wrapper form select {
    width: 100%;
    height: 40px;
    background: #fff;
    border-radius: 6px;
    padding-bottom: 0rem;
    padding-left: 0.95rem;
    color: #0fc443;
  }
  #contact .container .form-wrapper form select option {
    color: #0fc443;
  }
  #contact .container .form-wrapper form textarea {
    width: 100%;
    height: 40px;
    background: #fff;
    border-radius: 6px;
    padding-top: 0.55rem;
    padding-left: 0.95rem;
    color: #0fc443;
  }
  #contact .container .form-wrapper form textarea::placeholder {
    font-size: 0.75rem;
    color: #0fc443;
  }
  #contact .container .form-wrapper form button {
    width: 138px;
    height: 36px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    background-color: #0a7a2a;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 8.125rem;
    height: 2.125rem;
  }
  #contact .container .form-wrapper form button:hover {
    transform: translateY(-3px);
    color: #0a7a2a;
    border: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  #contact .container .form-wrapper form button:hover {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.0705882353);
  }
  #contact .container .all {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  #contact .container .all .address a {
    color: #636363;
  }
  #contact .container .all .address a strong {
    padding-right: 0.2rem;
    color: #0a7a2a;
  }
  #contact .container .all .phone a {
    color: #636363;
  }
  #contact .container .all .phone a strong {
    padding-right: 0.2rem;
    color: #0a7a2a;
  }
  #contact .container .all .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  #contact .container .all .socials a img {
    width: 50px;
    height: 50px;
  }
}
#about {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  #about {
    padding: 4.5rem 0;
  }
}
#about .flutuante {
  display: block;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999999;
  width: fit-content;
  height: fit-content;
}
#about .flutuante a img {
  width: 40px;
  height: 40px;
}
#about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#about .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#about .container .text .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
#about .container .text .title h2 {
  color: #0a7a2a;
  font-size: 20px;
  font-weight: 600;
}
#about .container .text .title h1 {
  color: #0a7a2a;
  font-size: 28px;
  font-weight: 600;
}
#about .container .text p {
  color: #636363;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
#about .container .images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  gap: 1rem;
}
#about .container .images img {
  width: 100%;
  height: 100%;
}
#about .container .socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#about .container .socials h5 {
  color: #0a7a2a;
  font-size: 20px;
  font-weight: 500;
}
#about .container .socials .all {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#about .container .socials .all a img {
  width: 34px;
  height: fit-content;
}

@media (max-width: 1024px) {
  #about {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    padding-top: 8rem !important;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #about {
    padding: 4.5rem 0;
  }
}
@media (max-width: 1024px) {
  #about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
  #about .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  #about .container .text .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
  }
  #about .container .text .title h2 {
    color: #0a7a2a;
    font-size: 20px;
    font-weight: 600;
  }
  #about .container .text .title h1 {
    color: #0a7a2a;
    font-size: 28px;
    font-weight: 600;
  }
  #about .container .text p {
    color: #636363;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }
  #about .container .images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 1rem;
  }
  #about .container .images img {
    width: 100%;
    height: 150px;
  }
  #about .container .socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  #about .container .socials h5 {
    color: #0a7a2a;
    font-size: 20px;
    font-weight: 500;
  }
  #about .container .socials .all {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  #about .container .socials .all a img {
    width: 34px;
    height: fit-content;
  }
}/*# sourceMappingURL=style.css.map */