@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;900&family=Open+Sans:wght@400;600;700&display=swap");
:root {
  --std-side-padding: 16vw;
}
@media screen and (max-width: 1200px) {
  :root {
    --std-side-padding: 5vw;
  }
}
@media screen and (max-width: 750px) {
  :root {
    --std-side-padding: 2em;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Open Sans, sans-serif;
}

div, nav, main, header, footer {
  box-sizing: border-box;
}

button {
  cursor: pointer;
  display: block;
  border: none;
  background: none;
  font-size: 1rem;
  font-family: Open Sans, sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img.fit-content-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p {
  margin: 0.5em 0;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

ul {
  margin: 0;
}

em {
  color: #0FA8B4;
  font-style: inherit;
}

strong, .strong {
  color: #0FA8B4;
  font-style: inherit;
  font-weight: bold;
}

.flex {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .flex {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .flex > *:not(:first-child) {
    margin-top: 1rem;
  }
}

.flex-align-center {
  align-items: center;
}

.flex-align-start {
  align-items: start;
}

.flex-justify-center {
  justify-content: center;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-space-around {
  justify-content: space-around;
}

.flex1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}
@media screen and (max-width: 750px) {
  .gap-3 > *:not(:first-child) {
    margin-top: 3rem;
  }
}

.grid {
  display: grid;
}
@media screen and (max-width: 750px) {
  .grid {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .grid > *:not(:first-child) {
    margin-top: 1rem;
  }
}
.grid_3fr {
  grid-template-columns: repeat(3, 1fr);
}
.grid_4fr {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1200px) {
  .grid_4fr {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid_1aside {
  grid-template-columns: 1fr 4fr;
  gap: 2em;
}
.grid.std-page {
  grid-template-columns: 1fr 3fr 1fr;
  gap: 3em;
}

.float-right {
  float: right;
  margin: 0 0 1em 1em;
}
@media screen and (max-width: 750px) {
  .float-right {
    float: none;
    margin: 1em auto;
    width: 100%;
  }
}

.mrtop-0 {
  margin-top: 0;
}

.mrtop-½ {
  margin-top: 0.5em;
}

.mrtop-1 {
  margin-top: 1em;
}

.mrtop-2 {
  margin-top: 2em;
}

.mrtop-3 {
  margin-top: 3em;
}

.mrbottom-2 {
  margin-bottom: 2em;
}

.text-align-center {
  text-align: center;
}

.text-align-justify {
  text-align: justify;
}

.text-align-right {
  text-align: right;
}

.text-small {
  font-size: 0.9em;
}

.text-large {
  font-size: 1.1em;
}

.text-xlarge {
  font-size: 1.5em;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: bold;
}

.block-centered {
  margin-left: auto;
  margin-right: auto;
}

.full-width {
  width: 100%;
}

.no-border {
  border: none;
}

.scroll-margin {
  scroll-margin-top: 10vh;
}

@media screen and (max-width: 750px) {
  .desktop {
    display: none !important;
  }
}

.phone {
  display: none;
}
@media screen and (max-width: 750px) {
  .phone {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .full-width-on-phone {
    width: 100% !important;
    box-sizing: border-box;
  }
}

.block-centered-on-phone {
  margin-right: auto !important;
  margin-left: auto !important;
}

@media screen and (max-width: 750px) {
  .flex.flex-on-phone {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .flex.flex-on-phone > * {
    margin-top: unset;
  }
}

input, textarea {
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
}

textarea {
  resize: none;
}

:root {
  font-size: 13px;
}

header, section, footer {
  padding-inline: var(--std-side-padding);
}

.text-color1 {
  color: #0FA8B4;
}

.blured-hilight {
  display: inline-block;
  position: relative;
}
.blured-hilight:before {
  content: "";
  width: 100%;
  height: 0.3em;
  background-color: #0FA8B4;
  position: absolute;
  bottom: var(--blured-translateY);
  filter: blur(8px);
  z-index: -1;
  border-radius: 0.5em;
}

.btn-main {
  background-color: #0FA8B4;
  border-radius: 0.25em;
  width: 100%;
  text-transform: uppercase;
  color: white;
  padding: 1em 0;
  font-family: Nunito, sans-serif;
  font-size: 0.9em;
}

header {
  padding-top: 2.5em;
  padding-bottom: 290px;
  background: url("assets/img/bg-header.webp") no-repeat center -20px/cover;
}
@media screen and (max-width: 750px) {
  header {
    background: url("assets/img/bg-header-mobile.webp") no-repeat center top/cover;
    padding-bottom: 380px;
  }
}
header #site-name {
  font-family: Nunito, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  header #site-name {
    text-align: center;
  }
}
header h1 {
  font-size: 4.5rem;
  font-family: Nunito, sans-serif;
  line-height: 0.9em;
  margin: 1.1em 0 0.9em;
  position: relative;
  z-index: 0;
  --blured-translateY: 0;
}
@media screen and (max-width: 750px) {
  header h1 {
    font-size: 3.2rem;
    text-align: center;
  }
}
header .search-bar {
  border: 1px solid #0FA8B4;
  border-radius: 0.5em;
  padding: 2em 2.5em 2.5em;
  background-color: white;
  max-width: 400px;
}
header .search-bar .search-bar-title {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
  font-family: Nunito, sans-serif;
}
header .search-bar select {
  width: 100%;
  border: 1px solid #0FA8B4;
  padding: 0.75em;
  margin-top: 1.5em;
  font-weight: bold;
  font-family: Nunito, sans-serif;
  border-radius: 0.25em;
  appearance: none;
  background: #ECF8F9 url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/></svg>") no-repeat 95% center/15px 15px;
}

.section-presentation {
  color: white;
  background-color: #0FA8B4;
  margin: -230px var(--std-side-padding) 0;
  padding: 4em;
  border-radius: 1em;
  gap: 4em;
}
@media screen and (max-width: 750px) {
  .section-presentation {
    margin: 0 var(--std-side-padding);
    padding: 1.5em;
  }
}
.section-presentation .side-img {
  flex: 1;
}
.section-presentation h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .section-presentation h3 {
    text-align: center;
    padding-inline: 1em;
    font-size: 1.35rem;
  }
}
.section-presentation p {
  font-size: 0.9rem;
  font-family: Nunito, sans-serif;
  line-height: 1.6em;
  font-weight: 300;
}
.section-presentation #btn-continue {
  margin: 0 auto;
  color: white;
  border: 1px solid white;
  border-radius: 0.5em;
  padding: 0.5em 1em;
  font-family: Nunito, sans-serif;
}
.section-presentation #btn-continue svg {
  fill: white;
  display: inline-block;
  width: 1em;
  margin-left: 0.5em;
  transform: translateY(0.25em);
  transition: all 0.3s;
}
.section-presentation #btn-continue.open svg {
  transform: rotate(-180deg);
}
.section-presentation .accordion-text {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.section-presentation .accordion-text.open {
  max-height: 500px;
  margin: 0.5em 0;
}

.section-card {
  margin-top: 5em;
}
@media screen and (max-width: 750px) {
  .section-card {
    margin-top: 2em;
  }
}
.section-card h2 {
  font-size: 3.5rem;
  font-family: Nunito, sans-serif;
  padding: 0 2em;
  line-height: 1.2em;
  --blured-translateY: 0.2em;
  background: url("assets/img/heart-01.png") no-repeat right center/50px 50px;
}
@media screen and (max-width: 750px) {
  .section-card h2 {
    padding: 0;
    font-size: 2.5em;
    text-align: center;
    background: none;
  }
}
.section-card .card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 750px) {
  .section-card .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-card .card {
  position: relative;
  display: block;
  aspect-ratio: 9/10;
}
.section-card .card .card-img-wrapper {
  position: absolute;
  inset: 0;
  border-radius: 1em;
  overflow: hidden;
}
.section-card .card .card-img-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6));
}
.section-card .card .card-img-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(24, 52, 24, 0.6666666667);
  transition: all 0.1s;
}
.section-card .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  object-position: var(--horizontal-align) center;
}
.section-card .card h4 {
  position: absolute;
  color: white;
  font-size: 1.5rem;
  width: 100%;
  margin: 0;
  text-align: center;
  bottom: 1em;
  font-family: Nunito, sans-serif;
  font-weight: 600;
}
.section-card .card h4::after {
  content: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z' style='fill: white'/></svg>");
  display: block;
  width: 50px;
  height: 0;
  margin: 0 auto;
  transition: all 0.1s;
  overflow: hidden;
}
.section-card .card:hover .card-img-wrapper::after {
  top: 0;
}
.section-card .card:hover h4::after {
  height: 50px;
  margin: 1em auto;
}
.section-card .soon {
  margin-top: 3em;
  padding: 0.75em 0;
  border: 3px solid #0FA8B4;
  border-radius: 0.5em;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  font-family: Nunito, sans-serif;
  background-color: #ECF8F9;
  box-shadow: 0 5px 15px 0 #D8F1F3;
}
@media screen and (max-width: 750px) {
  .section-card .soon {
    margin-top: 1em;
  }
}
@media screen and (max-width: 750px) {
  .section-card .soon img {
    margin: 0 auto 0.5em;
  }
}
.section-card .soon h4 {
  margin: 0;
}

footer {
  margin-top: 5em;
  border-top: 1px solid #aaa;
  text-align: center;
  padding-top: 2em;
  padding-bottom: 4em;
  font-weight: 600;
}
footer a {
  color: inherit;
}
@media screen and (max-width: 750px) {
  footer {
    margin-top: 3em;
    font-size: 0.85rem;
  }
}

#legal {
  position: fixed;
  inset: 3em;
  max-width: 600px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  #legal {
    max-height: 300px;
    overflow-y: scroll;
  }
}
#legal h4 {
  margin-top: 0.5em;
  border-bottom: 1px solid black;
  font-size: 1.5rem;
}

#btn-close-legal {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2rem;
  font-weight: bold;
}

/*# sourceMappingURL=styles.css.map */
