/* cache 2025-09-28 12:17:30 */
:root {
  --faze-color-primary: #2563eb;
  --faze-color-primary-dark: #1d53c7;
  --faze-color-success: #4bb543;
  --faze-color-error: #e94151;
  --faze-color-white: #fff;
  --faze-color-black: #000;
  --faze-color-text: #424242;
  --faze-color-hover: #e7e7e7;
  --faze-color-base: #f4f4f4;
  --faze-color-border: #bdbdbd;
  --faze-color-overlay: rgba(33, 33, 33, 0.5);
  --faze-border-radius: 5px;
  --faze-font-fontawesome: "Font Awesome 6 Pro";
}
* {
  outline: none;
  box-sizing: border-box;
}
html {
  font-size: 10px;
}
.faze-hide {
  display: none !important;
}
.faze-hidden {
  visibility: hidden !important;
}
.faze-modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.faze-modal-wrapper .faze-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 40rem;
  max-width: 80vw;
  max-height: 80vh;
  padding: 1rem;
  background-color: #fff;
}
.faze-modal-wrapper .faze-modal > header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 1.4rem;
}
.faze-modal-wrapper .faze-modal > header > .faze-close {
  position: relative;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
}
.faze-modal-wrapper .faze-modal > header > .faze-close:before,
.faze-modal-wrapper .faze-modal > header > .faze-close:after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%);
  background-color: #000;
}
.faze-modal-wrapper .faze-modal > header > .faze-close:before {
  transform: translate(50%, 50%) rotateZ(45deg);
}
.faze-modal-wrapper .faze-modal > header > .faze-close:after {
  transform: translate(50%) rotateZ(135deg);
}
.faze-modal-wrapper .faze-modal > header > .faze-close:hover {
  cursor: pointer;
}
.faze-modal-wrapper .faze-modal > main {
  width: 100%;
  height: 100%;
  margin-top: 1rem;
  overflow: auto;
}
.faze-modal-wrapper .faze-modal > footer {
  margin-top: 1rem;
}
.faze-modal-wrapper .faze-modal.faze-modal-draggable {
  position: absolute;
}
.faze-modal-wrapper .faze-modal.faze-modal-draggable > header {
  cursor: move;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border {
  position: absolute;
  user-select: none;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-top,
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-bottom {
  width: 100%;
  height: 0.8rem;
  left: 0;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-top:hover,
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-bottom:hover {
  cursor: s-resize;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-right,
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-left {
  width: 0.8rem;
  height: 100%;
  top: 0;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-right:hover,
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-left:hover {
  cursor: e-resize;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-top {
  top: -0.4rem;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-bottom {
  bottom: -0.4rem;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-right {
  right: -0.4rem;
}
.faze-modal-wrapper .faze-modal.faze-modal-resizable .faze-modal-resize-border.faze-modal-resize-border-left {
  left: -0.4rem;
}
.faze-modal-wrapper.faze-modal-wrapper-hide {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
}
.faze-modal-wrapper.faze-modal-wrapper-hide .faze-modal {
  pointer-events: all;
}
@keyframes faze-notification-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.faze-notification-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 5;
}
.faze-notification-wrapper .faze-notification {
  display: block;
  width: 100%;
  padding: 1rem;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  animation-name: faze-notification-appear;
  animation-duration: 1s;
}
@keyframes faze-copy-notification-disappear {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.faze-copy-text {
  position: relative;
}
.faze-copy-text .faze-notification {
  position: absolute;
  left: 0;
  bottom: -1rem;
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  opacity: 0;
  animation-name: faze-copy-notification-disappear;
  animation-duration: 2s;
}
.faze-copy-text:hover {
  cursor: pointer;
}
.faze-drag-active {
  cursor: move;
}
.faze-file-input .faze-file-input-file {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.faze-placeholder.faze-placeholder-loading {
  height: 10rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="32px" height="32px" viewBox="0 0 128 128" xml:space="preserve"><rect x="0" y="0" width="100%" height="100%" fill="%23FFFFFF" /><g><path d="M26.43 44.95a45.68 45.68 0 0 0 18.6 36.82h-.3a36.83 36.83 0 1 1 0-73.65h.3a45.68 45.68 0 0 0-18.6 36.83zm44-22.55a45.68 45.68 0 0 0-29.28 29.07l-.1-.28a36.83 36.83 0 0 1 70.05-22.8l.1.3a45.68 45.68 0 0 0-40.77-6.32zm35.27 34.9A45.68 45.68 0 0 0 69 38.45c.1-.06.17-.13.25-.2a36.83 36.83 0 1 1 43.3 59.6c-.08.07-.17.12-.25.18a45.68 45.68 0 0 0-6.6-40.73zm-22.57 44.3a45.68 45.68 0 0 0 6.6-40.72c.08.05.16.1.24.17a36.83 36.83 0 0 1-43.3 59.6l-.24-.2a45.68 45.68 0 0 0 36.7-18.85zm-48.8-7.86a45.68 45.68 0 0 0 40.77-6.3l-.1.28A36.83 36.83 0 1 1 4.96 64.95l.1-.28a45.68 45.68 0 0 0 29.28 29.07z" fill="%23000000"/><animateTransform attributeName="transform" type="rotate" from="72 64 64" to="0 64 64" dur="1080ms" repeatCount="indefinite"></animateTransform></g></svg>') center center no-repeat;
}
.faze-tooltip {
  position: absolute;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  z-index: 30;
}
.faze-tooltip:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}
.faze-tooltip.faze-tooltip-top:before,
.faze-tooltip.faze-tooltip-bottom:before {
  left: 50%;
  transform: translateX(-50%);
}
.faze-tooltip.faze-tooltip-left:before,
.faze-tooltip.faze-tooltip-right:before {
  top: 50%;
  transform: translateY(-50%);
}
.faze-tooltip.faze-tooltip-top:before {
  bottom: -0.5rem;
  border-left: 0.5rem solid rgba(0, 0, 0, 0);
  border-right: 0.5rem solid rgba(0, 0, 0, 0);
  border-top: 0.5rem solid rgba(0, 0, 0, 0.5);
}
.faze-tooltip.faze-tooltip-bottom:before {
  top: -0.5rem;
  border-left: 0.5rem solid rgba(0, 0, 0, 0);
  border-right: 0.5rem solid rgba(0, 0, 0, 0);
  border-bottom: 0.5rem solid rgba(0, 0, 0, 0.5);
}
.faze-tooltip.faze-tooltip-left:before {
  right: -0.5rem;
  border-top: 0.5rem solid rgba(0, 0, 0, 0);
  border-bottom: 0.5rem solid rgba(0, 0, 0, 0);
  border-left: 0.5rem solid rgba(0, 0, 0, 0.5);
}
.faze-tooltip.faze-tooltip-right:before {
  left: -0.5rem;
  border-top: 0.5rem solid rgba(0, 0, 0, 0);
  border-bottom: 0.5rem solid rgba(0, 0, 0, 0);
  border-right: 0.5rem solid rgba(0, 0, 0, 0.5);
}
[data-faze~=tooltip][data-faze-tooltip-event=click]:hover {
  cursor: pointer;
}
.faze-tour-overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.faze-tour-hint-wrapper {
  position: absolute;
  display: block;
  transition: all 0.2s;
  box-shadow: var(--faze-color-overlay) 0px 0px 0px 5000px;
  border: 1px solid var(--faze-color-primary);
  border-radius: var(--faze-border-radius);
}
.faze-tour-hint-wrapper .faze-tour-hint {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  min-height: 150px;
  border-radius: var(--faze-border-radius);
  background-color: #fff;
  box-shadow: 0 3px 30px rgba(33, 33, 33, 0.3);
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-btn-close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  color: var(--faze-color-text);
  font-size: 28px;
  line-height: 1;
  border: none;
  background: none;
  border-radius: 0;
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-btn-close:before {
  content: "×";
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-btn-close:hover {
  cursor: pointer;
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-header {
  font-weight: bold;
  line-height: 1;
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-header:not(:empty) {
  padding: 16px 20px 0;
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-main {
  padding: 20px 20px 20px;
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 10px;
  border-top: 1px solid var(--faze-color-border);
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-hint-btn-next,
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-hint-btn-prev {
  padding: 10px;
  color: var(--faze-color-text);
  font-size: 14px;
  line-height: 1;
  background: var(--faze-color-base);
  border: 0.1rem solid var(--faze-color-border);
  border-radius: 5px;
  transition: background 0.2s ease;
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-hint-btn-next:hover,
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-hint-btn-prev:hover {
  cursor: pointer;
  background: var(--faze-color-hover);
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-hint-btn-next {
  color: var(--faze-color-white);
  background: var(--faze-color-primary);
  border-color: var(--faze-color-primary-dark);
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-hint-btn-next:hover {
  cursor: pointer;
  background: var(--faze-color-primary-dark);
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-pages {
  position: absolute;
  left: 50%;
  bottom: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-pages .faze-tour-page {
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--faze-color-hover);
  border-radius: 3px;
  transition: width 0.2s ease;
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-pages .faze-tour-page.faze-active {
  width: 15px;
  background-color: var(--faze-color-border);
}
.faze-tour-hint-wrapper .faze-tour-hint .faze-tour-hint-footer .faze-tour-pages .faze-tour-page:not(:last-child) {
  margin-right: 4px;
}
.faze-tour-hint-wrapper .faze-tour-hint:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.faze-tour-hint-wrapper .faze-tour-hint.faze-tour-hint-side-left {
  top: 0;
  right: calc(100% + 10px);
}
.faze-tour-hint-wrapper .faze-tour-hint.faze-tour-hint-side-left:before {
  top: 10px;
  right: -5px;
  border-top: 5px solid rgba(0, 0, 0, 0);
  border-left: 5px solid var(--faze-color-white);
  border-bottom: 5px solid rgba(0, 0, 0, 0);
}
.faze-tour-hint-wrapper .faze-tour-hint.faze-tour-hint-side-right {
  top: 0;
  left: calc(100% + 10px);
}
.faze-tour-hint-wrapper .faze-tour-hint.faze-tour-hint-side-right:before {
  top: 10px;
  left: -5px;
  border-top: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid var(--faze-color-white);
  border-bottom: 5px solid rgba(0, 0, 0, 0);
}
.faze-tour-hint-wrapper .faze-tour-hint.faze-tour-hint-side-top {
  left: 0;
  bottom: calc(100% + 10px);
}
.faze-tour-hint-wrapper .faze-tour-hint.faze-tour-hint-side-top:before {
  left: 10px;
  bottom: -5px;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-top: 5px solid var(--faze-color-white);
}
.faze-tour-hint-wrapper .faze-tour-hint.faze-tour-hint-side-bottom {
  left: 0;
  top: calc(100% + 10px);
}
.faze-tour-hint-wrapper .faze-tour-hint.faze-tour-hint-side-bottom:before {
  left: 10px;
  top: -5px;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid var(--faze-color-white);
}
.faze-tour-hint-wrapper.faze-tour-hint-wrapper-float {
  border: none;
}
.faze-tabs .faze-tab-body,
.faze-tabs [data-faze-tab=body],
.faze-tabs [data-faze-tab-body]:not([data-faze-tab=header]):not(.faze-tab-header),
.faze-tab .faze-tab-body,
.faze-tab [data-faze-tab=body],
.faze-tab [data-faze-tab-body]:not([data-faze-tab=header]):not(.faze-tab-header),
[data-faze~=tab] .faze-tab-body,
[data-faze~=tab] [data-faze-tab=body],
[data-faze~=tab] [data-faze-tab-body]:not([data-faze-tab=header]):not(.faze-tab-header) {
  display: none;
}
.faze-tabs .faze-tab-body:first-of-type,
.faze-tabs [data-faze-tab=body]:first-of-type,
.faze-tabs [data-faze-tab-body]:not([data-faze-tab=header]):not(.faze-tab-header):first-of-type,
.faze-tab .faze-tab-body:first-of-type,
.faze-tab [data-faze-tab=body]:first-of-type,
.faze-tab [data-faze-tab-body]:not([data-faze-tab=header]):not(.faze-tab-header):first-of-type,
[data-faze~=tab] .faze-tab-body:first-of-type,
[data-faze~=tab] [data-faze-tab=body]:first-of-type,
[data-faze~=tab] [data-faze-tab-body]:not([data-faze-tab=header]):not(.faze-tab-header):first-of-type {
  display: block;
}
.faze-tabs[data-faze-styles=true] .faze-tabs-headers,
.faze-tab[data-faze-styles=true] .faze-tabs-headers {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 0.1rem solid #000;
}
.faze-tabs[data-faze-styles=true] .faze-tab-header,
.faze-tabs[data-faze-styles=true] [data-faze-tab=header],
.faze-tabs[data-faze-styles=true] [data-faze-tab-head],
.faze-tab[data-faze-styles=true] .faze-tab-header,
.faze-tab[data-faze-styles=true] [data-faze-tab=header],
.faze-tab[data-faze-styles=true] [data-faze-tab-head] {
  padding: 1rem;
  border: 0.1rem solid #000;
  border-bottom: none;
  user-select: none;
}
.faze-tabs[data-faze-styles=true] .faze-tab-header:not(:first-child),
.faze-tabs[data-faze-styles=true] [data-faze-tab=header]:not(:first-child),
.faze-tabs[data-faze-styles=true] [data-faze-tab-head]:not(:first-child),
.faze-tab[data-faze-styles=true] .faze-tab-header:not(:first-child),
.faze-tab[data-faze-styles=true] [data-faze-tab=header]:not(:first-child),
.faze-tab[data-faze-styles=true] [data-faze-tab-head]:not(:first-child) {
  border-left: none;
}
.faze-tabs[data-faze-styles=true] .faze-tab-header.faze-active,
.faze-tabs[data-faze-styles=true] [data-faze-tab=header].faze-active,
.faze-tabs[data-faze-styles=true] [data-faze-tab-head].faze-active,
.faze-tab[data-faze-styles=true] .faze-tab-header.faze-active,
.faze-tab[data-faze-styles=true] [data-faze-tab=header].faze-active,
.faze-tab[data-faze-styles=true] [data-faze-tab-head].faze-active {
  background-color: #efefef;
}
.faze-tabs[data-faze-styles=true] .faze-tab-header:hover,
.faze-tabs[data-faze-styles=true] [data-faze-tab=header]:hover,
.faze-tabs[data-faze-styles=true] [data-faze-tab-head]:hover,
.faze-tab[data-faze-styles=true] .faze-tab-header:hover,
.faze-tab[data-faze-styles=true] [data-faze-tab=header]:hover,
.faze-tab[data-faze-styles=true] [data-faze-tab-head]:hover {
  cursor: pointer;
}
.faze-tabs[data-faze-styles=true] .faze-tab-body,
.faze-tabs[data-faze-styles=true] [data-faze-tab=body],
.faze-tabs[data-faze-styles=true] [data-faze-tab-body],
.faze-tab[data-faze-styles=true] .faze-tab-body,
.faze-tab[data-faze-styles=true] [data-faze-tab=body],
.faze-tab[data-faze-styles=true] [data-faze-tab-body] {
  padding-top: 1rem;
}
.faze-drag,
[data-faze~=drag] {
  position: relative;
}
.faze-drag .faze-drag-item,
.faze-drag [data-faze-drag=item],
[data-faze~=drag] .faze-drag-item,
[data-faze~=drag] [data-faze-drag=item] {
  position: relative;
}
.faze-drag .faze-drag-item.faze-drag-item-moving,
.faze-drag [data-faze-drag=item].faze-drag-item-moving,
[data-faze~=drag] .faze-drag-item.faze-drag-item-moving,
[data-faze~=drag] [data-faze-drag=item].faze-drag-item-moving {
  z-index: 999999;
}
.faze-drag .faze-drag-item .faze-drag-handle:hover,
.faze-drag .faze-drag-item [data-faze-drag=handle]:hover,
.faze-drag [data-faze-drag=item] .faze-drag-handle:hover,
.faze-drag [data-faze-drag=item] [data-faze-drag=handle]:hover,
[data-faze~=drag] .faze-drag-item .faze-drag-handle:hover,
[data-faze~=drag] .faze-drag-item [data-faze-drag=handle]:hover,
[data-faze~=drag] [data-faze-drag=item] .faze-drag-handle:hover,
[data-faze~=drag] [data-faze-drag=item] [data-faze-drag=handle]:hover {
  cursor: move;
}
.faze-drag[data-faze-styles=true] .faze-drag-item .faze-drag-handle,
.faze-drag[data-faze-styles=true] .faze-drag-item [data-faze-drag=handle],
.faze-drag[data-faze-styles=true] [data-faze-drag=item] .faze-drag-handle,
.faze-drag[data-faze-styles=true] [data-faze-drag=item] [data-faze-drag=handle] {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"276\" height=\"276\" viewBox=\"0 0 276 276\"><g fill=\"%23808080\"><path d=\"M33.144,2.471C15.336,2.471,0.85,16.958,0.85,34.765s14.48,32.293,32.294,32.293s32.294-14.486,32.294-32.293 S50.951,2.471,33.144,2.471z\"/><path d=\"M137.663,2.471c-17.807,0-32.294,14.487-32.294,32.294s14.487,32.293,32.294,32.293c17.808,0,32.297-14.486,32.297-32.293S155.477,2.471,137.663,2.471z\"/><path d=\"M243.873,67.059c17.804,0,32.294-14.486,32.294-32.293S261.689,2.471,243.873,2.471s-32.294,14.487-32.294,32.294 S226.068,67.059,243.873,67.059z\"/> <path d=\"M32.3,170.539c17.807,0,32.297-14.483,32.297-32.293c0-17.811-14.49-32.297-32.297-32.297S0,120.436,0,138.246 C0,156.056,14.493,170.539,32.3,170.539z\"/> <path d=\"M136.819,170.539c17.804,0,32.294-14.483,32.294-32.293c0-17.811-14.478-32.297-32.294-32.297 c-17.813,0-32.294,14.486-32.294,32.297C104.525,156.056,119.012,170.539,136.819,170.539z\"/> <path d=\"M243.038,170.539c17.811,0,32.294-14.483,32.294-32.293c0-17.811-14.483-32.297-32.294-32.297 s-32.306,14.486-32.306,32.297C210.732,156.056,225.222,170.539,243.038,170.539z\"/> <path d=\"M33.039,209.108c-17.807,0-32.3,14.483-32.3,32.294c0,17.804,14.493,32.293,32.3,32.293s32.293-14.482,32.293-32.293 S50.846,209.108,33.039,209.108z\"/> <path d=\"M137.564,209.108c-17.808,0-32.3,14.483-32.3,32.294c0,17.804,14.487,32.293,32.3,32.293 c17.804,0,32.293-14.482,32.293-32.293S155.368,209.108,137.564,209.108z\"/> <path d=\"M243.771,209.108c-17.804,0-32.294,14.483-32.294,32.294c0,17.804,14.49,32.293,32.294,32.293 c17.811,0,32.294-14.482,32.294-32.293S261.575,209.108,243.771,209.108z\"/> </g></svg>") center center no-repeat;
  background-size: cover;
  user-select: none;
}
.faze-drag[data-faze-styles=true] .faze-drag-item .faze-drag-handle:hover,
.faze-drag[data-faze-styles=true] .faze-drag-item [data-faze-drag=handle]:hover,
.faze-drag[data-faze-styles=true] [data-faze-drag=item] .faze-drag-handle:hover,
.faze-drag[data-faze-styles=true] [data-faze-drag=item] [data-faze-drag=handle]:hover {
  cursor: move;
}
.faze-dropdown .faze-title:hover,
.faze-dropdown [data-faze-dropdown=title]:hover,
[data-faze=dropdown] .faze-title:hover,
[data-faze=dropdown] [data-faze-dropdown=title]:hover {
  cursor: pointer;
}
.faze-dropdown .faze-body,
.faze-dropdown [data-faze-dropdown=body],
[data-faze=dropdown] .faze-body,
[data-faze=dropdown] [data-faze-dropdown=body] {
  position: absolute;
  display: none;
  z-index: 3;
}
.faze-dropdown.faze-active .faze-body,
.faze-dropdown.faze-active [data-faze-dropdown=body],
[data-faze=dropdown].faze-active .faze-body,
[data-faze=dropdown].faze-active [data-faze-dropdown=body] {
  display: block;
}
.faze-dropdown {
  position: relative;
}
.faze-dropdown > .faze-title {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border: 0.1rem solid #000;
  line-height: 1;
  user-select: none;
  z-index: 2;
}
.faze-dropdown > .faze-title:hover {
  cursor: pointer;
}
.faze-dropdown > .faze-body {
  position: absolute;
  display: none;
  padding: 1rem;
  background-color: #fff;
  border: 0.1rem solid #000;
  z-index: 3;
}
.faze-dropdown.faze-active > .faze-body {
  display: block;
}
.faze-form input.faze-form-input-invalid {
  border-color: var(--faze-color-error);
}
.faze-form-hint {
  position: absolute;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  border: 0.1rem solid var(--faze-color-primary);
  border-radius: var(--faze-border-radius);
  background-color: var(--faze-color-white);
  z-index: 10;
}
.faze-form-hint .faze-form-rule {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
}
.faze-form-hint .faze-form-rule::before {
  content: "";
  margin-right: 0.8rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  font-style: normal;
}
.faze-form-hint .faze-form-rule.faze-form-rule-valid::before {
  content: "";
  color: var(--faze-color-success);
}
.faze-form-hint .faze-form-rule.faze-form-rule-invalid::before {
  content: "";
  color: var(--faze-color-error);
}
.faze-form-hint.active {
  display: flex;
}
.faze-select {
  position: relative;
}
.faze-select > .faze-title {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border: 0.1rem solid #000;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 3;
}
.faze-select > .faze-title:hover {
  cursor: pointer;
}
.faze-select > .faze-body {
  position: absolute;
  display: none;
  padding: 1rem;
  background-color: #fff;
  border: 0.1rem solid #000;
  z-index: 4;
}
.faze-select > .faze-body > .faze-option:hover {
  cursor: pointer;
}
.faze-select.faze-active > .faze-body {
  display: block;
}
.faze-smartsearch-items {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  max-height: 330px;
  background-color: #fff;
  overflow: auto;
  z-index: 5;
}
.faze-smartsearch-items .faze-smartsearch-item {
  user-select: none;
}
.faze-smartsearch-items .faze-smartsearch-item:hover {
  cursor: pointer;
}
.faze-smartsearch-items.faze-active {
  display: block;
}
.faze-smartsearch-items[data-faze-styles] {
  border: 1px solid #aaa;
}
.faze-smartsearch-items[data-faze-styles] .faze-smartsearch-item {
  padding: 5px 10px;
}
.faze-smartsearch-items[data-faze-styles] .faze-smartsearch-item.faze-active,
.faze-smartsearch-items[data-faze-styles] .faze-smartsearch-item:hover {
  background-color: #ccc;
}
.faze-carousel {
  position: relative;
}
.faze-carousel .faze-carousel-holder {
  position: relative;
  display: flex;
}
.faze-carousel .faze-carousel-holder > .faze-item > img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faze-carousel.faze-animation-fade .faze-carousel-holder > .faze-item {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition-property: opacity;
  z-index: 1;
}
.faze-carousel.faze-animation-fade .faze-carousel-holder > .faze-item.faze-active {
  position: relative;
  opacity: 1;
  z-index: 2;
}
.faze-carousel.faze-animation-fade .faze-carousel-holder > .faze-item:not(.faze-active) {
  opacity: 0;
}
.faze-carousel.faze-animation-slide {
  position: relative;
  overflow: hidden;
}
.faze-carousel.faze-animation-slide.faze-direction-horizontal > .faze-carousel-holder {
  left: 0;
  width: 5000%;
  transition-property: left;
}
.faze-carousel.faze-animation-slide.faze-direction-horizontal > .faze-carousel-holder > .faze-item {
  width: 2%;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical > .faze-carousel-holder {
  flex-direction: column;
  top: 0;
  height: 5000%;
  transition-property: top;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow {
  width: 100%;
  height: 10rem;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-prev {
  top: 0;
  left: initial;
  right: initial;
  bottom: initial;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-prev:after {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-next {
  bottom: 0;
  left: initial;
  right: initial;
  top: initial;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-next:after {
  transform: translate(-50%, -50%) rotateZ(135deg);
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  user-select: none;
  z-index: 4;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages > .faze-page {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #fff;
  border-radius: 50%;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages > .faze-page + .faze-page {
  margin-left: 0.5rem;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages > .faze-page.faze-active {
  background-color: #000;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages > .faze-page:hover {
  cursor: pointer;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  pointer-events: all;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow:after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 0.3rem solid #000;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-prev {
  left: 0;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-prev:after {
  border-left: 0.3rem solid #000;
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-next {
  right: 0;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-next:after {
  border-right: 0.3rem solid #000;
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-disabled {
  opacity: 0.5;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-disabled:hover {
  cursor: default;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow:hover:not(.faze-disabled) {
  cursor: pointer;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow:hover:not(.faze-disabled):after {
  border-color: #666;
}
.faze-carousel > .faze-carousel-controls .faze-carousel-counter {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 5;
}
.faze-carousel.faze-carousel-grouped .faze-carousel-holder > .faze-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.faze-carousel {
  position: relative;
}
.faze-carousel .faze-carousel-holder {
  position: relative;
  display: flex;
}
.faze-carousel .faze-carousel-holder > .faze-item > img {
  display: flex;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.faze-carousel.faze-animation-fade .faze-carousel-holder > .faze-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s;
}
.faze-carousel.faze-animation-fade .faze-carousel-holder > .faze-item.faze-active {
  position: relative;
  opacity: 1;
  z-index: 3;
}
.faze-carousel.faze-animation-slide {
  position: relative;
  overflow: hidden;
}
.faze-carousel.faze-animation-slide.faze-direction-horizontal > .faze-carousel-holder {
  width: 5000%;
}
.faze-carousel.faze-animation-slide.faze-direction-horizontal > .faze-carousel-holder > .faze-item {
  width: 2%;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical > .faze-carousel-holder {
  flex-direction: column;
  height: 5000%;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow {
  width: 100%;
  height: 10rem;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-prev {
  top: 0;
  left: initial;
  right: initial;
  bottom: initial;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-prev:after {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-next {
  bottom: 0;
  left: initial;
  right: initial;
  top: initial;
}
.faze-carousel.faze-animation-slide.faze-direction-vertical .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-next:after {
  transform: translate(-50%, -50%) rotateZ(135deg);
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  user-select: none;
  z-index: 4;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages > .faze-page {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #fff;
  border-radius: 50%;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages > .faze-page + .faze-page {
  margin-left: 0.5rem;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages > .faze-page.faze-active {
  background-color: #000;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-pages > .faze-page:hover {
  cursor: pointer;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  pointer-events: all;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow:after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 0.3rem solid #000;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-prev {
  left: 0;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-prev:after {
  border-left: 0.3rem solid #000;
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-next {
  right: 0;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-carousel-arrow-next:after {
  border-right: 0.3rem solid #000;
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-disabled {
  opacity: 0.5;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow.faze-disabled:hover {
  cursor: default;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow:hover:not(.faze-disabled) {
  cursor: pointer;
}
.faze-carousel > .faze-carousel-controls > .faze-carousel-arrows > .faze-carousel-arrow:hover:not(.faze-disabled):after {
  border-color: #666;
}
.faze-carousel > .faze-carousel-controls .faze-carousel-counter {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  line-height: 1;
  user-select: none;
  z-index: 5;
}
.faze-carousel.faze-carousel-grouped .faze-carousel-holder > .faze-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.faze-thumbgallery {
  position: relative;
}
.faze-thumbgallery .faze-thumbgallery-gallery {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.4rem;
  width: 100%;
  height: 0.2rem;
  margin: 0 auto;
  visibility: hidden;
  z-index: 2;
}
.faze-thumbgallery .faze-thumbgallery-gallery .faze-thumbgallery-gallery-element {
  height: 100%;
  background-color: #bebebe;
}
.faze-thumbgallery .faze-thumbgallery-gallery .faze-thumbgallery-gallery-element.active {
  background-color: #2b2b2b;
}
.faze-thumbgallery .faze-thumbgallery-gallery[data-faze-thumbgallery-total="0"],
.faze-thumbgallery .faze-thumbgallery-gallery[data-faze-thumbgallery-total="1"] {
  display: none;
}
.faze-thumbgallery .faze-thumbgallery-gallery[data-faze-thumbgallery-total="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.faze-thumbgallery .faze-thumbgallery-gallery[data-faze-thumbgallery-total="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.faze-thumbgallery .faze-thumbgallery-gallery[data-faze-thumbgallery-total="4"] {
  grid-template-columns: repeat(4, 1fr);
}
.faze-thumbgallery .faze-thumbgallery-gallery[data-faze-thumbgallery-total="5"] {
  grid-template-columns: repeat(5, 1fr);
}
.faze-thumbgallery:hover .faze-thumbgallery-gallery {
  visibility: visible;
}
.faze-finder .faze-finder-input-holder {
  position: relative;
}
.faze-finder .faze-finder-input-holder input {
  width: 100%;
  padding-right: 3rem;
}
.faze-finder .faze-finder-input-holder .faze-finder-clear-button {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  transform: translateY(-50%);
}
.faze-finder .faze-finder-input-holder .faze-finder-clear-button:before {
  content: "";
  color: var(--faze-color-text);
  font-family: var(--faze-font-fontawesome);
  font-size: 1.6rem;
}
.faze-finder .faze-finder-input-holder .faze-finder-clear-button:hover {
  cursor: pointer;
}
.faze-tablesorter .faze-tablesorter-header,
[data-faze=tablesorter] .faze-tablesorter-header {
  user-select: none;
}
.faze-tablesorter .faze-tablesorter-header:hover,
[data-faze=tablesorter] .faze-tablesorter-header:hover {
  cursor: pointer;
}
[data-faze-sorter-head] {
  user-select: none;
}
[data-faze-sorter-head]:hover {
  cursor: pointer;
}
@keyframes appearing {
  from {
    display: none;
    opacity: 0;
  }
  to {
    display: flex;
    opacity: 1;
  }
}
@keyframes disappearing {
  from {
    display: flex;
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
  }
}
.faze-scroller .faze-scroller-btn {
  position: fixed;
  bottom: 2rem;
  z-index: 9999;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  border: none;
  border-radius: 50%;
  background: var(--faze-color-primary);
  transition: background 0.2s ease;
  animation: disappearing 0.5s ease forwards;
}
.faze-scroller .faze-scroller-btn:after {
  content: "";
  display: block;
  margin-top: 0.4rem;
  border: solid var(--faze-color-white);
  border-width: 0 0.3rem 0.3rem 0;
  width: 1.2rem;
  height: 1.2rem;
  transform: rotate(-135deg);
}
.faze-scroller .faze-scroller-btn:hover {
  cursor: pointer;
  background: var(--faze-color-primary-dark);
}
.faze-scroller .faze-scroller-btn.faze-active {
  animation: appearing 0.5s ease forwards;
}
.faze-scroller.faze-scroller-right .faze-scroller-btn {
  right: 2rem;
}
.faze-scroller.faze-scroller-left .faze-scroller-btn {
  left: 2rem;
}
.faze-zoom {
  position: relative;
}
.faze-zoom .faze-zoom-initial-image:hover,
.faze-zoom .faze-zoom-pointer:hover {
  cursor: crosshair;
}
.faze-zoom .faze-zoom-pointer {
  position: absolute;
  display: none;
  border: 0.1rem solid #000;
}
.faze-zoom .faze-zoom-image-wrapper {
  position: absolute;
  display: none;
  overflow: hidden;
  z-index: 5;
}
.faze-zoom .faze-zoom-image-wrapper .faze-zoom-big-image {
  position: absolute;
  top: 0;
  left: 0;
}
[data-faze-zoombox-image]:hover {
  cursor: zoom-in;
}
.faze-zoombox-wrapper {
  position: absolute;
  padding: 5px;
  border: 1px solid #666;
  border-radius: 5px;
  background-color: #fff;
}
.faze-zoombox-wrapper .faze-zoombox-image {
  display: flex;
  width: 100%;
  height: 100%;
}
.faze-zoombox-wrapper .faze-zoombox-image:hover {
  cursor: zoom-out;
}
.faze-zoombox-wrapper .faze-zoombox-caption:not(:empty) {
  margin-top: 5px;
}
.faze-zoombox-wrapper .faze-zoombox-arrow {
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  user-select: none;
  transform: translateY(-50%);
}
.faze-zoombox-wrapper .faze-zoombox-arrow:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
}
.faze-zoombox-wrapper .faze-zoombox-arrow.faze-zoombox-arrow-next {
  right: 15px;
}
.faze-zoombox-wrapper .faze-zoombox-arrow.faze-zoombox-arrow-next:after {
  transform: translateX(-20%) rotateZ(45deg);
}
.faze-zoombox-wrapper .faze-zoombox-arrow.faze-zoombox-arrow-prev {
  left: 15px;
}
.faze-zoombox-wrapper .faze-zoombox-arrow.faze-zoombox-arrow-prev:after {
  transform: translateX(20%) rotateZ(225deg);
}
.faze-zoombox-wrapper .faze-zoombox-arrow:hover {
  cursor: pointer;
}
.faze-zoombox-wrapper .faze-zoombox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}
.faze-zoombox-wrapper .faze-zoombox-close:before,
.faze-zoombox-wrapper .faze-zoombox-close:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000;
}
.faze-zoombox-wrapper .faze-zoombox-close:before {
  transform: rotateZ(45deg);
}
.faze-zoombox-wrapper .faze-zoombox-close:after {
  transform: rotateZ(-45deg);
}
.faze-zoombox-wrapper .faze-zoombox-close:hover {
  cursor: pointer;
}
.faze-zoombox-wrapper.faze-drag-active:hover {
  cursor: move;
}
.faze-zoombox-wrapper.faze-drag-active .faze-zoombox-image:hover {
  cursor: move;
}
@keyframes faze-look-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.faze-look-image {
  position: absolute;
  animation-name: faze-notification-appear;
  animation-duration: 0.25s;
  object-fit: cover;
}
[data-faze=colorchanger] {
  position: relative;
}
[data-faze=colorchanger] .faze-colorchanger-colors {
  position: absolute;
  display: flex;
  gap: 0.4rem;
}
[data-faze=colorchanger] .faze-colorchanger-colors .faze-colorchanger-row {
  display: flex;
  gap: 0.4rem;
}
[data-faze=colorchanger] .faze-colorchanger-colors .faze-colorchanger-row .faze-colorchanger-color,
[data-faze=colorchanger] .faze-colorchanger-colors .faze-colorchanger-row .faze-colorchanger-more {
  width: 3.2rem;
  height: 3.2rem;
  padding: 0.4rem;
  background-color: var(--faze-color-white);
  border: 0.1rem solid var(--faze-color-border);
  border-radius: var(--faze-border-radius);
}
[data-faze=colorchanger] .faze-colorchanger-colors .faze-colorchanger-row .faze-colorchanger-color:hover,
[data-faze=colorchanger] .faze-colorchanger-colors .faze-colorchanger-row .faze-colorchanger-more:hover {
  cursor: pointer;
}
[data-faze=colorchanger] .faze-colorchanger-colors .faze-colorchanger-row .faze-colorchanger-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
[data-faze=colorchanger] .faze-colorchanger-colors .faze-colorchanger-row:not(:first-child) {
  display: none;
}
[data-faze=colorchanger] .faze-colorchanger-colors.faze-colorchanger-colors-more .faze-colorchanger-row:first-child .faze-colorchanger-color:last-of-type {
  display: none;
}
[data-faze=colorchanger] .faze-colorchanger-colors:hover .faze-colorchanger-row .faze-colorchanger-more {
  display: none;
}
[data-faze=colorchanger] .faze-colorchanger-colors:hover .faze-colorchanger-row:not(:first-child) {
  display: flex;
}
[data-faze=colorchanger] .faze-colorchanger-colors:hover .faze-colorchanger-row:first-child .faze-colorchanger-color:last-of-type {
  display: block;
}
[data-faze=colorchanger].faze-colorchanger-vertical .faze-colorchanger-colors {
  top: 0;
  right: 0;
  flex-direction: row-reverse;
}
[data-faze=colorchanger].faze-colorchanger-vertical .faze-colorchanger-colors .faze-colorchanger-row {
  flex-direction: column;
}
[data-faze=colorchanger].faze-colorchanger-horizontal .faze-colorchanger-colors {
  top: 0;
  left: 0;
  flex-direction: column-reverse;
}
[data-faze=colorchanger].faze-colorchanger-horizontal .faze-colorchanger-colors .faze-colorchanger-row {
  flex-direction: row;
}
.faze-spoiler > .faze-title,
.faze-spoiler > [data-faze-spoiler=title],
[data-faze=spoiler] > .faze-title,
[data-faze=spoiler] > [data-faze-spoiler=title] {
  user-select: none;
}
.faze-spoiler > .faze-title:hover,
.faze-spoiler > [data-faze-spoiler=title]:hover,
[data-faze=spoiler] > .faze-title:hover,
[data-faze=spoiler] > [data-faze-spoiler=title]:hover {
  cursor: pointer;
}
.faze-spoiler > .faze-body,
.faze-spoiler > [data-faze-spoiler=body],
[data-faze=spoiler] > .faze-body,
[data-faze=spoiler] > [data-faze-spoiler=body] {
  display: none;
}
.faze-spoiler.faze-active > .faze-body,
.faze-spoiler.faze-active > [data-faze-spoiler=body],
[data-faze=spoiler].faze-active > .faze-body,
[data-faze=spoiler].faze-active > [data-faze-spoiler=body] {
  display: block;
}
.faze-gallery-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.faze-gallery-wrapper > .faze-gallery-arrow {
  position: relative;
  width: 10rem;
  height: 100%;
}
.faze-gallery-wrapper > .faze-gallery-arrow:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 0.3rem solid #000;
}
.faze-gallery-wrapper > .faze-gallery-arrow.faze-gallery-arrow-prev {
  left: 0;
}
.faze-gallery-wrapper > .faze-gallery-arrow.faze-gallery-arrow-prev:after {
  border-left: 0.3rem solid #000;
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.faze-gallery-wrapper > .faze-gallery-arrow.faze-gallery-arrow-next {
  right: 0;
}
.faze-gallery-wrapper > .faze-gallery-arrow.faze-gallery-arrow-next:after {
  border-right: 0.3rem solid #000;
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.faze-gallery-wrapper > .faze-gallery-arrow:hover {
  cursor: pointer;
  background-color: hsla(0, 0%, 100%, 0.1);
}
.faze-gallery-wrapper > .faze-gallery-close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 10rem;
  height: 10rem;
  z-index: 6;
}
.faze-gallery-wrapper > .faze-gallery-close:before,
.faze-gallery-wrapper > .faze-gallery-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 4rem;
  height: 0.3rem;
  background-color: #000;
}
.faze-gallery-wrapper > .faze-gallery-close:before {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.faze-gallery-wrapper > .faze-gallery-close:after {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.faze-gallery-wrapper > .faze-gallery-close:hover {
  cursor: pointer;
  background-color: hsla(0, 0%, 100%, 0.1);
}
.faze-gallery-wrapper > .faze-gallery-wrapper-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: calc(100% - 20rem);
}
.faze-gallery-wrapper > .faze-gallery-wrapper-image > .faze-gallery-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100vh;
}
.faze-gallery-wrapper .faze-gallery-thumbnails {
  position: absolute;
  display: flex;
}
.faze-gallery-wrapper .faze-gallery-thumbnails .faze-gallery-thumbnail {
  width: 4.8rem;
  height: 4.8rem;
  border: 0.1rem solid rgba(0, 0, 0, 0);
}
.faze-gallery-wrapper .faze-gallery-thumbnails .faze-gallery-thumbnail.faze-active {
  border-color: #000;
}
.faze-gallery-wrapper .faze-gallery-thumbnails .faze-gallery-thumbnail:hover {
  cursor: pointer;
}
.faze-gallery-wrapper .faze-gallery-counter {
  position: absolute;
  left: 50%;
  bottom: 5rem;
  color: #fff;
  transform: translateX(-50%);
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-top .faze-gallery-thumbnails,
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-bottom .faze-gallery-thumbnails {
  left: 50%;
  flex-direction: row;
  transform: translateX(-50%);
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-top .faze-gallery-thumbnails .faze-gallery-thumbnail:not(:last-child),
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-bottom .faze-gallery-thumbnails .faze-gallery-thumbnail:not(:last-child) {
  margin-right: 1rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-top .faze-gallery-thumbnails {
  top: 1rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-bottom .faze-gallery-thumbnails {
  bottom: 1rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-left .faze-gallery-thumbnails,
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-right .faze-gallery-thumbnails {
  top: 50%;
  flex-direction: column;
  transform: translateY(-50%);
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-left .faze-gallery-thumbnails .faze-gallery-thumbnail:not(:last-child),
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-right .faze-gallery-thumbnails .faze-gallery-thumbnail:not(:last-child) {
  margin-bottom: 1rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-left {
  padding-left: 6.8rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-left .faze-gallery-thumbnails {
  left: 1rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-right {
  padding-right: 6.8rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-right .faze-gallery-thumbnails {
  right: 1rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-thumbnails-right > .faze-gallery-close {
  right: 6.8rem;
}
.faze-gallery-wrapper.faze-gallery-wrapper-zoomable .faze-gallery-image:hover {
  cursor: zoom-in;
}
.faze-gallery-wrapper.faze-gallery-wrapper-zoomable.faze-gallery-wrapper-zoomable-active .faze-gallery-image {
  position: absolute;
  width: initial;
  max-width: initial;
  height: initial;
  max-height: initial;
}
.faze-gallery-wrapper.faze-gallery-wrapper-zoomable.faze-gallery-wrapper-zoomable-active .faze-gallery-image:hover {
  cursor: zoom-out;
}
.faze-gallery-wrapper.faze-gallery-wrapper-zoomable.faze-gallery-wrapper-zoomable-active .faze-gallery-image.faze-drag-active {
  cursor: move;
}
.faze-gallery-caller:hover {
  cursor: pointer;
}
.faze-slider {
  position: relative;
  width: 100%;
  height: 0.3rem;
  background-color: #eee;
}
.faze-slider .faze-pointer {
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1rem;
  background-color: #000;
  border-radius: 50%;
  transform: translateY(-50%);
  user-select: none;
}
.faze-slider .faze-pointer:hover {
  cursor: pointer;
}
.faze-slider .faze-connect {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #000;
}
.faze-steps .faze-steps-headers {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 0.1rem solid #000;
}
.faze-steps .faze-steps-headers .faze-steps-header {
  padding: 1rem;
  border: 0.1rem solid #000;
  border-bottom: none;
  user-select: none;
}
.faze-steps .faze-steps-headers .faze-steps-header.faze-active {
  background-color: #efefef;
}
.faze-steps .faze-steps-bodies .faze-steps-body {
  display: none;
  padding-top: 1rem;
}
.faze-steps .faze-steps-bodies .faze-steps-body .faze-steps-path {
  display: none;
}
.faze-steps .faze-steps-bodies .faze-steps-body .faze-steps-path.faze-steps-path-selected {
  display: block;
}
.faze-steps .faze-steps-bodies .faze-steps-body.faze-active {
  display: block;
}
@keyframes lazyloadPlaceholder {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  100% {
    transform: translate3d(30%, 0, 0);
  }
}
.faze-lazyload:not([data-faze-lazyload-loaded=true]) {
  position: relative;
  overflow: hidden;
}
.faze-lazyload:not([data-faze-lazyload-loaded=true]) .faze-lazyload-placeholder {
  width: 100%;
  height: 16px;
  border-radius: 8px;
  background-color: #ced4da;
}
.faze-lazyload:not([data-faze-lazyload-loaded=true]) .faze-lazyload-placeholder.faze-lazyload-placeholder-big {
  height: 32px;
}
.faze-lazyload:not([data-faze-lazyload-loaded=true]) .faze-lazyload-placeholder.faze-lazyload-placeholder-picture {
  height: 160px;
}
.faze-lazyload:not([data-faze-lazyload-loaded=true]) .faze-lazyload-placeholder.faze-lazyload-placeholder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.faze-lazyload:not([data-faze-lazyload-loaded=true]) .faze-lazyload-placeholder + .faze-lazyload-placeholder {
  margin-top: 16px;
}
.faze-lazyload:not([data-faze-lazyload-loaded=true]):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: 500%;
  margin-left: -250%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 54%) 50% 50%;
  animation: lazyloadPlaceholder 0.8s linear infinite;
  z-index: 1;
}
@keyframes lazy_image-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.faze-lazy_image {
  max-width: 100%;
  max-height: 100%;
  background-color: #ccc;
}
.faze-lazy_image:not(.faze-lazy_image-initialized) {
  object-fit: contain;
}
/* 100 - Thin */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 100;
  src: local('Rawline Thin'), local('Rawline-Thin'), url('/fonts/rawline/rawline-100.ttf') format('truetype');
}
/* 100 - Thin Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 100;
  src: local('Rawline Thin Italic'), local('Rawline-Thin-Italic'), url('/fonts/rawline/rawline-100i.ttf') format('truetype');
}
/* 200 - Extra-Light */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 200;
  src: local('Rawline Extra-Light'), local('Rawline-Extra-Light'), url('/fonts/rawline/rawline-200.ttf') format('truetype');
}
/* 200 - Extra-Light Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 200;
  src: local('Rawline Extra-Light Italic'), local('Rawline-Extra-Light-Italic'), url('/fonts/rawline/rawline-200i.ttf') format('truetype');
}
/* 300 - Light */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 300;
  src: local('Rawline Light'), local('Rawline-Light'), url('/fonts/rawline/rawline-300.ttf') format('truetype');
}
/* 300 - Light Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 300;
  src: local('Rawline Light Italic'), local('Rawline-Light-Italic'), url('/fonts/rawline/rawline-300i.ttf') format('truetype');
}
/* 400 - Regular */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 400;
  src: local('Rawline'), local('Rawline'), url('/fonts/rawline/rawline-400.ttf') format('truetype');
}
/* 400 - Regular Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 400;
  src: local('Rawline Italic'), local('Rawline-Italic'), url('/fonts/rawline/rawline-400i.ttf') format('truetype');
}
/* 500 - Medium */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 500;
  src: local('Rawline Medium'), local('Rawline-Medium'), url('/fonts/rawline/rawline-500.ttf') format('truetype');
}
/* 500 - Medium Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 500;
  src: local('Rawline Medium Italic'), local('Rawline-Medium-Italic'), url('/fonts/rawline/rawline-500i.ttf') format('truetype');
}
/* 600 - Semi-Bold */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 600;
  src: local('Rawline Semi-Bold'), local('Rawline-Semi-Bold'), url('/fonts/rawline/rawline-600.ttf') format('truetype');
}
/* 600 - Semi-Bold Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 600;
  src: local('Rawline Semi-Bold Italic'), local('Rawline-Semi-Bold-Italic'), url('/fonts/rawline/rawline-600i.ttf') format('truetype');
}
/* 700 - Bold */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 700;
  src: local('Rawline Bold'), local('Rawline-Bold'), url('/fonts/rawline/rawline-700.ttf') format('truetype');
}
/* 700 - Bold Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 700;
  src: local('Rawline Bold Italic'), local('Rawline-Bold-Italic'), url('/fonts/rawline/rawline-700i.ttf') format('truetype');
}
/* 800 - Extra-Bold */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 800;
  src: local('Rawline Extra-Bold'), local('Rawline-Extra-Bold'), url('/fonts/rawline/rawline-800.ttf') format('truetype');
}
/* 800 - Extra-Bold Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 800;
  src: local('Rawline Extra-Bold Italic'), local('Rawline-Extra-Bold-Italic'), url('/fonts/rawline/rawline-800i.ttf') format('truetype');
}
/* 900 - Black */
@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 900;
  src: local('Rawline Black'), local('Rawline-Black'), url('/fonts/rawline/rawline-900.ttf') format('truetype');
}
/* 900 - Black Italic */
@font-face {
  font-family: 'Rawline';
  font-style: italic;
  font-weight: 900;
  src: local('Rawline Black Italic'), local('Rawline-Black-Italic'), url('/fonts/rawline/rawline-900i.ttf') format('truetype');
}
/* 300 - Light */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Open-Sans-Light'), url('/fonts/roboto/RobotoLight.woff') format('woff'), url('/fonts/roboto/RobotoLight.ttf') format('ttf'), url('/fonts/roboto/RobotoLight.oet') format('oet');
}
/* 400 - Normal */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Open-Sans'), url('/fonts/roboto/RobotoRegular.woff') format('woff'), url('/fonts/roboto/RobotoRegular.ttf') format('ttf'), url('/fonts/roboto/RobotoRegular.oet') format('oet');
}
/* 500 - Bold */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Open-Medium'), url('/fonts/roboto/RobotoMedium.woff') format('woff'), url('/fonts/roboto/RobotoMedium.ttf') format('ttf'), url('/fonts/roboto/RobotoMedium.oet') format('oet');
}
/* 700 - Bold */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url('/fonts/roboto/RobotoBold.woff') format('woff'), url('/fonts/roboto/RobotoBold.ttf') format('ttf'), url('/fonts/roboto/RobotoBold.oet') format('oet');
}
/**
 * Миксин. Формула резиновой вёрстки чего угодно. 
 *
 * @max-value - Ширина/Размер элемента на брейкпоинте @max-screen
 * @min-value - Ширина/Размер элемента на брейкпоинте @min-screen
 */
/**
 * Миксин. Формула резиновой вёрстки чего угодно с использованием свойства clamp.
 * 
 * @max-value - Ширина/Размер элемента на брейкпоинте @max-screen
 * @min-value - Ширина/Размер элемента на брейкпоинте @min-screen
 *
 * Описание:
 * Использование clamp в данном случае гарантирует, что элемент примет адаптивные свойства между указанными параметрами, при этом не будет больше или меньше мин. и макс. значения.
 * Это избавляет от необходимости сброса адаптивных свойств в доп. брейкпоинтах, тем самым уменьшая их количество.
 *
 * !!! ВАЖНО
 * Миксин работает только на уменьшение размеров, так как clamp ограничивает макс. и мин. значения.
 * Если элемент нужно адаптивно увеличить, то использовать .mixin-responsive
 *
 * Использование:
 * Есть элемент шириной 100px на расширении экрана 1000px. На расширении 500px ширина элемента должна быть 50px и оставаться без изменений.
 * В промежутке между 1000px и 500px элемент должен пропрционально уменьшаться на каждом пикселе.
 *
 * -----------------------------------------------------------------------
 * Пример с mixin-responsive-clamp:
 * 
 * @media( max-width: 1000px ) {
 *   .element { .mixin-responsive-clamp( 100, 50, 1000, 500 )[@result] } // Применение адаптивного свойства к элементу.
 * }
 * -----------------------------------------------------------------------
 *
 * -----------------------------------------------------------------------
 * Пример с mixin-responsive:
 *
 * @media( max-width: 1000px ) {
 *   .element { width: .mixin-responsive( 100, 50, 1000, 500 )[@rewsult] } // Применение адаптивного свойства к элементу.
 * }
 *
 * @media( max-width: 500px ) { 
 *   .element { width: 50px; } // Сброс адаптивных свойств.
 * }
 *
 */
.mixin-container-centered {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  .mixin-container-centered {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  .mixin-container-centered {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  .mixin-container-centered {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  .mixin-container-centered {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
a {
  color: #141414;
  text-decoration: none;
}
button,
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 35rem;
  width: 100%;
  height: 6.4rem;
  font-family: 'Rawline', sans-serif;
  font-size: 1.6rem;
  text-wrap: nowrap;
  border: none;
  outline: none;
  cursor: pointer;
}
button.btn-black,
.btn.btn-black {
  color: #FFFFFF;
  background-color: #141414;
}
button.btn-black:hover,
.btn.btn-black:hover {
  background-color: #686868;
}
button.btn-white,
.btn.btn-white {
  color: #141414;
  background-color: #FFFFFF;
}
button.btn-white:hover,
.btn.btn-white:hover {
  color: #FFFFFF;
  background-color: #141414;
}
button.btn-outline,
.btn.btn-outline {
  color: #141414;
  background: transparent;
  border: 0.1rem solid #141414;
}
button.btn-outline:hover,
.btn.btn-outline:hover {
  color: #FFFFFF;
  background-color: #686868;
  border-color: #686868;
}
@media (max-width: 430px) {
  button,
  .btn {
    max-width: 29.6rem;
    height: 5.5rem;
    font-size: 1.4rem;
  }
}
.checkbox {
  position: relative;
  display: inline-block;
  user-select: none;
}
.checkbox span {
  position: relative;
  padding-left: 2.8rem;
  display: inline-block;
  align-items: flex-start;
  color: #141414;
  font-size: 1.2rem;
  line-height: 1.6rem;
  cursor: pointer;
}
.checkbox span a {
  margin: 0 0.5rem;
}
.checkbox span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  min-width: 1.8rem;
  min-height: 1.8rem;
  margin-right: 1rem;
  color: transparent;
  line-height: 1;
  border: 0.1rem solid #141414;
  background-color: #FFFFFF;
  box-sizing: border-box;
  transform: translateY(-50%);
}
.checkbox input[type='checkbox'] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}
.checkbox input[type='checkbox']:checked ~ span:after {
  position: absolute;
  left: 0.3rem;
  top: calc(50% - 0.2rem);
  content: '';
  display: block;
  width: 1rem;
  height: 0.5rem;
  border-bottom: 0.2rem solid #141414;
  border-left: 0.2rem solid #141414;
  transform: translateY(-50%) rotateZ(-45deg);
}
.checkbox input[type='checkbox']:disabled ~ span {
  opacity: 0.3;
}
.checkbox.circle span {
  padding-left: 1.8rem;
  font-size: 1.4rem;
  line-height: 1.9rem;
}
.checkbox.circle span:before {
  top: calc(50% + 0.2rem);
  width: 1.2rem;
  height: 1.2rem;
  min-width: 1.2rem;
  min-height: 1.2rem;
  margin-right: 0.6rem;
  border-radius: 50%;
}
.checkbox.circle input[type='checkbox']:checked ~ span:before {
  background-color: #141414;
}
.checkbox.circle input[type='checkbox']:checked ~ span:after {
  display: none;
}
.checkbox.error span {
  color: #F20000;
}
.checkbox.error span a {
  color: #F20000;
  border-bottom-color: #F20000;
}
.checkbox.error span:before {
  border-color: #F20000;
}
.checkbox.error input[type='checkbox']:checked ~ span:after {
  border-color: #F20000;
}
.checkbox.error.circle input[type='checkbox']:checked ~ span:before {
  background-color: #F20000;
}
.faze-modal-wrapper .faze-modal {
  width: 54.5rem;
  max-width: 90vw;
  max-height: 95vh;
  padding: 4rem 5rem;
}
.faze-modal-wrapper .faze-modal > header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faze-modal-wrapper .faze-modal > header span {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.042rem;
  text-transform: uppercase;
  text-align: center;
}
.faze-modal-wrapper .faze-modal > header > .faze-close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 2.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  min-height: 2.6rem;
}
.faze-modal-wrapper .faze-modal > header > .faze-close:after,
.faze-modal-wrapper .faze-modal > header > .faze-close:before {
  width: 2.6rem;
}
.faze-modal-wrapper .faze-modal > main {
  padding-right: 1rem;
}
.faze-modal-wrapper .faze-modal > footer {
  margin-top: 0;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer {
  max-width: 100%;
  max-height: unset;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer header {
  position: relative;
  display: flex;
  justify-content: center;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer header span {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 2.9rem;
  text-align: center;
  text-transform: uppercase;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer header .faze-close {
  position: absolute;
  top: 50%;
  right: -2.8rem;
  width: 2.1rem;
  height: 2.1rem;
  transform: translateY(-50%);
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer header .faze-close::after,
.faze-modal-wrapper .faze-modal.modal-wholesale-offer header .faze-close::before {
  width: 2.1rem;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .info {
  font-size: 1.4rem;
  text-align: center;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .inputs {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin-top: 3rem;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .inputs input[type="text"],
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .inputs input[type="tel"] {
  display: block;
  width: 100%;
  padding-bottom: 0.7rem;
  border: none;
  outline: none;
  border-bottom: 0.1rem solid #141414;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .inputs input[type="text"]::placeholder,
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .inputs input[type="tel"]::placeholder {
  font-family: 'Rawline', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.9rem;
  letter-spacing: 0.02em;
  text-align: left;
  color: #686868;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .checkbox.policy {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  margin-top: 1rem;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .checkbox.policy span {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .checkbox.policy span a {
  text-decoration: underline;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .btn-submit {
  width: 100%;
  margin-top: 3rem;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .policy-info {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .policy-info a {
  text-decoration: underline;
}
@media (max-width: 556px) {
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 2rem;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer header {
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 1.2rem;
    border-bottom: 0.1rem solid #141414;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer header span {
    font-size: 14px;
    line-height: 1.9rem;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer header .faze-close {
    top: 0;
    right: 0;
    transform: unset;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer main {
    margin-top: 2rem;
    overflow: hidden;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .info {
    text-align: left;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .inputs {
    margin-top: 2rem;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .checkbox.policy {
    margin-top: 2rem;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .btn-submit {
    max-width: 100%;
  }
  .faze-modal-wrapper .faze-modal.modal-wholesale-offer main .form .mobile-grow-block {
    flex-grow: 1;
  }
}
.faze-modal-wrapper .faze-modal.modal-seazon2 {
  max-width: 85.6rem;
  width: 100%;
  padding: 0;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 header {
  display: none;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 main {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 49.7rem;
  padding-top: 13rem;
  padding-left: calc(36.6rem + 4rem);
  padding-right: 4rem;
  padding-bottom: 3rem;
  font-size: 1.4rem;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content p {
  line-height: 1.9rem;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .btn-close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.1rem;
  height: 2.1rem;
  cursor: pointer;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .btn-close::after {
  content: url('/i/img/svg/modal-close-icon.svg');
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-photo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 36.6rem;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-title {
  margin-top: 0;
  padding-right: 2.5rem;
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-text-container {
  margin-bottom: 2rem;
  text-align: center;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-text-container p:first-child {
  margin-top: 0;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-text-container p {
  margin: 1.5rem 0;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-text-container p:last-child {
  margin-bottom: 0;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-text-container strong {
  font-weight: 600;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .footer {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .btn-submit {
  max-width: 35rem;
  width: 100%;
  height: 5.6rem;
  align-self: center;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .btn-submit.btn-color-red {
  background-color: #B21E1E;
  color: #FFFFFF;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .correction {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 {
  padding-top: 9.8rem;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address {
  display: flex;
  justify-content: center;
  column-gap: 4rem;
  margin-top: 5.8rem;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address.desktop {
  display: flex;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address.mobile {
  display: none;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address img {
  width: 7.3rem;
  height: 8.5rem;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address p {
  margin: 0;
}
.faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .modal-text-container p .invitation::before {
  content: attr(data-opt);
}
@media (max-width: 1926px) {
  .faze-modal-wrapper .faze-modal.modal-seazon2 {
    max-width: clamp(696px, calc(696px + (856 - 696) * ((100vw - 768px) / (1296 - 768))), 856px);
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content {
    height: clamp(457px, calc(457px + (497 - 457) * ((100vw - 768px) / (1296 - 768))), 497px);
    padding-top: clamp(120px, calc(120px + (130 - 120) * ((100vw - 768px) / (1296 - 768))), 130px);
    padding-left: calc(clamp(219px, calc(219px + (366 - 219) * ((100vw - 768px) / (1296 - 768))), 366px) + 4rem);
    padding-right: 4rem;
    padding-bottom: 3rem;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-photo {
    width: clamp(219px, calc(219px + (366 - 219) * ((100vw - 768px) / (1296 - 768))), 366px);
  }
}
@media (max-width: 768px) {
  .faze-modal-wrapper .faze-modal > header span {
    padding-right: 10%;
    width: 100%;
  }
  .faze-modal-wrapper .faze-modal > header > .faze-close {
    top: 1.4rem;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 {
    position: fixed;
    inset: 0;
    max-width: 100%;
    min-height: calc(var(--vh, 1vh) * 100);
    max-height: calc(var(--vh, 1vh) * 100);
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 'title' 'text' 'photo' 'submit' 'correction';
    padding: 2rem 1.2rem 1rem 1.2rem;
    height: 100%;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .btn-close {
    top: 2rem;
    right: 1.2rem;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-title {
    grid-area: title;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    font-size: clamp(14px, calc(14px + (21 - 14) * ((100vw - 375px) / (768 - 375))), 21px);
    text-align: left;
    border-bottom: 0.1rem solid #141414;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-text-container {
    grid-area: text;
    text-align: left;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-text-container p {
    font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 375px) / (768 - 375))), 14px);
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-photo {
    position: static;
    grid-area: photo;
    width: 100%;
    height: auto;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #FFFFFF;
    padding: 3.6rem 1.2rem 1rem 1.2rem;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .btn-submit {
    grid-area: submit;
    max-width: 100%;
    height: clamp(49px, calc(49px + (56 - 49) * ((100vw - 375px) / (768 - 375))), 56px);
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 375px) / (768 - 375))), 16px);
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .correction {
    grid-area: correction;
    margin-top: 1rem;
    justify-content: flex-start;
    text-align: left;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 {
    padding: 2rem 1.2rem 1rem 1.2rem;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address {
    justify-content: flex-start;
    margin-top: 2.6rem;
    column-gap: 2rem;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address.desktop {
    display: none;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address.mobile {
    display: flex;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .exhibition-address img {
    width: 4.9rem;
    height: 5.7rem;
  }
  .faze-modal-wrapper .faze-modal.modal-seazon2 .modal-content.exhibition-2025 .footer {
    padding: 1rem 1.2rem;
  }
}
@media (max-width: 460px) {
  .faze-modal-wrapper .faze-modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.2rem;
    max-width: 100vw;
    min-height: calc(var(--vh, 1vh) * 100);
    max-height: calc(var(--vh, 1vh) * 100);
  }
  .faze-modal-wrapper .faze-modal.faze-modal-draggable {
    position: fixed;
    top: 0;
    left: 0;
  }
  .faze-modal-wrapper .faze-modal > header {
    padding-bottom: 1rem;
    justify-content: space-between;
    border-bottom: 0.1rem solid #141414;
  }
  .faze-modal-wrapper .faze-modal > header span {
    font-size: 1.4rem;
    letter-spacing: 0.028rem;
    text-align: left;
  }
  .faze-modal-wrapper .faze-modal > header > .faze-close {
    position: relative;
    top: unset;
    right: unset;
  }
  .faze-modal-wrapper .faze-modal > main {
    padding-right: 0;
  }
  .faze-modal-wrapper .faze-modal > main::-webkit-scrollbar {
    width: 0.2rem;
    height: 0.2rem;
  }
}
* {
  outline: none;
  box-sizing: border-box;
}
html {
  font-size: 10px;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  font-family: 'Rawline', sans-serif;
  font-size: 1.6rem;
  color: #141414;
  line-height: 1.375;
  overflow-x: hidden;
}
body.is-fixed {
  overflow: hidden;
}
.hide {
  display: none !important;
}
.container-centered {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  .container-centered {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  .container-centered {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  .container-centered {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  .container-centered {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
.manage-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  font-size: 0;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
  border: 0.3rem dashed transparent;
}
.manage-link:hover {
  font-size: 4rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-color: #141414;
}
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -o-crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
header.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 5;
  background-color: #FFFFFF;
}
header.header .container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: grid;
  align-items: center;
  grid-template-columns: 12.7rem 74.5rem 23.2rem 18.8rem 2.7rem;
  grid-template-areas: 'logo menu email phone whatsapp';
  height: 8.7rem;
}
@media (max-width: 1366px) {
  header.header .container {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  header.header .container {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  header.header .container {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  header.header .container {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
header.header .container .btn-mobile-menu {
  display: none;
}
header.header .container .logo {
  max-width: 9.7rem;
}
header.header .container .logo img {
  max-width: 100%;
  width: 100%;
}
header.header .container .page-menu {
  max-width: 65.5rem;
}
header.header .container .page-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
header.header .container .page-menu .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.header .container .page-menu .menu .menu-item a {
  text-transform: uppercase;
}
header.header .container .email a,
header.header .container .phone a,
header.header .container .whatsapp a {
  display: flex;
  align-items: center;
  column-gap: 0.9rem;
}
header.header .container .email img {
  width: 2.7rem;
  height: 2.4rem;
}
header.header .container .phone img {
  width: 2.4rem;
  height: 2.4rem;
}
header.header .container .whatsapp img {
  width: 2.7rem;
  height: 2.9rem;
}
header.header .mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: 34.4rem;
  height: 100vh;
  padding: calc(6.9rem + 2rem) 4rem 4rem 4rem;
  background-color: #FFFFFF;
  transition: 500ms ease;
}
header.header .mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
header.header .mobile-menu .page-menu {
  flex-grow: 1;
}
header.header .mobile-menu .page-menu .menu {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
header.header .mobile-menu .page-menu .menu .menu-item a {
  font-size: 1.6rem;
  text-transform: uppercase;
}
header.header .mobile-menu .btn-black {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
  height: 6.4rem;
  padding: 0;
}
header.header.mobile-menu-opened .container .btn-mobile-menu .line:nth-of-type(1) {
  top: 0.9rem;
  transform: rotate(45deg);
}
header.header.mobile-menu-opened .container .btn-mobile-menu .line:nth-of-type(2) {
  top: 50%;
  opacity: 0;
}
header.header.mobile-menu-opened .container .btn-mobile-menu .line:nth-of-type(3) {
  bottom: 1rem;
  transform: rotate(-45deg);
}
header.header.mobile-menu-opened .mobile-menu {
  left: 0;
}
header.header.mobile-menu-opened + .menu-overlay {
  z-index: 4;
  opacity: 1;
}
@media (max-width: 1366px) {
  header.header .container {
    grid-template-columns: 12.7rem 74.5rem 5.7rem 18.8rem 2.7rem;
  }
  header.header .container .email .link-text {
    display: none;
  }
}
@media (max-width: calc(1200px - 1px)) {
  header.header .container {
    grid-template-columns: 4.6rem 1fr 4.7rem 16.4rem 2.4rem;
    grid-template-areas: 'burger logo email phone whatsapp';
    height: 6.9rem;
  }
  header.header .container .btn-mobile-menu {
    position: relative;
    grid-area: burger;
    display: block;
    width: 2.6rem;
    height: 2rem;
    padding: 0;
    background-color: transparent;
  }
  header.header .container .btn-mobile-menu .line {
    position: absolute;
    left: 0;
    width: 2.6rem;
    height: 0.1rem;
    background-color: #000000;
    transition: 300ms ease;
  }
  header.header .container .btn-mobile-menu .line:nth-of-type(1) {
    top: 0;
  }
  header.header .container .btn-mobile-menu .line:nth-of-type(2) {
    top: 50%;
  }
  header.header .container .btn-mobile-menu .line:nth-of-type(3) {
    bottom: 0;
  }
  header.header .container .logo {
    grid-area: logo;
    max-width: 6rem;
  }
  header.header .container .page-menu {
    display: none;
  }
  header.header .container .email {
    grid-area: email;
  }
  header.header .container .phone {
    grid-area: phone;
  }
  header.header .container .phone a {
    font-size: 1.4rem;
  }
  header.header .container .whatsapp {
    grid-area: whatsapp;
  }
}
@media (max-width: 430px) {
  header.header .mobile-menu {
    width: 100%;
  }
  header.header .container {
    grid-template-columns: 4.1rem 1fr 4.1rem 4.1rem 2.6rem;
    grid-template-areas: 'burger logo phone email whatsapp';
    height: 4.7rem;
  }
  header.header .container .logo {
    max-width: 5.2rem;
  }
  header.header .container .phone .link-text {
    display: none;
  }
  header.header .container .email img {
    width: 2.4rem;
    height: 2.6rem;
  }
  header.header .container .phone img {
    width: 2.6rem;
    height: 2.6rem;
  }
  header.header .container .whatsapp img {
    width: 2.5rem;
    height: 2.6rem;
  }
}
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(20, 20, 20, 0.4);
  opacity: 0;
  transition: 300ms ease;
}
body main.main {
  flex-grow: 1;
  padding-top: 8.7rem;
}
@media (max-width: calc(1366px - 1px)) {
  body main.main {
    padding-top: 6.9rem;
  }
}
@media (max-width: 430px) {
  body main.main {
    padding-top: 4.7rem;
  }
}
footer.footer {
  background-color: #F5F5F5;
}
footer.footer .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 22.2rem 33.4rem 41.4rem 1fr;
  grid-template-areas: 'logo address contacts socials' 'site site site site';
  grid-row-gap: 8rem;
  padding-top: 6rem;
}
@media (max-width: 1366px) {
  footer.footer .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  footer.footer .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  footer.footer .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  footer.footer .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
footer.footer .content .column ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
footer.footer .content .column .title {
  margin-bottom: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}
footer.footer .content .column .column-items {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
footer.footer .content .column .column-items .column-item,
footer.footer .content .column .column-items address,
footer.footer .content .column .column-items a {
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
}
footer.footer .content .column.logo {
  grid-area: logo;
  max-width: 11rem;
}
footer.footer .content .column.logo img {
  max-width: 100%;
  width: 100%;
}
footer.footer .content .column.address {
  grid-area: address;
  max-width: 24rem;
}
footer.footer .content .column.contacts {
  grid-area: contacts;
  max-width: 23.2rem;
}
footer.footer .content .column.socials {
  grid-area: socials;
  max-width: 35rem;
}
footer.footer .content .column.socials .btn-wholesale-offer {
  margin-bottom: 4rem;
}
footer.footer .content .column.socials .links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 2rem;
}
footer.footer .content .column.socials .links .icon {
  display: flex;
  align-items: center;
  height: 2.8rem;
}
footer.footer .content .btn-offer-mobile {
  grid-area: btnOffer;
  display: none;
  max-width: 35rem;
}
footer.footer .content .dev-mobile {
  grid-area: devMobile;
  display: none;
  flex-direction: column;
  row-gap: 0.5rem;
  column-gap: 1rem;
  font-size: 1.2rem;
  text-wrap: nowrap;
}
footer.footer .content .site {
  grid-area: site;
  display: flex;
  justify-content: space-between;
}
footer.footer .content .site .usage {
  display: flex;
  justify-content: space-between;
  max-width: 62rem;
  width: 100%;
}
footer.footer .content .site .usage .copyright,
footer.footer .content .site .usage .policy,
footer.footer .content .site .usage .user-agreement {
  font-size: 1.2rem;
}
footer.footer .content .site .usage .policy,
footer.footer .content .site .usage .user-agreement {
  text-decoration: underline;
}
footer.footer .content .site .dev {
  display: flex;
  column-gap: 2rem;
}
footer.footer .content .site .dev .design,
footer.footer .content .site .dev .development {
  font-size: 1.2rem;
  text-wrap: nowrap;
}
footer.footer .kroyyork {
  max-width: 100%;
  width: 100%;
  margin-top: 1rem;
}
footer.footer .kroyyork img {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1366px) {
  footer.footer .content {
    grid-template-columns: 19.3rem 29rem 31.3rem 35rem;
  }
}
@media (max-width: 1200px) {
  footer.footer .content {
    padding-top: 6rem;
  }
}
@media (max-width: calc(1200px - 1px)) {
  footer.footer .content {
    grid-template-columns: 16.1rem 1fr 1fr 1fr;
    grid-template-areas: 'logo address contacts socials' 'logo btnOffer btnOffer btnOffer' 'site site site site';
    grid-row-gap: 3.2rem;
    padding-top: 4rem;
  }
  footer.footer .content .column .title {
    font-size: 1.4rem;
  }
  footer.footer .content .column .column-items {
    font-size: 1.4rem;
  }
  footer.footer .content .column .column-items .column-item,
  footer.footer .content .column .column-items address,
  footer.footer .content .column .column-items a {
    font-size: 1.4rem;
  }
  footer.footer .content .column.logo {
    max-width: 8rem;
  }
  footer.footer .content .column.socials .btn-black {
    display: none;
  }
  footer.footer .content .btn-offer-mobile {
    display: block;
  }
  footer.footer .content .site {
    align-items: flex-end;
  }
  footer.footer .content .site .dev {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media (max-width: calc(1024px - 1px)) {
  footer.footer .content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 'logo socials' 'address contacts' 'btnOffer btnOffer' 'devMobile devMobile' 'site site';
    grid-column-gap: 1.6rem;
    grid-row-gap: unset;
  }
  footer.footer .content .column .title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  footer.footer .content .column .column-items {
    font-size: 1.2rem;
  }
  footer.footer .content .column .column-items .column-item,
  footer.footer .content .column .column-items address,
  footer.footer .content .column .column-items a {
    font-size: 1.2rem;
  }
  footer.footer .content .column.logo,
  footer.footer .content .column.socials {
    max-width: 100%;
    margin-bottom: 4rem;
  }
  footer.footer .content .column.logo img,
  footer.footer .content .column.socials img {
    max-width: 7rem;
  }
  footer.footer .content .column.address,
  footer.footer .content .column.contacts {
    margin-bottom: 2rem;
  }
  footer.footer .content .btn-offer-mobile {
    height: 5.5rem;
    padding: 1.8rem 5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  footer.footer .content .dev-mobile {
    display: flex;
  }
  footer.footer .content .site {
    margin-top: 3.7rem;
  }
  footer.footer .content .site .dev {
    display: none;
  }
}
@media (max-width: 768px) {
  footer.footer .content .site .usage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 'copyright copyright' 'policy agreement';
    grid-column-gap: 1.5rem;
    grid-row-gap: 1rem;
  }
  footer.footer .content .site .usage .copyright {
    grid-area: copyright;
  }
  footer.footer .content .site .usage .policy {
    grid-area: policy;
  }
  footer.footer .content .site .usage .user-agreement {
    grid-area: agreement;
  }
}
@media (max-width: 430px) {
  footer.footer .content .btn-offer-mobile {
    max-width: 100%;
  }
  footer.footer .content .site {
    margin-top: 1rem;
  }
  footer.footer .kroyyork {
    margin-top: 2rem;
  }
}
section.offer {
  position: relative;
  height: clamp(696px, calc(696px + (822 - 696) * ((100vw - 1366px) / (1920 - 1366))), 822px);
  margin-bottom: 6rem;
}
section.offer .background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
section.offer .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.offer .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: clamp(20px, calc(20px + (30 - 20) * ((100vw - 1366px) / (1920 - 1366))), 30px);
  height: inherit;
}
@media (max-width: 1366px) {
  section.offer .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.offer .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.offer .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.offer .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.offer .content .title {
  margin: 0;
  font-size: clamp(36px, calc(36px + (46 - 36) * ((100vw - 1366px) / (1920 - 1366))), 46px);
  font-weight: 400;
  text-transform: uppercase;
}
section.offer .content .btn-offer {
  max-width: 35rem;
}
@media (max-width: 1200px) {
  section.offer {
    height: clamp(601px, calc(601px + (696 - 601) * ((100vw - 1024px) / (1200 - 1024))), 696px);
    margin-bottom: clamp(40px, calc(40px + (60 - 40) * ((100vw - 1024px) / (1200 - 1024))), 60px);
  }
  section.offer .content .title {
    font-size: clamp(26px, calc(26px + (36 - 26) * ((100vw - 1024px) / (1200 - 1024))), 36px);
  }
}
@media (max-width: 1024px) {
  section.offer {
    height: clamp(520px, calc(520px + (601 - 520) * ((100vw - 768px) / (1024 - 768))), 601px);
  }
  section.offer .content .btn-offer {
    max-width: clamp(320px, calc(320px + (350 - 320) * ((100vw - 768px) / (1024 - 768))), 350px);
    width: 100%;
    padding: 2.1rem 0;
  }
}
@media (max-width: 768px) {
  section.offer {
    height: clamp(720px, calc(720px + (520 - 720) * ((100vw - 375px) / (768 - 375))), 520px);
  }
}
@media (max-width: 430px) {
  section.offer {
    height: calc(100vh - var(--vh) - 47px);
  }
  section.offer .background {
    overflow: hidden;
  }
  section.offer .content {
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 7.8rem;
    column-gap: 2rem;
  }
  section.offer .content .title {
    text-align: center;
  }
  section.offer .content .btn-offer {
    max-width: 100%;
  }
}
section.about {
  position: relative;
  margin-bottom: 12rem;
}
section.about .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  column-gap: 1.4rem;
  row-gap: 6rem;
}
@media (max-width: 1366px) {
  section.about .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.about .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.about .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.about .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.about .content .two-columns-block {
  display: flex;
  align-items: center;
  column-gap: 6rem;
}
section.about .content .two-columns-block .column {
  width: 100%;
  height: 80rem;
}
section.about .content .two-columns-block .column .block-title {
  margin: 0;
  margin-bottom: 2rem;
  font-size: 3.6rem;
  font-weight: 500;
  text-transform: uppercase;
}
section.about .content .two-columns-block .column img {
  width: 65.3rem;
  height: 80rem;
  object-fit: cover;
}
section.about .content .two-columns-block .column p {
  margin: 0;
  font-size: 2.1rem;
}
section.about .content .two-columns-block .column a {
  text-decoration: underline;
}
section.about .content .two-columns-block .column b {
  font-weight: 500;
}
section.about .content .two-columns-block.kroyyork-coat .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.about .content .two-columns-block.kroyyork-choosing .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.about .content .two-columns-block.kroyyork-choosing .column:nth-of-type(2) {
  order: 1;
}
section.about .content .two-columns-block.kroyyork-choosing .column:nth-of-type(1) {
  order: 2;
}
section.about .content .two-columns-block.kroyyork-choosing .column .block-title {
  max-width: 45.6rem;
  margin: 0 auto;
  margin-bottom: 2rem;
}
section.about .content .two-columns-block.kroyyork-choosing .column .block-text {
  max-width: 45.6rem;
  margin: 0 auto;
}
section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin: 0;
  padding: 0;
  font-size: 2.1rem;
  counter-reset: custom-counter;
  list-style: none;
}
section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol li {
  position: relative;
  counter-increment: custom-counter;
}
section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol li::before {
  content: '(' counter(custom-counter, decimal-leading-zero) ')';
  position: absolute;
  top: 0.1rem;
  left: -5rem;
}
section.about .content .two-columns-block.kroyyork-quality {
  column-gap: 3rem;
}
section.about .content .two-columns-block.kroyyork-quality .column {
  height: auto;
}
section.about .content .two-columns-block.kroyyork-quality .column:nth-of-type(2) {
  padding-left: 4.7rem;
  border-left: 0.1rem solid #141414;
}
section.about .content .two-columns-block.kroyyork-quality .column .block-title {
  font-size: 5.6rem;
  font-weight: 500;
  text-transform: unset;
}
section.about .content .two-columns-block.kroyyork-quality .column .block-text p {
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
}
section.about .content .two-columns-block.kroyyork-quality .column .block-text p:last-child {
  margin-top: 6rem;
}
section.about .content .btn-about {
  max-width: 35rem;
  width: 100%;
  margin: 0 auto;
  padding: 2.1rem 0;
}
@media (max-width: 1366px) {
  section.about {
    margin-bottom: 10rem;
  }
  section.about .content .two-columns-block {
    column-gap: 4rem;
  }
  section.about .content .two-columns-block .column {
    height: 68rem;
  }
  section.about .content .two-columns-block .column .block-title {
    font-size: 2.8rem;
  }
  section.about .content .two-columns-block .column img {
    width: 56.6rem;
    height: 68rem;
  }
  section.about .content .two-columns-block.kroyyork-quality {
    align-items: flex-start;
    column-gap: 1.5rem;
  }
  section.about .content .two-columns-block.kroyyork-quality .column:nth-of-type(2) {
    padding-left: 4rem;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-title {
    font-size: 4.6rem;
  }
}
@media (max-width: 1200px) {
  section.about .content {
    row-gap: clamp(40px, calc(40px + (60 - 40) * ((100vw - 1024px) / (1200 - 1024))), 60px);
  }
  section.about .content .two-columns-block .column {
    height: clamp(560px, calc(560px + (680 - 560) * ((100vw - 1024px) / (1200 - 1024))), 680px);
  }
  section.about .content .two-columns-block .column .block-title {
    font-size: clamp(21px, calc(21px + (28 - 21) * ((100vw - 1024px) / (1200 - 1024))), 28px);
  }
  section.about .content .two-columns-block .column img {
    width: clamp(465px, calc(465px + (566 - 465) * ((100vw - 1024px) / (1200 - 1024))), 566px);
  }
  section.about .content .two-columns-block .column p {
    font-size: clamp(16px, calc(16px + (21 - 16) * ((100vw - 1024px) / (1200 - 1024))), 21px);
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-title {
    max-width: 100%;
    margin: unset;
    margin-bottom: clamp(52px, calc(52px + (20 - 52) * ((100vw - 1024px) / (1200 - 1024))), 20px);
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-text {
    max-width: 45.6rem;
    margin: unset;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol {
    display: flex;
    flex-direction: column;
    row-gap: clamp(52px, calc(52px + (30 - 52) * ((100vw - 1024px) / (1200 - 1024))), 30px);
    margin: 0;
    padding: 0;
    font-size: clamp(16px, calc(16px + (21 - 16) * ((100vw - 1024px) / (1200 - 1024))), 21px);
    counter-reset: custom-counter;
    list-style: none;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol li {
    position: relative;
    counter-increment: custom-counter;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol li::before {
    content: '(' counter(custom-counter, decimal-leading-zero) ')';
    position: absolute;
    top: -3.2rem;
    left: 0;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-title {
    max-width: clamp(399px, calc(399px + (450 - 399) * ((100vw - 1024px) / (1200 - 1024))), 450px);
    font-size: clamp(36px, calc(36px + (46 - 36) * ((100vw - 1024px) / (1200 - 1024))), 46px);
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-text p {
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 1024px) / (1200 - 1024))), 16px);
  }
}
@media (max-width: 1024px) {
  section.about {
    margin-bottom: 8rem;
  }
  section.about .content .two-columns-block {
    column-gap: clamp(14px, calc(14px + (40 - 14) * ((100vw - 768px) / (1024 - 768))), 40px);
  }
  section.about .content .two-columns-block .column {
    height: clamp(420px, calc(420px + (560 - 420) * ((100vw - 768px) / (1024 - 768))), 560px);
  }
  section.about .content .two-columns-block .column img {
    width: clamp(347px, calc(347px + (465 - 347) * ((100vw - 768px) / (1024 - 768))), 465px);
    height: clamp(420px, calc(420px + (560 - 420) * ((100vw - 768px) / (1024 - 768))), 560px);
  }
}
@media (max-width: 768px) {
  section.about {
    margin-bottom: 4rem;
  }
  section.about .content {
    max-width: 100%;
    padding: 0;
    row-gap: unset;
  }
  section.about .content .two-columns-block.kroyyork-coat,
  section.about .content .two-columns-block.kroyyork-choosing {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
  }
  section.about .content .two-columns-block.kroyyork-coat {
    margin-bottom: 4rem;
  }
  section.about .content .two-columns-block.kroyyork-quality {
    flex-direction: column;
    row-gap: 2rem;
  }
  section.about .content .two-columns-block.kroyyork-quality .column:nth-of-type(2) {
    padding-left: unset;
    border-left: unset;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-title {
    max-width: 100%;
    padding: 4rem 0;
    margin-bottom: 0;
    text-align: center;
    border-top: 0.1rem solid #141414;
    border-bottom: 0.1rem solid #141414;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-text {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-text p {
    margin-bottom: 2rem;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-text p:last-child {
    margin-top: 4rem;
    margin-bottom: 0;
  }
  section.about .content .btn-about {
    margin: 2rem auto 0 auto;
  }
}
@media (max-width: 768px) and (max-width: 1366px) {
  section.about .content .two-columns-block.kroyyork-coat,
  section.about .content .two-columns-block.kroyyork-choosing {
    max-width: 1146px;
  }
}
@media (max-width: 768px) and (max-width: 1200px) {
  section.about .content .two-columns-block.kroyyork-coat,
  section.about .content .two-columns-block.kroyyork-choosing {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  section.about .content .two-columns-block.kroyyork-coat,
  section.about .content .two-columns-block.kroyyork-choosing {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  section.about .content .two-columns-block.kroyyork-coat,
  section.about .content .two-columns-block.kroyyork-choosing {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
@media (max-width: 768px) and (max-width: 1366px) {
  section.about .content .two-columns-block.kroyyork-quality .column .block-text {
    max-width: 1146px;
  }
}
@media (max-width: 768px) and (max-width: 1200px) {
  section.about .content .two-columns-block.kroyyork-quality .column .block-text {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  section.about .content .two-columns-block.kroyyork-quality .column .block-text {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  section.about .content .two-columns-block.kroyyork-quality .column .block-text {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
@media (max-width: calc(768px - 1px)) {
  section.about .content .two-columns-block {
    flex-direction: column;
  }
  section.about .content .two-columns-block .column p {
    font-size: 1.4rem;
  }
  section.about .content .two-columns-block.kroyyork-coat {
    row-gap: 4rem;
  }
  section.about .content .two-columns-block.kroyyork-coat .column {
    height: auto;
  }
  section.about .content .two-columns-block.kroyyork-coat .column .block-title {
    margin-bottom: 1rem;
  }
  section.about .content .two-columns-block.kroyyork-coat .column .block-text {
    padding-left: 9rem;
  }
  section.about .content .two-columns-block.kroyyork-coat .column img {
    width: 100%;
  }
  section.about .content .two-columns-block.kroyyork-coat .column:nth-of-type(2) {
    order: 1;
  }
  section.about .content .two-columns-block.kroyyork-coat .column:nth-of-type(1) {
    order: 2;
  }
  section.about .content .two-columns-block.kroyyork-choosing {
    row-gap: 4rem;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column {
    height: auto;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column:nth-of-type(2) {
    order: 1;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column:nth-of-type(1) {
    order: 2;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-title {
    margin-bottom: 1rem;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol {
    row-gap: 1rem;
    font-size: 1.4rem;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol li {
    padding-left: 7.5rem;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column .block-text ol li::before {
    top: 0.1rem;
    left: 0;
  }
  section.about .content .two-columns-block.kroyyork-choosing .column img {
    width: 100%;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-title {
    padding: 2rem 0;
    font-size: 2.6rem;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-text p:last-child {
    margin-top: unset;
  }
}
@media (max-width: 430px) {
  section.about .content .two-columns-block.kroyyork-quality .column .block-text p.number {
    position: relative;
    padding-left: 7.5rem;
  }
  section.about .content .two-columns-block.kroyyork-quality .column .block-text p.number::before {
    content: '(' attr(data-number) ')';
    position: absolute;
    top: 0;
    left: 0;
  }
  section.about .content .btn-about {
    max-width: calc(100% - 3rem);
  }
}
section.gallery {
  position: relative;
  margin-bottom: 12rem;
}
section.gallery .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  column-gap: 1.4rem;
}
@media (max-width: 1366px) {
  section.gallery .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.gallery .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.gallery .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.gallery .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.gallery .content img {
  width: 43.1rem;
  height: 56rem;
  object-fit: cover;
}
@media (max-width: 1366px) {
  section.gallery {
    margin-bottom: 10rem;
  }
  section.gallery .content img {
    width: 37.4rem;
    height: 48rem;
  }
}
@media (max-width: 1200px) {
  section.gallery .content img {
    width: clamp(305px, calc(305px + (374 - 305) * ((100vw - 1024px) / (1200 - 1024))), 374px);
    height: clamp(400px, calc(400px + (480 - 400) * ((100vw - 1024px) / (1200 - 1024))), 480px);
  }
}
@media (max-width: 1024px) {
  section.gallery {
    margin-bottom: 8rem;
  }
  section.gallery .content img {
    width: clamp(227px, calc(227px + (305 - 227) * ((100vw - 768px) / (1024 - 768))), 305px);
    height: clamp(300px, calc(300px + (400 - 300) * ((100vw - 768px) / (1024 - 768))), 400px);
  }
}
@media (max-width: calc(768px - 1px)) {
  section.gallery {
    margin-bottom: 4rem;
  }
  section.gallery .content {
    max-width: clamp(345px, calc(345px + (708 - 345) * ((100vw - 375px) / (768 - 375))), 708px);
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
  }
  section.gallery .content.faze-carousel-initialized img.faze-item.faze-item {
    width: 27rem;
    height: 42rem;
    margin-right: 1.5rem;
  }
}
section.brand {
  position: relative;
  margin-bottom: 12rem;
}
section.brand .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  section.brand .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.brand .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.brand .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.brand .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.brand .content .section-title {
  margin-top: 0;
  margin-bottom: 6rem;
  font-size: 3.6rem;
  font-weight: 500;
  text-transform: uppercase;
}
section.brand .content .brand-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
section.brand .content .brand-facts .fact {
  padding: 3rem;
  border: 0.1rem solid #141414;
  border-radius: 2rem;
}
section.brand .content .brand-facts .fact.span-2 {
  grid-column: span 2;
}
section.brand .content .brand-facts .fact .title {
  margin-bottom: 1rem;
  font-size: 3.6rem;
  font-weight: 500;
}
section.brand .content .brand-facts .fact .title span {
  font-size: 9.6rem;
}
section.brand .content .brand-facts .fact p {
  margin: 0;
}
@media (max-width: 1366px) {
  section.brand {
    margin-bottom: 10rem;
  }
  section.brand .content .section-title {
    font-size: 2.8rem;
  }
  section.brand .content .brand-facts .fact .title {
    font-size: 2.8rem;
  }
  section.brand .content .brand-facts .fact .title span {
    font-size: 7.4rem;
  }
}
@media (max-width: 1200px) {
  section.brand .content .section-title {
    margin-bottom: clamp(40px, calc(40px + (60 - 40) * ((100vw - 1024px) / (1200 - 1024))), 60px);
    font-size: clamp(21px, calc(21px + (28 - 21) * ((100vw - 1024px) / (1200 - 1024))), 28px);
  }
  section.brand .content .brand-facts .fact .title {
    font-size: clamp(21px, calc(21px + (28 - 21) * ((100vw - 1024px) / (1200 - 1024))), 28px);
  }
  section.brand .content .brand-facts .fact .title span {
    font-size: clamp(64px, calc(64px + (74 - 64) * ((100vw - 1024px) / (1200 - 1024))), 74px);
  }
  section.brand .content .brand-facts .fact p {
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 1024px) / (1200 - 1024))), 16px);
  }
}
@media (max-width: 1024px) {
  section.brand {
    margin-bottom: 8rem;
  }
  section.brand .content .section-title {
    margin-bottom: clamp(20px, calc(20px + (40 - 20) * ((100vw - 768px) / (1024 - 768))), 40px);
  }
}
@media (max-width: 768px) {
  section.brand {
    margin-bottom: 4rem;
  }
  section.brand .content .brand-facts {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
  }
  section.brand .content .brand-facts .fact {
    padding: clamp(15px, calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375))), 30px);
  }
  section.brand .content .brand-facts .fact .title span {
    font-size: clamp(46px, calc(46px + (64 - 46) * ((100vw - 375px) / (768 - 375))), 64px);
  }
}
@media (max-width: 430px) {
  section.brand .content .brand-facts .fact:nth-of-type(1),
  section.brand .content .brand-facts .fact:nth-of-type(2) {
    grid-column: span 2;
  }
}
section.why-alpaca {
  position: relative;
  margin-bottom: 14rem;
}
section.why-alpaca .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  section.why-alpaca .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.why-alpaca .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.why-alpaca .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.why-alpaca .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.why-alpaca .content .heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
section.why-alpaca .content .heading .section-title {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 500;
  text-transform: uppercase;
}
section.why-alpaca .content .heading p {
  max-width: 56.6rem;
  margin: 0;
}
section.why-alpaca .content .infographics {
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
}
section.why-alpaca .content .infographics img {
  max-width: 100%;
}
section.why-alpaca .content .btn-black {
  display: block;
  max-width: 35rem;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  section.why-alpaca {
    margin-bottom: 10rem;
  }
  section.why-alpaca .content .heading .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 1024px) {
  section.why-alpaca {
    margin-bottom: 8rem;
  }
  section.why-alpaca .content .heading {
    margin-bottom: 4rem;
  }
  section.why-alpaca .content .heading .section-title {
    font-size: 2.1rem;
  }
  section.why-alpaca .content .heading p {
    max-width: 46.5rem;
    font-size: 1.4rem;
  }
  section.why-alpaca .content .heading p br {
    display: none;
  }
  section.why-alpaca .content .infographics {
    margin-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  section.why-alpaca {
    margin-bottom: 4rem;
  }
  section.why-alpaca .content .heading {
    flex-direction: column;
    row-gap: 2rem;
    margin-bottom: 2rem;
  }
  section.why-alpaca .content .heading p {
    max-width: 100%;
  }
  section.why-alpaca .content .infographics {
    margin-bottom: 2rem;
  }
}
@media (max-width: 430px) {
  section.why-alpaca .content {
    max-width: 100%;
    padding: 0;
  }
  section.why-alpaca .content .heading {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
  }
  section.why-alpaca .content .infographics {
    justify-content: flex-start;
    margin-bottom: unset;
  }
  section.why-alpaca .content .btn-black {
    max-width: calc(100% - 3rem);
    width: 100%;
  }
}
@media (max-width: 430px) and (max-width: 1366px) {
  section.why-alpaca .content .heading {
    max-width: 1146px;
  }
}
@media (max-width: 430px) and (max-width: 1200px) {
  section.why-alpaca .content .heading {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 430px) and (max-width: 1024px) {
  section.why-alpaca .content .heading {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 430px) and (max-width: 768px) {
  section.why-alpaca .content .heading {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.advantages {
  position: relative;
  margin-bottom: 6rem;
}
section.advantages .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  section.advantages .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.advantages .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.advantages .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.advantages .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.advantages .content .section-title {
  margin-top: 0;
  margin-bottom: 6rem;
  font-size: 3.6rem;
  font-weight: 500;
  text-transform: uppercase;
}
section.advantages .content .advantages-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
section.advantages .content .advantages-items .advantages-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 24.8rem;
  border-radius: 2rem;
  border: 0.1rem solid #141414;
}
section.advantages .content .advantages-items .advantages-item .icon {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  height: 8rem;
}
section.advantages .content .advantages-items .advantages-item .text {
  margin: 0;
  text-align: center;
}
@media (max-width: 1366px) {
  section.advantages .content .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 1024px) {
  section.advantages {
    margin-bottom: 4rem;
  }
  section.advantages .content .section-title {
    margin-bottom: 4rem;
    font-size: 2.1rem;
  }
  section.advantages .content .advantages-items .advantages-item {
    height: 20.6rem;
  }
  section.advantages .content .advantages-items .advantages-item .icon {
    height: 6rem;
  }
  section.advantages .content .advantages-items .advantages-item .text {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  section.advantages .content .section-title {
    margin-bottom: 3rem;
  }
  section.advantages .content .advantages-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 'item1 item3' 'item2 item4';
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }
  section.advantages .content .advantages-items .advantages-item {
    flex-direction: row;
    height: auto;
    column-gap: 1.6rem;
    border: none;
  }
  section.advantages .content .advantages-items .advantages-item.item-1 {
    grid-area: item1;
  }
  section.advantages .content .advantages-items .advantages-item.item-2 {
    grid-area: item2;
  }
  section.advantages .content .advantages-items .advantages-item.item-3 {
    grid-area: item3;
  }
  section.advantages .content .advantages-items .advantages-item.item-4 {
    grid-area: item4;
  }
  section.advantages .content .advantages-items .advantages-item.item-3 .icon img {
    transform: rotate(90deg);
  }
  section.advantages .content .advantages-items .advantages-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    margin-bottom: unset;
  }
  section.advantages .content .advantages-items .advantages-item .icon img {
    max-width: 100%;
  }
  section.advantages .content .advantages-items .advantages-item .text {
    max-width: 23.2rem;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 430px) {
  section.advantages .content .advantages-items {
    grid-template-columns: 1fr;
    grid-template-areas: 'item1' 'item2' 'item3' 'item4';
  }
  section.advantages .content .advantages-items .advantages-item {
    justify-content: unset;
  }
}
section.benefits {
  position: relative;
  margin-bottom: 12rem;
}
section.benefits .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media (max-width: 1366px) {
  section.benefits .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.benefits .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.benefits .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.benefits .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.benefits .content .content-block {
  display: grid;
  align-items: center;
  padding: 6rem 11.1rem;
  background-color: #F5F5F5;
  border-radius: 2rem;
}
section.benefits .content .content-block:nth-of-type(1) {
  grid-template-columns: 1fr auto;
  grid-template-areas: 'text photo';
  grid-column-gap: 10.6rem;
}
section.benefits .content .content-block:nth-of-type(1) .text-container {
  justify-self: start;
}
section.benefits .content .content-block:nth-of-type(2) {
  grid-template-columns: auto 1fr;
  grid-template-areas: 'photo text';
  grid-column-gap: 13.5rem;
}
section.benefits .content .content-block:nth-of-type(2) .text-container {
  justify-self: end;
}
section.benefits .content .content-block .photo-container {
  grid-area: photo;
}
section.benefits .content .content-block .photo-container img {
  width: 36rem;
  height: 46.3rem;
}
section.benefits .content .content-block .text-container {
  grid-area: text;
}
section.benefits .content .content-block .text-container .title {
  margin-bottom: 2rem;
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: uppercase;
  text-wrap: nowrap;
}
section.benefits .content .content-block .text-container p {
  margin: 0;
}
section.benefits .content .content-block .text-container p.certificates {
  margin-top: 2rem;
}
section.benefits .content .content-block .text-container p.certificates a {
  position: relative;
  text-transform: uppercase;
  text-decoration: underline;
}
section.benefits .content .content-block .text-container p.certificates a::after {
  content: url('/i/opt.2024.kroyyork/img/arrow.svg');
  position: absolute;
  top: 50%;
  right: -4.6rem;
  transform: translateY(-50%);
}
section.benefits .content .content-block .text-container ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
section.benefits .content .content-block .text-container ol.benefits-items {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  counter-reset: custom-counter;
}
section.benefits .content .content-block .text-container ol.benefits-items li.benefits-item {
  position: relative;
  counter-increment: custom-counter;
}
section.benefits .content .content-block .text-container ol.benefits-items li.benefits-item::before {
  content: '(' attr(data-number) ')';
  position: absolute;
  top: 0.1rem;
  left: -5rem;
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: uppercase;
}
section.benefits .content .btn-black {
  display: block;
  max-width: 35rem;
  margin: 6rem auto 0 auto;
}
@media (max-width: 1366px) {
  section.benefits {
    margin-bottom: 10rem;
  }
  section.benefits .content {
    max-width: 100%;
    padding: 0 clamp(0px, calc(0px + (23 - 0) * ((100vw - 1200px) / (1366 - 1200))), 23px);
  }
  section.benefits .content .content-block:nth-of-type(1) {
    padding-left: clamp(77px, calc(77px + (137 - 77) * ((100vw - 1200px) / (1366 - 1200))), 137px);
    padding-right: clamp(27px, calc(27px + (87 - 27) * ((100vw - 1200px) / (1366 - 1200))), 87px);
  }
  section.benefits .content .content-block:nth-of-type(2) {
    padding-left: clamp(27px, calc(27px + (87 - 27) * ((100vw - 1200px) / (1366 - 1200))), 87px);
    padding-right: clamp(27px, calc(27px + (87 - 27) * ((100vw - 1200px) / (1366 - 1200))), 87px);
  }
}
@media (max-width: calc(1200px - 1px)) {
  section.benefits .content {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
  }
  section.benefits .content .content-block:nth-of-type(1),
  section.benefits .content .content-block:nth-of-type(2) {
    padding: 6rem;
    grid-column-gap: 4rem;
  }
  section.benefits .content .content-block .photo-container img {
    width: 29.4rem;
    height: 39.4rem;
  }
  section.benefits .content .content-block .text-container ol.benefits-items {
    padding-top: 2.2rem;
    row-gap: calc(4rem + 2.2rem);
  }
  section.benefits .content .content-block .text-container ol.benefits-items li.benefits-item .title {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  section.benefits .content .content-block .text-container ol.benefits-items li.benefits-item p {
    font-size: 1.4rem;
  }
  section.benefits .content .content-block .text-container ol.benefits-items li.benefits-item .certificates {
    margin-top: 1.5rem;
    font-size: 1.6rem;
  }
  section.benefits .content .content-block .text-container ol.benefits-items li.benefits-item::before {
    top: -2rem;
    left: 0;
    font-size: 1.6rem;
  }
}
@media (max-width: calc(1200px - 1px)) and (max-width: 1366px) {
  section.benefits .content {
    max-width: 1146px;
  }
}
@media (max-width: calc(1200px - 1px)) and (max-width: 1200px) {
  section.benefits .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: calc(1200px - 1px)) and (max-width: 1024px) {
  section.benefits .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: calc(1200px - 1px)) and (max-width: 768px) {
  section.benefits .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
@media (max-width: 1024px) {
  section.benefits {
    margin-bottom: 8rem;
  }
  section.benefits .content {
    max-width: 100%;
    padding: 0 clamp(0px, calc(0px + (40 - 0) * ((100vw - 768px) / (1024 - 768))), 40px);
  }
  section.benefits .content .btn-black {
    margin: 2rem auto 0 auto;
  }
}
@media (max-width: calc(1024px - 1px)) {
  section.benefits .content .content-block:nth-of-type(1),
  section.benefits .content .content-block:nth-of-type(2) {
    grid-template-columns: 1fr;
    grid-template-areas: 'photo' 'text';
    grid-row-gap: 4rem;
    padding: 3rem;
  }
  section.benefits .content .content-block:nth-of-type(1) .photo-container,
  section.benefits .content .content-block:nth-of-type(2) .photo-container {
    grid-area: photo;
    justify-self: center;
  }
  section.benefits .content .content-block:nth-of-type(1) .photo-container img,
  section.benefits .content .content-block:nth-of-type(2) .photo-container img {
    width: 29.4rem;
    height: 38rem;
  }
  section.benefits .content .content-block:nth-of-type(1) .text-container,
  section.benefits .content .content-block:nth-of-type(2) .text-container {
    grid-area: text;
  }
}
@media (max-width: 768px) {
  section.benefits {
    margin-bottom: 4rem;
  }
  section.benefits .content {
    padding: 0;
  }
  section.benefits .content .content-block:nth-of-type(1) .text-container ol.benefits-items .benefits-item .title,
  section.benefits .content .content-block:nth-of-type(2) .text-container ol.benefits-items .benefits-item .title {
    text-wrap: wrap;
  }
}
@media (max-width: 430px) {
  section.benefits .content {
    grid-row-gap: unset;
  }
  section.benefits .content .content-block:nth-of-type(1),
  section.benefits .content .content-block:nth-of-type(2) {
    grid-row-gap: 2rem;
  }
  section.benefits .content .content-block:nth-of-type(1) .photo-container img,
  section.benefits .content .content-block:nth-of-type(2) .photo-container img {
    width: 31.5rem;
    height: 40.5rem;
    border-radius: 1.5rem;
  }
  section.benefits .content .content-block:nth-of-type(1) {
    padding-bottom: 1rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  section.benefits .content .content-block:nth-of-type(2) {
    padding-top: 1rem;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  section.benefits .content .btn-black {
    margin-top: 4rem;
    max-width: 27.4rem;
  }
}
section.carousel {
  position: relative;
  margin-bottom: 12rem;
}
section.carousel .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1366px) {
  section.carousel .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.carousel .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.carousel .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.carousel .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.carousel .content .arrow {
  position: absolute;
  top: calc(50% - 6.4rem);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #141414;
  border-radius: 100%;
  transform: translateY(-50%);
  cursor: pointer;
}
section.carousel .content .arrow.arrow-prev {
  display: none;
  left: -1.8rem;
}
section.carousel .content .arrow.arrow-prev svg {
  transform: rotate(180deg);
}
section.carousel .content .arrow.arrow-next {
  right: -1.8rem;
}
section.carousel .content .carousel-items .carousel-item {
  max-width: 43.1rem;
  margin-right: 1.5rem;
}
section.carousel .content .carousel-items .carousel-item img {
  display: block;
  width: 43.1rem;
  height: 56rem;
  margin-bottom: 2rem;
}
section.carousel .content .carousel-items .carousel-item .name {
  margin-bottom: 2rem;
  text-align: center;
}
section.carousel .content .carousel-items .carousel-item .btn-outline {
  display: block;
  max-width: 28rem;
  margin: 0 auto;
}
section.carousel .content .carousel-items .carousel-item.is-catalog {
  position: relative;
  cursor: pointer;
}
section.carousel .content .carousel-items .carousel-item.is-catalog img {
  filter: blur(0.5rem);
}
section.carousel .content .carousel-items .carousel-item.is-catalog .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56rem;
  font-size: 2.1rem;
  color: #FFFFFF;
  background-color: rgba(20, 20, 20, 0.6);
}
@media (max-width: 1366px) {
  section.carousel {
    margin-bottom: 10rem;
  }
  section.carousel .content .carousel-items .carousel-item {
    max-width: 37.3rem;
  }
  section.carousel .content .carousel-items .carousel-item img {
    width: 37.3rem;
    height: 56rem;
  }
  section.carousel .content .carousel-items .carousel-item.is-catalog .overlay {
    height: 56rem;
  }
}
@media (max-width: 1366px) {
  section.carousel .content .arrow.arrow-prev {
    left: 1.5rem;
  }
  section.carousel .content .arrow.arrow-next {
    right: 1.5rem;
  }
  section.carousel .content .carousel-items .carousel-item {
    max-width: clamp(306px, calc(306px + (370 - 306) * ((100vw - 1024px) / (1200 - 1024))), 370px);
  }
  section.carousel .content .carousel-items .carousel-item img {
    width: clamp(306px, calc(306px + (370 - 306) * ((100vw - 1024px) / (1200 - 1024))), 370px);
    height: clamp(460px, calc(460px + (560 - 460) * ((100vw - 1024px) / (1200 - 1024))), 560px);
    margin-bottom: 1rem;
  }
  section.carousel .content .carousel-items .carousel-item .name {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  section.carousel .content .carousel-items .carousel-item .btn-outline {
    width: 100%;
    padding: 1.4rem 0;
  }
  section.carousel .content .carousel-items .carousel-item.is-catalog .overlay {
    height: clamp(460px, calc(460px + (560 - 460) * ((100vw - 1024px) / (1200 - 1024))), 560px);
  }
}
@media (max-width: 1024px) {
  section.carousel {
    margin-bottom: 8rem;
  }
  section.carousel .content .carousel-items .carousel-item {
    max-width: calc(347px + (306 - 347) * ((100vw - 768px) / (1024 - 768)));
  }
  section.carousel .content .carousel-items .carousel-item img {
    width: calc(347px + (306 - 347) * ((100vw - 768px) / (1024 - 768)));
  }
  section.carousel .content .carousel-items .carousel-item.is-catalog .overlay {
    height: clamp(380px, calc(380px + (460 - 380) * ((100vw - 768px) / (1024 - 768))), 460px);
  }
}
@media (max-width: 768px) {
  section.carousel {
    margin-bottom: 4rem;
  }
  section.carousel .content .carousel-items .carousel-item {
    max-width: clamp(290px, calc(290px + (347 - 290) * ((100vw - 375px) / (768 - 375))), 347px);
  }
  section.carousel .content .carousel-items .carousel-item img {
    width: clamp(290px, calc(290px + (347 - 290) * ((100vw - 375px) / (768 - 375))), 347px);
    height: clamp(380px, calc(380px + (460 - 380) * ((100vw - 375px) / (768 - 375))), 460px);
  }
}
@media (max-width: 430px) {
  section.carousel .content .arrow {
    display: none;
  }
}
section.partners {
  position: relative;
  margin-bottom: 12rem;
}
section.partners .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  section.partners .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.partners .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.partners .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.partners .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.partners .content .section-title {
  margin-top: 0;
  margin-bottom: 6rem;
  font-size: 3.6rem;
  font-weight: 500;
  text-transform: uppercase;
}
section.partners .content .dropdowns {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
section.partners .content .dropdowns .dropdown .title {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section.partners .content .dropdowns .dropdown .title .text {
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: uppercase;
}
section.partners .content .dropdowns .dropdown .title .plus {
  position: relative;
  width: 2.9rem;
  height: 2.9rem;
}
section.partners .content .dropdowns .dropdown .title .plus::after,
section.partners .content .dropdowns .dropdown .title .plus::before {
  content: '';
  position: absolute;
  background-color: #141414;
}
section.partners .content .dropdowns .dropdown .title .plus::after {
  top: 50%;
  left: 0;
  width: 2.9rem;
  height: 0.1rem;
}
section.partners .content .dropdowns .dropdown .title .plus::before {
  top: 0;
  left: 50%;
  width: 0.1rem;
  height: 2.9rem;
}
section.partners .content .dropdowns .dropdown .body {
  padding-top: 4rem;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel {
  display: flex;
  column-gap: 4.6rem;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .controls {
  display: flex;
  column-gap: 1rem;
  margin-top: 2.1rem;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .controls .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #141414;
  border-radius: 100%;
  cursor: pointer;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .controls .arrow.arrow-prev svg {
  transform: rotate(180deg);
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .controls .arrow.is-disabled,
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .controls .arrow .faze-disabled,
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .controls .arrow .swiper-button-disabled {
  background-color: #D0D0D0;
  pointer-events: none;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .carousel {
  padding-bottom: 2rem;
  overflow-x: auto;
  pointer-events: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .carousel::-webkit-scrollbar {
  width: 0;
  height: 0;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .carousel .carousel-track {
  display: flex;
  column-gap: 1.5rem;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .carousel .slide {
  position: relative;
  min-width: 49.6rem;
  max-width: 49.6rem;
  padding: 2.4rem 2rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.125;
  background-color: #EFEFEF;
  border-radius: 1.5rem;
}
section.partners .content .dropdowns .dropdown .body .dropdown-carousel .carousel .slide::before {
  content: "\2764\FE0F";
  position: absolute;
  bottom: -1.4rem;
  left: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  background-color: #EFEFEF;
  border: 0.1rem solid #FFFFFF;
  border-radius: 100%;
}
section.partners .content .dropdowns .dropdown.faze-active .title .plus::before {
  display: none;
}
section.partners .content .btn-black {
  display: block;
  margin: 6rem auto 0 auto;
}
@media (max-width: 1366px) {
  section.partners {
    margin-bottom: 10rem;
  }
  section.partners .content .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 1024px) {
  section.partners {
    margin-bottom: 8rem;
  }
  section.partners .content .section-title {
    margin-bottom: 4rem;
    font-size: 2.1rem;
  }
  section.partners .content .dropdowns {
    row-gap: 2rem;
  }
  section.partners .content .dropdowns .dropdown .title .text {
    font-size: 1.6rem;
  }
  section.partners .content .dropdowns .dropdown .body {
    padding-top: 2rem;
  }
  section.partners .content .btn-black {
    margin: 4rem auto 0 auto;
  }
}
@media (max-width: 768px) {
  section.partners {
    margin-bottom: 4rem;
  }
  section.partners .content .dropdowns .dropdown .body .dropdown-carousel {
    flex-direction: column;
    row-gap: 2rem;
  }
  section.partners .content .dropdowns .dropdown .body .dropdown-carousel .carousel {
    padding-bottom: 1.5rem;
    order: 1;
  }
  section.partners .content .dropdowns .dropdown .body .dropdown-carousel .carousel .slide {
    max-width: clamp(281px, calc(281px + (496 - 281) * ((100vw - 375px) / (768 - 375))), 496px);
    min-width: clamp(281px, calc(281px + (496 - 281) * ((100vw - 375px) / (768 - 375))), 496px);
  }
  section.partners .content .dropdowns .dropdown .body .dropdown-carousel .controls {
    margin-top: 0;
    order: 2;
  }
}
@media (max-width: 430px) {
  section.partners .content .section-title {
    margin-bottom: 2rem;
  }
  section.partners .content .dropdowns {
    row-gap: 3rem;
  }
  section.partners .content .dropdowns .dropdown .title .plus {
    width: 2.4rem;
    height: 2.4rem;
  }
  section.partners .content .dropdowns .dropdown .title .plus::after {
    width: 2.4rem;
  }
  section.partners .content .dropdowns .dropdown .title .plus::before {
    height: 2.4rem;
  }
  section.partners .content .dropdowns .dropdown .title .text {
    font-size: 1.4rem;
  }
  section.partners .content .dropdowns .dropdown .body .dropdown-carousel .controls .arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
  section.partners .content .dropdowns .dropdown .body .dropdown-carousel .carousel .slide {
    font-size: 1.4rem;
  }
}
section.map {
  position: relative;
  margin-bottom: 12rem;
}
section.map .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  height: 80rem;
}
@media (max-width: 1366px) {
  section.map .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.map .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.map .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.map .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
@media (max-width: 1366px) {
  section.map {
    margin-bottom: 10rem;
  }
  section.map .content {
    max-width: 100%;
    padding: 0;
    height: 70rem;
  }
}
@media (max-width: 1024px) {
  section.map {
    margin-bottom: 8rem;
  }
  section.map .content {
    height: 54rem;
  }
}
@media (max-width: 768px) {
  section.map {
    margin-bottom: 4rem;
  }
  section.map .content {
    height: 50rem;
  }
}
@media (max-width: 430px) {
  section.map .content {
    height: 38rem;
  }
}
section.team {
  position: relative;
  margin-bottom: 12rem;
}
section.team .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  section.team .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.team .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.team .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.team .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.team .content .section-title {
  margin-top: 0;
  margin-bottom: 6rem;
  font-size: 3.6rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
section.team .content .members {
  display: flex;
  justify-content: space-between;
}
section.team .content .members .member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.team .content .members .member .avatar {
  width: 11rem;
  height: 11rem;
  margin-bottom: 2rem;
  background-color: #F5F5F5;
  border-radius: 100%;
  overflow: hidden;
}
section.team .content .members .member .avatar img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.team .content .members .member .name {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-transform: uppercase;
}
section.team .content .members .member .post {
  font-size: 1.2rem;
  color: #686868;
}
@media (max-width: 1366px) {
  section.team {
    margin-bottom: 10rem;
  }
  section.team .content .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 1366px) {
  section.team {
    margin-bottom: 8rem;
  }
  section.team .content .section-title {
    margin-bottom: 4rem;
    font-size: 2.1rem;
  }
  section.team .content .members .member .avatar {
    margin-bottom: 1rem;
  }
  section.team .content .members .member .name {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 1366px) {
  section.team {
    margin-bottom: 4rem;
  }
  section.team .content .section-title {
    margin-bottom: 4rem;
    text-align: left;
  }
  section.team .content .members .member.member {
    display: grid;
    align-items: center;
    grid-template-columns: 11rem auto;
    grid-template-rows: auto auto;
    grid-template-areas: 'avatar name' 'avatar post';
    margin-right: 1.5rem;
    grid-column-gap: 1rem;
    width: 28rem;
    text-align: left;
    text-wrap: nowrap;
  }
  section.team .content .members .member.member .avatar {
    grid-area: avatar;
  }
  section.team .content .members .member.member .name {
    grid-area: name;
    align-self: end;
  }
  section.team .content .members .member.member .post {
    grid-area: post;
    align-self: start;
  }
}
@media (max-width: 430px) {
  section.team .content .members .member.member {
    grid-template-columns: 7.5rem auto;
    width: 24rem;
  }
  section.team .content .members .member.member .avatar {
    width: 7.5rem;
    height: 7.5rem;
  }
}
section.invitation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 89.2rem;
  margin-bottom: 12rem;
}
section.invitation .background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.invitation .content {
  position: relative;
  z-index: 2;
  width: 109.8rem;
  height: 49.2rem;
  padding: 8rem 11.1rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 3rem;
}
section.invitation .content .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
section.invitation .content .columns .column .title {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 500;
}
section.invitation .content .columns .column blockquote {
  display: flex;
  flex-direction: column;
  margin: 0;
}
section.invitation .content .columns .column blockquote p {
  margin-top: 0;
  margin-bottom: 2rem;
}
section.invitation .content .columns .column blockquote cite {
  align-self: end;
  font-style: normal;
}
section.invitation .content .btn-black {
  display: block;
  max-width: 35rem;
  margin: 6rem auto 0 auto;
}
@media (max-width: 1366px) {
  section.invitation {
    height: 69.2rem;
    margin-bottom: 10rem;
  }
  section.invitation .content .columns .column .title {
    font-size: 2.8rem;
  }
}
@media (max-width: 1200px) {
  section.invitation {
    height: clamp(615px, calc(615px + (692 - 615) * ((100vw - 1024px) / (1200 - 1024))), 692px);
  }
  section.invitation .content {
    width: clamp(784px, calc(784px + (1098 - 784) * ((100vw - 1024px) / (1200 - 1024))), 1098px);
    height: clamp(415px, calc(415px + (492 - 415) * ((100vw - 1024px) / (1200 - 1024))), 492px);
    padding: clamp(60px, calc(60px + (80 - 60) * ((100vw - 1024px) / (1200 - 1024))), 80px) clamp(80px, calc(80px + (111 - 80) * ((100vw - 1024px) / (1200 - 1024))), 111px);
  }
  section.invitation .content .columns .column .title {
    font-size: clamp(21px, calc(21px + (28 - 21) * ((100vw - 1024px) / (1200 - 1024))), 28px);
  }
  section.invitation .content .columns .column blockquote {
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 1024px) / (1200 - 1024))), 16px);
  }
  section.invitation .content .btn-black {
    max-width: clamp(287px, calc(287px + (350 - 287) * ((100vw - 1024px) / (1200 - 1024))), 350px);
    margin: clamp(20px, calc(20px + (60 - 20) * ((100vw - 1024px) / (1200 - 1024))), 60px) auto 0 auto;
  }
}
@media (max-width: 1024px) {
  section.invitation {
    height: clamp(553px, calc(553px + (615 - 553) * ((100vw - 768px) / (1024 - 768))), 615px);
    margin-bottom: 8rem;
  }
  section.invitation .content {
    width: clamp(708px, calc(708px + (784 - 708) * ((100vw - 768px) / (1024 - 768))), 784px);
    height: clamp(393px, calc(393px + (415 - 393) * ((100vw - 768px) / (1024 - 768))), 415px);
    padding: clamp(40px, calc(40px + (60 - 40) * ((100vw - 768px) / (1024 - 768))), 60px) clamp(60px, calc(60px + (80 - 60) * ((100vw - 768px) / (1024 - 768))), 80px);
  }
}
@media (max-width: calc(768px - 1px)) {
  section.invitation {
    height: calc(611px + (553 - 611) * ((100vw - 375px) / (767 - 375)));
    margin-bottom: 4rem;
  }
  section.invitation .content {
    width: clamp(345px, calc(345px + (708 - 345) * ((100vw - 375px) / (767 - 375))), 708px);
    height: calc(451px + (393 - 451) * ((100vw - 375px) / (767 - 375)));
    padding: 4rem clamp(15px, calc(15px + (60 - 15) * ((100vw - 375px) / (767 - 375))), 60px);
  }
  section.invitation .content .columns {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
}
@media (max-width: 430px) {
  section.invitation .content .btn-black {
    max-width: 29.6rem;
    height: 5.5rem;
    width: 100%;
    padding: 0;
  }
}
section.requisites {
  position: relative;
  margin-bottom: 12rem;
}
section.requisites .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  section.requisites .content {
    max-width: 1146px;
  }
}
@media (max-width: 1200px) {
  section.requisites .content {
    max-width: 100%;
    padding: 0 calc(40px + (27 - 40) * ((100vw - 1024px) / (1200 - 1024)));
  }
}
@media (max-width: 1024px) {
  section.requisites .content {
    padding: 0 calc(30px + (40 - 30) * ((100vw - 768px) / (1024 - 768)));
  }
}
@media (max-width: 768px) {
  section.requisites .content {
    padding: 0 calc(15px + (30 - 15) * ((100vw - 375px) / (768 - 375)));
  }
}
section.requisites .content .section-title {
  margin-top: 0;
  margin-bottom: 6rem;
  font-size: 3.2rem;
  font-weight: 500;
  text-transform: uppercase;
}
section.requisites .content .columns {
  display: flex;
  column-gap: 3.6rem;
}
section.requisites .content .columns .column {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
section.requisites .content .columns .column .item {
  display: flex;
  column-gap: 2rem;
}
section.requisites .content .columns .column .item .caption {
  color: #686868;
  text-transform: uppercase;
}
section.requisites .content .columns .column:nth-of-type(1) .item .caption {
  width: 14rem;
}
section.requisites .content .columns .column:nth-of-type(2) .item .caption {
  width: 12.4rem;
}
@media (max-width: 1366px) {
  section.requisites {
    margin-bottom: 10rem;
  }
  section.requisites .content .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 1024px) {
  section.requisites {
    margin-bottom: 8rem;
  }
  section.requisites .content .section-title {
    margin-bottom: 4rem;
    font-size: 2.1rem;
  }
  section.requisites .content .columns .column .item .caption,
  section.requisites .content .columns .column .item .value {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  section.requisites {
    margin-bottom: 4rem;
  }
  section.requisites .content .section-title {
    margin-bottom: 2rem;
  }
  section.requisites .content .columns {
    flex-direction: column;
    row-gap: 2rem;
  }
  section.requisites .content .columns .column:nth-of-type(1) .item,
  section.requisites .content .columns .column:nth-of-type(2) .item {
    column-gap: 2.5rem;
  }
  section.requisites .content .columns .column:nth-of-type(1) .item .caption,
  section.requisites .content .columns .column:nth-of-type(2) .item .caption {
    width: 13.5rem;
  }
}
@media (max-width: 430px) {
  section.requisites .content .columns .column:nth-of-type(1) .item,
  section.requisites .content .columns .column:nth-of-type(2) .item {
    column-gap: 2rem;
  }
  section.requisites .content .columns .column:nth-of-type(1) .item .caption,
  section.requisites .content .columns .column:nth-of-type(2) .item .caption,
  section.requisites .content .columns .column:nth-of-type(1) .item .value,
  section.requisites .content .columns .column:nth-of-type(2) .item .value {
    font-size: 1.2rem;
  }
  section.requisites .content .columns .column:nth-of-type(1) .item .caption,
  section.requisites .content .columns .column:nth-of-type(2) .item .caption {
    min-width: 10rem;
    max-width: 10rem;
  }
}


/*
generated in 0.568 seconds at 2025-09-28 12:17:30
last modified file: opt.2024.kroyyork.modal.less at 2025-02-10 11:05:23
includes (25):
2024-06-27 13:05:14	office/702/i/opt.2024.kroyyork/css/opt.2024.kroyyork.less
2023-09-28 15:32:58	/fonts/rawline/rawline.less
2017-12-15 00:28:30	/fonts/roboto/roboto.less
2024-07-02 13:58:03	opt.2024.kroyyork.config.less
2025-02-04 08:47:24	opt.2024.kroyyork.mixins.less
2024-06-25 13:06:04	opt.2024.kroyyork.typography.less
2024-07-05 16:20:07	opt.2024.kroyyork.ui.less
2025-02-10 11:05:23	opt.2024.kroyyork.modal.less
2024-07-05 17:22:08	opt.2024.kroyyork.common.less
2024-07-05 15:45:54	/prototype/opt.2024.kroyyork.header.less
2024-07-02 13:44:12	/prototype/opt.2024.kroyyork.main.less
2024-07-02 13:43:59	/prototype/opt.2024.kroyyork.footer.less
2024-07-30 17:44:01	/sections/opt.2024.kroyyork.offer.less
2024-07-05 16:27:12	/sections/opt.2024.kroyyork.about.less
2024-07-04 17:58:31	/sections/opt.2024.kroyyork.gallery.less
2024-07-04 17:58:23	/sections/opt.2024.kroyyork.brand.less
2024-07-08 20:09:21	/sections/opt.2024.kroyyork.why-alpaca.less
2024-07-04 17:58:13	/sections/opt.2024.kroyyork.advantages.less
2024-07-05 16:31:40	/sections/opt.2024.kroyyork.benefits.less
2024-07-05 16:14:07	/sections/opt.2024.kroyyork.carousel.less
2024-07-05 20:46:08	/sections/opt.2024.kroyyork.partners.less
2024-07-04 17:58:39	/sections/opt.2024.kroyyork.map.less
2024-07-08 20:59:00	/sections/opt.2024.kroyyork.team.less
2024-07-08 20:12:14	/sections/opt.2024.kroyyork.invitation.less
2024-07-04 17:58:53	/sections/opt.2024.kroyyork.requisites.less
*/
