/**
* Estructura con la Metodologia ITCSS
* mas informacion: https://dev.to/carlillo/understanding-itcss-real-case-using-itcss-in-a-ghostcms-blog-1p9b
*/
:root {
  --black-1: #000;
  --black-2: #2f2f2f;
  --black-3: #5f6368;
  --black-4: #080808;
  --white-1: #fff;
  --white-2: #faf8f8;
  --white-3: #e3e3e3;
  --sand-1: #e9e1d2;
  --golden-1: #89785c;
  --golden-2: #b7aa94;
  --golden-3: #e9e1d2;
  --golden-4: #c4bcac;
  --golden-5: #eeece8;
  --gray-1: #a5a3a3;
  --gray-2: #707070;
  --gray-3: #818181;
  --gray-4: #848484;
  --gray-5: #6c6b6f;
  --gray-6: #bfbebe;
  --marron-1: #893a22;
  --marron-2: #813e29;
  --red-1: #d61a1a;
  --blue-1: #d2e7ea;
  --blue-2: #a5b3b5;
  --blue-3: #73c1eb;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
main {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
@-webkit-keyframes hintLabel {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: -12px;
    opacity: 1;
  }
}
@keyframes hintLabel {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: -12px;
    opacity: 1;
  }
}
@-webkit-keyframes hintLabel_hide {
  0% {
    top: -12px;
    opacity: 1;
    font-size: 11px;
  }
  99% {
    top: 0;
    opacity: 0;
    font-size: 11px;
  }
  100% {
    top: 0;
    opacity: 0;
    font-size: 0;
  }
}
@keyframes hintLabel_hide {
  0% {
    top: -12px;
    opacity: 1;
    font-size: 11px;
  }
  99% {
    top: 0;
    opacity: 0;
    font-size: 11px;
  }
  100% {
    top: 0;
    opacity: 0;
    font-size: 0;
  }
}
@-webkit-keyframes godown {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(35px);
            transform: translateY(35px);
  }
}
@keyframes godown {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(35px);
            transform: translateY(35px);
  }
}
.o-container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .o-container {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .o-container {
    padding: 0;
  }
}
[class^="icon-"],
[class*=" icon-"] {
  font-style: normal;
}
[class^="icon-"] :before,
[class*=" icon-"] :before {
  font-family: 'fontello';
}
.o-btn {
  cursor: pointer;
  display: inline-block;
  border: 1px solid var(--black-1);
  color: var(--black-1);
  background: var(--white-1);
  padding: 13px;
  min-width: 150px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  height: 100%;
  text-decoration: none;
  font-family: 'DM Sans', 'serif';
}
.o-btn span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.o-btn small {
  text-transform: uppercase;
  font-size: 18px;
  padding-right: 45px;
  position: relative;
}
.o-btn small i {
  display: inline-block;
  font-style: normal;
  width: 30px;
  height: 30px;
  border: 1px solid var(--black-2);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
}
.o-btn:hover {
  color: var(--white-1);
  background: var(--golden-1);
  border-color: var(--golden-1);
}
.o-btn:hover small i {
  border-color: var(--white-1);
}
.o-btn--golden {
  background: var(--golden-1);
  border-color: var(--golden-1);
  color: var(--white-1);
}
.o-btn--golden:hover {
  background: var(--black-1);
  color: var(--white-1);
  border-color: var(--black-1);
}
.o-btn--download,
.o-btn--more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1200px) {
  .o-btn--download,
  .o-btn--more {
    gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.o-btn--more span,
.o-btn--more small i {
  color: var(--black-1);
}
.o-btn--more small i {
  border-color: var(--black-1);
}
.o-btn--more:hover {
  background: var(--golden-1) !important;
  border-color: var(--golden-1) !important;
}
.o-btn--more:hover span,
.o-btn--more:hover small i {
  color: var(--black-1) !important;
}
.o-btn--more:hover small i {
  border-color: var(--black-1) !important;
}
.o-btn--download small i {
  border: none;
}
.o-btn--outline,
.o-btn--rounded {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  height: auto;
  text-align: center;
  font-family: 'DM Sans', 'serif';
  text-transform: uppercase;
  font-weight: 500;
  border-color: var(--black-1);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 0;
}
.o-btn--rounded {
  border-radius: 100px;
  background: rgba(255,255,255,0.8);
}
.o-btn--rounded:hover {
  background: var(--white-1);
  color: var(--black-1);
  border-color: var(--black-1);
}
.wpcf7 .wpcf7-submit-style .wpcf7-submit {
  background: var(--golden-1) !important;
  color: var(--black-1) !important;
  border-radius: 8px !important;
}
.wpcf7 .wpcf7-submit-style .wpcf7-submit:hover {
  background: var(--black-1) !important;
  color: var(--white-1) !important;
}
.sc_layouts_row_type_compact .sc_layouts_cart .sc_layouts_cart_items_short {
  background: var(--golden-1) !important;
  color: var(--black-1) !important;
}
.prueba {
  background: #f00;
}
@-webkit-keyframes arrow-move {
  0% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
@keyframes arrow-move {
  0% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
@-webkit-keyframes pulse-icon {
  0% {
    font-size: 24px;
  }
  50% {
    font-size: 26px;
  }
  100% {
    font-size: 24px;
  }
}
@keyframes pulse-icon {
  0% {
    font-size: 24px;
  }
  50% {
    font-size: 26px;
  }
  100% {
    font-size: 24px;
  }
}
.o-numeralia {
  font-size: 40px;
  line-height: 1;
  color: var(--black-1);
  font-weight: bold;
  font-family: 'Roboto Slab';
}
.o-numeralia i {
  font-style: normal;
  color: var(--black-1);
  font-size: 40px;
  color: var(--black-1);
  margin-right: 5px;
}
.o-numeralia span {
  display: inline-block;
  min-width: 78px;
}
.o-numeralia--black {
  color: var(--black-1);
}
.o-numeralia--black i {
  color: var(--golden-1);
}
.customSelect > .labelFl {
  color: #000;
  font-size: 11px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
  z-index: 0;
}
.customSelect.active .labelFl {
  color: #a9a9a9;
  opacity: 1;
  top: -12px;
}
.customSelect.listo .labelFl {
  top: -12px;
  opacity: 1;
}
.customSelect.loading .customSelect-arrow {
  top: 13px;
  width: 12px;
  height: 12px;
  border: 3px solid #a9a9a9;
  border-radius: 12px;
  -webkit-animation: rotateplane 1.4s 0.5s infinite ease-in-out;
          animation: rotateplane 1.4s 0.5s infinite ease-in-out;
}
.customSelect.noLabel {
  margin: 10px 0;
}
.customSelect {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--black-2);
  display: inline-block;
  font-size: 20px;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  vertical-align: middle;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: 'DM Sans', 'serif';
}
.customSelect.open {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.customSelect.open .customSelect-arrow {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.customSelect.open .customSelect-options,
.customSelect.open .customSelect-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.customSelect.error {
  border-bottom: 1px solid #f00;
}
.customSelect.error .customSelect-label {
  color: #f00;
}
.customSelect.disabled {
  border-bottom: 1px dashed #000;
}
.customSelect.disabled .customSelect-label {
  color: #000;
}
.customSelect.middle {
  width: 178px;
}
.customSelect.middle .customSelect-label {
  max-width: 148px;
}
.customSelect.full {
  width: 100%;
}
.customSelect.full .customSelect-label {
  width: 100%;
}
.customSelect.filter .customSelect-options {
  margin-top: 53px;
}
.customSelect .currentSelect {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.customSelect .customSelect-arrow {
  display: none;
}
.customSelect-label {
  cursor: default;
  display: block;
  padding-right: 0;
  padding-left: 0;
  font-size: 20px;
  font-weight: 500;
  vertical-align: middle;
  overflow: hidden;
}
.customSelect-options {
  -webkit-box-shadow: 0 6px 6px -3px rgba(0,0,0,0.2);
          box-shadow: 0 6px 6px -3px rgba(0,0,0,0.2);
  display: none;
  right: 0;
  max-height: 230px;
  overflow: auto;
  position: absolute;
  top: 120%;
  right: -15px;
  margin-top: 10px;
  width: 100%;
  z-index: 3;
  background: var(--white);
  border-radius: 6px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 160px;
  background: var(--white-1);
  border: 1px solid var(--gray-1);
  font-size: 15px;
  text-align: right;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.3) transparent;
}
.customSelect-options::-webkit-scrollbar {
  width: 6px;
}
.customSelect-options::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.customSelect-options::-webkit-scrollbar-thumb {
  background-color: var(--gray-1);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.customSelect-options::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0,0,0,0.5);
  background-clip: content-box;
}
.customSelect-options > label {
  color: var(--black-1);
  display: block;
  padding: 6px 16px;
}
.customSelect-options > label:hover {
  color: var(--black-1);
  background: var(--gray-1);
  cursor: pointer;
}
.customSelect-options > label.active {
  color: #ffa500;
}
.customSelect-options > label.selected {
  background: var(--golden-1);
  color: var(--white-1);
}
.customSelect-filter {
  display: none;
  position: absolute;
  z-index: 4;
  top: 100%;
  left: 0;
  padding: 6px 10px 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #808080;
  -webkit-box-shadow: 0 6px 12px -6px rgba(0,0,0,0.3);
          box-shadow: 0 6px 12px -6px rgba(0,0,0,0.3);
}
.customSelect-search {
  margin: 0;
  color: #a9a9a9;
}
.customSelect-tagList {
  display: block;
  padding: 6px 0 0;
}
.customSelect-tag {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #a9a9a9;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.customSelect-tag:after {
  display: inline-block;
  content: 'x';
  margin-left: 8px;
  width: 10px;
  height: 9px;
}
.customSelect-tag:hover {
  background: #a9a9a9;
  cursor: pointer;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.maskSelect {
  background: #728195;
  border: 1px solid var(--gray-6);
  border-radius: 42px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--white);
  display: block;
  font-size: 16px;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  vertical-align: middle;
  width: 100%;
}
.maskSelect select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent !important;
  border: none;
  font-size: 20px;
  outline: none;
  padding: 15px 30px 15px 40px;
  position: relative;
  width: 100%;
}
.maskSelect::after {
  color: var(--redLight-1);
  content: '\e924';
  font-family: 'aoc';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.maskSelect::before {
  color: var(--redLight-1);
  content: "\e925";
  font-family: 'aoc';
  left: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.maskSelect.error {
  border-color: var(--redLight-1);
}
.maskSelect.error + .o-msjErr {
  display: block;
}
.o-select-anio .customSelect-label {
  position: relative;
  padding-left: 28px;
  z-index: 1;
}
.o-form-select {
  max-width: 170px;
  width: 100%;
}
.o-form-icon {
  position: relative;
}
.o-form-icon .i-icon {
  position: absolute;
  left: 16px;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
}
.o-form-icon span.maskSelect select {
  padding-left: 44px;
  position: relative;
  z-index: 1;
}
.o-link,
.c-log__footer p a {
  color: var(--marron-2);
  text-decoration: none;
  position: relative;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-family: 'DM Sans', 'serif';
  font-size: 16px;
}
@media (min-width: 768px) {
  .o-link,
  .c-log__footer p a {
    display: inline;
  }
}
.o-link:after,
.c-log__footer p a:after,
.o-link:before,
.c-log__footer p a:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--marron-2);
  display: block;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.o-link:before,
.c-log__footer p a:before {
  width: 0;
}
.o-link:hover,
.c-log__footer p a:hover {
  color: var(--marron-1);
}
.o-link:hover:after,
.c-log__footer p a:hover:after {
  display: none;
}
.o-link:hover:before,
.c-log__footer p a:hover:before {
  width: 100%;
}
.o-link--icon,
.c-log__footer p a--icon {
  color: var(--black-1);
  text-transform: uppercase;
  position: relative;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}
.o-link--icon i,
.c-log__footer p a--icon i {
  position: absolute;
  left: -20px;
}
.o-link--icon:hover,
.c-log__footer p a--icon:hover {
  color: var(--black-1);
}
.o-link--icon:after,
.c-log__footer p a--icon:after,
.o-link--icon:before,
.c-log__footer p a--icon:before {
  background: var(--black-1);
}
.o-link--black,
.c-log__footer p a--black {
  color: var(--black-1);
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  margin: 0;
}
.o-link--black:hover,
.c-log__footer p a--black:hover {
  color: var(--black-1);
}
.o-link--black:after,
.c-log__footer p a--black:after,
.o-link--black:before,
.c-log__footer p a--black:before {
  background: var(--black-1);
}
#js {
  position: absolute;
  z-index: 200;
}
.Lbox-overlay {
  display: block;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  background: rgab(255, 255, 255, 0.6);
}
.Lbox-holder {
  width: 100%;
  height: 100%;
}
.Lbox-cont {
  position: relative;
  top: 50%;
  margin: 0 auto;
  padding: 30px;
  max-width: 440px;
  max-height: 80%;
  border-radius: 3px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-1);
  overflow: auto;
}
.Lbox-cont .btn-close {
  display: block;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: var(--golden-1);
  border-radius: 50%;
  border: none !important;
  font-size: 0;
  cursor: pointer;
}
.Lbox-cont .btn-close i {
  font-size: 24px;
  color: var(--black-1);
}
.Lbox-cont .btn-close:hover {
  background: var(--black-1);
}
.Lbox-cont .btn-close:hover i {
  color: var(--white-1);
}
.Lbox-cont .ico-status {
  display: none;
  margin: 0 auto;
  width: 43px;
  height: 46px;
  bg-sprite: -538px -122px;
}
.Lbox-cont .ico-status.error {
  width: 73px;
  height: 47px;
  background-position: -453px -121px;
}
.Lbox-cont .ico-status.success {
  width: 43px;
  height: 46px;
  background-position: -538px -122px;
}
.Lbox-title {
  margin: 24px 0 10px;
  font-size: 30px;
  color: #000;
  font-family: 'Corporate A Medium', 'serif';
}
.Lbox-desc {
  background-color: #fff;
  width: 60%;
  margin: 20px auto;
  padding: 10px;
  font-family: 'DM Sans', 'serif';
}
.Lbox-confirm {
  margin: 36px 0 0;
  text-align: center;
}
.Lbox-confirm .btn {
  width: 39%;
}
.Lbox-confirm .btn-accept {
  margin-left: 8%;
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
          animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-family: 'DM Sans', 'serif';
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
          box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 98;
  margin-left: -62px;
  margin-top: 16px;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
          animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: $monthForeground;
  fill: $monthForeground;
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: $monthForeground;
  fill: $monthForeground;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
/*
      /*rtl:begin:ignore */
/*
       */
  left: 0 /*
      /*rtl:end:ignore */ /*
       */;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
/*
      /*rtl:begin:ignore */
/*
       */
  right: 0 /*
      /*rtl:end:ignore */ /*
       */;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover,
.flatpickr-months .flatpickr-prev-month:focus,
.flatpickr-months .flatpickr-next-month:focus {
  color: var(--golden-1);
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg,
.flatpickr-months .flatpickr-prev-month:focus svg,
.flatpickr-months .flatpickr-next-month:focus svg {
  fill: var(--golden-1);
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}
.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: '';
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0,0,0,0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(0,0,0,0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0,0,0,0.5);
}
.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: $monthForeground;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: $monthForeground;
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0,0,0,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent;
  border: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  width: auto;
  visibility: visible !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
          box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: 'blueDark-2';
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
      flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: var(--gray-1);
  border-color: var(--gray-1);
  color: var(--white-1);
}
.flatpickr-day.today {
  border-color: var(--golden-1);
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: var(--golden-1);
  background: var(--golden-1);
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: var(--golden-1);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  border-color: var(--golden-1);
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 var(--golden-1);
          box-shadow: -10px 0 0 var(--golden-1);
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 var(--gray-1), 5px 0 0 var(--gray-1);
          box-shadow: -5px 0 0 var(--gray-1), 5px 0 0 var(--gray-1);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(0,0,0,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(0,0,0,0.3);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 var(--golden-1), 5px 0 0 var(--golden-1);
          box-shadow: -5px 0 0 var(--golden-1), 5px 0 0 var(--golden-1);
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
          box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(0,0,0,0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: '';
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: 'blueDark-2';
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: 'blueDark-2';
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: 'blueDark-2';
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: 'blueDark-2';
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-flex-item-align: center;
      align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #e93849;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.c-heroBanner {
  position: relative;
  padding: 120px 0 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-heroBanner--background {
  background: var(--white-2);
}
@media (min-width: 1024px) {
  .c-heroBanner {
    padding: 190px 0 100px;
    max-height: 1080px;
  }
}
.c-heroBanner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.c-heroBanner__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-heroBanner >div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-heroBanner >div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .c-heroBanner >div {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .c-heroBanner__intro {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .c-heroBanner__intro {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .c-heroBanner__intro {
    width: 50%;
  }
  .c-heroBanner__intro:hover .c-heroBanner__intro-box {
    opacity: 1;
  }
}
.c-heroBanner__intro >img {
  max-width: 718px;
  margin: 0 auto;
  display: block;
  width: 100%;
}
.c-heroBanner__intro-box {
  background: var(--sand-1);
  color: var(--back-1);
  border-radius: 16px;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 786px;
  margin: 25px auto 0;
  opacity: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
@media (min-width: 768px) {
  .c-heroBanner__intro-box {
    padding: 30px 35px;
  }
}
@media (min-width: 1024px) {
  .c-heroBanner__intro-box {
    padding: 30px 15px;
  }
}
@media (min-width: 1200px) {
  .c-heroBanner__intro-box {
    opacity: 0;
    padding: 30px 40px;
  }
}
.c-heroBanner__intro-box h1 {
  text-align: center;
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  line-height: 34px;
  margin: 0px auto 25px;
  -ms-hyphens: unset;
      hyphens: unset;
  font-family: 'Corporate A Medium', 'serif';
  font-weight: 500;
  color: var(--balck-1);
}
.c-heroBanner__intro-box h1 strong {
  font-weight: 500;
  display: block;
}
@media (min-width: 768px) {
  .c-heroBanner__intro-box h1 strong {
    display: inline;
  }
}
.c-heroBanner__intro-box p {
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  margin: 0;
  font-family: 'DM Sans', 'serif';
  color: var(--black-1);
}
.c-heroBanner__intro >h1 {
  font-size: 48px;
  line-height: 52px;
  margin: 0 auto;
  text-align: center;
  -ms-hyphens: unset;
      hyphens: unset;
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-heroBanner__intro >h1 {
    font-size: 68px;
    line-height: 72px;
  }
}
@media (min-width: 1200px) {
  .c-heroBanner__intro >h1 {
    font-size: 72px;
    line-height: 82px;
  }
}
.c-heroBanner__intro >a {
  font-size: 40px;
  margin: 40px auto;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  -webkit-animation: godown 1.5s ease infinite;
          animation: godown 1.5s ease infinite;
}
.c-heroBanner__intro >a i {
  font-style: normal;
}
.c-heroBanner__intro--smallTitle >h1 {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-heroBanner__counter {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .c-heroBanner__counter {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 364px;
    width: 25%;
  }
}
@media (min-width: 768px) {
  .c-heroBanner__cards {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .c-heroBanner__cards {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    max-width: 364px;
    width: 25%;
    position: relative;
    min-height: 605px;
  }
}
@media (min-width: 1024px) {
  .c-heroBanner__cards .c-card--hover {
    position: absolute;
  }
}
.c-heroBanner__cards .c-card--top {
  top: 0;
  margin-bottom: 30px;
}
.c-heroBanner__cards .c-card--bottom {
  bottom: 0;
}
.c-card {
  background: var(--sand-1);
  border-radius: 26px;
  overflow: hidden;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  font-family: 'DM Sans', 'serif';
}
.c-card:hover {
  background: var(--white-1);
}
.c-card:hover .c-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.c-card:hover .c-card__text h2,
.c-card:hover .c-card__text p {
  color: var(--black-1);
}
.c-card:hover .o-numeralia {
  color: var(--black-1);
}
.c-card:hover .o-numeralia i {
  color: var(--black-1);
}
.c-card:hover .c-card__cta {
  border-color: var(--black-1);
}
.c-card:hover .c-card__cta a {
  color: var(--black-1);
}
.c-card:hover .c-card__cta a span {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border: 1px solid var(--black-1);
}
.c-card__image a {
  display: block;
  font-size: 0;
  height: 270px;
  overflow: hidden;
}
.c-card__image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.6s all ease;
  transition: 0.6s all ease;
}
.c-card__text {
  padding: 20px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
@media (min-width: 768px) {
  .c-card__text {
    padding: 20px 10px;
  }
}
@media (min-width: 1200px) {
  .c-card__text {
    padding: 20px 25px;
  }
}
.c-card__text h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 26px;
  color: var(--black-1);
  font-family: 'DM Sans', 'serif';
  text-transform: uppercase;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.c-card__text p {
  color: var(--black-1);
  font-size: 16px;
  line-height: 22px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.c-card__cta {
  padding: 20px 0;
  border-top: 2px solid var(--black-1);
  margin: 0 25px;
}
@media (min-width: 768px) {
  .c-card__cta {
    margin: 0 10px;
  }
}
@media (min-width: 1200px) {
  .c-card__cta {
    margin: 0 25px;
  }
}
.c-card__cta a {
  color: var(--black-1);
  text-transform: uppercase;
  display: block;
  padding-right: 50px;
  position: relative;
  font-size: 15px;
  line-height: 24px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  font-family: 'DM Sans', 'serif';
  text-decoration: none;
}
.c-card__cta a span {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white-1);
  text-align: center;
  line-height: 45px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid var(--sand-1);
}
.c-card__cta a span i {
  font-style: normal;
  color: var(--black-1);
  font-size: 20px;
}
.c-card--hover {
  position: relative;
}
.c-card--hover .c-card__image {
  display: none;
}
@media (min-width: 768px) {
  .c-card--hover .c-card__image {
    display: block;
  }
}
.c-card--hover .c-card__text {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  -webkit-transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
}
.c-card--hover .c-card__text p {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  margin: 0;
  color: var(--black-1);
}
.c-card--hover .c-card__cta {
  margin: 0;
  padding: 20px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  bottom: 0;
  border: none;
  -webkit-transition: 0.5s 'assets/backgrounds' ease;
  transition: 0.5s 'assets/backgrounds' ease;
}
@media (min-width: 768px) {
  .c-card--hover .c-card__cta {
    position: absolute;
    padding: 20px 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), to(var(--black-1)));
    background: linear-gradient(rgba(0,0,0,0) 0%, var(--black-1) 100%);
  }
  .c-card--hover .c-card__cta a {
    color: var(--white-1);
  }
}
@media (min-width: 1200px) {
  .c-card--hover .c-card__cta {
    padding: 20px 25px;
  }
}
.c-card--hover:hover .c-card__cta a {
  color: var(--white-1);
}
@media (min-width: 1024px) {
  .c-card--hover:hover {
    background: var(--sand-1);
    z-index: 2;
  }
  .c-card--hover:hover .c-card__img img {
    -webkit-transform: none !important;
            transform: none !important;
  }
  .c-card--hover:hover .c-card__text {
    opacity: 1;
    max-height: 335px;
    overflow: hidden;
    padding: 20px 25px;
  }
  .c-card--hover:hover .c-card__text p {
    color: var(--black-1);
  }
  .c-card--hover:hover .c-card__cta {
    padding: 10px 25px 20px;
    position: relative;
    background: none;
  }
  .c-card--hover:hover .c-card__cta a {
    color: var(--black-1);
  }
}
.c-content {
  background: var(--white-2);
}
.c-content__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-content__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .c-content__buttons >li {
    width: calc(50% - 25px);
  }
}
.c-log {
  position: relative;
  padding: 120px 0 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: var(--white-2);
}
@media (min-width: 1024px) {
  .c-log {
    padding: 190px 0 100px;
  }
}
.c-log__box {
  background: var(--white-1);
  border-radius: 24px;
  border: 1px solid var(--gray-2);
  max-width: 980px;
  margin: 0 auto;
  padding: 35px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-log__box {
    padding: 35px 20px;
  }
}
@media (min-width: 1024px) {
  .c-log__box {
    padding: 35px;
  }
}
.c-log__box h1 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 41px;
  line-height: 48px;
  color: var(--black-2);
  font-weight: 500;
  margin: 40px 0 20px;
  -ms-hyphens: unset;
      hyphens: unset;
}
@media (min-width: 1024px) {
  .c-log__box h1 {
    font-size: 72px;
    line-height: 82px;
  }
}
.c-log__box h2 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 32px;
  line-height: 36px;
  color: var(--gray-1);
  font-weight: 500;
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .c-log__box h2 {
    font-size: 40px;
    line-height: 44px;
  }
}
.c-log__box >a {
  text-transform: uppercase;
  font-family: 'DM Sans', 'serif';
  text-decoration: none;
  color: var(--black-1);
}
.c-log__box >a:hover {
  color: var(--marron-2);
}
@media (min-width: 1024px) {
  .c-log__form {
    padding: 20px;
  }
}
.c-log__form fieldset {
  min-width: 0;
  padding: 0;
  border: none;
}
.c-log__form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 60px;
  padding: 0 0 0 25px;
}
@media (min-width: 1024px) {
  .c-log__form-list {
    padding: 0 60px;
  }
}
.c-log__form-list >li {
  border-bottom: 1px solid var(--gray-1);
  font-family: 'Corporate A Medium', 'serif';
  font-size: 34px;
  color: var(--gray-1);
  padding-bottom: 15px;
}
@media (min-width: 1024px) {
  .c-log__form-list >li {
    font-size: 40px;
  }
}
.c-log__form-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-log__form-list ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 9px;
  }
}
@media (min-width: 1024px) {
  .c-log__form-list ul {
    gap: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.c-log__form-list ul li:nth-child(4) {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (min-width: 768px) {
  .c-log__form-list ul li:nth-child(4) {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
.c-log__form-list .o-btn--trash {
  padding: 0 !important;
  font-size: 20px;
  width: 45px;
  border: 1px solid var(--gray-1) !important;
  color: var(--gray-1);
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  margin: 0 0 0 auto;
  background: var(--white-1);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.c-log__form-list .o-btn--trash:hover {
  border: 1px solid var(--golden-1) !important;
  color: var(--white-1);
  background: var(--golden-1);
}
@media (min-width: 768px) {
  .c-log__form-list .o-btn--trash {
    margin: 6px 0 0 0;
  }
}
.c-log__form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-log__form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-log__form-group .o-form__field {
  width: 100%;
}
@media (min-width: 768px) {
  .c-log__form-group .o-form__field {
    max-width: 155px;
  }
}
.c-log__form-group .o-form__field input {
  text-align: center;
  width: 100%;
}
.c-log__form-group p {
  font-size: 16px;
  line-height: 20px;
  color: var(--gray-1);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: 'DM Sans', 'serif';
  margin: 0;
}
.c-log__button {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-log__button .o-btn {
  border-width: 1px !important;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 13px 15px !important;
  font-size: 16px;
  min-height: 50px;
  border-radius: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: var(--white-1);
  border: 1px solid var(--black-1);
}
@media (min-width: 768px) {
  .c-log__button .o-btn {
    padding: 13px 28px !important;
  }
}
.c-log__button .o-btn:hover {
  color: var(--white-1) !important;
  background: var(--golden-1) !important;
  border-color: var(--golden-1) !important;
}
.c-log__button .o-btn:hover span {
  color: var(--white-1) !important;
}
.c-log__button .o-btn:hover small i {
  border-color: var(--white-1) !important;
  color: var(--white-1) !important;
}
.c-log__submit {
  margin-top: 92px;
}
.c-log__submit .o-btn {
  font-size: 16px;
  background: var(--golden-1) !important;
  border-radius: 5px;
  color: var(--white-1) !important;
  min-height: 50px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  text-transform: uppercase;
}
.c-log__submit .o-btn:hover {
  background: var(--black-1) !important;
  color: var(--white-1) !important;
}
.c-log__footer {
  margin-top: 20px;
}
.c-log__footer p {
  text-align: center;
  margin: 0 0 15px;
  font-family: 'DM Sans', 'serif';
  font-size: 16px;
  line-height: 28px;
  color: var(--gray-3);
}
.o-form__field {
  border: 1px solid var(--gray-1);
  border-radius: 6px;
  padding: 8px 14px 8px 50px;
  position: relative;
  min-width: 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.o-form__field--datepicker {
  padding: 7px 0px 7px 40px;
}
@media (min-width: 1024px) {
  .o-form__field--datepicker {
    min-width: 306px;
    padding: 7px 14px 7px 60px;
  }
}
.o-form__field--datepicker input {
  border: none !important;
  padding: 0 !important;
}
.o-form__field i {
  color: var(--black-3);
  font-size: 24px;
  position: absolute;
  left: 9px;
  top: 12px;
}
@media (min-width: 1024px) {
  .o-form__field i {
    left: 15px;
  }
}
.o-form__field input {
  font-size: 16px;
  font-family: 'DM Sans', 'serif';
  color: var(--black-2);
  border: none;
  padding: 0;
  font-weight: 500;
}
.o-form__field input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.o-form__field .customSelect {
  min-width: 95px;
}
.o-form__field:has(span.hintTip.error) {
  border: 1px solid var(--red-1) !important;
}
.o-form__field:has(span.hintTip.error) i {
  color: var(--red-1);
}
.c-signup {
  background: var(--white-2);
  padding-bottom: 260px;
}
.c-signup__box {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-signup__box {
    padding: 0 20px 35px;
  }
}
.c-signup__box--small {
  max-width: 830px;
}
.c-signup__header h1 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 41px;
  line-height: 48px;
  color: var(--black-2);
  font-weight: 500;
  margin: 40px 0 20px;
  -ms-hyphens: unset;
      hyphens: unset;
}
@media (min-width: 1024px) {
  .c-signup__header h1 {
    font-size: 72px;
    line-height: 82px;
  }
}
.c-signup__header >a {
  text-transform: uppercase;
  font-family: 'DM Sans', 'serif';
  text-decoration: none;
  color: var(--black-1);
  font-size: 16px;
}
.c-signup__header >a:hover {
  color: var(--marron-1);
}
.c-signup__groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  margin-top: 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-signup__groups {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .c-signup__groups >div {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .c-signup__groups {
    gap: 85px;
  }
}
.c-signup__group {
  border: 1px solid var(--gray-1);
  border-radius: 16px;
  padding: 50px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-signup__group i {
  width: 60px;
  height: 60px;
  text-align: center;
  color: var(--golden-1);
  display: block;
  border-radius: 50%;
  line-height: 60px;
  background: var(--white-1);
  font-size: 35px;
}
.c-signup__group h2 {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 20px;
  font-family: 'Corporate A Medium', 'serif';
  font-weight: 500;
}
.c-signup__group p {
  font-size: 16px;
  line-height: 22px;
  font-family: 'DM Sans', 'serif';
}
.c-signup__group-cta {
  margin-top: 50px;
}
.c-signup__group-cta .o-btn {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  text-align: center;
  text-transform: uppercase;
  border-radius: 6px;
  font-size: 16px;
  padding: 12px;
  font-family: 'DM Sans', 'serif';
  text-decoration: none;
}
.c-form {
  margin-top: 60px;
}
.c-form__fieldset {
  padding: 0 0 40px;
  border: none;
  min-width: 0;
}
.c-form__fieldset legend {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 34px;
  line-height: 42px;
  border-bottom: 1px solid var(--gray-1);
  color: var(--gray-1);
  display: block;
  width: 100%;
  margin: 40px 0;
}
@media (min-width: 1024px) {
  .c-form__fieldset legend {
    font-size: 48px;
    line-height: 52px;
  }
}
.c-form__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .c-form__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .c-form__item {
    width: calc(50% - 24px);
  }
}
.c-form__item--full {
  width: 100% !important;
}
@media (min-width: 768px) {
  .c-form__item--three {
    width: calc(33% - 24px);
  }
}
.c-form__item label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: 'DM Sans', 'serif';
  display: block;
}
.c-form__item label sup {
  color: var(--red-1);
}
.c-form__item input,
.c-form__item textarea {
  background: var(--white-1) !important;
  border: 1px solid var(--gray-1) !important;
  border-radius: 6px !important;
  padding: 15px !important;
  margin-top: 10px;
  font-family: 'DM Sans', 'serif';
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-form__item input:focus,
.c-form__item textarea:focus {
  background: var(--white-1);
}
.c-form__item .lbCh {
  position: relative;
  padding-left: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
.c-form__item .lbCh .flCh {
  position: absolute;
  background: var(--white-1);
  border: 3px solid var(--white-1);
  border-radius: 2px;
  -webkit-box-shadow: 0 0 0 1px var(--gray-1);
          box-shadow: 0 0 0 1px var(--gray-1);
  content: '';
  display: block;
  height: 10px;
  left: 0;
  top: 3px;
  width: 10px;
  -webkit-box-sizing: unset;
          box-sizing: unset;
}
.c-form__item .lbCh .flCh:after {
  content: '';
  width: 11px;
  height: 5px;
  border: 3px solid var(--black-3);
  border-top: none;
  border-right: none;
  position: absolute;
  top: -6px;
  left: -2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.c-form__item .lbCh :checked + .flCh:after {
  opacity: 1;
  top: -1px;
}
.c-form__item .lbCh :disabled + .flCh {
  -webkit-box-shadow: 0 0 0 1px var(--gray-1);
          box-shadow: 0 0 0 1px var(--gray-1);
  border: 3px solid var(--gray-1);
  background: var(--gray-1);
}
.c-form__item .lbCh :disabled:checked + .flCh {
  background-color: var(--gray-1);
}
.c-form__item .lbCh.error + .flCh {
  -webkit-box-shadow: 0 0 0 1px var(--red-1);
          box-shadow: 0 0 0 1px var(--red-1);
  border: 3px solid var(--gray-1);
  background: var(--gray-1);
}
.c-form__item .lbCh input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-form__item .lbCh input[type=checkbox]:after,
.c-form__item .lbCh input[type=checkbox]:before {
  display: none;
}
.c-form__item .lbCh--big {
  font-size: 16px;
  padding-top: 3px;
}
.c-form__item .lbCh--big .flCh {
  top: 6px;
}
.c-form__item .o-link {
  margin-left: 0;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
}
@media (min-width: 768px) {
  .c-form__item .o-link {
    margin-left: auto;
    margin-right: 0;
  }
}
.c-form__item--password input {
  padding-right: 50px;
}
.c-form__item--password .o-btn--eye {
  position: absolute;
  width: 40px;
  padding: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 40px;
  top: 39px;
  right: 7px;
  font-size: 20px;
  color: var(--black-1);
  border-radius: 2px;
  height: 40px;
  border: none;
  background: transparent;
}
.c-form__item--password .o-btn--eye:hover {
  color: var(--gray-1);
}
.c-form__item--password .o-btn--eye.is-active {
  background: rgba(137,120,92,0.5);
}
.c-form__item--password .o-btn--eye.is-active:hover {
  color: var(--black-1);
  background: rgba(137,120,92,0.8);
}
.c-form__item .hintTip {
  width: 100%;
  display: block;
}
.o-msjErr {
  color: var(--red-1);
  display: none;
  font-family: 'DM Sans', 'serif';
  margin-top: 5px;
}
.hintTip.error + .o-msjErr {
  display: block;
}
.c-prayer__box {
  margin: 0 auto;
  padding: 120px 15px 135px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-prayer__box {
    padding: 190px 20px 235px;
  }
}
.c-prayer h1 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 41px;
  line-height: 48px;
  color: var(--black-2);
  font-weight: 500;
  margin: 40px 0 20px;
  -ms-hyphens: unset;
      hyphens: unset;
}
@media (min-width: 1024px) {
  .c-prayer h1 {
    font-size: 72px;
    line-height: 82px;
  }
}
.c-prayer__list {
  list-style: none;
  padding: 0;
  margin: 53px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.c-prayer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--white-2);
  -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2);
          box-shadow: 0 0 2px rgba(0,0,0,0.2);
  padding: 55px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 40px;
}
@media (min-width: 768px) {
  .c-prayer__item {
    padding: 55px 45px;
  }
}
@media (min-width: 1024px) {
  .c-prayer__item {
    gap: 110px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.c-prayer__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-prayer__item-info h2 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 40px;
  line-height: 50px;
  color: var(--black-1);
  font-weight: 500;
  margin: 10px 0 20px;
  -ms-hyphens: unset;
      hyphens: unset;
}
.c-prayer__item-info h3 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 20px;
  line-height: 15px;
  color: var(--black-1);
  font-weight: 500;
  margin: 0;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  text-transform: uppercase;
  -ms-hyphens: unset;
      hyphens: unset;
}
.c-prayer__item-info p {
  font-family: 'DM Sans', 'serif';
  font-size: 16px;
  line-height: 20px;
  color: var(--gray-4);
}
.c-prayer__item-cta {
  -ms-flex-negative: unset;
      flex-shrink: unset;
}
.c-prayer__item-cta .o-btn {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  color: var(--white-1);
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 375px) {
  .c-prayer__item-cta .o-btn {
    min-width: 265px;
  }
}
.c-prayer__item-cta .o-btn:hover {
  color: var(--white-1);
}
.c-profile {
  background: var(--white-2);
  padding: 120px 15px 135px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-profile {
    padding: 190px 20px 235px;
  }
}
.c-profile__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .c-profile__header {
    margin-bottom: 70px;
  }
}
.c-profile__header h1 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 36px;
  line-height: 40px;
  color: var(--black-2);
  font-weight: 500;
  margin: 0;
  -ms-hyphens: unset;
      hyphens: unset;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 1024px) {
  .c-profile__header h1 {
    font-size: 48px;
    line-height: 58px;
  }
}
.c-profile__header >a {
  padding-top: 7px;
}
.c-profile__box {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-profile__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
@media (min-width: 1024px) {
  .c-profile__box {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
@media (min-width: 1200px) {
  .c-profile__box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.c-profile__box h2 {
  font-size: 30px;
  line-height: 34px;
  font-family: 'Corporate A Medium', 'serif';
  font-weight: 500;
  margin: 0 0 20px;
}
.c-profile__box p {
  font-size: 14px;
  line-height: 18px;
  font-family: 'DM Sans', 'serif';
  font-weight: 400;
}
.c-profile__box p strong {
  font-weight: 700;
}
.c-profile__info {
  background: var(--white-1);
  border-radius: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid var(--gray-1);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-profile__info {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media (min-width: 1024px) {
  .c-profile__info {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media (min-width: 1200px) {
  .c-profile__info {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.c-profile__info-name h2 {
  margin-bottom: 0px;
}
.c-profile__info-name p {
  font-size: 28px;
  line-height: 38px;
  font-family: 'Corporate A Medium', 'serif';
  font-weight: 500;
  margin: 0 0 10px;
}
.c-profile__info-time {
  margin-top: 55px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.c-profile__info-time h3 {
  font-family: 'DM Sans', 'serif';
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
.c-profile__info-footer {
  margin-top: 50px;
}
.c-profile__info-footer p:last-child {
  margin-bottom: 30px;
}
.c-profile__info-footer .o-link--icon .icon-short-arrow-vertical {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-size: 13px;
}
.c-profile__campaign {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--black-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
}
@media (min-width: 768px) {
  .c-profile__campaign {
    grid-column: 1/3;
    grid-row: 2/3;
    padding: 50px;
  }
}
@media (min-width: 1024px) {
  .c-profile__campaign {
    grid-column: 2/3;
    grid-row: 1/2;
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .c-profile__campaign {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media (min-width: 1600) {
  .c-profile__campaign {
    padding: 50px;
  }
}
.c-profile__campaign-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.c-profile__campaign-background:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
}
.c-profile__campaign-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-profile__campaign-info {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-profile__campaign-info h2 {
  font-family: 'DM Sans', 'serif';
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  color: var(--white-1);
}
.c-profile__campaign-info h3 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  color: var(--white-1);
  width: 80%;
  margin: 15px 0 25px;
}
@media (min-width: 1200px) {
  .c-profile__campaign-info h3 {
    width: 90%;
  }
}
@media (min-width: 1600) {
  .c-profile__campaign-info h3 {
    width: 80%;
  }
}
.c-profile__campaign-info .o-btn {
  padding: 10px 20px;
}
.c-profile__campaign-info .o-btn i {
  display: inline-block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid var(--black-1);
  line-height: 30px;
}
.c-profile__campaign-footer {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
.c-profile__campaign-footer .o-btn {
  min-height: auto;
  border: none;
  text-transform: uppercase;
  color: var(--white-1);
  margin-left: 0;
  margin-right: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.c-profile__campaign-footer .o-btn:hover {
  color: var(--white-1);
}
.c-profile__log {
  background: var(--white-1);
  border-radius: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid var(--gray-1);
  padding: 20px;
}
@media (min-width: 768px) {
  .c-profile__log {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (min-width: 1024px) {
  .c-profile__log {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (min-width: 1200px) {
  .c-profile__log {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
.c-profile__request {
  background: rgba(137,120,92,0.3);
  border-radius: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid var(--gray-1);
  padding: 20px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .c-profile__request {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media (min-width: 1024px) {
  .c-profile__request {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 1200px) {
  .c-profile__request {
    grid-column: 3/4;
    grid-row: 2/3;
  }
}
.c-profile__request-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 20px;
}
.c-profile__request-text p {
  font-family: 'DM Sans', 'serif';
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}
.test {
  color: #ffc0cb;
}
.c-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255,255,255,0.6);
  z-index: 500;
}
.c-loader.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-loader__spinner {
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: mulShdSpin 1.1s infinite ease;
          animation: mulShdSpin 1.1s infinite ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@-webkit-keyframes mulShdSpin {
  0%, 100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em var(--golden-1), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.5), -1.8em -1.8em 0 0em rgba(137,120,92,0.7);
            box-shadow: 0em -2.6em 0em 0em var(--golden-1), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.5), -1.8em -1.8em 0 0em rgba(137,120,92,0.7);
  }
  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.7), 1.8em -1.8em 0 0em var(--golden-1), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.5);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.7), 1.8em -1.8em 0 0em var(--golden-1), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.5);
  }
  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.5), 1.8em -1.8em 0 0em rgba(137,120,92,0.7), 2.5em 0em 0 0em var(--golden-1), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.5), 1.8em -1.8em 0 0em rgba(137,120,92,0.7), 2.5em 0em 0 0em var(--golden-1), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.5), 2.5em 0em 0 0em rgba(137,120,92,0.7), 1.75em 1.75em 0 0em var(--golden-1), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.5), 2.5em 0em 0 0em rgba(137,120,92,0.7), 1.75em 1.75em 0 0em var(--golden-1), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.5), 1.75em 1.75em 0 0em rgba(137,120,92,0.7), 0em 2.5em 0 0em var(--golden-1), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.5), 1.75em 1.75em 0 0em rgba(137,120,92,0.7), 0em 2.5em 0 0em var(--golden-1), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.5), 0em 2.5em 0 0em rgba(137,120,92,0.7), -1.8em 1.8em 0 0em var(--golden-1), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.5), 0em 2.5em 0 0em rgba(137,120,92,0.7), -1.8em 1.8em 0 0em var(--golden-1), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.5), -1.8em 1.8em 0 0em rgba(137,120,92,0.7), -2.6em 0em 0 0em var(--golden-1), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.5), -1.8em 1.8em 0 0em rgba(137,120,92,0.7), -2.6em 0em 0 0em var(--golden-1), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.5), -2.6em 0em 0 0em rgba(137,120,92,0.7), -1.8em -1.8em 0 0em var(--golden-1);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.5), -2.6em 0em 0 0em rgba(137,120,92,0.7), -1.8em -1.8em 0 0em var(--golden-1);
  }
}
@keyframes mulShdSpin {
  0%, 100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em var(--golden-1), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.5), -1.8em -1.8em 0 0em rgba(137,120,92,0.7);
            box-shadow: 0em -2.6em 0em 0em var(--golden-1), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.5), -1.8em -1.8em 0 0em rgba(137,120,92,0.7);
  }
  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.7), 1.8em -1.8em 0 0em var(--golden-1), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.5);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.7), 1.8em -1.8em 0 0em var(--golden-1), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.5);
  }
  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.5), 1.8em -1.8em 0 0em rgba(137,120,92,0.7), 2.5em 0em 0 0em var(--golden-1), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.5), 1.8em -1.8em 0 0em rgba(137,120,92,0.7), 2.5em 0em 0 0em var(--golden-1), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.5), 2.5em 0em 0 0em rgba(137,120,92,0.7), 1.75em 1.75em 0 0em var(--golden-1), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.5), 2.5em 0em 0 0em rgba(137,120,92,0.7), 1.75em 1.75em 0 0em var(--golden-1), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.5), 1.75em 1.75em 0 0em rgba(137,120,92,0.7), 0em 2.5em 0 0em var(--golden-1), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.5), 1.75em 1.75em 0 0em rgba(137,120,92,0.7), 0em 2.5em 0 0em var(--golden-1), -1.8em 1.8em 0 0em rgba(137,120,92,0.2), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.5), 0em 2.5em 0 0em rgba(137,120,92,0.7), -1.8em 1.8em 0 0em var(--golden-1), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.5), 0em 2.5em 0 0em rgba(137,120,92,0.7), -1.8em 1.8em 0 0em var(--golden-1), -2.6em 0em 0 0em rgba(137,120,92,0.2), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.5), -1.8em 1.8em 0 0em rgba(137,120,92,0.7), -2.6em 0em 0 0em var(--golden-1), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.5), -1.8em 1.8em 0 0em rgba(137,120,92,0.7), -2.6em 0em 0 0em var(--golden-1), -1.8em -1.8em 0 0em rgba(137,120,92,0.2);
  }
  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.5), -2.6em 0em 0 0em rgba(137,120,92,0.7), -1.8em -1.8em 0 0em var(--golden-1);
            box-shadow: 0em -2.6em 0em 0em rgba(137,120,92,0.2), 1.8em -1.8em 0 0em rgba(137,120,92,0.2), 2.5em 0em 0 0em rgba(137,120,92,0.2), 1.75em 1.75em 0 0em rgba(137,120,92,0.2), 0em 2.5em 0 0em rgba(137,120,92,0.2), -1.8em 1.8em 0 0em rgba(137,120,92,0.5), -2.6em 0em 0 0em rgba(137,120,92,0.7), -1.8em -1.8em 0 0em var(--golden-1);
  }
}
.c-calendar {
  background: var(--white-2);
}
.c-calendar--spaced {
  padding: 120px 15px 135px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-calendar--spaced {
    padding: 190px 20px 235px;
  }
}
.c-calendar h2 {
  font-family: 'Corporate A Medium', 'serif';
  font-size: 41px;
  line-height: 48px;
  color: var(--black-2);
  font-weight: 500;
  margin: 40px 0 20px;
  -ms-hyphens: unset;
      hyphens: unset;
}
@media (min-width: 1024px) {
  .c-calendar h2 {
    font-size: 72px;
    line-height: 82px;
  }
}
.c-calendar__box {
  margin-top: 50px;
}
.c-calendar__cta {
  margin-top: 50px;
  padding-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-calendar__cta .o-btn {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  max-width: 264px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'DM Sans', 'serif';
  border-color: transparent;
}
.c-calendar__legend {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-calendar__legend {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-calendar__legend h3 {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-family: 'DM Sans', 'serif';
  font-weight: 700;
}
.c-calendar__legend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-calendar__legend-list li {
  font-weight: 700;
  font-family: 'DM Sans', 'serif';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-calendar__legend-dot {
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid var(--gray-1);
  border-radius: 50%;
}
.c-calendar__legend-dot--individual {
  background: var(--golden-3);
  border: 1px solid var(--golden-4);
}
.c-calendar__legend-dot--group {
  background: var(--blue-1);
  border: 1px solid var(--blue-2);
}
.c-calendar__modal {
  position: fixed;
  background: rgba(255,255,255,0.6);
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.c-calendar__modal.is-active {
  bottom: 0;
}
.c-calendar__modal-content {
  background: var(--white-2);
  border: 1px solid var(--gray-1);
  border-radius: 7px;
  max-width: 490px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  padding: 30px;
  max-height: 90%;
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-calendar__modal-header {
  border-bottom: 1px solid var(--gray-1);
  position: relative;
  padding-right: 30px;
  color: var(--black-1);
}
.c-calendar__modal-header button {
  width: 30px !important;
  height: 30px !important;
  padding: 0;
  text-align: center;
  line-height: 30px;
  border: none;
  background: none;
  position: absolute !important;
  top: 0;
  right: 0;
  font-size: 40px;
  cursor: pointer;
  color: var(--black-1);
}
.c-calendar__modal-header button:hover {
  color: var(--golden-1);
}
.c-calendar__modal-header h3 {
  margin: 0 0 15px;
  font-family: 'DM Sans', 'serif';
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.c-calendar__modal-header p {
  margin: 0 0 5px;
  font-family: 'DM Sans', 'serif';
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}
.c-calendar__modal-body {
  overflow: auto;
  padding: 5px 0;
}
.c-calendar__modal-body::-webkit-scrollbar {
  width: 12px;
}
.c-calendar__modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.c-calendar__modal-body::-webkit-scrollbar-thumb {
  background-color: var(--white-3);
  border-radius: 5px;
  -webkit-transition: 0.6s all ease;
  transition: 0.6s all ease;
  z-index: 2;
}
.c-calendar__modal-body::-webkit-scrollbar-thumb:hover {
  background-color: var(--gray-1);
}
.c-calendar__modal-body ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: auto;
}
.c-calendar__modal-body h4 {
  margin: 0;
  font-family: 'DM Sans', 'serif';
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: var(--black-1);
}
.c-calendar__modal-body p {
  margin: 0;
  font-family: 'DM Sans', 'serif';
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: var(--gray-5);
}
.c-calendar table > tbody > tr:nth-child(2n+1) > td {
  background: transparent !important;
}
.fc .fc-timegrid-col,
.fc .fc-timegrid-cols > tbody > tr > td:last-child,
.fc .fc-timegrid-slot,
.fc .fc-timegrid-slots td,
.fc .fc-timegrid-slots th,
.fc .fc-timegrid-slots td:last-child,
.fc-timegrid-axis {
  background: transparent !important;
}
.fc-button {
  text-transform: uppercase !important;
  font-family: 'DM Sans', 'serif' !important;
  background: var(--white-1) !important;
  border: 1px solid var(--black-1) !important;
  color: var(--black-1) !important;
  outline: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.fc-button:hover {
  background: var(--golden-1) !important;
  border: 1px solid var(--golden-1) !important;
  color: var(--white-1) !important;
}
.fc-today-button:hover {
  background: var(--golden-1) !important;
  color: var(--white-1) !important;
}
.fc-button-active {
  background: var(--golden-1) !important;
  color: var(--white-1) !important;
}
.fc-button-active:hover {
  background: var(--black-1) !important;
  border-color: var(--black-1) !important;
  color: var(--white-1) !important;
}
.fc-event,
.fc-event-main {
  color: var(--black-1) !important;
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
}
.fc-event p,
.fc-event-main p {
  color: var(--black-1) !important;
  font-family: 'DM Sans', 'serif';
  font-size: 16px;
  line-height: 20px;
  margin: 0 !important;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.fc-event p small,
.fc-event-main p small {
  font-size: 14px;
}
.fc-event.personal,
.fc-event-main.personal {
  background: var(--golden-3);
  border: 1px solid var(--golden-4);
}
.fc-event.personal:hover,
.fc-event-main.personal:hover {
  background: var(--golden-4);
}
.fc-event.group,
.fc-event-main.group {
  background: var(--blue-1);
  border: 1px solid var(--blue-2);
}
.fc-event.group:hover,
.fc-event-main.group:hover {
  background: var(--blue-2);
}
.fc-event .fc-event-time,
.fc-event-main .fc-event-time {
  display: none !important;
}
.fc-scrollgrid-sync-inner {
  background: #fff !important;
}
.fc .fc-scrollgrid {
  background: var(--white-1) !important;
}
.fc .fc-scrollgrid table tbody {
  font-family: 'DM Sans', 'serif';
}
.fc .fc-scrollgrid table thead a {
  font-family: 'Corporate A Medium', 'serif';
  text-decoration: none;
}
.fc .fc-day-today,
.fc .fc-timegrid-col.fc-day-today {
  background: var(--white-1) !important;
}
.fc .fc-col-header-cell.fc-day-today {
  background: var(--black-1) !important;
}
@media (min-width: 768px) {
  .fc .fc-col-header-cell.fc-day-today {
    background: var(--white-1) !important;
  }
}
.fc .fc-toolbar.fc-header-toolbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .fc .fc-toolbar.fc-header-toolbar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.fc .fc-toolbar-title {
  font-family: 'Corporate A Medium', 'serif';
  font-weight: 400;
  font-size: 28px;
  margin: 20px 0;
}
@media (min-width: 768px) {
  .fc .fc-toolbar-title {
    font-size: 38px;
    margin: 0;
  }
}
.fc .fc-daygrid-day-number,
.fc .fc-timegrid-slot-label-cushion {
  color: var(--black-1) !important;
}
.o-weekHeader {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black-1);
  font-family: 'DM Sans', 'serif';
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 50%;
  font-size: 12px;
}
@media (min-width: 768px) {
  .o-weekHeader {
    font-size: 18px;
    line-height: 22px;
    width: 86px;
    height: 86px;
  }
}
.o-weekHeader p {
  margin: 0;
  color: var(--black-1);
}
.o-weekHeader strong {
  display: block;
  font-family: 'Corporate A Medium', 'serif';
  font-weight: 500;
  color: var(--black-1);
}
@media (min-width: 768px) {
  .o-weekHeader strong {
    font-size: 34px;
    line-height: 36px;
  }
}
.fc-day-today {
  background: var(--black-1);
}
.fc-day-today.fc-col-header-cell .fc-scrollgrid-sync-inner {
  background: var(--black-1) !important;
}
@media (min-width: 768px) {
  .fc-day-today {
    background: none;
  }
}
.fc-day-today .o-weekHeader {
  background: var(--black-1);
  color: var(--white-1);
}
.fc-day-today .o-weekHeader p,
.fc-day-today .o-weekHeader strong {
  color: var(--white-1);
}
@media (min-width: 768px) {
  .fc-dayGridMonth-view .o-weekHeader {
    font-size: 24px;
    font-family: 'Corporate A Medium', 'serif';
  }
}
.fc-dayGridMonth-view .o-weekHeader strong {
  display: none;
}
.c-intro {
  background: var(--golden-5);
}
.c-intro--transparent {
  background: transparent !important;
}
.c-intro >div {
  margin-top: -60px;
  z-index: 2;
  position: relative;
}
.c-intro--full {
  padding-top: 40px;
}
@media (min-width: 568px) {
  .c-intro--full {
    padding-top: 0;
  }
}
.c-intro--full >div {
  margin-top: 0;
}
@media (min-width: 768px) {
  .c-intro--full >div {
    margin-top: -60px;
  }
}
.c-intro__box {
  background: var(--white-2);
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.2);
          box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  border-radius: 17px;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 107px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .c-intro__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-intro__item {
  padding: 24px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid var(--gray-1);
}
@media (min-width: 1024px) {
  .c-intro__item {
    width: 33%;
    border-bottom: 0;
    border-right: 1px solid var(--gray-1);
    padding: 0 35px;
  }
}
.c-intro__item:first-child {
  padding-left: 0;
}
.c-intro__item:last-child {
  border: none;
  padding-right: 0;
}
.c-intro__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin: 0 0 19px;
  min-height: 76px;
  padding-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-intro__item-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .c-intro__item-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .c-intro__item-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-intro__item-head:has(strong) {
  padding-top: 0;
}
.c-intro__item-head:has(strong) h2 a {
  padding-right: 52px;
}
.c-intro__item-head:has(strong) h2 a:after {
  top: 20px;
}
.c-intro__item-head span {
  display: block;
  min-width: 45px;
  max-width: 45px;
  height: 45px;
}
.c-intro__item-head span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-intro__item-head h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: 'DM Sans', 'serif';
  margin: 0;
  -ms-hyphens: unset;
      hyphens: unset;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-intro__item-head h2 strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  font-family: 'Corporate A Medium', 'serif';
}
.c-intro__item-head h2 a {
  color: var(--black-1);
  position: relative;
  padding-right: 50px;
  text-decoration: none;
  display: block;
}
.c-intro__item-head h2 a:after {
  /*content: '\e908';*/
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--gray-6);
  position: absolute;
  top: 0;
  right: 0;
  color: var(--black-1);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  font-family: 'fontello';
  text-align: center;
  line-height: 45px;
}
.c-intro__item-head h2 a:hover:after {
  background: var(--gray-6);
  color: var(--white-1);
}
.c-intro__item-body p {
  font-size: 16px;
  line-height: 20px;
  font-family: 'DM Sans', 'serif';
  margin: 0;
}
.c-intro__item-footer {
  margin-top: 50px;
}
.c-intro__item-footer .o-btn {
  text-align: center;
  background: none;
  text-transform: uppercase;
}
.c-intro__item-footer .o-btn:hover {
  background: var(--black-4);
  color: var(--white-1);
  border-color: var(--black-4);
}
.c-intro__item-footer .o-link {
  color: var(--black-4);
}
.c-intro__item-footer .o-link:after,
.c-intro__item-footer .o-link:before {
  background: var(--black-4);
}
.c-intro__item-footer p {
  font-size: 16px;
  color: var(--gray-1);
  font-weight: 500;
  font-family: 'DM Sans', 'serif';
}
.c-intro__item-footer--cta {
  text-align: center;
}
.c-intro__item-footer--cta .o-link {
  color: var(--marron-2);
}
.c-intro__item-footer--cta .o-link:after,
.c-intro__item-footer--cta .o-link:before {
  background: var(--marron-2);
}
.c-intro__item--full {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .c-intro__item--full {
    width: 100%;
    padding: 24px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-intro__item--full .c-intro__item-head {
  padding-top: 0;
}
.c-intro__item--full .o-btn {
  max-width: 265px;
  text-align: center;
  margin-top: 20px;
}
.c-heroImage {
  position: relative;
  font-size: 0;
}
.c-heroImage h1 {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  left: 50%;
  color: var(--white-1);
  font-family: 'Corporate A Medium', 'serif';
  font-size: 48px;
  line-height: 52px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 400px;
  width: 80%;
  margin: 0;
}
@media (min-width: 768px) {
  .c-heroImage h1 {
    font-size: 58px;
    line-height: 62px;
  }
}
@media (min-width: 1024px) {
  .c-heroImage h1 {
    font-size: 88px;
    line-height: 95px;
  }
}
footer a i[class^="icon"] {
  color: var(--golden-1);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
footer a:hover i[class^="icon"] {
  color: var(--white-1);
}
.u-hidden {
  display: none;
}
.u-visible {
  display: block;
}
.u-float-left {
  float: left;
}
.u-float-right {
  float: right;
}
.u-clear-both {
  clear: both;
}
.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.u-clip {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.js-lazy {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.elementor-heading-title {
  -ms-hyphens: none !important;
  hyphens: none !important;
}
@media (min-width: 1280px) {
  .sc_layouts_menu_nav:after,
  .sc_layouts_menu_nav ul:after {
    display: none;
  }
  .sc_layouts_menu_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
