html {
  background: var(--color-main-bg, #fff);
  color: var(--color-main-text, #000);
  font-family: 'Montserrat';
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: revert;
  font-family: "Montserrat";
}

h1 {
  font-size: 24pt !important;
}

h2 {
  font-size: 14pt !important;
}

article > * + * {
  margin-top: var(--space-sm, 1em);
}

img,
svg {
  max-width: 100%;
  -o-object-position: center;
     object-position: center;
}

img[src$=".png"],
img[src$=".svg"] {
  -o-object-fit: contain;
     object-fit: contain;
}

img[src$=".jpg"],
img[src$=".jpeg"] {
  -o-object-fit: cover;
     object-fit: cover;
}

ul.list {
  list-style: disc;
  list-style-position: inside;
}
ul.list > * + * {
  margin-top: var(--space-xs, 0.5em);
}
ul.list > *::marker {
  color: var(--color-primary, currentColor);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.page .main {
  flex: 1;
}

.container {
  padding: 0;
  width: calc(var(--container-width, 1000px) + var(--container-paddings, 20px) * 2);
  max-width: 100%;
  margin: 0 auto;
}

.btn {
  display: block;
  font-size: 1rem;
  min-width: 0;
  width: 100%;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  gap: var(--space-xs);
  height: var(--actions-btn-height, 2em);
  border-radius: var(--actions-btn-radius, 2px);
  border-width: 0;
  transition: 0.2s;
}
.btn svg {
  flex-shrink: 0;
  flex-grow: 0;
}
.btn:hover {
  transition: 0.1s;
}
.btn:active {
  transition: 0.05s;
}
.btn--primary {
  background: var(--color-primary, rgb(13, 110, 253));
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-hover, rgba(13, 110, 253, 0.9));
}
.btn--secondary {
  background: var(--color-secondary, rgb(108, 117, 125));
  color: #fff;
}
.btn--secondary:hover {
  background: var(--color-secondary-hover, rgb(108, 117, 125));
}
.btn--black {
  background: #000;
  color: #fff;
}
.btn--black:hover {
  background: #222;
}
.btn--white {
  background: #fff;
  color: #000;
}
.btn--white:hover {
  background: #eee;
}
.btn--outline {
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}
.btn--outline:hover {
  background: rgba(127, 127, 127, 0.1);
}
.btn--small {
  font-size: 0.75rem;
  height: 3em;
}
@media (max-width: 440px) {
  .btn {
    font-size: 12px;
  }
}

.input {
  display: block;
  font-size: 1rem;
  min-width: 0;
  width: 100%;
  padding: calc((var(--actions-input-text-height, 2em) - 1em) / 2) 1em;
  height: var(--actions-input-text-height, 2em);
  border-radius: var(--actions-input-text-radius, 2px);
  background: var(--actions-input-text-bg, white);
  border: var(--actions-input-text-border, 1px solid #000);
  text-align: left;
  cursor: text;
}
.input__label {
  display: block;
  font-size: 12px;
  margin-top: -1em;
  margin-bottom: 0.5em;
}
.input__input {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
  min-width: 0;
  width: 100%;
}
.input__input::-moz-placeholder {
  color: currentColor;
}
.input__input:-ms-input-placeholder {
  color: currentColor;
}
.input__input::placeholder {
  color: currentColor;
}

textarea.input {
  height: auto;
  min-height: var(--actions-input-text-height, 2em);
  resize: none;
}

select {
  display: block;
  font-size: 1rem;
  min-width: 0;
  width: 100%;
  padding: 0 1em;
  height: var(--actions-select-height, 2em);
  border-radius: var(--actions-select-radius, 2px);
  background: var(--actions-select-bg, #fff);
  border: var(--actions-select-border, 1px solid #000);
}

.select2__wrapper {
  position: relative;
}
.select2__label {
  position: absolute;
  padding: 0 1rem;
  z-index: 2;
  font-size: 12px;
  top: 1em;
}
.select2 > .select2 {
  min-width: 0;
}

.select2.select2-container--default {
  font-size: 1rem;
}
.select2.select2-container--default .select2-selection {
  height: var(--actions-select-height, 2em);
  border-radius: var(--actions-select-radius, 2px);
  background: var(--actions-select-bg, #fff);
  border: var(--actions-select-border, 1px solid #000);
}
.select2.select2-container--default .select2-selection .select2-selection__rendered {
  line-height: var(--actions-select-height, 2em);
  padding: 0 1em;
  padding-top: 0.5em;
}
.select2.select2-container--default .select2-selection .select2-selection__arrow {
  width: var(--actions-select-height, 2em);
  height: var(--actions-select-height, 2em);
  display: flex;
  justify-content: center;
  align-items: center;
}
.select2.select2-container--default .select2-selection .select2-selection__arrow b {
  all: unset;
  display: block;
  width: var(--actions-select-arrow-size);
  height: var(--actions-select-arrow-size);
  background: var(--actions-select-arrow-bg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(0deg);
  transition: transform 0.1s;
}
.select2.select2-container--default.select2-container--open .select2-selection .select2-selection__arrow b {
  transform: rotate(180deg);
}

.checkbox {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 1em;
  cursor: pointer;
}
.checkbox input {
  display: none;
}
.checkbox input + .checkbox__checkmark::after {
  opacity: 0;
}
.checkbox input:checked + .checkbox__checkmark::after {
  opacity: 1;
}
.checkbox__checkmark {
  width: 1em;
  height: 1em;
  flex-grow: 0;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgb(212, 212, 212);
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.checkbox__checkmark::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--color-primary);
  border-radius: inherit;
  transition: opacity 0.1s;
}
.checkbox__label {
  line-height: 1.2;
  text-align: left;
}
.checkbox__checkmark {
  border-radius: 50%;
}

.radio {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 1em;
  cursor: pointer;
}
.radio input {
  display: none;
}
.radio input + .radio__checkmark::after {
  opacity: 0;
}
.radio input:checked + .radio__checkmark::after {
  opacity: 1;
}
.radio__checkmark {
  width: 1em;
  height: 1em;
  flex-grow: 0;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgb(212, 212, 212);
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.radio__checkmark::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--color-primary);
  border-radius: inherit;
  transition: opacity 0.1s;
}
.radio__label {
  line-height: 1.2;
  text-align: left;
}
.radio__checkmark {
  border-radius: 50%;
}

.select2-dropdown {
  font-size: 1rem;
  border-color: rgb(241, 241, 241) !important;
  box-shadow: 10px 0 40px -40px #000, -10px 0 40px -40px #000;
}
.select2-results__option {
  transition: background-color 0.2s, color 0.2s;
  padding: 0.5em 1em;
}
.select2-results__option--highlighted {
  background: var(--actions-select-selection-bg) !important;
  transition: background-color 0.01s, color 0.01s;
}

.grid {
  --grid-min-items: 1;
  --grid-max-items: 1;
  --grid-base-item-width: 100%;
  --grid-column-gap: var(--space-sm);
  --grid-row-gap: var(--space-sm);
  display: grid;
  grid-gap: var(--grid-row-gap) var(--grid-column-gap);
  grid-template-columns: repeat(auto-fill, minmax(clamp(100% / var(--grid-max-items) - var(--grid-column-gap) / var(--grid-max-items) * (var(--grid-max-items) - 1), var(--grid-base-item-width), 100% / var(--grid-min-items) - var(--grid-column-gap) / var(--grid-min-items) * (var(--grid-min-items) - 1)), 1fr));
}
.grid > * {
  min-width: 0;
}

.form {
  display: grid;
  grid-gap: 10px;
}

.section {
  margin: 50px;
}
.section__title {
  margin-bottom: var(--space-md, 30px);
}
.section__more {
  margin-top: var(--space-xl, 30px);
}
.section__more .btn {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
}
.header ~ .main {
  padding-top: var(--header-height, 50px);
}

html .swiper-shutters-img {
  overflow: hidden;
  position: relative;
}
html .swiper-shutters-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
html .swiper-shutters-img img:not(:first-child) {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='50' height='100' viewBox='0 0 50 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' width='13' height='100' fill='black'/%3E%3Crect x='34' width='16' height='100' fill='black'/%3E%3Crect x='58' width='5' height='100' fill='black'/%3E%3Crect x='79' width='21' height='100' fill='black'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='50' height='100' viewBox='0 0 50 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' width='13' height='100' fill='black'/%3E%3Crect x='34' width='16' height='100' fill='black'/%3E%3Crect x='58' width='5' height='100' fill='black'/%3E%3Crect x='79' width='21' height='100' fill='black'/%3E%3C/svg%3E%0A");
  -webkit-mask-size: cover;
          mask-size: cover;
  filter: blur(calc(4px * var(--parallaxProgress)));
}
html .swiper-shutters-img img:nth-child(3) {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='50' height='100' viewBox='0 0 50 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url("-clip0_1_4.html")'%3E%3Crect x='7' width='8' height='100' fill='black'/%3E%3Crect x='34' width='6' height='100' fill='black'/%3E%3Crect x='58' width='2' height='100' fill='black'/%3E%3Crect x='92' width='8' height='100' fill='black'/%3E%3Crect width='5' height='100' fill='black'/%3E%3Crect x='26' width='7' height='100' fill='black'/%3E%3Crect x='51' width='4' height='100' fill='black'/%3E%3Crect x='85' width='5' height='100' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_4'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='50' height='100' viewBox='0 0 50 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url("-clip0_1_4.html")'%3E%3Crect x='7' width='8' height='100' fill='black'/%3E%3Crect x='34' width='6' height='100' fill='black'/%3E%3Crect x='58' width='2' height='100' fill='black'/%3E%3Crect x='92' width='8' height='100' fill='black'/%3E%3Crect width='5' height='100' fill='black'/%3E%3Crect x='26' width='7' height='100' fill='black'/%3E%3Crect x='51' width='4' height='100' fill='black'/%3E%3Crect x='85' width='5' height='100' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_4'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  filter: blur(calc(6px * var(--parallaxProgress)));
}
html .swiper-shutters-img--mix-blend img:not(:first-child) {
  mix-blend-mode: darken;
}
html .swiper-shutters-img--mix-blend img:nth-child(3) {
  mix-blend-mode: lighten;
}
html .swiper-button-next, html .swiper-button-prev {
  color: #ffffff;
}/*# sourceMappingURL=main.css.map */