@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&family=Montserrat:ital,wght@0,400;0,600;0,700&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;
  color: #3C3E5E;
}

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: #eb478c;
  font-style: inherit;
}

strong, .strong {
  color: #eb478c;
  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: #eb478c;
}

/* .blured-hilight {
	display: inline-block; position: relative;
	&:before {content: ""; width: 100%; height: .3em; background-color: $color1-500; position: absolute; bottom: var(--blured-translateY); filter: blur(8px); z-index: -1; border-radius: .5em;}
} */
.btn-main {
  background: #eb478c linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  border-radius: 2em;
  width: 100%;
  color: white;
  padding: 1.5em 0;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 0.9em;
}

header {
  padding-top: 2.5em;
  padding-bottom: 180px;
  background: url("assets/img/bg-header.webp") no-repeat center top/cover;
}
@media screen and (max-width: 750px) {
  header {
    background: url("assets/img/bg-header-mobile.webp") no-repeat center top/cover;
    padding-bottom: 580px;
  }
}
header #site-name {
  font-family: Oleo Script, sans-serif;
  font-size: 2.2rem;
  letter-spacing: -1px;
}
@media screen and (max-width: 750px) {
  header #site-name {
    text-align: center;
  }
}
header h1 {
  font-size: 4.3rem;
  font-family: Oleo Script, sans-serif;
  line-height: 1em;
  margin: 1.8em 0 0.9em;
  font-weight: normal;
}
@media screen and (max-width: 750px) {
  header h1 {
    font-size: 2.2rem;
    text-align: center;
    margin: 0.5em 0 1em;
  }
}
header .search-bar {
  border-radius: 0.5em;
  padding: 1.5em;
  background-color: white;
  max-width: 450px;
}
header .search-bar .search-bar-title {
  font-weight: bold;
  font-size: 1.1em;
  font-family: Montserrat;
}
header .search-bar select {
  width: 100%;
  border: none;
  padding: 1em;
  margin-top: 1.5em;
  font-weight: 600;
  font-family: Montserrat;
  border-radius: 0.25em;
  appearance: none;
  background: #fff1f8 url("data:image/svg+xml; utf8, <svg viewBox='0 0 15.05 7.963' xmlns='http://www.w3.org/2000/svg'><g transform='translate(-.3101 -.1628)'><path d='m14.62 0.9128-6.77 6.463-6.785-6.447' fill='none' stroke='rgb(235,71,140)' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' data-name='Tracé 5886'/></g></svg>") no-repeat 95% center/15px 15px;
}

.section-presentation {
  gap: 4em;
  margin-top: 2em;
  background: url("assets/img/bg-presentation.png") no-repeat center bottom/contain;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .section-presentation {
    padding: 1.5em 1.5em 5em;
  }
}
.section-presentation .side-img {
  flex: 0.8;
}
.section-presentation h3 {
  font-size: 3rem;
  font-weight: normal;
  font-family: Oleo Script, sans-serif;
}
@media screen and (max-width: 750px) {
  .section-presentation h3 {
    text-align: center;
    font-size: 2rem;
  }
}
.section-presentation p {
  font-size: 0.9rem;
  line-height: 1.6em;
  font-weight: 300;
}

.section-card {
  margin-top: 0;
  background-color: #fff8fb;
  padding-bottom: 4em;
}
@media screen and (max-width: 750px) {
  .section-card {
    padding-bottom: 2em;
  }
}
.section-card h2 {
  margin: 0 auto;
  max-width: 520px;
  font-size: 3rem;
  font-weight: normal;
  font-family: Oleo Script, sans-serif;
  line-height: 1.2em;
}
@media screen and (max-width: 750px) {
  .section-card h2 {
    padding: 0;
    font-size: 2.5em;
    text-align: center;
    background: none;
  }
}
.section-card .card-wrapper {
  margin-top: 5em;
  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);
    margin-top: 2em;
  }
}
.section-card .card {
  position: relative;
  display: block;
  aspect-ratio: 3/3.2;
}
.section-card .card .card-img-wrapper {
  aspect-ratio: 1.2/1;
  border-radius: 1rem;
  overflow: hidden;
}
.section-card .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.section-card .card h4 {
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  margin: 0;
  padding: 1em;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 0 15px 0 rgba(235, 71, 140, 0.2);
  color: #eb478c;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.2em;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .section-card .card h4 {
    font-size: 1rem;
  }
}
.section-card .card:hover img {
  transform: scale(1.02);
}
.section-card .card:hover h4 {
  background: #eb478c;
  color: white;
}
.section-card .soon .card-img-wrapper {
  background-color: #eb478c;
  color: white;
  font-family: Oleo Script, sans-serif;
  font-size: 3rem;
  text-align: center;
  padding: 0 1em;
  opacity: 0.5;
}
@media screen and (max-width: 750px) {
  .section-card .soon .card-img-wrapper {
    font-size: 1.8rem;
    padding-top: 1em;
  }
}

footer {
  text-align: center;
  padding-top: 2em;
  padding-bottom: 4em;
  font-size: 0.85rem;
  color: #777;
}
footer a {
  color: inherit;
}
@media screen and (max-width: 750px) {
  footer {
    padding-bottom: 2em;
  }
}

#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 */
