/*!******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/scss/index.scss ***!
  \******************************************************************************************************************************************/
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Non colors */
/* Colors */
/* Font color */
/* Font family */
/* Font sizes */
/* Font weights */
/* Borders */
/* Spacing */
/* Dimensions */
/* Shadows */
/* Animation */
/* Responsive
------------------------------------------------- */
/* Mobile first breakpoints based on Bootstrap 5 */
/* Mixins
------------------------------------------------- */
/* Animations
------------------------------------------------- */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Global
------------------------------------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 54%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: #010A26;
  font-size: 2rem;
  font-family: ui-serif, serif;
  line-height: 1.5;
  background-color: #FFFFFF;
}

.container-fluid {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.content {
  flex-grow: 1;
  width: calc(100% - 1.5rem);
  height: 100%;
  margin: 3rem 0.75rem 3rem 0.75rem;
}

.no-scroll {
  overflow: hidden;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 576px) {
  html {
    font-size: 56%;
  }
  .content {
    width: calc(100% - 6rem);
    margin: 3rem;
  }
}
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 768px) {
  html {
    font-size: 58%;
  }
}
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 992px) {
  html {
    font-size: 60%;
  }
  .content {
    width: 83.3333333333%;
    margin: 7.5rem 8.3333333333% 15rem 8.3333333333%;
  }
}
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Typography
------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0.25em 0 0.5em 0;
  color: #011640;
  font-weight: 400;
  font-family: ui-serif, serif;
}

h1,
.h1 {
  font-size: 4.5rem;
}

h2,
.h2 {
  font-size: 3.375rem;
}

h3,
.h3 {
  font-size: 2.625rem;
}

h4,
.h4 {
  font-size: 2.25rem;
}

h5,
.h5 {
  font-size: 2.5rem;
}

h6,
.h6 {
  font-weight: 300;
  font-size: 2rem;
}

p {
  margin: 3rem 0;
}

code,
mark,
kbd,
.highlight {
  display: inline-block;
  padding: 0em 0.5em;
  font-size: 0.9em;
  font-family: monospace;
  background-color: rgb(236.5, 236.5, 236.5);
  border-radius: 5px;
}

mark {
  color: #FFFFFF;
  background-color: #011640;
}

sub,
sup {
  color: #011640;
}

kbd {
  font-weight: 600;
  font-family: ui-monospace, monospace;
}

label {
  cursor: pointer;
}

a {
  color: #011640;
}

img,
canvas,
iframe,
video,
svg,
select,
textarea {
  max-width: 100%;
}

img {
  font-size: 1.8rem;
}

u,
s {
  text-decoration-color: #011640;
  text-decoration-thickness: 0.1em;
}

u {
  text-underline-offset: 0.2em;
}

.text--center {
  text-align: center;
}
.text--grey {
  color: #010A26;
}
.text--color {
  color: #011640;
}
.text--separator {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(236.5, 236.5, 236.5);
}

.decoration-none {
  text-decoration: none;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 768px) {
  h1,
  h2,
  h3,
  .h1,
  .h2,
  .h3 {
    margin-top: 1em;
  }
  h1,
  .h1 {
    font-size: 6rem;
  }
  h2,
  .h2 {
    font-size: 4.5rem;
  }
  h3,
  .h3 {
    font-size: 3.5rem;
  }
  h4,
  .h4 {
    font-size: 3rem;
  }
  h5,
  .h5 {
    font-size: 2.5rem;
  }
  h6,
  .h6 {
    font-size: 2rem;
  }
}
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Inputs
------------------------------------------------- */
input {
  font-size: 1.8rem;
}
input[type=text], input[type=email], input[type=password], input[type=number], input[type=tel], input[type=search] {
  width: 100%;
  height: 4.5rem;
  padding: 0 1.5rem;
  font-size: 2rem;
  font-family: ui-serif, serif;
  background-color: #FFFFFF;
  border: 1px solid rgb(223.75, 223.75, 223.75);
}
input[type=text]:focus, input[type=text]:active, input[type=email]:focus, input[type=email]:active, input[type=password]:focus, input[type=password]:active, input[type=number]:focus, input[type=number]:active, input[type=tel]:focus, input[type=tel]:active, input[type=search]:focus, input[type=search]:active {
  border-color: #011640;
  outline: none;
}
input[type=text][aria-invalid=true], input[type=email][aria-invalid=true], input[type=password][aria-invalid=true], input[type=number][aria-invalid=true], input[type=tel][aria-invalid=true], input[type=search][aria-invalid=true] {
  border-color: #E83338;
}

textarea {
  width: 100%;
  height: 4.5rem;
  padding: 0 1.5rem;
  font-size: 2rem;
  font-family: ui-serif, serif;
  background-color: #FFFFFF;
  border: 1px solid rgb(223.75, 223.75, 223.75);
  min-height: 150px;
  padding: 1.5rem;
  resize: vertical;
}
textarea:focus, textarea:active {
  border-color: #011640;
  outline: none;
}
textarea[aria-invalid=true] {
  border-color: #E83338;
}

label {
  font-size: 1.8rem;
  font-family: system-ui, ui-sans-serif, sans-serif;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  margin-bottom: 7.5rem;
  padding: 3rem;
  background-color: rgb(236.5, 236.5, 236.5);
}
.form p {
  margin: 0;
}
.form input[type=submit] {
  display: inline-flex;
  align-items: center;
  height: 4.5rem;
  padding: 0 1.5rem;
  color: #FFFFFF;
  text-decoration: none;
  background-color: #011640;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
.form input[type=submit]:hover {
  background-color: rgb(1.7846153846, 39.2615384615, 114.2153846154);
}

.wpcf7-not-valid-tip {
  font-size: 1.8rem;
  font-family: system-ui, ui-sans-serif, sans-serif;
  font-style: italic;
}

.wpcf7 {
  width: 100%;
}
.wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 1.5rem;
  color: #011640;
  text-align: center;
  border-width: 1px;
}
.wpcf7 .wpcf7-form .wpcf7-spinner {
  margin: 0 auto;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Radio
------------------------------------------------- */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5ch;
}

.radio {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.75ch;
  justify-content: flex-end;
}
.radio:hover .radio-display::after {
  transform: scale(1);
}

.radio-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  transition: all 0.1s ease-out;
}
.radio-display:after {
  position: absolute;
  width: calc(100% - 2 * 1px);
  height: calc(100% - 2 * 1px);
  background-color: #d3d3d3;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.1s ease-out;
  content: "";
}

input[type=radio] {
  display: none;
}
input[type=radio]:checked + .radio-display {
  border-color: #011640;
}
input[type=radio]:checked + .radio-display:after {
  background-color: #011640;
  transform: scale(1);
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Checkbox
------------------------------------------------- */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5ch;
}

.checkbox {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.75ch;
  justify-content: flex-end;
}
.checkbox:hover .checkbox-display .icon {
  transform: scale(1);
}

.checkbox-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #d3d3d3;
  transition: all 0.1s ease-out;
}
.checkbox-display .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2 * 1px);
  height: calc(100% - 2 * 1px);
  color: #d3d3d3;
  font-size: 0.8em;
  transform: scale(0);
  transition: all 0.1s ease-out;
  content: "";
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + .checkbox-display {
  border-color: #011640;
}
input[type=checkbox]:checked + .checkbox-display .icon {
  color: #011640;
  transform: scale(1);
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Atoms - Buttons
------------------------------------------------- */
button,
.button {
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  height: 4.5rem;
  padding: 0 1.5rem;
  color: #FFFFFF;
  text-decoration: none;
  background-color: #011640;
  border: none;
  cursor: pointer;
}
.button:hover {
  background-color: rgb(1.7846153846, 39.2615384615, 114.2153846154);
}
.button--mb {
  margin-bottom: 3rem;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Wysiwyg
------------------------------------------------- */
.wysiwyg {
  max-width: 840px;
  margin: 0 auto;
}

.wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Blog item
------------------------------------------------- */
.blog-item,
.blog-item-header,
.blog-item-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.blog-item {
  justify-content: space-between;
}

.blog-item-footer {
  justify-content: flex-end;
}

.blog-item-thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-item-title {
  margin: 0;
  line-height: 1.25em;
}

.blog-item-categories {
  display: flex;
  flex-wrap: wrap;
}

.blog-item-category {
  padding: 0 1rem;
  color: #011640;
  text-decoration: none;
  border: 1px solid #011640;
}
.blog-item-category:hover {
  color: #FFFFFF;
  background-color: #011640;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Categories
------------------------------------------------- */
.category-list-title {
  margin: 0;
}

.category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-item a {
  text-decoration: none;
}
.category-item a:hover {
  text-decoration: underline;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Footer
------------------------------------------------- */
.footer {
  position: relative;
  padding: 3rem 7.5rem;
  color: #FFFFFF;
  text-align: center;
  background-color: #011640;
}
.footer em {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.8rem;
}

.footer-menu-list {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  list-style: none;
}
.footer-menu-list a {
  color: #FFFFFF;
  font-family: system-ui, ui-sans-serif, sans-serif;
  text-decoration: none;
}
.footer-menu-list a:hover {
  text-decoration: underline;
}

.scroll-top-button {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  width: 4.5rem;
  height: 4.5rem;
  color: #FFFFFF;
  background-color: transparent;
  border: 1px solid #FFFFFF;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Gallery
------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-decoration: none;
}
.gallery-item:hover .gallery-item-title {
  text-decoration: underline;
}

.gallery-item-thumbnail {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-item-title {
  display: inline;
  margin: 0;
  font-size: 2rem;
  line-height: 1.25em;
}

.gallery-item-description {
  margin: 0;
  font-weight: 700;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 1400px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Header
------------------------------------------------- */
.header {
  position: relative;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
  height: 5.625rem;
  padding: 0 1.5rem;
  color: #FFFFFF;
  background-color: #011640;
}
.header button {
  color: #FFFFFF;
  background-color: transparent;
  border: none;
}
.header i {
  font-size: 2rem;
}

.header-logo svg {
  width: auto;
  height: 40px;
  fill: #FFFFFF;
}

.header-logo-link {
  display: flex;
  gap: 3rem;
  align-items: center;
  color: #FFFFFF;
  font-size: 2rem;
  font-family: system-ui, ui-sans-serif, sans-serif;
  font-style: italic;
  text-decoration: none;
}

.header-title {
  display: none;
}

.header-menu {
  flex-grow: 1;
}
.header-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu a {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: system-ui, ui-sans-serif, sans-serif;
  text-decoration: none;
}
.header-menu a:hover {
  text-decoration: underline;
  text-decoration-color: #fab348;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 2px;
}
.header-menu a[aria-current=page] {
  text-decoration: underline;
  text-decoration-color: #fab348;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 2px;
}
.header-menu .menu {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
}

.current-menu-item a {
  text-decoration: underline;
  text-decoration-color: #fab348;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 2px;
}

.header-buttons {
  display: flex;
  gap: 3rem;
}

body.menu-open .header-menu-toggle,
body.menu-open .header-menu-toggle:hover {
  align-items: center;
}
body.menu-open .header-menu-toggle span,
body.menu-open .header-menu-toggle:hover span {
  position: absolute;
}
body.menu-open .header-menu-toggle span:nth-child(1),
body.menu-open .header-menu-toggle:hover span:nth-child(1) {
  width: 80%;
  transform: rotate(45deg) translate(0, 0);
}
body.menu-open .header-menu-toggle span:nth-child(2),
body.menu-open .header-menu-toggle:hover span:nth-child(2) {
  width: 0;
  opacity: 0;
}
body.menu-open .header-menu-toggle span:nth-child(3),
body.menu-open .header-menu-toggle:hover span:nth-child(3) {
  width: 80%;
  transform: rotate(-45deg) translate(0, 0);
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 768px) {
  .header-menu ul {
    gap: 3rem;
  }
  .header-menu .menu {
    gap: 3rem;
  }
  .header-title {
    display: unset;
  }
}
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 992px) {
  .header {
    gap: 7.5rem;
    height: 7.5rem;
    padding: 0 3rem;
  }
  .header-logo svg {
    height: 60px;
  }
  .header-menu ul {
    gap: 7.5rem;
  }
  .header-menu .menu {
    gap: 7.5rem;
  }
  .header-logo-link {
    font-size: 2.5rem;
  }
}
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Search
------------------------------------------------- */
.search-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.search-container {
  position: relative;
}

.search-field {
  width: 100%;
  max-width: 512px;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Carousel
------------------------------------------------- */
.admin-bar .carousel-container {
  top: 32px;
  height: calc(100dvh - 32px);
}

.carousel-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  background-color: #FFFFFF;
}
.carousel-container.is-open {
  display: flex;
}
.carousel-container .button {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 4.5rem;
  height: 4.5rem;
  transform: translateY(-50%);
}
.carousel-container .button--prev {
  left: 3rem;
}
.carousel-container .button--next {
  right: 3rem;
}
.carousel-container .button--close {
  top: 3rem;
  right: 3rem;
  transform: none;
}

.embla {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.embla__container {
  display: flex;
  height: 100%;
}

.embla__slide {
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.embla__slide img {
  max-width: calc(100% - 21rem);
  max-height: calc(100% - 6rem);
  object-fit: contain;
}

.carousel-thumbnails {
  display: flex;
  flex-shrink: 0;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem;
}

.carousel-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
}
.carousel-thumbnail.is-active {
  border: 2px solid #011640;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Page - Contact
------------------------------------------------- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-infos {
  width: 100%;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 992px) {
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Page - Home
------------------------------------------------- */
.home-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(50dvh - 7.5rem);
  margin-top: -7.5rem;
}
.home-cover img {
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Page - Inventory
------------------------------------------------- */
.inventory-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.category-container {
  position: sticky;
  top: 7.5rem;
  display: none;
}

.pagination {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 3rem;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 1.5rem;
  color: #FFFFFF;
  text-decoration: none;
  background-color: #011640;
  border-radius: 10rem;
  cursor: pointer;
}
.page-numbers:hover:not(.current) {
  background-color: rgb(1.7846153846, 39.2615384615, 114.2153846154);
}
.page-numbers.current {
  color: #010A26;
  font-weight: 700;
  background-color: #fab348;
  cursor: default;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 768px) {
  .category-container {
    display: unset;
  }
}
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 992px) {
  .inventory-container {
    grid-template-columns: 10fr 1fr;
  }
}
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/**
 * Styles are organized following the Atomic Design methodology
 *
 * The main idea is to create a scalable and maintainable design system
 * It handles global styles and styles that are shared by multiple components
 * Component specific styles are handled by the component itself
 */
/* Single
------------------------------------------------- */
.single-article {
  margin-bottom: 7.5rem;
}

.single-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 50dvh;
  max-height: 300px;
  margin-top: 3rem;
  overflow: hidden;
  background-color: rgb(236.5, 236.5, 236.5);
  border-radius: 5px;
}

.single-gallery-item {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}
.single-gallery-item:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 10, 38, 0.25);
  content: "";
}

.single-gallery-more {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 2.5rem;
  font-family: system-ui, ui-sans-serif, sans-serif;
  line-height: 1em;
  background-color: rgba(1, 10, 38, 0.75);
  aspect-ratio: 1/1;
}

.single-gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.single-title {
  margin: 0;
  font-size: 4.5rem;
}

.single-price {
  font-weight: 600;
  font-size: 2.5rem;
  font-family: system-ui, ui-sans-serif, sans-serif;
}

.single-category-title {
  margin: 0;
}

.single-content,
.single-price-container,
.single-dimensions-container {
  margin: 0.75rem 0;
}

.single-price-container > p,
.single-dimensions-container > p {
  margin: 0;
}

.single-description-container {
  max-width: 800px;
}
.single-description-container > *:last-child {
  margin-bottom: 0;
}

/* Responsive
------------------------------------------------- */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
@media screen and (min-width: 992px) {
  .single-gallery {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 800px;
  }
  .single-content {
    grid-template-columns: 2fr 1fr;
  }
  .single-gallery-more {
    font-size: 3rem;
  }
  .single-content,
  .single-price-container,
  .single-dimensions-container {
    margin: 3rem 0;
  }
}
/* If the breakpoint is a key in the map, get the value */
/* If the breakpoint is a key in the map, get the value */
/* @forward './';*/
