@import url(https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800&family=Playfair+Display:wght@500;700;800&display=swap);
@charset "UTF-8";
/* Transition to top when scrolling header */
@keyframes viewHeader {
  0% {
    top: -96px;
  }
  100% {
    top: 0px;
  }
}
/* Scale estimate-income card */
@keyframes scaleCard {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleContent {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* Bubble animation on estimate-income card */
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%, 70% 90%, 80% 90%, 80% 80%, 65% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%, 120% 25% 110% 50%, 90% 30%, 68% 40%;
  }
  100% {
    background-position: 0% 70%, 0% 5%, 10% 30%, 20% -15%, 30% 20%, 22% 40%, 50% 40%, 65% 5%, 90% 20%, 110% 20%, 110% 55%, 100% 20%, 70% 30%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 85% 0%, 90% 20%, 5% 0%, 60% 10%, 50% 5%, 45% 15%, 35% 0%, 25% 10%, 90% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 90% 70%, 100% 40%, 0% 10%, 58% 50%, 45% 40%, 40% 80%, 25% 60%, 20% 45%, 100% 5%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 90% 80%, 100% 45%, 0% 10%, 58% 60%, 45% 40%, 40% 85%, 25% 65%, 20% 45%, 100% 5%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
/* NEWS PAGE */
.article-card .img-wrapper {
  overflow: hidden;
}
.article-card .img-wrapper img {
  transform: scale(1.15);
  transition: transform 0.5s ease-in-out;
}
.article-card .underline-animation {
  position: relative;
  padding-bottom: 0.1rem;
  background: linear-gradient(to right, #A68448, #A68448);
  background-size: 0 0.1em, 100% 0.1em;
  background-position: 0 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s;
}
.article-card:hover img {
  transform: scale(1);
}
.article-card:hover .underline-animation {
  background-size: 100% 0.1em, 100% 0.1em;
}
.article-card .excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

/* ARTICLE PAGE */
.glass-effect {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

/* HERO BANNER LAYOUT */
.white-pill {
  background-color: #fff;
  border-radius: 90px 90px 0 0;
}
@media (min-width: 992px) {
  .white-pill {
    border-radius: 190px 0 0 190px;
  }
  .white-pill.xxl {
    max-width: 950px;
    margin-top: 2rem;
  }
}
@media (min-width: 1800px) {
  .white-pill.xxl {
    max-width: 1200px;
  }
}
.white-pill .breadcrumb li {
  display: inline;
  line-height: 1.8;
  padding: 0.2rem 0;
}
.white-pill .breadcrumb li + li::before {
  content: "/";
  margin: 0.3rem;
}
.white-pill .breadcrumb li:not(:last-child) a {
  font-weight: 700;
  position: relative;
  padding-bottom: 0.2rem;
}
.white-pill .breadcrumb li:not(:last-child) a:hover {
  color: #A68448;
}
.white-pill .breadcrumb li:not(:last-child) a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #A68448;
}
@media (min-width: 768px) {
  .white-pill .breadcrumb {
    line-height: 2;
  }
}
.white-pill h1 {
  line-height: 3rem;
}
@media (min-width: 992px) {
  .white-pill h1 {
    line-height: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .white-pill h1 {
    line-height: 4rem;
  }
}
@media (min-width: 1800px) {
  .white-pill h1 {
    line-height: 4.5rem;
  }
}

.article-title-divider {
  width: 100%;
  max-width: 100px;
  height: 2px;
  background-color: #A68448;
  position: relative;
}

.article-title-divider::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #A68448;
}

/* DEFAULT LAYOUT WHEN PUBLISHING ARTICLE FROM TEXT EDITOR */
.article_content__wrapper {
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 1.1rem;
  line-height: 1.7rem;
  /* GENERAL LAYOUT FOR EXTERNAL MEDIA INTEGRATION -- override default inline-style of media integration */
}
.article_content__wrapper h2, .article_content__wrapper h3 {
  font-weight: 700;
}
.article_content__wrapper h2 {
  font-size: 1.5rem;
  padding-top: 2rem;
}
.article_content__wrapper h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-style: italic;
  padding-top: 1.5rem;
}
.article_content__wrapper p {
  margin: 1.5rem 0;
}
.article_content__wrapper ul, .article_content__wrapper ol {
  padding-left: 2em;
}
.article_content__wrapper ul li, .article_content__wrapper ol li {
  padding-left: 0.5rem;
}
.article_content__wrapper ul li::before, .article_content__wrapper ul li::marker, .article_content__wrapper ol li::before, .article_content__wrapper ol li::marker {
  color: #A68448;
  font-weight: bold;
}
.article_content__wrapper ul li::before {
  content: "–";
  position: absolute;
  margin-left: -1.5em;
}
.article_content__wrapper ol {
  list-style-type: decimal;
}
.article_content__wrapper a {
  text-decoration: underline;
}
.article_content__wrapper strong, .article_content__wrapper em {
  font-weight: 800;
}
.article_content__wrapper strong, .article_content__wrapper a {
  color: #A68448;
}
.article_content__wrapper blockquote {
  font-size: 1rem;
  border: 1px solid #A68448;
  border-radius: 30px;
  padding: 0.5rem 2rem 0.5rem 2rem;
  position: relative;
  background-color: #FFFDF3;
}
.article_content__wrapper blockquote::after, .article_content__wrapper blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 130px;
}
@media (min-width: 992px) {
  .article_content__wrapper blockquote::after, .article_content__wrapper blockquote::before {
    left: 15%;
  }
}
.article_content__wrapper blockquote::before {
  top: -10px;
  height: 10px;
  background-color: #fff;
  transform: translate(-50%, 0);
}
.article_content__wrapper blockquote::after {
  content: "Bon à savoir";
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  font-family: "Playfair Display";
  transform: translate(-50%, -50%);
}
.article_content__wrapper iframe,
.article_content__wrapper blockquote {
  width: 100% !important;
  max-width: 500px !important;
  margin: 3rem auto !important;
}
.article_content__wrapper .iframe__wrapper > div {
  width: 100% !important;
}
.article_content__wrapper iframe.facebook-videos {
  width: auto !important;
}

a.article-tag{
  display: block;
  border-radius: 4px;
  --tw-bg-opacity: 1;
  background-color: rgb(166 132 72 / var(--tw-bg-opacity));
  padding: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-decoration: none;
}

ul.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
ul.pagination li span, ul.pagination li a {
  display: block;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(6 64 42 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding: 0.5rem 1rem;
}
ul.pagination li.active span, ul.pagination li.active a, ul.pagination li:hover:not(.disabled) span, ul.pagination li:hover:not(.disabled) a {
  background-color: #085739;
}

#faq {
  /* input[name="deploy"]:checked ~ div.max-h-0 {
      @apply max-h-max p-6;
  } */
}
#faq input[name=deploy]:checked ~ label i{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
#faq .border-b:nth-last-child(1){
  border-bottom-width: 0px;
}
#faq input[name=deploy] {
  position: relative;
  opacity: 0.9;
  padding: 1rem;
  cursor: pointer;
}
#faq .answer {
  padding: 0 1.5rem;
  height: 0;
  opacity: 0.1;
  overflow: hidden;
  position: relative;
  transition: 0.7s ease;
}
#faq input[name=deploy]:checked ~ .answer {
  height: auto;
  opacity: 1;
  padding: 1.5rem;
  padding-top: 0;
}

.playfair {
  font-family: "Playfair Display";
}

.animation__wrapper {
  min-height: 350px;
}

.bubbly-card {
  display: inline-block;
  width: 100%;
  padding: 3rem 1.8rem;
  margin: 6rem 0 6rem 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  border: 1px solid #A68448;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
}
@media (min-width: 576px) {
  .bubbly-card {
    margin: 4rem 0 6rem 0;
    padding: 1.5em 2.4em;
  }
}
.bubbly-card:focus {
  outline: 0;
}
.bubbly-card:before, .bubbly-card:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  left: 0;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  .bubbly-card:before, .bubbly-card:after {
    width: 130%;
    height: 100%;
    left: -15%;
  }
}
.bubbly-card:before {
  display: none;
  top: -50%;
  background-image: radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, transparent 20%, #A68448 20%, transparent 30%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, transparent 10%, #A68448 15%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, transparent 20%, #A68448 20%, transparent 30%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, transparent 20%, #A68448 20%, transparent 30%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, transparent 10%, #A68448 15%, transparent 20%);
  background-size: 10% 10%, 18% 18%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%, 20% 20%, 18% 18%, 15% 15%;
}
@media (min-width: 576px) {
  .bubbly-card:before {
    top: -75%;
  }
}
.bubbly-card:after {
  display: none;
  bottom: -50%;
  background-image: radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, transparent 10%, #A68448 15%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, transparent 10%, #A68448 15%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%), radial-gradient(circle, transparent 10%, #A68448 15%, transparent 20%), radial-gradient(circle, #A68448 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%, 15% 15%, 15% 15%, 10% 10%, 15% 15%, 18% 18%, 15% 15%, 15% 15%, 18% 18%;
}
@media (min-width: 576px) {
  .bubbly-card:after {
    bottom: -75%;
  }
}
.bubbly-card.animate {
  animation: scaleCard ease-in-out 0.8s forwards;
}
.bubbly-card.animate p {
  animation: scaleContent ease-in-out 0.8s forwards;
}
.bubbly-card.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.7s forwards;
}
.bubbly-card.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.7s forwards;
}

.card-border {
  position: relative;
}

.card-border::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: #BFBFBF;
}
@media (min-width: 992px) {
  .card-border::after {
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 100%;
  }
}

/* ! tailwindcss v3.3.6 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}

::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}

::-webkit-datetime-edit{
  display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}

select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox']{
  border-radius: 0px;
}

[type='radio']{
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

@media (forced-colors: active) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

@media (forced-colors: active) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (forced-colors: active) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}

[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.form-input,.form-textarea,.form-select,.form-multiselect{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
.form-input::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
.form-input::-webkit-datetime-edit{
  display: inline-flex;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
.form-select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-select:where([size]:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
.collapse{
  visibility: collapse;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-20{
  bottom: 5rem;
}
.left-0{
  left: 0px;
}
.left-\[50\%\]{
  left: 50%;
}
.right-4{
  right: 1rem;
}
.right-\[-140px\]{
  right: -140px;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-\[-4rem\]{
  top: -4rem;
}
.top-\[25px\]{
  top: 25px;
}
.top-\[50\%\]{
  top: 50%;
}
.-z-10{
  z-index: -10;
}
.z-10{
  z-index: 10;
}
.z-\[-1\]{
  z-index: -1;
}
.z-\[10\]{
  z-index: 10;
}
.m-3{
  margin: 0.75rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.-mt-px{
  margin-top: -1px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[2rem\]{
  margin-bottom: 2rem;
}
.mb-\[4rem\]{
  margin-bottom: 4rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mr-6{
  margin-right: 1.5rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-14{
  margin-top: 3.5rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-20{
  margin-top: 5rem;
}
.mt-24{
  margin-top: 6rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-7{
  margin-top: 1.75rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[4rem\]{
  margin-top: 4rem;
}
.mt-auto{
  margin-top: auto;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-7{
  height: 1.75rem;
}
.h-80{
  height: 20rem;
}
.h-\[100px\]{
  height: 100px;
}
.h-\[130vh\]{
  height: 130vh;
}
.h-\[50vh\]{
  height: 50vh;
}
.h-\[95vh\]{
  height: 95vh;
}
.h-full{
  height: 100%;
}
.max-h-\[200px\]{
  max-height: 200px;
}
.min-h-screen{
  min-height: 100vh;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.333333%;
}
.w-10\/12{
  width: 83.333333%;
}
.w-11\/12{
  width: 91.666667%;
}
.w-2\/3{
  width: 66.666667%;
}
.w-3\/4{
  width: 75%;
}
.w-36{
  width: 9rem;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-60{
  width: 15rem;
}
.w-72{
  width: 18rem;
}
.w-8{
  width: 2rem;
}
.w-\[600px\]{
  width: 600px;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-screen{
  width: 100vw;
}
.min-w-\[500px\]{
  min-width: 500px;
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[1000px\]{
  max-width: 1000px;
}
.max-w-\[100px\]{
  max-width: 100px;
}
.max-w-\[310px\]{
  max-width: 310px;
}
.max-w-\[340px\]{
  max-width: 340px;
}
.max-w-\[670px\]{
  max-width: 670px;
}
.max-w-\[858px\]{
  max-width: 858px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-sm{
  max-width: 24rem;
}
.max-w-xl{
  max-width: 36rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-initial{
  flex: 0 1 auto;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.basis-1\/4{
  flex-basis: 25%;
}
.border-collapse{
  border-collapse: collapse;
}
.translate-x-\[-50\%\]{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\]{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-12{
  --tw-rotate: -12deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-12{
  --tw-rotate: 12deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scroll-mt-4{
  scroll-margin-top: 1rem;
}
.list-disc{
  list-style-type: disc;
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-items-center{
  justify-items: center;
}
.gap-10{
  gap: 2.5rem;
}
.gap-12{
  gap: 3rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-6{
  gap: 1.5rem;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.scroll-smooth{
  scroll-behavior: smooth;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-\[5px\]{
  border-radius: 5px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-bl-none{
  border-bottom-left-radius: 0px;
}
.rounded-br-none{
  border-bottom-right-radius: 0px;
}
.rounded-tl-lg{
  border-top-left-radius: 0.5rem;
}
.rounded-tr-lg{
  border-top-right-radius: 0.5rem;
}
.border{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-l-2{
  border-left-width: 2px;
}
.border-r-2{
  border-right-width: 2px;
}
.border-t-2{
  border-top-width: 2px;
}
.border-gold{
  --tw-border-opacity: 1;
  border-color: rgb(166 132 72 / var(--tw-border-opacity));
}
.border-gray{
  --tw-border-opacity: 1;
  border-color: rgb(191 191 191 / var(--tw-border-opacity));
}
.bg-background{
  --tw-bg-opacity: 1;
  background-color: rgb(255 253 243 / var(--tw-bg-opacity));
}
.bg-gold{
  --tw-bg-opacity: 1;
  background-color: rgb(166 132 72 / var(--tw-bg-opacity));
}
.bg-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(6 64 42 / var(--tw-bg-opacity));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-1{
  padding: 0.25rem;
}
.p-2{
  padding: 0.5rem;
}
.p-2\.5{
  padding: 0.625rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.px-0{
  padding-left: 0px;
  padding-right: 0px;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-14{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-20{
  padding-left: 5rem;
  padding-right: 5rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[11rem\]{
  padding-left: 11rem;
  padding-right: 11rem;
}
.py-0{
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-7{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-\[2rem\]{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[4rem\]{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.\!pt-0{
  padding-top: 0px !important;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-\[6rem\]{
  padding-bottom: 6rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pl-8{
  padding-left: 2rem;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-32{
  padding-top: 8rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-48{
  padding-top: 12rem;
}
.pt-\[4rem\]{
  padding-top: 4rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.font-fontTitle{
  font-family: Playfair Display;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 14px;
  line-height: 20px;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.text-colorFont{
  --tw-text-opacity: 1;
  color: rgb(60 60 60 / var(--tw-text-opacity));
}
.text-gold{
  --tw-text-opacity: 1;
  color: rgb(166 132 72 / var(--tw-text-opacity));
}
.text-primary{
  --tw-text-opacity: 1;
  color: rgb(6 64 42 / var(--tw-text-opacity));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline{
  text-decoration-line: underline;
}
.shadow-\[0_-0\.4rem_1rem_rgba\(0\2c 0\2c 0\2c \.10\)\]{
  --tw-shadow: 0 -0.4rem 1rem rgba(0,0,0,.10);
  --tw-shadow-colored: 0 -0.4rem 1rem var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_3px_6px_\#00000029\]{
  --tw-shadow: 0px 3px 6px #00000029;
  --tw-shadow-colored: 0px 3px 6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-offersCard{
  --tw-shadow: 0 3px 20px rgb(0 0 0 / 4%);
  --tw-shadow-colored: 0 3px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
body {
  font-size: 1em;
  font-family: "Mulish", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(60 60 60 / var(--tw-text-opacity));
}

h1,
h2,
h3{
  font-family: Playfair Display;
}

header a:hover span{
  text-decoration-line: underline;
}
header .flag-logo {
  margin-top: 20px;
}
header.minimized {
  position: fixed;
  animation: viewHeader 0.2s;
  top: 0px;
  z-index: 30;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  --tw-shadow-colored: 0 .5rem 1rem var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
header.minimized .rounded-tl-3xl{
  border-top-left-radius: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
header.minimized .flag-logo {
  width: 130px;
  margin-top: 5px;
}

/* MOBILE NAVBAR */
#mobileNavbar {
  transition: bottom 0.3s;
}

/* PHONE BUTTON */
#phoneButtonMobile {
  transition: bottom 0.4s;
}

/* #reviews {
    .splide__arrow {
        @apply top-[calc(100%_+_12px)] tablet:top-1/2;
    }
    .splide__pagination {
        @apply hidden;
    }
} */
.lead-section-container {
  margin: 0 auto;
  width: 100%;
  padding-top: 280px;
}
@media (min-width: 992px){
  .lead-section-container{
    padding-top: 450px;
  }
}
.lead-section-container {
  background-position: center;
  background-size: cover;
}

.lead-section-content {
  -webkit-clip-path: url(#myClip);
          clip-path: url(#myClip);
  background-color: #fff;
}

.popup__wrapper {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  overflow: auto;
}
.popup__wrapper.visible {
  display: block;
}
.popup__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #06402A;
  opacity: 0.8;
}
.popup__wrapper .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 48px);
  max-width: 552px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 10px 28px rgba(153, 225, 217, 0.1607843137);
  padding: 24px 16px;
}
.popup__wrapper .popup.small {
  max-width: 376px;
}
.popup__wrapper .popup .popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.25rem;
  cursor: pointer;
}
.popup__wrapper .popup .popup__title,
.popup__wrapper .popup h2 {
  padding: 0 30px;
  font-size: 1.125rem;
  text-align: center;
}
.popup__wrapper .popup ul,
.popup__wrapper .popup ol {
  counter-reset: item;
}
.popup__wrapper .popup ul li,
.popup__wrapper .popup ol li {
  counter-increment: item;
  position: relative;
  padding-left: 42px;
}
.popup__wrapper .popup ul li::before,
.popup__wrapper .popup ol li::before {
  content: counter(item);
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #99e1d9;
  box-shadow: 0px 6px 7px rgba(130, 215, 213, 0.3137254902);
  font-weight: bold;
  color: #006ebf;
}
.popup__wrapper .popup ul li p,
.popup__wrapper .popup ol li p {
  margin-top: 6px;
}
.popup__wrapper .popup .popup__payment_btns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.popup__wrapper .popup .popup__payment_btns .c-btn {
  font-size: 14px;
}
.hover\:cursor-pointer:hover{
  cursor: pointer;
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
@media (prefers-color-scheme: dark){
  .dark\:text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
@media (min-width: 395px){
  .smallMobile\:px-\[7rem\]{
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (min-width: 576px){
  .mobile\:w-full{
    width: 100%;
  }
  .mobile\:p-8{
    padding: 2rem;
  }
  .mobile\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mobile\:px-\[2rem\]{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px){
  .tablet\:static{
    position: static;
  }
  .tablet\:mb-2{
    margin-bottom: 0.5rem;
  }
  .tablet\:mb-7{
    margin-bottom: 1.75rem;
  }
  .tablet\:mt-0{
    margin-top: 0px;
  }
  .tablet\:flex{
    display: flex;
  }
  .tablet\:h-5{
    height: 1.25rem;
  }
  .tablet\:h-7{
    height: 1.75rem;
  }
  .tablet\:h-96{
    height: 24rem;
  }
  .tablet\:w-1\/2{
    width: 50%;
  }
  .tablet\:w-2\/3{
    width: 66.666667%;
  }
  .tablet\:w-2\/4{
    width: 50%;
  }
  .tablet\:w-96{
    width: 24rem;
  }
  .tablet\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }
  .tablet\:min-w-\[45\%\]{
    min-width: 45%;
  }
  .tablet\:flex-row{
    flex-direction: row;
  }
  .tablet\:items-center{
    align-items: center;
  }
  .tablet\:items-stretch{
    align-items: stretch;
  }
  .tablet\:justify-center{
    justify-content: center;
  }
  .tablet\:p-16{
    padding: 4rem;
  }
  .tablet\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .tablet\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .tablet\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .tablet\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .tablet\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .tablet\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .tablet\:pl-6{
    padding-left: 1.5rem;
  }
  .tablet\:pt-48{
    padding-top: 12rem;
  }
  .tablet\:text-center{
    text-align: center;
  }
  .tablet\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .tablet\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 992px){
  .desktop\:bottom-6{
    bottom: 1.5rem;
  }
  .desktop\:right-6{
    right: 1.5rem;
  }
  .desktop\:top-\[-6rem\]{
    top: -6rem;
  }
  .desktop\:row-span-3{
    grid-row: span 3 / span 3;
  }
  .desktop\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .desktop\:mb-0{
    margin-bottom: 0px;
  }
  .desktop\:ml-0{
    margin-left: 0px;
  }
  .desktop\:mt-0{
    margin-top: 0px;
  }
  .desktop\:mt-10{
    margin-top: 2.5rem;
  }
  .desktop\:mt-16{
    margin-top: 4rem;
  }
  .desktop\:mt-20{
    margin-top: 5rem;
  }
  .desktop\:mt-32{
    margin-top: 8rem;
  }
  .desktop\:block{
    display: block;
  }
  .desktop\:flex{
    display: flex;
  }
  .desktop\:grid{
    display: grid;
  }
  .desktop\:hidden{
    display: none;
  }
  .desktop\:h-\[100vh\]{
    height: 100vh;
  }
  .desktop\:h-\[105vh\]{
    height: 105vh;
  }
  .desktop\:h-\[120px\]{
    height: 120px;
  }
  .desktop\:w-3\/12{
    width: 25%;
  }
  .desktop\:w-3\/4{
    width: 75%;
  }
  .desktop\:w-full{
    width: 100%;
  }
  .desktop\:min-w-0{
    min-width: 0px;
  }
  .desktop\:max-w-\[120px\]{
    max-width: 120px;
  }
  .desktop\:max-w-\[190px\]{
    max-width: 190px;
  }
  .desktop\:max-w-\[750px\]{
    max-width: 750px;
  }
  .desktop\:flex-1{
    flex: 1 1 0%;
  }
  .desktop\:basis-1\/3{
    flex-basis: 33.333333%;
  }
  .desktop\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .desktop\:flex-row{
    flex-direction: row;
  }
  .desktop\:flex-col{
    flex-direction: column;
  }
  .desktop\:flex-col-reverse{
    flex-direction: column-reverse;
  }
  .desktop\:items-center{
    align-items: center;
  }
  .desktop\:items-stretch{
    align-items: stretch;
  }
  .desktop\:justify-start{
    justify-content: flex-start;
  }
  .desktop\:justify-end{
    justify-content: flex-end;
  }
  .desktop\:justify-center{
    justify-content: center;
  }
  .desktop\:gap-10{
    gap: 2.5rem;
  }
  .desktop\:gap-5{
    gap: 1.25rem;
  }
  .desktop\:bg-background{
    --tw-bg-opacity: 1;
    background-color: rgb(255 253 243 / var(--tw-bg-opacity));
  }
  .desktop\:p-12{
    padding: 3rem;
  }
  .desktop\:p-8{
    padding: 2rem;
  }
  .desktop\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .desktop\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .desktop\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .desktop\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .desktop\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .desktop\:pb-16{
    padding-bottom: 4rem;
  }
  .desktop\:pb-4{
    padding-bottom: 1rem;
  }
  .desktop\:pb-\[8rem\]{
    padding-bottom: 8rem;
  }
  .desktop\:pl-2{
    padding-left: 0.5rem;
  }
  .desktop\:pl-20{
    padding-left: 5rem;
  }
  .desktop\:pt-0{
    padding-top: 0px;
  }
  .desktop\:pt-4{
    padding-top: 1rem;
  }
  .desktop\:text-left{
    text-align: left;
  }
  .desktop\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .desktop\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .desktop\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }
  .desktop\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .desktop\:text-sm{
    font-size: 14px;
    line-height: 20px;
  }
  .desktop\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1200px){
  .wide\:-mt-12{
    margin-top: -3rem;
  }
  .wide\:h-6{
    height: 1.5rem;
  }
  .wide\:h-8{
    height: 2rem;
  }
  .wide\:w-1\/2{
    width: 50%;
  }
  .wide\:w-\[38rem\]{
    width: 38rem;
  }
  .wide\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .wide\:p-24{
    padding: 6rem;
  }
  .wide\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .wide\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .wide\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .wide\:text-7xl{
    font-size: 4.5rem;
    line-height: 1;
  }
  .wide\:leading-\[3rem\]{
    line-height: 3rem;
  }
}
@media (min-width: 1800px){
  .huge\:max-w-\[1100px\]{
    max-width: 1100px;
  }
  .huge\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .huge\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .huge\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }
  .huge\:leading-\[4rem\]{
    line-height: 4rem;
  }
}
