@charset "UTF-8";
/*
Theme Name: my-little-big-theme-child
Theme URI: Theme URI: http://underscores.me/
Template: my-little-big-theme
Author: Underscores.me
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/*==============================
=            Mixins            =
==============================*/
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block;
}
.d-flex {
  display: flex;
}
@media (min-width: 768px) {
  .flex-desktop {
    display: flex;
  }
}
@media (min-width: 768px) {
  .flex-tablet {
    display: flex;
  }
}
.flex-mobile-tablet {
  display: flex;
}
@media (min-width: 768px) {
  .flex-mobile-tablet {
    display: block;
  }
}
.no-desktop {
  display: flex;
}
@media (min-width: 768px) {
  .no-desktop {
    display: none;
  }
}
.direction-row {
  flex-direction: row;
}
.direction-column {
  flex-direction: column;
}
@media (min-width: 1024px) {
  .row-tablet {
    flex-direction: row;
  }
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-self-center {
  align-self: center;
}
.justify-between {
  justify-content: space-between !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.shrink-0 {
  flex-shrink: 0;
}
.d-grid {
  display: grid;
}
@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-reset-mobile {
  grid-template-columns: auto;
}
.self-center {
  align-self: center;
}
.d-none {
  display: none !important;
}
.text-primary {
  color: #12263D !important;
}
.text-white {
  color: #FFFFFF !important;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.p-block {
  padding-block: 3.125rem;
}
@media (min-width: 768px) {
  .p-block {
    padding-block: 6.25rem;
  }
}
.m-block {
  margin-block: 3.125rem;
}
@media (min-width: 768px) {
  .m-block {
    margin-block: 6.25rem;
  }
}
.m-block-half {
  margin-block: 1.5625rem;
}
@media (min-width: 768px) {
  .m-block-half {
    margin-block: 3.125rem;
  }
}
.mb-block {
  margin-bottom: 3.125rem;
}
@media (min-width: 768px) {
  .mb-block {
    margin-bottom: 6.25rem;
  }
}
.p-0 {
  padding: 0;
}
.ml-auto {
  margin-left: auto;
}
.m-inline-auto {
  margin-inline: auto;
}
.m-0 {
  margin: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-10 {
  margin-bottom: 0.625em;
}
.mb-16 {
  margin-bottom: 1em;
}
.mb-40 {
  margin-bottom: 2.5rem;
}
.mt-0 {
  margin-top: 0em;
}
.gap-24 {
  gap: 1.5em;
}
.gap-40 {
  gap: 2.5em;
}
.gap-5percent {
  gap: 5%;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.opacity-half {
  opacity: 0.5;
}
.pos-relative {
  position: relative;
}
.pos-absolute {
  position: absolute;
}
.neg-z-index {
  z-index: -1;
}
.lh-1 {
  line-height: 1;
}
.text-uppercase {
  text-transform: uppercase;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.text-decoration-none {
  text-decoration: none;
}
.text-underline {
  text-decoration: underline;
}
.text-decoration-none-hover:hover {
  text-decoration: none;
}
.object-fit-cover {
  object-fit: cover;
}
.rounded {
  border-radius: 0.75rem;
}
.letter-spacing {
  letter-spacing: 0.125em;
}
.subtitle {
  font-size: 0.875em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .subtitle {
    font-size: 1em;
  }
}
.title-decoration {
  position: relative;
}
.title-decoration::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -30px;
  width: 338px;
  height: 51px;
  background: url("../my-little-big-theme-child/assets/img/title-decoration.svg") no-repeat center;
  background-size: contain;
  z-index: -1;
}
@media (min-width: 768px) {
  .title-decoration::after {
    left: -15px;
    bottom: -22px;
  }
}
.border {
  border: 1px solid;
}
.border-gray {
  border-color: rgba(174, 174, 174, 0.5);
}
.icon {
  width: 2.375em;
  height: 2.375em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FEFCFA;
  border-radius: 0.1875em;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
​ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden !important;
}
.post, .page {
  margin: 0;
}
body {
  color: #000000;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
  color: #12263D;
  line-height: 1.2;
  font-weight: 600;
}
h1 {
  font-size: 2em;
  margin-bottom: 1.875em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.75em;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.75em;
    margin-bottom: 2.5rem;
  }
}
h2 {
  font-size: 1.5625em;
  margin-bottom: 1.875em;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.1875em;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 3.125em;
    margin-bottom: 2.5rem;
  }
}
h3 {
  font-size: 1.125em;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.375em;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 1.75em;
    margin-bottom: 1.5em;
  }
}
p {
  font-size: 1em;
  line-height: 1.5;
}
@media (min-width: 768px) {
  p {
    font-size: 1.125em;
  }
}
.wrapper {
  max-width: 72rem;
  margin: 0 auto;
  padding-inline: 1rem;
}
.btn {
  padding: 0.875em 1.625em;
  border-radius: 35px;
  border: none;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
  font-weight: 500;
  font-size: 0.875em;
}
.btn-primary {
  background-image: linear-gradient(to right, #4BC3E4 0%, #FFA280 51%, #FFB4DB 100%);
  color: #FFFFFF;
  transition: 0.5s ease-out;
}
.btn-primary:hover {
  transform: scale(1.1);
  color: #FFFFFF;
  box-shadow: 0 0 30px rgba(255, 180, 219, 0.5);
}
.btn-primary:visited {
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .block_image_text .col-left {
    max-width: 52%;
    padding-block: 5em;
  }
}
@media (min-width: 1200px) {
  .block_image_text .col-left {
    max-width: 47%;
  }
}
.block_image_text .col-left-background {
  background-image: url("../my-little-big-theme-child/assets/img/arrow.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (min-width: 1024px) {
  .block_image_text .col-right {
    max-width: 40%;
  }
}
.block_image_text .col-right img {
  height: 18.75em;
  width: 100%;
}
@media (min-width: 1024px) {
  .block_image_text .col-right img {
    height: 100%;
  }
}
.block_colonnes .single-col {
  padding: 1.25em;
}
@media (min-width: 768px) {
  .block_colonnes .single-col {
    padding: 2em;
  }
}
.block_banniere {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  position: relative;
  min-height: 31.25em;
}
.block_banniere:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.block_banniere_image, .block_banniere_content {
  grid-row-start: 1;
  grid-column-start: 1;
}
